diff --git a/grammar.js b/grammar.js index 1bcc62e..5c4ec9a 100644 --- a/grammar.js +++ b/grammar.js @@ -696,6 +696,15 @@ module.exports = grammar({ ) )), + call_suffix_without_type_arguments: $ => prec.left(seq( + choice( + seq(optional($.value_arguments), $.annotated_lambda), + $.value_arguments + ) + )), + + + annotated_lambda: $ => seq( repeat($.annotation), optional($.label), @@ -940,7 +949,8 @@ module.exports = grammar({ _postfix_unary_suffix: $ => choice( $._postfix_unary_operator, $.navigation_suffix, - $.indexing_suffix + $.indexing_suffix, + $.call_suffix_without_type_arguments ), _postfix_unary_expression: $ => seq($._primary_expression, repeat($._postfix_unary_suffix)), diff --git a/src/grammar.json b/src/grammar.json index 82a8fb7..3f298c9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3402,6 +3402,45 @@ ] } }, + "call_suffix_without_type_arguments": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "value_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "annotated_lambda" + } + ] + }, + { + "type": "SYMBOL", + "name": "value_arguments" + } + ] + } + ] + } + }, "annotated_lambda": { "type": "SEQ", "members": [ @@ -4854,6 +4893,10 @@ { "type": "SYMBOL", "name": "indexing_suffix" + }, + { + "type": "SYMBOL", + "name": "call_suffix_without_type_arguments" } ] }, diff --git a/src/node-types.json b/src/node-types.json index c681601..c3779d4 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -831,6 +831,25 @@ ] } }, + { + "type": "call_suffix_without_type_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotated_lambda", + "named": true + }, + { + "type": "value_arguments", + "named": true + } + ] + } + }, { "type": "callable_reference", "named": true, @@ -2222,6 +2241,10 @@ "type": "boolean_literal", "named": true }, + { + "type": "call_suffix_without_type_arguments", + "named": true + }, { "type": "callable_reference", "named": true diff --git a/src/parser.c b/src/parser.c index 633b837..22e4b6b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 9578 -#define LARGE_STATE_COUNT 4437 -#define SYMBOL_COUNT 346 +#define STATE_COUNT 9581 +#define LARGE_STATE_COUNT 4439 +#define SYMBOL_COUNT 347 #define ALIAS_COUNT 3 #define TOKEN_COUNT 148 #define EXTERNAL_TOKEN_COUNT 7 @@ -252,119 +252,120 @@ enum { sym_indexing_suffix = 233, sym_navigation_suffix = 234, sym_call_suffix = 235, - sym_annotated_lambda = 236, - sym_type_arguments = 237, - sym_value_arguments = 238, - sym_value_argument = 239, - sym__primary_expression = 240, - sym_parenthesized_expression = 241, - sym_collection_literal = 242, - sym__literal_constant = 243, - sym_string_literal = 244, - sym__interpolation = 245, - sym_lambda_literal = 246, - sym_multi_variable_declaration = 247, - sym_lambda_parameters = 248, - sym__lambda_parameter = 249, - sym_anonymous_function = 250, - sym__function_literal = 251, - sym_object_literal = 252, - sym_this_expression = 253, - sym_super_expression = 254, - sym_if_expression = 255, - sym_when_subject = 256, - sym_when_expression = 257, - sym_when_entry = 258, - sym_when_condition = 259, - sym_range_test = 260, - sym_type_test = 261, - sym_try_expression = 262, - sym_catch_block = 263, - sym_finally_block = 264, - sym_jump_expression = 265, - sym_callable_reference = 266, - sym__assignment_and_operator = 267, - sym__equality_operator = 268, - sym__comparison_operator = 269, - sym__in_operator = 270, - sym__is_operator = 271, - sym__additive_operator = 272, - sym__multiplicative_operator = 273, - sym__as_operator = 274, - sym__prefix_unary_operator = 275, - sym__postfix_unary_operator = 276, - sym__member_access_operator = 277, - sym__postfix_unary_suffix = 278, - sym__postfix_unary_expression = 279, - sym_directly_assignable_expression = 280, - sym_modifiers = 281, - sym_parameter_modifiers = 282, - sym__modifier = 283, - sym_type_modifiers = 284, - sym__type_modifier = 285, - sym_class_modifier = 286, - sym_member_modifier = 287, - sym_visibility_modifier = 288, - sym_variance_modifier = 289, - sym_type_parameter_modifiers = 290, - sym__type_parameter_modifier = 291, - sym_function_modifier = 292, - sym_inheritance_modifier = 293, - sym_parameter_modifier = 294, - sym_platform_modifier = 295, - sym_annotation = 296, - sym__single_annotation = 297, - sym__multi_annotation = 298, - sym_use_site_target = 299, - sym__unescaped_annotation = 300, - sym_simple_identifier = 301, - sym_identifier = 302, - sym__return_at = 303, - sym__continue_at = 304, - sym__break_at = 305, - sym_unsigned_literal = 306, - sym_long_literal = 307, - sym_boolean_literal = 308, - sym_character_literal = 309, - sym_character_escape_seq = 310, - sym__lexical_identifier = 311, - sym__uni_character_literal = 312, - aux_sym_source_file_repeat1 = 313, - aux_sym_source_file_repeat2 = 314, - aux_sym_source_file_repeat3 = 315, - aux_sym_file_annotation_repeat1 = 316, - aux_sym_import_list_repeat1 = 317, - aux_sym__class_parameters_repeat1 = 318, - aux_sym__delegation_specifiers_repeat1 = 319, - aux_sym__annotated_delegation_specifier_repeat1 = 320, - aux_sym_type_parameters_repeat1 = 321, - aux_sym_type_constraints_repeat1 = 322, - aux_sym_function_value_parameters_repeat1 = 323, - aux_sym__enum_entries_repeat1 = 324, - aux_sym_nullable_type_repeat1 = 325, - aux_sym_user_type_repeat1 = 326, - aux_sym_type_projection_modifiers_repeat1 = 327, - aux_sym_function_type_parameters_repeat1 = 328, - aux_sym_statements_repeat1 = 329, - aux_sym__statement_repeat1 = 330, - aux_sym_indexing_suffix_repeat1 = 331, - aux_sym_type_arguments_repeat1 = 332, - aux_sym_value_arguments_repeat1 = 333, - aux_sym_string_literal_repeat1 = 334, - aux_sym_multi_variable_declaration_repeat1 = 335, - aux_sym_lambda_parameters_repeat1 = 336, - aux_sym_when_expression_repeat1 = 337, - aux_sym_when_entry_repeat1 = 338, - aux_sym_try_expression_repeat1 = 339, - aux_sym__postfix_unary_expression_repeat1 = 340, - aux_sym_modifiers_repeat1 = 341, - aux_sym_parameter_modifiers_repeat1 = 342, - aux_sym_type_modifiers_repeat1 = 343, - aux_sym_type_parameter_modifiers_repeat1 = 344, - aux_sym_identifier_repeat1 = 345, - alias_sym_interpolated_expression = 346, - alias_sym_interpolated_identifier = 347, - alias_sym_type_identifier = 348, + sym_call_suffix_without_type_arguments = 236, + sym_annotated_lambda = 237, + sym_type_arguments = 238, + sym_value_arguments = 239, + sym_value_argument = 240, + sym__primary_expression = 241, + sym_parenthesized_expression = 242, + sym_collection_literal = 243, + sym__literal_constant = 244, + sym_string_literal = 245, + sym__interpolation = 246, + sym_lambda_literal = 247, + sym_multi_variable_declaration = 248, + sym_lambda_parameters = 249, + sym__lambda_parameter = 250, + sym_anonymous_function = 251, + sym__function_literal = 252, + sym_object_literal = 253, + sym_this_expression = 254, + sym_super_expression = 255, + sym_if_expression = 256, + sym_when_subject = 257, + sym_when_expression = 258, + sym_when_entry = 259, + sym_when_condition = 260, + sym_range_test = 261, + sym_type_test = 262, + sym_try_expression = 263, + sym_catch_block = 264, + sym_finally_block = 265, + sym_jump_expression = 266, + sym_callable_reference = 267, + sym__assignment_and_operator = 268, + sym__equality_operator = 269, + sym__comparison_operator = 270, + sym__in_operator = 271, + sym__is_operator = 272, + sym__additive_operator = 273, + sym__multiplicative_operator = 274, + sym__as_operator = 275, + sym__prefix_unary_operator = 276, + sym__postfix_unary_operator = 277, + sym__member_access_operator = 278, + sym__postfix_unary_suffix = 279, + sym__postfix_unary_expression = 280, + sym_directly_assignable_expression = 281, + sym_modifiers = 282, + sym_parameter_modifiers = 283, + sym__modifier = 284, + sym_type_modifiers = 285, + sym__type_modifier = 286, + sym_class_modifier = 287, + sym_member_modifier = 288, + sym_visibility_modifier = 289, + sym_variance_modifier = 290, + sym_type_parameter_modifiers = 291, + sym__type_parameter_modifier = 292, + sym_function_modifier = 293, + sym_inheritance_modifier = 294, + sym_parameter_modifier = 295, + sym_platform_modifier = 296, + sym_annotation = 297, + sym__single_annotation = 298, + sym__multi_annotation = 299, + sym_use_site_target = 300, + sym__unescaped_annotation = 301, + sym_simple_identifier = 302, + sym_identifier = 303, + sym__return_at = 304, + sym__continue_at = 305, + sym__break_at = 306, + sym_unsigned_literal = 307, + sym_long_literal = 308, + sym_boolean_literal = 309, + sym_character_literal = 310, + sym_character_escape_seq = 311, + sym__lexical_identifier = 312, + sym__uni_character_literal = 313, + aux_sym_source_file_repeat1 = 314, + aux_sym_source_file_repeat2 = 315, + aux_sym_source_file_repeat3 = 316, + aux_sym_file_annotation_repeat1 = 317, + aux_sym_import_list_repeat1 = 318, + aux_sym__class_parameters_repeat1 = 319, + aux_sym__delegation_specifiers_repeat1 = 320, + aux_sym__annotated_delegation_specifier_repeat1 = 321, + aux_sym_type_parameters_repeat1 = 322, + aux_sym_type_constraints_repeat1 = 323, + aux_sym_function_value_parameters_repeat1 = 324, + aux_sym__enum_entries_repeat1 = 325, + aux_sym_nullable_type_repeat1 = 326, + aux_sym_user_type_repeat1 = 327, + aux_sym_type_projection_modifiers_repeat1 = 328, + aux_sym_function_type_parameters_repeat1 = 329, + aux_sym_statements_repeat1 = 330, + aux_sym__statement_repeat1 = 331, + aux_sym_indexing_suffix_repeat1 = 332, + aux_sym_type_arguments_repeat1 = 333, + aux_sym_value_arguments_repeat1 = 334, + aux_sym_string_literal_repeat1 = 335, + aux_sym_multi_variable_declaration_repeat1 = 336, + aux_sym_lambda_parameters_repeat1 = 337, + aux_sym_when_expression_repeat1 = 338, + aux_sym_when_entry_repeat1 = 339, + aux_sym_try_expression_repeat1 = 340, + aux_sym__postfix_unary_expression_repeat1 = 341, + aux_sym_modifiers_repeat1 = 342, + aux_sym_parameter_modifiers_repeat1 = 343, + aux_sym_type_modifiers_repeat1 = 344, + aux_sym_type_parameter_modifiers_repeat1 = 345, + aux_sym_identifier_repeat1 = 346, + alias_sym_interpolated_expression = 347, + alias_sym_interpolated_identifier = 348, + alias_sym_type_identifier = 349, }; static const char * const ts_symbol_names[] = { @@ -604,6 +605,7 @@ static const char * const ts_symbol_names[] = { [sym_indexing_suffix] = "indexing_suffix", [sym_navigation_suffix] = "navigation_suffix", [sym_call_suffix] = "call_suffix", + [sym_call_suffix_without_type_arguments] = "call_suffix_without_type_arguments", [sym_annotated_lambda] = "annotated_lambda", [sym_type_arguments] = "type_arguments", [sym_value_arguments] = "value_arguments", @@ -956,6 +958,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_indexing_suffix] = sym_indexing_suffix, [sym_navigation_suffix] = sym_navigation_suffix, [sym_call_suffix] = sym_call_suffix, + [sym_call_suffix_without_type_arguments] = sym_call_suffix_without_type_arguments, [sym_annotated_lambda] = sym_annotated_lambda, [sym_type_arguments] = sym_type_arguments, [sym_value_arguments] = sym_value_arguments, @@ -2016,6 +2019,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_call_suffix_without_type_arguments] = { + .visible = true, + .named = true, + }, [sym_annotated_lambda] = { .visible = true, .named = true, @@ -2508,334 +2515,334 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, + [4] = 4, [5] = 3, - [6] = 6, - [7] = 2, - [8] = 3, + [6] = 4, + [7] = 4, + [8] = 2, [9] = 3, - [10] = 2, - [11] = 2, + [10] = 4, + [11] = 4, [12] = 3, - [13] = 6, + [13] = 4, [14] = 3, - [15] = 2, + [15] = 3, [16] = 3, - [17] = 3, - [18] = 3, - [19] = 2, - [20] = 3, - [21] = 2, + [17] = 4, + [18] = 4, + [19] = 4, + [20] = 4, + [21] = 3, [22] = 3, - [23] = 2, - [24] = 2, - [25] = 2, - [26] = 3, - [27] = 2, - [28] = 2, + [23] = 4, + [24] = 3, + [25] = 3, + [26] = 4, + [27] = 3, + [28] = 3, [29] = 3, - [30] = 3, - [31] = 2, - [32] = 2, + [30] = 4, + [31] = 4, + [32] = 4, [33] = 3, [34] = 3, - [35] = 2, - [36] = 3, - [37] = 2, - [38] = 2, - [39] = 3, + [35] = 3, + [36] = 4, + [37] = 4, + [38] = 3, + [39] = 4, [40] = 3, - [41] = 2, + [41] = 4, [42] = 3, [43] = 3, - [44] = 2, - [45] = 2, - [46] = 2, - [47] = 3, - [48] = 2, + [44] = 4, + [45] = 4, + [46] = 4, + [47] = 4, + [48] = 3, [49] = 3, - [50] = 2, + [50] = 4, [51] = 3, [52] = 52, [53] = 53, [54] = 54, - [55] = 6, - [56] = 2, - [57] = 3, + [55] = 2, + [56] = 3, + [57] = 4, [58] = 58, - [59] = 59, - [60] = 58, - [61] = 59, + [59] = 58, + [60] = 60, + [61] = 60, [62] = 62, - [63] = 59, - [64] = 58, - [65] = 58, - [66] = 66, - [67] = 58, - [68] = 58, - [69] = 59, - [70] = 59, - [71] = 71, - [72] = 59, - [73] = 59, - [74] = 59, - [75] = 59, - [76] = 59, - [77] = 59, + [63] = 63, + [64] = 60, + [65] = 60, + [66] = 60, + [67] = 60, + [68] = 60, + [69] = 58, + [70] = 58, + [71] = 60, + [72] = 60, + [73] = 58, + [74] = 74, + [75] = 60, + [76] = 60, + [77] = 60, [78] = 78, [79] = 79, - [80] = 59, - [81] = 81, - [82] = 59, - [83] = 83, - [84] = 59, - [85] = 59, - [86] = 6, - [87] = 2, - [88] = 88, - [89] = 88, - [90] = 3, - [91] = 88, - [92] = 88, - [93] = 88, - [94] = 88, - [95] = 88, - [96] = 88, - [97] = 88, - [98] = 88, - [99] = 88, - [100] = 88, - [101] = 88, - [102] = 88, - [103] = 88, - [104] = 88, - [105] = 88, - [106] = 88, - [107] = 88, - [108] = 88, - [109] = 88, - [110] = 88, - [111] = 88, - [112] = 88, + [80] = 80, + [81] = 60, + [82] = 58, + [83] = 60, + [84] = 60, + [85] = 85, + [86] = 2, + [87] = 87, + [88] = 87, + [89] = 87, + [90] = 87, + [91] = 87, + [92] = 87, + [93] = 87, + [94] = 87, + [95] = 87, + [96] = 87, + [97] = 3, + [98] = 87, + [99] = 87, + [100] = 87, + [101] = 4, + [102] = 87, + [103] = 87, + [104] = 87, + [105] = 87, + [106] = 87, + [107] = 87, + [108] = 87, + [109] = 87, + [110] = 87, + [111] = 87, + [112] = 87, [113] = 113, - [114] = 114, - [115] = 113, - [116] = 116, - [117] = 114, - [118] = 116, - [119] = 116, - [120] = 113, + [114] = 113, + [115] = 115, + [116] = 115, + [117] = 117, + [118] = 113, + [119] = 117, + [120] = 115, [121] = 121, - [122] = 121, - [123] = 113, - [124] = 114, - [125] = 116, - [126] = 114, + [122] = 117, + [123] = 115, + [124] = 121, + [125] = 121, + [126] = 113, [127] = 121, - [128] = 121, - [129] = 114, - [130] = 116, - [131] = 116, + [128] = 115, + [129] = 117, + [130] = 115, + [131] = 115, [132] = 121, - [133] = 113, - [134] = 114, - [135] = 121, - [136] = 121, - [137] = 121, - [138] = 113, - [139] = 114, - [140] = 116, + [133] = 115, + [134] = 113, + [135] = 113, + [136] = 117, + [137] = 113, + [138] = 121, + [139] = 115, + [140] = 117, [141] = 113, - [142] = 114, + [142] = 2, [143] = 113, - [144] = 113, + [144] = 117, [145] = 121, - [146] = 116, - [147] = 116, - [148] = 113, + [146] = 117, + [147] = 115, + [148] = 121, [149] = 121, - [150] = 113, - [151] = 121, - [152] = 114, - [153] = 114, - [154] = 114, - [155] = 116, - [156] = 116, - [157] = 121, - [158] = 113, - [159] = 116, + [150] = 117, + [151] = 115, + [152] = 113, + [153] = 117, + [154] = 113, + [155] = 117, + [156] = 121, + [157] = 113, + [158] = 115, + [159] = 113, [160] = 113, - [161] = 114, - [162] = 121, - [163] = 121, - [164] = 113, - [165] = 116, - [166] = 121, - [167] = 121, - [168] = 116, - [169] = 114, + [161] = 117, + [162] = 113, + [163] = 113, + [164] = 115, + [165] = 115, + [166] = 113, + [167] = 113, + [168] = 113, + [169] = 113, [170] = 121, - [171] = 114, - [172] = 113, - [173] = 113, - [174] = 116, - [175] = 116, - [176] = 116, - [177] = 114, - [178] = 114, - [179] = 113, - [180] = 114, + [171] = 115, + [172] = 117, + [173] = 115, + [174] = 121, + [175] = 115, + [176] = 117, + [177] = 113, + [178] = 121, + [179] = 121, + [180] = 121, [181] = 121, - [182] = 113, - [183] = 116, - [184] = 116, - [185] = 113, - [186] = 114, - [187] = 116, - [188] = 121, - [189] = 121, - [190] = 114, - [191] = 6, - [192] = 114, - [193] = 116, - [194] = 113, - [195] = 113, - [196] = 114, - [197] = 121, - [198] = 121, - [199] = 121, - [200] = 121, + [182] = 121, + [183] = 115, + [184] = 117, + [185] = 121, + [186] = 115, + [187] = 113, + [188] = 117, + [189] = 117, + [190] = 115, + [191] = 121, + [192] = 117, + [193] = 113, + [194] = 117, + [195] = 115, + [196] = 117, + [197] = 115, + [198] = 113, + [199] = 113, + [200] = 117, [201] = 121, - [202] = 114, - [203] = 116, + [202] = 117, + [203] = 121, [204] = 113, - [205] = 121, - [206] = 113, - [207] = 116, - [208] = 116, + [205] = 117, + [206] = 121, + [207] = 121, + [208] = 121, [209] = 113, - [210] = 114, - [211] = 121, - [212] = 114, + [210] = 115, + [211] = 115, + [212] = 117, [213] = 213, - [214] = 213, + [214] = 3, [215] = 215, - [216] = 215, + [216] = 216, [217] = 217, - [218] = 218, - [219] = 218, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 217, - [224] = 224, - [225] = 213, + [218] = 216, + [219] = 219, + [220] = 216, + [221] = 217, + [222] = 216, + [223] = 4, + [224] = 219, + [225] = 217, [226] = 217, [227] = 227, - [228] = 213, - [229] = 217, - [230] = 218, - [231] = 218, - [232] = 217, - [233] = 213, - [234] = 215, - [235] = 218, - [236] = 218, - [237] = 237, - [238] = 218, - [239] = 217, - [240] = 217, - [241] = 218, - [242] = 215, - [243] = 218, - [244] = 215, + [228] = 217, + [229] = 227, + [230] = 217, + [231] = 219, + [232] = 216, + [233] = 216, + [234] = 227, + [235] = 219, + [236] = 217, + [237] = 216, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 227, + [242] = 227, + [243] = 216, + [244] = 219, [245] = 245, - [246] = 246, - [247] = 213, - [248] = 217, - [249] = 218, - [250] = 2, - [251] = 218, - [252] = 215, - [253] = 253, + [246] = 217, + [247] = 247, + [248] = 248, + [249] = 217, + [250] = 217, + [251] = 227, + [252] = 219, + [253] = 216, [254] = 217, - [255] = 218, - [256] = 3, + [255] = 217, + [256] = 256, [257] = 257, [258] = 258, [259] = 259, - [260] = 220, - [261] = 220, - [262] = 220, - [263] = 220, - [264] = 220, - [265] = 220, - [266] = 220, - [267] = 220, - [268] = 220, - [269] = 220, - [270] = 220, + [260] = 256, + [261] = 256, + [262] = 256, + [263] = 256, + [264] = 256, + [265] = 256, + [266] = 256, + [267] = 256, + [268] = 256, + [269] = 256, + [270] = 256, [271] = 271, [272] = 272, - [273] = 272, + [273] = 273, [274] = 274, [275] = 275, - [276] = 274, - [277] = 277, - [278] = 278, - [279] = 278, - [280] = 271, - [281] = 277, - [282] = 275, - [283] = 277, - [284] = 277, - [285] = 275, - [286] = 274, - [287] = 272, + [276] = 276, + [277] = 276, + [278] = 271, + [279] = 272, + [280] = 275, + [281] = 274, + [282] = 273, + [283] = 274, + [284] = 272, + [285] = 273, + [286] = 276, + [287] = 274, [288] = 271, - [289] = 278, - [290] = 278, - [291] = 275, - [292] = 274, - [293] = 272, - [294] = 271, - [295] = 220, - [296] = 274, - [297] = 277, - [298] = 220, - [299] = 271, + [289] = 275, + [290] = 275, + [291] = 271, + [292] = 276, + [293] = 273, + [294] = 272, + [295] = 256, + [296] = 256, + [297] = 275, + [298] = 276, + [299] = 276, [300] = 272, - [301] = 275, - [302] = 278, - [303] = 220, - [304] = 278, - [305] = 277, + [301] = 274, + [302] = 272, + [303] = 275, + [304] = 274, + [305] = 273, [306] = 271, - [307] = 272, - [308] = 274, - [309] = 275, - [310] = 220, - [311] = 274, - [312] = 278, - [313] = 277, - [314] = 220, - [315] = 277, - [316] = 271, - [317] = 220, + [307] = 273, + [308] = 271, + [309] = 256, + [310] = 256, + [311] = 271, + [312] = 274, + [313] = 256, + [314] = 275, + [315] = 276, + [316] = 272, + [317] = 274, [318] = 272, - [319] = 278, - [320] = 277, - [321] = 271, - [322] = 278, - [323] = 275, - [324] = 272, - [325] = 271, + [319] = 273, + [320] = 256, + [321] = 275, + [322] = 271, + [323] = 271, + [324] = 273, + [325] = 273, [326] = 274, - [327] = 272, - [328] = 275, - [329] = 274, + [327] = 276, + [328] = 276, + [329] = 272, [330] = 275, - [331] = 220, + [331] = 256, [332] = 332, [333] = 332, [334] = 332, @@ -2860,7 +2867,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 332, [354] = 332, [355] = 332, - [356] = 220, + [356] = 356, [357] = 357, [358] = 358, [359] = 359, @@ -2868,11 +2875,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [361] = 361, [362] = 362, [363] = 363, - [364] = 364, + [364] = 256, [365] = 365, [366] = 366, [367] = 367, - [368] = 368, + [368] = 256, [369] = 369, [370] = 370, [371] = 371, @@ -2880,680 +2887,680 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [373] = 373, [374] = 374, [375] = 375, - [376] = 220, - [377] = 220, - [378] = 370, - [379] = 379, - [380] = 359, - [381] = 371, - [382] = 382, - [383] = 383, - [384] = 366, - [385] = 365, - [386] = 364, - [387] = 363, - [388] = 361, - [389] = 389, - [390] = 362, - [391] = 379, - [392] = 374, - [393] = 368, - [394] = 369, - [395] = 375, - [396] = 373, - [397] = 372, - [398] = 367, - [399] = 220, - [400] = 357, - [401] = 220, - [402] = 360, - [403] = 389, - [404] = 382, - [405] = 383, - [406] = 406, - [407] = 383, - [408] = 379, + [376] = 376, + [377] = 256, + [378] = 357, + [379] = 256, + [380] = 256, + [381] = 356, + [382] = 369, + [383] = 371, + [384] = 384, + [385] = 372, + [386] = 359, + [387] = 370, + [388] = 358, + [389] = 373, + [390] = 366, + [391] = 361, + [392] = 360, + [393] = 393, + [394] = 362, + [395] = 395, + [396] = 365, + [397] = 363, + [398] = 398, + [399] = 367, + [400] = 376, + [401] = 384, + [402] = 395, + [403] = 393, + [404] = 374, + [405] = 398, + [406] = 395, + [407] = 398, + [408] = 408, [409] = 409, - [410] = 389, - [411] = 383, - [412] = 406, + [410] = 409, + [411] = 411, + [412] = 411, [413] = 413, - [414] = 382, - [415] = 415, - [416] = 409, - [417] = 382, - [418] = 379, - [419] = 389, - [420] = 415, - [421] = 413, - [422] = 422, - [423] = 423, - [424] = 413, - [425] = 415, - [426] = 423, - [427] = 427, - [428] = 413, - [429] = 406, - [430] = 409, - [431] = 406, - [432] = 415, - [433] = 422, - [434] = 409, - [435] = 435, - [436] = 436, - [437] = 435, - [438] = 427, - [439] = 436, - [440] = 435, + [414] = 393, + [415] = 408, + [416] = 395, + [417] = 413, + [418] = 398, + [419] = 393, + [420] = 384, + [421] = 384, + [422] = 409, + [423] = 411, + [424] = 409, + [425] = 425, + [426] = 426, + [427] = 408, + [428] = 426, + [429] = 429, + [430] = 430, + [431] = 413, + [432] = 411, + [433] = 413, + [434] = 425, + [435] = 429, + [436] = 430, + [437] = 408, + [438] = 438, + [439] = 438, + [440] = 425, [441] = 441, - [442] = 422, - [443] = 443, - [444] = 444, - [445] = 427, - [446] = 423, - [447] = 447, - [448] = 436, - [449] = 427, - [450] = 423, - [451] = 436, - [452] = 441, - [453] = 444, - [454] = 422, - [455] = 443, - [456] = 456, - [457] = 447, - [458] = 456, - [459] = 435, - [460] = 370, - [461] = 374, - [462] = 375, - [463] = 369, - [464] = 360, - [465] = 368, - [466] = 367, + [442] = 442, + [443] = 442, + [444] = 426, + [445] = 445, + [446] = 446, + [447] = 425, + [448] = 429, + [449] = 446, + [450] = 429, + [451] = 438, + [452] = 452, + [453] = 438, + [454] = 426, + [455] = 441, + [456] = 430, + [457] = 452, + [458] = 445, + [459] = 430, + [460] = 365, + [461] = 360, + [462] = 356, + [463] = 362, + [464] = 374, + [465] = 369, + [466] = 370, [467] = 373, - [468] = 372, - [469] = 371, - [470] = 358, - [471] = 366, - [472] = 365, - [473] = 359, - [474] = 364, - [475] = 363, - [476] = 361, - [477] = 357, - [478] = 362, - [479] = 479, - [480] = 480, - [481] = 444, - [482] = 447, - [483] = 483, + [468] = 366, + [469] = 358, + [470] = 372, + [471] = 376, + [472] = 367, + [473] = 375, + [474] = 357, + [475] = 361, + [476] = 363, + [477] = 359, + [478] = 371, + [479] = 445, + [480] = 441, + [481] = 481, + [482] = 482, + [483] = 445, [484] = 484, - [485] = 441, - [486] = 480, + [485] = 485, + [486] = 486, [487] = 487, [488] = 488, - [489] = 444, + [489] = 489, [490] = 490, [491] = 491, - [492] = 443, - [493] = 441, + [492] = 452, + [493] = 493, [494] = 494, [495] = 495, - [496] = 496, - [497] = 496, - [498] = 491, - [499] = 479, - [500] = 488, - [501] = 443, - [502] = 456, - [503] = 503, - [504] = 504, - [505] = 504, - [506] = 483, - [507] = 495, - [508] = 447, - [509] = 509, - [510] = 484, - [511] = 456, - [512] = 487, - [513] = 490, - [514] = 503, - [515] = 509, - [516] = 494, - [517] = 363, - [518] = 389, - [519] = 361, - [520] = 362, - [521] = 382, - [522] = 370, - [523] = 360, - [524] = 383, - [525] = 379, - [526] = 372, - [527] = 371, - [528] = 389, - [529] = 382, - [530] = 383, - [531] = 379, - [532] = 364, - [533] = 365, - [534] = 366, - [535] = 367, - [536] = 368, - [537] = 369, - [538] = 359, - [539] = 357, - [540] = 374, - [541] = 375, - [542] = 373, - [543] = 379, - [544] = 423, - [545] = 495, - [546] = 490, - [547] = 487, - [548] = 427, - [549] = 479, - [550] = 504, - [551] = 383, - [552] = 382, - [553] = 423, - [554] = 496, - [555] = 389, - [556] = 488, - [557] = 491, - [558] = 496, - [559] = 436, - [560] = 491, - [561] = 504, - [562] = 479, - [563] = 488, - [564] = 379, - [565] = 487, - [566] = 275, - [567] = 277, - [568] = 427, - [569] = 435, - [570] = 422, - [571] = 436, - [572] = 509, - [573] = 389, - [574] = 490, - [575] = 503, - [576] = 484, - [577] = 383, - [578] = 382, - [579] = 274, - [580] = 277, - [581] = 275, - [582] = 274, - [583] = 272, - [584] = 271, - [585] = 278, - [586] = 494, - [587] = 415, - [588] = 413, - [589] = 406, - [590] = 503, - [591] = 272, - [592] = 271, - [593] = 409, - [594] = 480, - [595] = 278, - [596] = 495, - [597] = 409, - [598] = 480, - [599] = 406, - [600] = 413, - [601] = 509, - [602] = 422, - [603] = 415, - [604] = 484, - [605] = 483, - [606] = 494, - [607] = 435, - [608] = 483, - [609] = 427, - [610] = 423, + [496] = 491, + [497] = 497, + [498] = 452, + [499] = 489, + [500] = 442, + [501] = 446, + [502] = 485, + [503] = 488, + [504] = 494, + [505] = 484, + [506] = 446, + [507] = 493, + [508] = 441, + [509] = 490, + [510] = 495, + [511] = 497, + [512] = 442, + [513] = 482, + [514] = 481, + [515] = 487, + [516] = 486, + [517] = 371, + [518] = 358, + [519] = 367, + [520] = 363, + [521] = 521, + [522] = 369, + [523] = 395, + [524] = 393, + [525] = 398, + [526] = 384, + [527] = 384, + [528] = 521, + [529] = 370, + [530] = 373, + [531] = 362, + [532] = 374, + [533] = 360, + [534] = 393, + [535] = 372, + [536] = 357, + [537] = 361, + [538] = 356, + [539] = 366, + [540] = 395, + [541] = 365, + [542] = 398, + [543] = 359, + [544] = 376, + [545] = 494, + [546] = 430, + [547] = 413, + [548] = 481, + [549] = 272, + [550] = 429, + [551] = 276, + [552] = 411, + [553] = 486, + [554] = 273, + [555] = 275, + [556] = 429, + [557] = 425, + [558] = 482, + [559] = 384, + [560] = 425, + [561] = 484, + [562] = 408, + [563] = 384, + [564] = 495, + [565] = 409, + [566] = 393, + [567] = 271, + [568] = 395, + [569] = 438, + [570] = 409, + [571] = 497, + [572] = 489, + [573] = 430, + [574] = 485, + [575] = 488, + [576] = 398, + [577] = 398, + [578] = 495, + [579] = 491, + [580] = 487, + [581] = 482, + [582] = 271, + [583] = 426, + [584] = 273, + [585] = 411, + [586] = 413, + [587] = 274, + [588] = 272, + [589] = 276, + [590] = 275, + [591] = 486, + [592] = 487, + [593] = 481, + [594] = 393, + [595] = 491, + [596] = 488, + [597] = 485, + [598] = 489, + [599] = 490, + [600] = 484, + [601] = 497, + [602] = 395, + [603] = 490, + [604] = 493, + [605] = 493, + [606] = 408, + [607] = 494, + [608] = 438, + [609] = 426, + [610] = 274, [611] = 441, - [612] = 406, - [613] = 409, - [614] = 413, - [615] = 444, - [616] = 443, - [617] = 406, - [618] = 436, - [619] = 427, - [620] = 456, - [621] = 456, - [622] = 435, - [623] = 436, - [624] = 447, - [625] = 422, - [626] = 443, - [627] = 447, - [628] = 415, - [629] = 423, - [630] = 409, - [631] = 444, - [632] = 422, - [633] = 413, - [634] = 435, - [635] = 415, - [636] = 441, - [637] = 456, - [638] = 444, - [639] = 447, - [640] = 278, - [641] = 271, - [642] = 443, - [643] = 441, - [644] = 277, - [645] = 275, - [646] = 275, - [647] = 443, - [648] = 444, - [649] = 274, - [650] = 272, + [612] = 430, + [613] = 430, + [614] = 442, + [615] = 425, + [616] = 408, + [617] = 438, + [618] = 445, + [619] = 409, + [620] = 438, + [621] = 452, + [622] = 441, + [623] = 445, + [624] = 452, + [625] = 426, + [626] = 429, + [627] = 442, + [628] = 411, + [629] = 413, + [630] = 411, + [631] = 409, + [632] = 413, + [633] = 425, + [634] = 429, + [635] = 446, + [636] = 426, + [637] = 446, + [638] = 408, + [639] = 442, + [640] = 445, + [641] = 441, + [642] = 452, + [643] = 275, + [644] = 441, + [645] = 276, + [646] = 272, + [647] = 274, + [648] = 275, + [649] = 273, + [650] = 276, [651] = 272, - [652] = 441, - [653] = 271, - [654] = 278, - [655] = 277, - [656] = 274, - [657] = 456, - [658] = 447, - [659] = 480, - [660] = 504, - [661] = 272, - [662] = 272, - [663] = 271, - [664] = 275, - [665] = 274, - [666] = 490, - [667] = 277, - [668] = 277, - [669] = 275, - [670] = 278, - [671] = 487, - [672] = 494, - [673] = 271, - [674] = 479, - [675] = 494, - [676] = 504, - [677] = 496, - [678] = 483, - [679] = 491, - [680] = 278, - [681] = 488, - [682] = 484, - [683] = 274, - [684] = 495, - [685] = 480, - [686] = 509, - [687] = 483, - [688] = 484, - [689] = 503, - [690] = 509, - [691] = 495, - [692] = 490, - [693] = 487, - [694] = 479, - [695] = 503, - [696] = 488, - [697] = 491, - [698] = 496, - [699] = 272, - [700] = 278, - [701] = 277, + [652] = 271, + [653] = 274, + [654] = 273, + [655] = 271, + [656] = 446, + [657] = 446, + [658] = 442, + [659] = 452, + [660] = 445, + [661] = 494, + [662] = 276, + [663] = 493, + [664] = 490, + [665] = 482, + [666] = 491, + [667] = 486, + [668] = 487, + [669] = 481, + [670] = 481, + [671] = 495, + [672] = 276, + [673] = 488, + [674] = 275, + [675] = 491, + [676] = 485, + [677] = 490, + [678] = 489, + [679] = 497, + [680] = 273, + [681] = 493, + [682] = 494, + [683] = 271, + [684] = 487, + [685] = 272, + [686] = 486, + [687] = 482, + [688] = 495, + [689] = 275, + [690] = 484, + [691] = 484, + [692] = 497, + [693] = 489, + [694] = 485, + [695] = 488, + [696] = 274, + [697] = 272, + [698] = 271, + [699] = 274, + [700] = 273, + [701] = 274, [702] = 275, - [703] = 278, + [703] = 276, [704] = 271, - [705] = 274, - [706] = 275, - [707] = 271, - [708] = 277, - [709] = 274, + [705] = 272, + [706] = 273, + [707] = 275, + [708] = 274, + [709] = 276, [710] = 272, - [711] = 504, - [712] = 491, - [713] = 277, - [714] = 509, - [715] = 275, - [716] = 274, - [717] = 490, - [718] = 272, - [719] = 479, - [720] = 271, - [721] = 480, - [722] = 278, - [723] = 494, - [724] = 503, - [725] = 488, - [726] = 509, - [727] = 484, - [728] = 479, - [729] = 495, - [730] = 495, - [731] = 503, - [732] = 490, - [733] = 494, - [734] = 491, - [735] = 496, - [736] = 487, - [737] = 278, - [738] = 483, - [739] = 484, - [740] = 496, + [711] = 271, + [712] = 273, + [713] = 487, + [714] = 276, + [715] = 486, + [716] = 493, + [717] = 494, + [718] = 494, + [719] = 491, + [720] = 490, + [721] = 488, + [722] = 484, + [723] = 481, + [724] = 487, + [725] = 271, + [726] = 273, + [727] = 274, + [728] = 272, + [729] = 486, + [730] = 276, + [731] = 275, + [732] = 482, + [733] = 495, + [734] = 493, + [735] = 482, + [736] = 495, + [737] = 490, + [738] = 271, + [739] = 273, + [740] = 274, [741] = 488, - [742] = 271, - [743] = 480, - [744] = 272, - [745] = 504, - [746] = 274, - [747] = 487, - [748] = 275, - [749] = 277, - [750] = 483, - [751] = 751, - [752] = 752, + [742] = 485, + [743] = 272, + [744] = 489, + [745] = 497, + [746] = 275, + [747] = 484, + [748] = 491, + [749] = 497, + [750] = 485, + [751] = 489, + [752] = 481, [753] = 753, [754] = 754, [755] = 755, - [756] = 751, + [756] = 756, [757] = 753, [758] = 758, - [759] = 759, - [760] = 759, + [759] = 758, + [760] = 758, [761] = 758, - [762] = 753, - [763] = 753, - [764] = 754, - [765] = 765, - [766] = 755, - [767] = 751, - [768] = 751, - [769] = 755, - [770] = 751, + [762] = 754, + [763] = 763, + [764] = 764, + [765] = 756, + [766] = 763, + [767] = 763, + [768] = 764, + [769] = 753, + [770] = 753, [771] = 753, - [772] = 751, - [773] = 754, - [774] = 754, - [775] = 755, - [776] = 776, - [777] = 765, - [778] = 754, - [779] = 755, - [780] = 754, - [781] = 755, - [782] = 753, - [783] = 783, + [772] = 772, + [773] = 763, + [774] = 758, + [775] = 763, + [776] = 763, + [777] = 753, + [778] = 778, + [779] = 756, + [780] = 756, + [781] = 756, + [782] = 756, + [783] = 758, [784] = 784, - [785] = 785, + [785] = 273, [786] = 786, [787] = 786, - [788] = 788, - [789] = 789, + [788] = 786, + [789] = 786, [790] = 786, - [791] = 786, - [792] = 275, + [791] = 271, + [792] = 274, [793] = 793, - [794] = 277, - [795] = 786, - [796] = 278, + [794] = 272, + [795] = 276, + [796] = 275, [797] = 786, [798] = 786, [799] = 786, - [800] = 786, + [800] = 800, [801] = 786, [802] = 802, [803] = 786, [804] = 786, - [805] = 786, + [805] = 805, [806] = 786, - [807] = 274, + [807] = 807, [808] = 786, - [809] = 786, + [809] = 809, [810] = 786, [811] = 786, - [812] = 812, + [812] = 786, [813] = 786, - [814] = 277, + [814] = 786, [815] = 786, - [816] = 272, - [817] = 271, - [818] = 786, - [819] = 819, - [820] = 278, - [821] = 271, + [816] = 786, + [817] = 786, + [818] = 271, + [819] = 273, + [820] = 275, + [821] = 274, [822] = 786, - [823] = 275, - [824] = 786, - [825] = 272, + [823] = 272, + [824] = 276, + [825] = 786, [826] = 786, [827] = 786, - [828] = 274, + [828] = 786, [829] = 786, - [830] = 786, + [830] = 830, [831] = 831, - [832] = 275, + [832] = 832, [833] = 833, [834] = 834, - [835] = 277, - [836] = 836, - [837] = 277, - [838] = 838, - [839] = 274, - [840] = 272, - [841] = 271, - [842] = 842, + [835] = 835, + [836] = 275, + [837] = 276, + [838] = 272, + [839] = 275, + [840] = 274, + [841] = 273, + [842] = 271, [843] = 843, - [844] = 278, + [844] = 844, [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, + [846] = 793, + [847] = 807, + [848] = 805, + [849] = 802, [850] = 850, [851] = 851, - [852] = 852, - [853] = 278, + [852] = 809, + [853] = 853, [854] = 854, - [855] = 271, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, - [859] = 274, - [860] = 272, + [859] = 859, + [860] = 860, [861] = 861, [862] = 862, [863] = 863, [864] = 864, - [865] = 865, - [866] = 275, - [867] = 802, + [865] = 271, + [866] = 273, + [867] = 867, [868] = 868, [869] = 869, - [870] = 870, - [871] = 785, - [872] = 788, - [873] = 789, - [874] = 874, - [875] = 875, - [876] = 793, - [877] = 877, - [878] = 878, - [879] = 277, - [880] = 864, - [881] = 274, - [882] = 272, + [870] = 274, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 272, + [875] = 276, + [876] = 876, + [877] = 864, + [878] = 276, + [879] = 274, + [880] = 880, + [881] = 881, + [882] = 273, [883] = 883, - [884] = 863, + [884] = 275, [885] = 885, - [886] = 851, + [886] = 276, [887] = 887, - [888] = 888, - [889] = 271, - [890] = 890, + [888] = 272, + [889] = 889, + [890] = 273, [891] = 891, [892] = 892, - [893] = 850, + [893] = 893, [894] = 894, - [895] = 895, + [895] = 271, [896] = 896, - [897] = 849, + [897] = 897, [898] = 898, - [899] = 899, - [900] = 278, - [901] = 278, + [899] = 272, + [900] = 832, + [901] = 901, [902] = 902, - [903] = 271, - [904] = 272, - [905] = 843, - [906] = 906, - [907] = 907, - [908] = 845, - [909] = 274, + [903] = 903, + [904] = 904, + [905] = 867, + [906] = 868, + [907] = 869, + [908] = 908, + [909] = 909, [910] = 910, - [911] = 862, - [912] = 275, - [913] = 277, + [911] = 911, + [912] = 912, + [913] = 913, [914] = 914, [915] = 915, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 874, + [917] = 871, + [918] = 872, + [919] = 919, [920] = 920, [921] = 921, [922] = 922, - [923] = 833, + [923] = 271, [924] = 924, - [925] = 925, + [925] = 274, [926] = 926, - [927] = 875, + [927] = 927, [928] = 928, - [929] = 856, - [930] = 861, - [931] = 931, + [929] = 858, + [930] = 930, + [931] = 859, [932] = 932, - [933] = 275, + [933] = 861, [934] = 934, - [935] = 869, + [935] = 275, [936] = 936, - [937] = 937, - [938] = 938, + [937] = 876, + [938] = 860, [939] = 939, [940] = 940, - [941] = 941, - [942] = 942, + [941] = 831, + [942] = 873, [943] = 943, - [944] = 944, + [944] = 374, [945] = 945, - [946] = 375, + [946] = 357, [947] = 947, [948] = 948, - [949] = 949, - [950] = 370, + [949] = 369, + [950] = 950, [951] = 951, - [952] = 362, - [953] = 359, - [954] = 370, + [952] = 952, + [953] = 953, + [954] = 954, [955] = 955, - [956] = 357, + [956] = 361, [957] = 957, [958] = 958, - [959] = 959, - [960] = 361, - [961] = 358, - [962] = 962, + [959] = 276, + [960] = 960, + [961] = 363, + [962] = 359, [963] = 963, [964] = 964, [965] = 965, [966] = 966, - [967] = 363, + [967] = 967, [968] = 968, - [969] = 375, - [970] = 360, - [971] = 971, - [972] = 274, - [973] = 374, - [974] = 364, - [975] = 365, - [976] = 976, - [977] = 371, - [978] = 369, - [979] = 372, - [980] = 368, + [969] = 969, + [970] = 970, + [971] = 833, + [972] = 273, + [973] = 973, + [974] = 974, + [975] = 358, + [976] = 366, + [977] = 977, + [978] = 978, + [979] = 370, + [980] = 980, [981] = 981, [982] = 982, [983] = 983, - [984] = 373, - [985] = 371, - [986] = 372, - [987] = 838, - [988] = 366, - [989] = 989, - [990] = 367, - [991] = 991, - [992] = 992, + [984] = 982, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 372, + [990] = 370, + [991] = 367, + [992] = 835, [993] = 993, - [994] = 836, + [994] = 375, [995] = 995, - [996] = 366, - [997] = 997, + [996] = 996, + [997] = 274, [998] = 998, - [999] = 999, - [1000] = 365, - [1001] = 364, - [1002] = 359, - [1003] = 363, - [1004] = 361, + [999] = 376, + [1000] = 834, + [1001] = 358, + [1002] = 1002, + [1003] = 271, + [1004] = 365, [1005] = 1005, - [1006] = 1006, - [1007] = 1007, + [1006] = 272, + [1007] = 376, [1008] = 1008, - [1009] = 367, - [1010] = 1010, - [1011] = 368, - [1012] = 369, - [1013] = 374, + [1009] = 359, + [1010] = 366, + [1011] = 361, + [1012] = 1012, + [1013] = 357, [1014] = 1014, - [1015] = 1015, - [1016] = 360, - [1017] = 358, + [1015] = 360, + [1016] = 1016, + [1017] = 1017, [1018] = 1018, - [1019] = 275, - [1020] = 1020, - [1021] = 272, - [1022] = 1022, + [1019] = 362, + [1020] = 356, + [1021] = 1021, + [1022] = 275, [1023] = 1023, - [1024] = 277, - [1025] = 373, - [1026] = 1026, - [1027] = 1027, - [1028] = 278, - [1029] = 1029, - [1030] = 271, - [1031] = 870, - [1032] = 1032, - [1033] = 1033, - [1034] = 1010, - [1035] = 1035, - [1036] = 1036, - [1037] = 357, + [1024] = 362, + [1025] = 1025, + [1026] = 363, + [1027] = 371, + [1028] = 375, + [1029] = 356, + [1030] = 365, + [1031] = 371, + [1032] = 360, + [1033] = 373, + [1034] = 369, + [1035] = 374, + [1036] = 372, + [1037] = 367, [1038] = 1038, [1039] = 1039, - [1040] = 831, - [1041] = 831, - [1042] = 831, + [1040] = 880, + [1041] = 1041, + [1042] = 857, [1043] = 1043, - [1044] = 1044, - [1045] = 1045, - [1046] = 858, + [1044] = 883, + [1045] = 863, + [1046] = 1046, [1047] = 1047, - [1048] = 858, - [1049] = 1049, + [1048] = 862, + [1049] = 863, [1050] = 1050, [1051] = 1051, [1052] = 1052, @@ -3563,28 +3570,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 906, + [1059] = 1059, [1060] = 1060, - [1061] = 883, - [1062] = 895, + [1061] = 1061, + [1062] = 1062, [1063] = 1063, - [1064] = 925, - [1065] = 922, - [1066] = 921, - [1067] = 915, - [1068] = 910, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 902, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 899, - [1077] = 858, + [1076] = 1076, + [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 898, + [1080] = 1080, [1081] = 1081, [1082] = 1082, [1083] = 1083, @@ -3592,15 +3599,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1081, + [1088] = 1088, [1089] = 1089, - [1090] = 278, - [1091] = 1091, - [1092] = 890, - [1093] = 1083, + [1090] = 1090, + [1091] = 862, + [1092] = 1092, + [1093] = 275, [1094] = 1094, - [1095] = 1095, - [1096] = 940, + [1095] = 271, + [1096] = 1096, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -3614,68 +3621,68 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1110, - [1111] = 274, + [1110] = 887, + [1111] = 1111, [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 1116, - [1117] = 1117, + [1116] = 896, + [1117] = 898, [1118] = 1118, - [1119] = 1119, + [1119] = 273, [1120] = 1120, [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, + [1122] = 1120, + [1123] = 1121, + [1124] = 910, + [1125] = 920, + [1126] = 914, + [1127] = 911, + [1128] = 908, [1129] = 1129, [1130] = 1130, - [1131] = 1131, - [1132] = 1132, + [1131] = 274, + [1132] = 904, [1133] = 1133, [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1137, + [1137] = 928, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 831, - [1145] = 858, + [1144] = 863, + [1145] = 862, [1146] = 1146, [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 1152, - [1153] = 1153, + [1152] = 863, + [1153] = 862, [1154] = 1154, [1155] = 1155, [1156] = 1156, - [1157] = 271, - [1158] = 1158, + [1157] = 1157, + [1158] = 926, [1159] = 1159, - [1160] = 1160, + [1160] = 276, [1161] = 1161, [1162] = 1162, [1163] = 1163, - [1164] = 272, + [1164] = 1164, [1165] = 1165, - [1166] = 857, + [1166] = 1166, [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 942, + [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, @@ -3684,21 +3691,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1177] = 1177, [1178] = 1178, [1179] = 1179, - [1180] = 277, + [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1184, + [1184] = 272, [1185] = 1185, [1186] = 1186, [1187] = 1187, [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 1191, + [1191] = 924, [1192] = 1192, [1193] = 1193, - [1194] = 275, + [1194] = 1194, [1195] = 1195, [1196] = 1196, [1197] = 1197, @@ -3706,417 +3713,417 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1199] = 1199, [1200] = 1200, [1201] = 1201, - [1202] = 858, - [1203] = 831, - [1204] = 379, - [1205] = 359, - [1206] = 374, - [1207] = 369, - [1208] = 368, - [1209] = 367, - [1210] = 366, - [1211] = 365, - [1212] = 364, - [1213] = 363, - [1214] = 361, - [1215] = 357, - [1216] = 788, - [1217] = 789, - [1218] = 793, - [1219] = 785, - [1220] = 802, - [1221] = 383, - [1222] = 382, - [1223] = 372, - [1224] = 371, - [1225] = 389, - [1226] = 360, - [1227] = 375, - [1228] = 370, - [1229] = 373, - [1230] = 382, - [1231] = 383, - [1232] = 379, - [1233] = 389, - [1234] = 850, - [1235] = 406, - [1236] = 1079, - [1237] = 1073, - [1238] = 858, - [1239] = 831, - [1240] = 870, - [1241] = 849, - [1242] = 802, - [1243] = 851, - [1244] = 863, - [1245] = 864, - [1246] = 785, - [1247] = 360, - [1248] = 836, - [1249] = 370, - [1250] = 838, - [1251] = 793, - [1252] = 409, - [1253] = 358, - [1254] = 831, - [1255] = 359, - [1256] = 858, - [1257] = 357, - [1258] = 831, - [1259] = 789, - [1260] = 858, - [1261] = 362, - [1262] = 361, - [1263] = 788, - [1264] = 363, - [1265] = 371, - [1266] = 364, - [1267] = 406, - [1268] = 372, - [1269] = 373, - [1270] = 365, - [1271] = 375, - [1272] = 366, - [1273] = 1125, - [1274] = 367, - [1275] = 831, - [1276] = 858, - [1277] = 415, - [1278] = 368, - [1279] = 1134, - [1280] = 1136, - [1281] = 1137, - [1282] = 409, - [1283] = 413, - [1284] = 413, - [1285] = 369, - [1286] = 374, - [1287] = 415, - [1288] = 864, - [1289] = 374, - [1290] = 372, - [1291] = 373, - [1292] = 874, - [1293] = 365, - [1294] = 364, - [1295] = 849, - [1296] = 363, - [1297] = 869, - [1298] = 861, - [1299] = 856, - [1300] = 875, - [1301] = 833, - [1302] = 375, - [1303] = 862, - [1304] = 845, - [1305] = 850, - [1306] = 925, - [1307] = 922, - [1308] = 921, - [1309] = 361, - [1310] = 423, - [1311] = 357, - [1312] = 915, - [1313] = 851, - [1314] = 910, - [1315] = 422, - [1316] = 435, - [1317] = 831, - [1318] = 359, - [1319] = 906, - [1320] = 902, - [1321] = 863, - [1322] = 899, - [1323] = 427, - [1324] = 898, - [1325] = 890, - [1326] = 371, - [1327] = 370, - [1328] = 366, - [1329] = 423, - [1330] = 360, - [1331] = 367, - [1332] = 368, - [1333] = 858, - [1334] = 436, - [1335] = 427, - [1336] = 369, - [1337] = 436, - [1338] = 435, - [1339] = 362, - [1340] = 422, - [1341] = 861, - [1342] = 1342, - [1343] = 444, - [1344] = 447, - [1345] = 1342, - [1346] = 382, - [1347] = 370, - [1348] = 383, - [1349] = 869, - [1350] = 441, - [1351] = 1342, - [1352] = 896, - [1353] = 379, - [1354] = 444, - [1355] = 362, - [1356] = 856, - [1357] = 375, - [1358] = 371, - [1359] = 372, - [1360] = 373, - [1361] = 447, - [1362] = 838, - [1363] = 443, - [1364] = 389, - [1365] = 1342, - [1366] = 441, - [1367] = 1342, - [1368] = 875, - [1369] = 1342, - [1370] = 389, - [1371] = 1342, - [1372] = 383, - [1373] = 360, - [1374] = 833, - [1375] = 1342, - [1376] = 1342, - [1377] = 1342, - [1378] = 456, - [1379] = 1342, - [1380] = 874, - [1381] = 862, - [1382] = 1342, - [1383] = 389, - [1384] = 379, - [1385] = 382, - [1386] = 382, - [1387] = 383, - [1388] = 845, - [1389] = 1342, - [1390] = 383, - [1391] = 379, - [1392] = 1342, - [1393] = 1342, - [1394] = 1342, - [1395] = 1342, - [1396] = 443, - [1397] = 1342, - [1398] = 359, - [1399] = 357, - [1400] = 1342, - [1401] = 361, - [1402] = 363, - [1403] = 1342, - [1404] = 364, - [1405] = 379, - [1406] = 365, - [1407] = 1342, - [1408] = 1342, - [1409] = 456, - [1410] = 389, - [1411] = 895, - [1412] = 836, - [1413] = 883, - [1414] = 382, - [1415] = 1342, - [1416] = 366, - [1417] = 1342, - [1418] = 367, - [1419] = 368, - [1420] = 369, - [1421] = 374, - [1422] = 870, - [1423] = 357, - [1424] = 370, + [1202] = 370, + [1203] = 395, + [1204] = 393, + [1205] = 395, + [1206] = 393, + [1207] = 356, + [1208] = 398, + [1209] = 365, + [1210] = 384, + [1211] = 367, + [1212] = 372, + [1213] = 398, + [1214] = 369, + [1215] = 862, + [1216] = 863, + [1217] = 358, + [1218] = 376, + [1219] = 359, + [1220] = 809, + [1221] = 366, + [1222] = 361, + [1223] = 357, + [1224] = 360, + [1225] = 362, + [1226] = 802, + [1227] = 363, + [1228] = 374, + [1229] = 371, + [1230] = 805, + [1231] = 384, + [1232] = 807, + [1233] = 793, + [1234] = 833, + [1235] = 408, + [1236] = 413, + [1237] = 413, + [1238] = 1088, + [1239] = 835, + [1240] = 834, + [1241] = 1089, + [1242] = 408, + [1243] = 807, + [1244] = 862, + [1245] = 863, + [1246] = 409, + [1247] = 375, + [1248] = 802, + [1249] = 862, + [1250] = 863, + [1251] = 411, + [1252] = 411, + [1253] = 793, + [1254] = 805, + [1255] = 371, + [1256] = 409, + [1257] = 356, + [1258] = 1051, + [1259] = 365, + [1260] = 373, + [1261] = 1052, + [1262] = 1078, + [1263] = 864, + [1264] = 367, + [1265] = 861, + [1266] = 860, + [1267] = 859, + [1268] = 370, + [1269] = 858, + [1270] = 358, + [1271] = 376, + [1272] = 359, + [1273] = 366, + [1274] = 361, + [1275] = 357, + [1276] = 360, + [1277] = 362, + [1278] = 363, + [1279] = 374, + [1280] = 809, + [1281] = 1084, + [1282] = 372, + [1283] = 863, + [1284] = 369, + [1285] = 862, + [1286] = 863, + [1287] = 862, + [1288] = 430, + [1289] = 869, + [1290] = 370, + [1291] = 376, + [1292] = 359, + [1293] = 910, + [1294] = 366, + [1295] = 372, + [1296] = 920, + [1297] = 361, + [1298] = 914, + [1299] = 357, + [1300] = 360, + [1301] = 911, + [1302] = 426, + [1303] = 908, + [1304] = 362, + [1305] = 363, + [1306] = 371, + [1307] = 356, + [1308] = 365, + [1309] = 374, + [1310] = 369, + [1311] = 425, + [1312] = 429, + [1313] = 438, + [1314] = 896, + [1315] = 358, + [1316] = 860, + [1317] = 367, + [1318] = 438, + [1319] = 430, + [1320] = 426, + [1321] = 858, + [1322] = 863, + [1323] = 864, + [1324] = 862, + [1325] = 425, + [1326] = 429, + [1327] = 887, + [1328] = 859, + [1329] = 867, + [1330] = 868, + [1331] = 904, + [1332] = 871, + [1333] = 872, + [1334] = 831, + [1335] = 873, + [1336] = 876, + [1337] = 373, + [1338] = 924, + [1339] = 861, + [1340] = 898, + [1341] = 1341, + [1342] = 372, + [1343] = 1341, + [1344] = 1341, + [1345] = 1341, + [1346] = 1341, + [1347] = 1341, + [1348] = 1341, + [1349] = 373, + [1350] = 1341, + [1351] = 1341, + [1352] = 1341, + [1353] = 1341, + [1354] = 398, + [1355] = 398, + [1356] = 395, + [1357] = 393, + [1358] = 384, + [1359] = 365, + [1360] = 395, + [1361] = 393, + [1362] = 356, + [1363] = 371, + [1364] = 833, + [1365] = 834, + [1366] = 384, + [1367] = 835, + [1368] = 1341, + [1369] = 1341, + [1370] = 398, + [1371] = 395, + [1372] = 393, + [1373] = 384, + [1374] = 1341, + [1375] = 1341, + [1376] = 876, + [1377] = 940, + [1378] = 880, + [1379] = 883, + [1380] = 873, + [1381] = 831, + [1382] = 872, + [1383] = 384, + [1384] = 393, + [1385] = 395, + [1386] = 871, + [1387] = 398, + [1388] = 869, + [1389] = 868, + [1390] = 867, + [1391] = 1341, + [1392] = 1341, + [1393] = 367, + [1394] = 1341, + [1395] = 1341, + [1396] = 441, + [1397] = 370, + [1398] = 358, + [1399] = 376, + [1400] = 452, + [1401] = 359, + [1402] = 441, + [1403] = 366, + [1404] = 445, + [1405] = 361, + [1406] = 452, + [1407] = 357, + [1408] = 369, + [1409] = 445, + [1410] = 442, + [1411] = 1341, + [1412] = 360, + [1413] = 442, + [1414] = 362, + [1415] = 446, + [1416] = 446, + [1417] = 1341, + [1418] = 1341, + [1419] = 1341, + [1420] = 1341, + [1421] = 363, + [1422] = 374, + [1423] = 362, + [1424] = 887, [1425] = 1425, - [1426] = 382, - [1427] = 383, - [1428] = 1428, - [1429] = 382, - [1430] = 1428, - [1431] = 375, - [1432] = 1432, - [1433] = 415, - [1434] = 1428, - [1435] = 389, - [1436] = 921, - [1437] = 413, - [1438] = 406, - [1439] = 906, - [1440] = 413, - [1441] = 910, - [1442] = 379, - [1443] = 1425, - [1444] = 359, - [1445] = 890, - [1446] = 1428, - [1447] = 415, - [1448] = 1432, - [1449] = 358, - [1450] = 370, - [1451] = 383, - [1452] = 1428, - [1453] = 360, - [1454] = 357, - [1455] = 922, - [1456] = 1425, - [1457] = 409, - [1458] = 898, - [1459] = 409, - [1460] = 915, - [1461] = 406, - [1462] = 925, - [1463] = 899, - [1464] = 1432, - [1465] = 993, + [1426] = 1426, + [1427] = 1425, + [1428] = 1426, + [1429] = 409, + [1430] = 393, + [1431] = 1431, + [1432] = 1431, + [1433] = 363, + [1434] = 362, + [1435] = 360, + [1436] = 357, + [1437] = 361, + [1438] = 366, + [1439] = 359, + [1440] = 1425, + [1441] = 1426, + [1442] = 1431, + [1443] = 376, + [1444] = 358, + [1445] = 370, + [1446] = 1426, + [1447] = 1425, + [1448] = 384, + [1449] = 375, + [1450] = 1431, + [1451] = 409, + [1452] = 1426, + [1453] = 411, + [1454] = 413, + [1455] = 411, + [1456] = 413, + [1457] = 408, + [1458] = 1425, + [1459] = 373, + [1460] = 356, + [1461] = 395, + [1462] = 1431, + [1463] = 1426, + [1464] = 1425, + [1465] = 408, [1466] = 1425, - [1467] = 1432, - [1468] = 1425, - [1469] = 373, - [1470] = 1008, - [1471] = 372, - [1472] = 371, - [1473] = 1432, - [1474] = 1010, - [1475] = 374, - [1476] = 369, - [1477] = 1432, - [1478] = 363, - [1479] = 1428, - [1480] = 1425, - [1481] = 368, - [1482] = 367, - [1483] = 366, - [1484] = 360, - [1485] = 1010, - [1486] = 1428, - [1487] = 373, - [1488] = 372, - [1489] = 371, - [1490] = 364, - [1491] = 365, - [1492] = 366, - [1493] = 902, - [1494] = 415, - [1495] = 1428, - [1496] = 358, - [1497] = 375, - [1498] = 367, - [1499] = 368, - [1500] = 369, - [1501] = 362, - [1502] = 374, - [1503] = 1428, - [1504] = 1425, - [1505] = 1432, - [1506] = 1425, - [1507] = 1425, - [1508] = 1018, - [1509] = 413, - [1510] = 406, - [1511] = 1428, - [1512] = 389, - [1513] = 1432, - [1514] = 1428, - [1515] = 1432, + [1467] = 370, + [1468] = 358, + [1469] = 376, + [1470] = 359, + [1471] = 365, + [1472] = 366, + [1473] = 361, + [1474] = 357, + [1475] = 360, + [1476] = 1431, + [1477] = 363, + [1478] = 1431, + [1479] = 374, + [1480] = 1426, + [1481] = 369, + [1482] = 372, + [1483] = 371, + [1484] = 367, + [1485] = 1431, + [1486] = 374, + [1487] = 1426, + [1488] = 1431, + [1489] = 1426, + [1490] = 1425, + [1491] = 896, + [1492] = 982, + [1493] = 898, + [1494] = 982, + [1495] = 1431, + [1496] = 409, + [1497] = 981, + [1498] = 1426, + [1499] = 371, + [1500] = 356, + [1501] = 365, + [1502] = 411, + [1503] = 413, + [1504] = 904, + [1505] = 1425, + [1506] = 367, + [1507] = 1431, + [1508] = 372, + [1509] = 908, + [1510] = 375, + [1511] = 369, + [1512] = 911, + [1513] = 408, + [1514] = 384, + [1515] = 914, [1516] = 1425, - [1517] = 379, - [1518] = 361, - [1519] = 1432, - [1520] = 1432, - [1521] = 1425, - [1522] = 1425, - [1523] = 415, - [1524] = 1432, - [1525] = 1432, - [1526] = 359, - [1527] = 361, - [1528] = 363, - [1529] = 364, - [1530] = 1425, - [1531] = 409, - [1532] = 1532, - [1533] = 365, - [1534] = 409, - [1535] = 413, - [1536] = 406, - [1537] = 1428, - [1538] = 415, - [1539] = 858, - [1540] = 379, - [1541] = 488, - [1542] = 495, - [1543] = 413, - [1544] = 883, - [1545] = 895, - [1546] = 422, - [1547] = 435, - [1548] = 483, - [1549] = 436, - [1550] = 1073, - [1551] = 383, - [1552] = 1079, - [1553] = 496, - [1554] = 435, - [1555] = 422, - [1556] = 427, - [1557] = 504, - [1558] = 415, - [1559] = 423, - [1560] = 831, - [1561] = 858, - [1562] = 479, - [1563] = 422, - [1564] = 487, - [1565] = 382, - [1566] = 423, - [1567] = 406, - [1568] = 427, - [1569] = 436, - [1570] = 435, - [1571] = 436, - [1572] = 490, - [1573] = 423, - [1574] = 480, - [1575] = 1575, - [1576] = 427, - [1577] = 831, - [1578] = 423, - [1579] = 503, - [1580] = 480, - [1581] = 484, - [1582] = 483, - [1583] = 494, - [1584] = 509, - [1585] = 495, - [1586] = 488, - [1587] = 491, - [1588] = 496, - [1589] = 504, - [1590] = 479, - [1591] = 1591, - [1592] = 389, - [1593] = 1137, - [1594] = 487, - [1595] = 1595, - [1596] = 490, - [1597] = 413, - [1598] = 406, - [1599] = 435, - [1600] = 422, - [1601] = 503, - [1602] = 1136, - [1603] = 1134, - [1604] = 1125, - [1605] = 409, - [1606] = 509, - [1607] = 436, - [1608] = 427, - [1609] = 491, - [1610] = 484, - [1611] = 494, - [1612] = 409, + [1517] = 1426, + [1518] = 1425, + [1519] = 1425, + [1520] = 398, + [1521] = 920, + [1522] = 393, + [1523] = 395, + [1524] = 1426, + [1525] = 409, + [1526] = 910, + [1527] = 1527, + [1528] = 411, + [1529] = 977, + [1530] = 413, + [1531] = 1426, + [1532] = 1425, + [1533] = 954, + [1534] = 408, + [1535] = 1431, + [1536] = 924, + [1537] = 398, + [1538] = 863, + [1539] = 493, + [1540] = 411, + [1541] = 883, + [1542] = 413, + [1543] = 1543, + [1544] = 430, + [1545] = 880, + [1546] = 438, + [1547] = 411, + [1548] = 408, + [1549] = 426, + [1550] = 425, + [1551] = 429, + [1552] = 438, + [1553] = 430, + [1554] = 425, + [1555] = 429, + [1556] = 426, + [1557] = 438, + [1558] = 430, + [1559] = 426, + [1560] = 1089, + [1561] = 1088, + [1562] = 438, + [1563] = 484, + [1564] = 430, + [1565] = 484, + [1566] = 426, + [1567] = 413, + [1568] = 1084, + [1569] = 1078, + [1570] = 1052, + [1571] = 1051, + [1572] = 494, + [1573] = 862, + [1574] = 485, + [1575] = 409, + [1576] = 863, + [1577] = 409, + [1578] = 493, + [1579] = 490, + [1580] = 491, + [1581] = 1581, + [1582] = 481, + [1583] = 487, + [1584] = 486, + [1585] = 482, + [1586] = 495, + [1587] = 488, + [1588] = 485, + [1589] = 489, + [1590] = 497, + [1591] = 494, + [1592] = 862, + [1593] = 490, + [1594] = 491, + [1595] = 481, + [1596] = 487, + [1597] = 486, + [1598] = 482, + [1599] = 398, + [1600] = 395, + [1601] = 495, + [1602] = 488, + [1603] = 425, + [1604] = 429, + [1605] = 429, + [1606] = 425, + [1607] = 408, + [1608] = 393, + [1609] = 1609, + [1610] = 489, + [1611] = 384, + [1612] = 497, [1613] = 1613, [1614] = 1614, [1615] = 1615, @@ -4124,5312 +4131,5312 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1617] = 1617, [1618] = 1618, [1619] = 1619, - [1620] = 423, - [1621] = 1613, - [1622] = 1617, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, [1623] = 1623, [1624] = 1624, - [1625] = 1625, - [1626] = 1626, + [1625] = 426, + [1626] = 1621, [1627] = 1627, - [1628] = 1628, + [1628] = 1619, [1629] = 1629, - [1630] = 1630, - [1631] = 1624, - [1632] = 1632, + [1630] = 1613, + [1631] = 1620, + [1632] = 1615, [1633] = 1633, - [1634] = 1625, + [1634] = 1634, [1635] = 1635, [1636] = 1636, - [1637] = 1613, + [1637] = 1637, [1638] = 1638, - [1639] = 1635, - [1640] = 1632, + [1639] = 1639, + [1640] = 1640, [1641] = 1641, - [1642] = 1642, - [1643] = 1626, - [1644] = 1630, - [1645] = 1645, - [1646] = 1628, - [1647] = 1647, - [1648] = 1627, - [1649] = 1626, - [1650] = 1625, - [1651] = 1624, - [1652] = 1652, - [1653] = 1618, - [1654] = 1615, - [1655] = 1616, - [1656] = 1617, - [1657] = 1618, - [1658] = 1632, - [1659] = 1613, - [1660] = 1613, - [1661] = 1627, - [1662] = 1619, - [1663] = 1633, - [1664] = 1664, - [1665] = 1630, - [1666] = 1623, - [1667] = 1628, - [1668] = 1614, - [1669] = 1629, - [1670] = 1670, - [1671] = 1638, - [1672] = 1670, - [1673] = 1632, - [1674] = 1630, - [1675] = 1642, - [1676] = 1613, - [1677] = 1647, - [1678] = 1678, - [1679] = 1632, - [1680] = 1678, - [1681] = 1645, - [1682] = 1633, - [1683] = 1647, - [1684] = 1645, - [1685] = 1633, - [1686] = 1619, - [1687] = 1635, - [1688] = 1647, - [1689] = 1678, - [1690] = 1633, - [1691] = 1615, - [1692] = 1645, - [1693] = 1642, - [1694] = 1613, - [1695] = 1664, - [1696] = 1635, - [1697] = 1632, - [1698] = 1619, - [1699] = 1635, - [1700] = 1619, - [1701] = 1632, - [1702] = 1633, - [1703] = 1630, - [1704] = 1628, - [1705] = 1627, - [1706] = 1626, - [1707] = 1623, - [1708] = 1614, - [1709] = 1625, - [1710] = 1624, - [1711] = 1630, - [1712] = 1647, - [1713] = 1664, - [1714] = 1652, - [1715] = 1629, - [1716] = 1670, - [1717] = 1615, - [1718] = 1616, - [1719] = 1623, - [1720] = 1638, - [1721] = 1617, - [1722] = 1618, - [1723] = 1633, - [1724] = 1664, - [1725] = 1618, - [1726] = 447, - [1727] = 422, - [1728] = 1613, - [1729] = 1618, - [1730] = 1614, - [1731] = 1614, - [1732] = 1732, - [1733] = 1647, - [1734] = 1629, - [1735] = 1635, - [1736] = 1670, - [1737] = 1638, - [1738] = 1664, - [1739] = 1623, - [1740] = 1614, - [1741] = 1629, - [1742] = 1628, - [1743] = 1627, - [1744] = 1626, - [1745] = 1625, - [1746] = 1617, - [1747] = 1670, - [1748] = 1638, - [1749] = 1616, - [1750] = 1664, - [1751] = 1623, - [1752] = 1624, - [1753] = 1652, - [1754] = 1615, - [1755] = 1616, - [1756] = 1617, - [1757] = 1629, - [1758] = 1618, - [1759] = 1619, - [1760] = 1615, - [1761] = 441, - [1762] = 1614, - [1763] = 1629, - [1764] = 1642, - [1765] = 1652, - [1766] = 444, - [1767] = 1670, - [1768] = 443, - [1769] = 1624, - [1770] = 1638, - [1771] = 1664, - [1772] = 1625, - [1773] = 1632, - [1774] = 1623, - [1775] = 1626, - [1776] = 456, - [1777] = 1642, - [1778] = 1614, - [1779] = 1670, - [1780] = 1629, - [1781] = 435, - [1782] = 1642, - [1783] = 1641, - [1784] = 1638, - [1785] = 1645, - [1786] = 1630, - [1787] = 1670, - [1788] = 1613, - [1789] = 1627, - [1790] = 1638, - [1791] = 1628, - [1792] = 1633, - [1793] = 1645, - [1794] = 1614, - [1795] = 1633, - [1796] = 1732, - [1797] = 1647, - [1798] = 1613, - [1799] = 1619, - [1800] = 1626, - [1801] = 1630, - [1802] = 1647, - [1803] = 1628, - [1804] = 1627, - [1805] = 1633, - [1806] = 1626, - [1807] = 1630, - [1808] = 1635, - [1809] = 1641, - [1810] = 1678, - [1811] = 1625, - [1812] = 1628, - [1813] = 1627, - [1814] = 1626, - [1815] = 1815, - [1816] = 1632, - [1817] = 1624, - [1818] = 1625, - [1819] = 1678, - [1820] = 1645, - [1821] = 1619, - [1822] = 1635, - [1823] = 1632, - [1824] = 1635, - [1825] = 1623, - [1826] = 1624, - [1827] = 1664, - [1828] = 1616, - [1829] = 1641, - [1830] = 1645, - [1831] = 1619, - [1832] = 1652, - [1833] = 1615, - [1834] = 1616, - [1835] = 1617, - [1836] = 1618, - [1837] = 1619, - [1838] = 1618, - [1839] = 1678, - [1840] = 1619, - [1841] = 1617, - [1842] = 1616, - [1843] = 1618, - [1844] = 1652, + [1642] = 1617, + [1643] = 1624, + [1644] = 1627, + [1645] = 1629, + [1646] = 1623, + [1647] = 1641, + [1648] = 1637, + [1649] = 1641, + [1650] = 425, + [1651] = 1651, + [1652] = 1637, + [1653] = 1651, + [1654] = 1613, + [1655] = 521, + [1656] = 1656, + [1657] = 1613, + [1658] = 1651, + [1659] = 1659, + [1660] = 1638, + [1661] = 1640, + [1662] = 1622, + [1663] = 1615, + [1664] = 1620, + [1665] = 1656, + [1666] = 1619, + [1667] = 1629, + [1668] = 1621, + [1669] = 1623, + [1670] = 1622, + [1671] = 1659, + [1672] = 1615, + [1673] = 1613, + [1674] = 1620, + [1675] = 1619, + [1676] = 1621, + [1677] = 1623, + [1678] = 1627, + [1679] = 1622, + [1680] = 1615, + [1681] = 1620, + [1682] = 1619, + [1683] = 1624, + [1684] = 1621, + [1685] = 1623, + [1686] = 1651, + [1687] = 1622, + [1688] = 1615, + [1689] = 1641, + [1690] = 1620, + [1691] = 1619, + [1692] = 1621, + [1693] = 1635, + [1694] = 1623, + [1695] = 1656, + [1696] = 1622, + [1697] = 1615, + [1698] = 1620, + [1699] = 1619, + [1700] = 1621, + [1701] = 1637, + [1702] = 521, + [1703] = 1638, + [1704] = 1659, + [1705] = 1639, + [1706] = 1617, + [1707] = 1616, + [1708] = 1633, + [1709] = 1709, + [1710] = 1614, + [1711] = 1639, + [1712] = 1656, + [1713] = 521, + [1714] = 1656, + [1715] = 1715, + [1716] = 1623, + [1717] = 1622, + [1718] = 1622, + [1719] = 1719, + [1720] = 1623, + [1721] = 1615, + [1722] = 1620, + [1723] = 1619, + [1724] = 1621, + [1725] = 1623, + [1726] = 1622, + [1727] = 1727, + [1728] = 1728, + [1729] = 1621, + [1730] = 425, + [1731] = 1731, + [1732] = 1615, + [1733] = 1619, + [1734] = 1620, + [1735] = 1613, + [1736] = 429, + [1737] = 1620, + [1738] = 1627, + [1739] = 1739, + [1740] = 1615, + [1741] = 1619, + [1742] = 1641, + [1743] = 1635, + [1744] = 425, + [1745] = 1613, + [1746] = 1651, + [1747] = 1641, + [1748] = 1637, + [1749] = 1636, + [1750] = 1637, + [1751] = 1618, + [1752] = 1659, + [1753] = 1629, + [1754] = 1621, + [1755] = 1629, + [1756] = 1627, + [1757] = 1624, + [1758] = 1617, + [1759] = 1639, + [1760] = 1638, + [1761] = 1636, + [1762] = 1635, + [1763] = 1615, + [1764] = 1635, + [1765] = 445, + [1766] = 1766, + [1767] = 1659, + [1768] = 1768, + [1769] = 1635, + [1770] = 1615, + [1771] = 1771, + [1772] = 430, + [1773] = 1629, + [1774] = 1620, + [1775] = 1618, + [1776] = 1776, + [1777] = 1623, + [1778] = 1638, + [1779] = 1627, + [1780] = 1624, + [1781] = 1622, + [1782] = 384, + [1783] = 1640, + [1784] = 429, + [1785] = 1624, + [1786] = 1786, + [1787] = 393, + [1788] = 395, + [1789] = 1617, + [1790] = 1639, + [1791] = 1635, + [1792] = 1659, + [1793] = 1640, + [1794] = 1640, + [1795] = 1636, + [1796] = 1656, + [1797] = 1635, + [1798] = 1635, + [1799] = 1634, + [1800] = 452, + [1801] = 1634, + [1802] = 398, + [1803] = 1613, + [1804] = 1640, + [1805] = 1635, + [1806] = 1619, + [1807] = 1639, + [1808] = 1622, + [1809] = 1636, + [1810] = 1656, + [1811] = 1635, + [1812] = 1616, + [1813] = 1623, + [1814] = 1633, + [1815] = 1613, + [1816] = 1651, + [1817] = 1641, + [1818] = 1618, + [1819] = 1709, + [1820] = 1637, + [1821] = 1629, + [1822] = 1627, + [1823] = 1624, + [1824] = 1614, + [1825] = 1617, + [1826] = 1639, + [1827] = 1715, + [1828] = 1622, + [1829] = 442, + [1830] = 1636, + [1831] = 1651, + [1832] = 1719, + [1833] = 1623, + [1834] = 1621, + [1835] = 1619, + [1836] = 1620, + [1837] = 1727, + [1838] = 1615, + [1839] = 1622, + [1840] = 1623, + [1841] = 1621, + [1842] = 1728, + [1843] = 1619, + [1844] = 1620, [1845] = 1615, - [1846] = 1617, - [1847] = 1616, - [1848] = 1615, - [1849] = 1652, - [1850] = 1624, - [1851] = 1642, - [1852] = 1652, - [1853] = 1641, - [1854] = 436, - [1855] = 1625, - [1856] = 1615, - [1857] = 1670, - [1858] = 1627, - [1859] = 1628, - [1860] = 1624, - [1861] = 1625, - [1862] = 1626, - [1863] = 1627, - [1864] = 1628, - [1865] = 1617, - [1866] = 1616, - [1867] = 1678, - [1868] = 1630, - [1869] = 1628, - [1870] = 1632, - [1871] = 1815, - [1872] = 1645, + [1846] = 1622, + [1847] = 1847, + [1848] = 1623, + [1849] = 1621, + [1850] = 1621, + [1851] = 1731, + [1852] = 1619, + [1853] = 1620, + [1854] = 1615, + [1855] = 1616, + [1856] = 1633, + [1857] = 438, + [1858] = 1858, + [1859] = 1635, + [1860] = 1651, + [1861] = 1656, + [1862] = 1709, + [1863] = 1614, + [1864] = 1715, + [1865] = 1719, + [1866] = 1727, + [1867] = 1728, + [1868] = 1731, + [1869] = 1616, + [1870] = 1870, + [1871] = 1633, + [1872] = 1709, [1873] = 1615, - [1874] = 1628, - [1875] = 1616, - [1876] = 1652, - [1877] = 1645, - [1878] = 427, - [1879] = 1647, - [1880] = 1645, - [1881] = 1633, - [1882] = 1647, - [1883] = 1624, - [1884] = 1617, - [1885] = 1625, - [1886] = 435, - [1887] = 1627, - [1888] = 1626, - [1889] = 1627, - [1890] = 1628, - [1891] = 1633, - [1892] = 1619, - [1893] = 1630, - [1894] = 422, - [1895] = 1626, - [1896] = 1642, - [1897] = 1630, - [1898] = 1632, - [1899] = 1635, - [1900] = 1617, - [1901] = 1613, - [1902] = 1619, - [1903] = 1630, - [1904] = 1632, - [1905] = 1645, - [1906] = 1906, - [1907] = 1678, - [1908] = 1633, - [1909] = 1641, - [1910] = 427, - [1911] = 1619, - [1912] = 1625, - [1913] = 1635, - [1914] = 1647, - [1915] = 1624, - [1916] = 1642, - [1917] = 1638, - [1918] = 1641, - [1919] = 1678, - [1920] = 1645, - [1921] = 1618, - [1922] = 1635, - [1923] = 1664, - [1924] = 1638, - [1925] = 1670, - [1926] = 1630, - [1927] = 1629, - [1928] = 1614, - [1929] = 1633, - [1930] = 1623, - [1931] = 1647, - [1932] = 1623, - [1933] = 1664, - [1934] = 1638, - [1935] = 1670, - [1936] = 1629, - [1937] = 1678, - [1938] = 1614, + [1874] = 1614, + [1875] = 1715, + [1876] = 1619, + [1877] = 1719, + [1878] = 1620, + [1879] = 1620, + [1880] = 1727, + [1881] = 1728, + [1882] = 1731, + [1883] = 1616, + [1884] = 1633, + [1885] = 1709, + [1886] = 1619, + [1887] = 1614, + [1888] = 1715, + [1889] = 1727, + [1890] = 1731, + [1891] = 1728, + [1892] = 1641, + [1893] = 1731, + [1894] = 1709, + [1895] = 1614, + [1896] = 1727, + [1897] = 1659, + [1898] = 1728, + [1899] = 1731, + [1900] = 1709, + [1901] = 1614, + [1902] = 1621, + [1903] = 1727, + [1904] = 1728, + [1905] = 1731, + [1906] = 1709, + [1907] = 1614, + [1908] = 1727, + [1909] = 1728, + [1910] = 1731, + [1911] = 1709, + [1912] = 1614, + [1913] = 430, + [1914] = 1638, + [1915] = 1915, + [1916] = 446, + [1917] = 1727, + [1918] = 1731, + [1919] = 1709, + [1920] = 442, + [1921] = 1614, + [1922] = 1727, + [1923] = 1621, + [1924] = 1621, + [1925] = 1731, + [1926] = 1709, + [1927] = 1617, + [1928] = 1727, + [1929] = 445, + [1930] = 1731, + [1931] = 1709, + [1932] = 1622, + [1933] = 1727, + [1934] = 1731, + [1935] = 1709, + [1936] = 1727, + [1937] = 1618, + [1938] = 1731, [1939] = 1623, - [1940] = 1614, - [1941] = 1664, - [1942] = 1633, - [1943] = 1638, - [1944] = 1670, - [1945] = 1629, - [1946] = 1946, - [1947] = 1614, - [1948] = 1617, - [1949] = 1623, - [1950] = 1664, - [1951] = 1638, - [1952] = 1670, - [1953] = 1629, - [1954] = 1614, - [1955] = 1623, - [1956] = 1664, + [1940] = 1640, + [1941] = 1709, + [1942] = 1623, + [1943] = 1727, + [1944] = 1731, + [1945] = 452, + [1946] = 441, + [1947] = 1656, + [1948] = 1709, + [1949] = 1621, + [1950] = 1619, + [1951] = 1620, + [1952] = 1727, + [1953] = 1731, + [1954] = 1709, + [1955] = 1727, + [1956] = 521, [1957] = 1638, - [1958] = 1670, - [1959] = 1629, - [1960] = 1664, - [1961] = 1616, - [1962] = 1629, - [1963] = 1614, - [1964] = 1623, - [1965] = 1664, - [1966] = 1664, + [1958] = 1615, + [1959] = 1622, + [1960] = 1623, + [1961] = 1659, + [1962] = 1619, + [1963] = 1659, + [1964] = 863, + [1965] = 862, + [1966] = 1620, [1967] = 1615, - [1968] = 1617, - [1969] = 1638, - [1970] = 1623, - [1971] = 1647, - [1972] = 1670, - [1973] = 1629, - [1974] = 1629, - [1975] = 1645, - [1976] = 1614, - [1977] = 1623, - [1978] = 1664, + [1968] = 1622, + [1969] = 1623, + [1970] = 1621, + [1971] = 1619, + [1972] = 1731, + [1973] = 1614, + [1974] = 1709, + [1975] = 1634, + [1976] = 1620, + [1977] = 1622, + [1978] = 1615, [1979] = 1638, - [1980] = 1664, - [1981] = 1635, - [1982] = 1623, - [1983] = 1614, - [1984] = 1614, - [1985] = 423, - [1986] = 1632, - [1987] = 1629, - [1988] = 1630, - [1989] = 1633, - [1990] = 1670, - [1991] = 1647, - [1992] = 1628, - [1993] = 1627, - [1994] = 1626, - [1995] = 1625, - [1996] = 1624, - [1997] = 1613, - [1998] = 1629, - [1999] = 1652, - [2000] = 1615, - [2001] = 1616, - [2002] = 1617, - [2003] = 1618, - [2004] = 1619, - [2005] = 1613, - [2006] = 1638, - [2007] = 1664, - [2008] = 1678, - [2009] = 1645, - [2010] = 1633, - [2011] = 1623, - [2012] = 1642, - [2013] = 2013, - [2014] = 1670, - [2015] = 1652, - [2016] = 1624, - [2017] = 1652, - [2018] = 1614, - [2019] = 1647, - [2020] = 1613, - [2021] = 1619, - [2022] = 1618, - [2023] = 2023, - [2024] = 1625, - [2025] = 1641, - [2026] = 1638, - [2027] = 1626, - [2028] = 1647, - [2029] = 1670, - [2030] = 1638, - [2031] = 1678, - [2032] = 1645, - [2033] = 1678, - [2034] = 1627, - [2035] = 1678, - [2036] = 423, - [2037] = 1664, - [2038] = 1623, - [2039] = 1626, - [2040] = 1627, - [2041] = 858, - [2042] = 831, - [2043] = 1638, - [2044] = 1614, - [2045] = 1629, - [2046] = 1628, - [2047] = 1615, - [2048] = 1670, - [2049] = 447, - [2050] = 1638, - [2051] = 1664, - [2052] = 1815, - [2053] = 1623, - [2054] = 1652, - [2055] = 2055, - [2056] = 1618, - [2057] = 1617, - [2058] = 441, - [2059] = 1635, - [2060] = 1632, - [2061] = 1632, - [2062] = 1616, - [2063] = 1619, - [2064] = 1652, - [2065] = 444, - [2066] = 1638, - [2067] = 1618, - [2068] = 373, - [2069] = 1619, - [2070] = 1630, - [2071] = 427, - [2072] = 443, - [2073] = 2073, - [2074] = 2023, - [2075] = 1615, - [2076] = 436, - [2077] = 1670, - [2078] = 1629, - [2079] = 456, - [2080] = 1647, - [2081] = 1732, - [2082] = 389, - [2083] = 436, - [2084] = 1613, - [2085] = 1670, - [2086] = 1638, - [2087] = 1664, - [2088] = 1623, - [2089] = 371, - [2090] = 372, - [2091] = 1623, - [2092] = 1614, - [2093] = 1629, - [2094] = 1645, - [2095] = 1670, - [2096] = 1638, - [2097] = 1629, - [2098] = 1628, - [2099] = 1627, - [2100] = 1626, - [2101] = 1625, - [2102] = 1633, - [2103] = 1652, - [2104] = 1615, - [2105] = 1614, - [2106] = 2106, - [2107] = 2013, - [2108] = 1624, - [2109] = 1652, - [2110] = 1615, - [2111] = 1616, - [2112] = 1617, + [1980] = 1638, + [1981] = 1636, + [1982] = 1639, + [1983] = 1617, + [1984] = 1624, + [1985] = 1627, + [1986] = 1629, + [1987] = 1637, + [1988] = 426, + [1989] = 1641, + [1990] = 1651, + [1991] = 1613, + [1992] = 1656, + [1993] = 1993, + [1994] = 441, + [1995] = 1659, + [1996] = 1638, + [1997] = 426, + [1998] = 1715, + [1999] = 1999, + [2000] = 1613, + [2001] = 1651, + [2002] = 1623, + [2003] = 1613, + [2004] = 1622, + [2005] = 1641, + [2006] = 1637, + [2007] = 1651, + [2008] = 430, + [2009] = 1618, + [2010] = 438, + [2011] = 1728, + [2012] = 1634, + [2013] = 1656, + [2014] = 1635, + [2015] = 1638, + [2016] = 371, + [2017] = 1637, + [2018] = 1629, + [2019] = 1636, + [2020] = 1627, + [2021] = 1624, + [2022] = 1617, + [2023] = 1639, + [2024] = 1636, + [2025] = 1629, + [2026] = 1634, + [2027] = 1639, + [2028] = 1627, + [2029] = 1636, + [2030] = 1639, + [2031] = 1617, + [2032] = 1624, + [2033] = 1624, + [2034] = 1617, + [2035] = 1627, + [2036] = 1629, + [2037] = 1637, + [2038] = 1641, + [2039] = 1624, + [2040] = 1651, + [2041] = 1613, + [2042] = 1656, + [2043] = 1627, + [2044] = 1617, + [2045] = 1639, + [2046] = 1622, + [2047] = 1659, + [2048] = 1638, + [2049] = 1640, + [2050] = 1634, + [2051] = 1636, + [2052] = 1638, + [2053] = 1635, + [2054] = 1629, + [2055] = 1613, + [2056] = 1637, + [2057] = 1641, + [2058] = 2058, + [2059] = 1614, + [2060] = 1622, + [2061] = 1640, + [2062] = 1638, + [2063] = 1659, + [2064] = 1651, + [2065] = 429, + [2066] = 1641, + [2067] = 1637, + [2068] = 1651, + [2069] = 1635, + [2070] = 1613, + [2071] = 1656, + [2072] = 1659, + [2073] = 1656, + [2074] = 1629, + [2075] = 372, + [2076] = 1615, + [2077] = 1620, + [2078] = 1627, + [2079] = 1624, + [2080] = 1617, + [2081] = 1639, + [2082] = 1636, + [2083] = 1635, + [2084] = 1638, + [2085] = 384, + [2086] = 1621, + [2087] = 1727, + [2088] = 1619, + [2089] = 374, + [2090] = 1621, + [2091] = 1614, + [2092] = 365, + [2093] = 356, + [2094] = 1641, + [2095] = 1634, + [2096] = 1619, + [2097] = 1614, + [2098] = 1614, + [2099] = 1709, + [2100] = 1614, + [2101] = 1613, + [2102] = 1651, + [2103] = 1641, + [2104] = 1637, + [2105] = 1727, + [2106] = 1731, + [2107] = 1634, + [2108] = 1614, + [2109] = 1634, + [2110] = 1709, + [2111] = 1629, + [2112] = 1627, [2113] = 1624, - [2114] = 1618, - [2115] = 1623, - [2116] = 1625, - [2117] = 1630, - [2118] = 1624, - [2119] = 1633, - [2120] = 1664, - [2121] = 1626, - [2122] = 1618, - [2123] = 1641, - [2124] = 1678, - [2125] = 1633, - [2126] = 1645, - [2127] = 1732, - [2128] = 2013, - [2129] = 1632, - [2130] = 382, - [2131] = 1619, - [2132] = 1633, - [2133] = 2133, - [2134] = 1635, - [2135] = 2135, - [2136] = 1635, - [2137] = 2073, - [2138] = 1670, - [2139] = 1613, - [2140] = 1642, - [2141] = 1647, - [2142] = 1645, - [2143] = 1630, - [2144] = 360, - [2145] = 1678, - [2146] = 1628, - [2147] = 1647, - [2148] = 1652, - [2149] = 1732, - [2150] = 1645, - [2151] = 1617, - [2152] = 1613, - [2153] = 1641, - [2154] = 1628, - [2155] = 1619, - [2156] = 1627, - [2157] = 2157, - [2158] = 389, - [2159] = 1647, - [2160] = 382, - [2161] = 383, - [2162] = 1618, - [2163] = 1641, - [2164] = 1616, - [2165] = 374, - [2166] = 369, - [2167] = 368, - [2168] = 367, - [2169] = 379, - [2170] = 1614, - [2171] = 366, - [2172] = 365, - [2173] = 364, - [2174] = 1617, - [2175] = 363, - [2176] = 361, - [2177] = 1618, - [2178] = 1629, - [2179] = 357, - [2180] = 1664, - [2181] = 383, - [2182] = 1678, - [2183] = 2183, - [2184] = 1616, - [2185] = 1615, - [2186] = 1627, - [2187] = 1652, - [2188] = 1627, - [2189] = 1624, - [2190] = 1613, - [2191] = 1678, - [2192] = 1625, - [2193] = 1626, - [2194] = 1626, - [2195] = 1627, - [2196] = 1628, - [2197] = 1633, - [2198] = 1630, - [2199] = 1645, - [2200] = 1632, - [2201] = 1635, - [2202] = 359, - [2203] = 2013, - [2204] = 1625, - [2205] = 1614, - [2206] = 2023, - [2207] = 1613, - [2208] = 2208, - [2209] = 1670, - [2210] = 2210, - [2211] = 1624, - [2212] = 2212, - [2213] = 1626, - [2214] = 1628, - [2215] = 1678, + [2114] = 1617, + [2115] = 1639, + [2116] = 1614, + [2117] = 1636, + [2118] = 1727, + [2119] = 1634, + [2120] = 1620, + [2121] = 1636, + [2122] = 1731, + [2123] = 1635, + [2124] = 1636, + [2125] = 1639, + [2126] = 1617, + [2127] = 1709, + [2128] = 1624, + [2129] = 1627, + [2130] = 1618, + [2131] = 1615, + [2132] = 1614, + [2133] = 393, + [2134] = 1639, + [2135] = 1623, + [2136] = 1727, + [2137] = 1731, + [2138] = 1629, + [2139] = 1617, + [2140] = 1709, + [2141] = 1623, + [2142] = 1637, + [2143] = 1641, + [2144] = 1624, + [2145] = 1618, + [2146] = 1651, + [2147] = 1614, + [2148] = 1727, + [2149] = 1656, + [2150] = 1627, + [2151] = 1731, + [2152] = 1709, + [2153] = 1659, + [2154] = 1614, + [2155] = 1634, + [2156] = 1727, + [2157] = 1731, + [2158] = 1634, + [2159] = 1638, + [2160] = 1614, + [2161] = 1709, + [2162] = 1727, + [2163] = 1629, + [2164] = 1731, + [2165] = 1709, + [2166] = 1727, + [2167] = 1731, + [2168] = 370, + [2169] = 358, + [2170] = 376, + [2171] = 359, + [2172] = 1709, + [2173] = 1637, + [2174] = 366, + [2175] = 361, + [2176] = 357, + [2177] = 1727, + [2178] = 360, + [2179] = 362, + [2180] = 1731, + [2181] = 1709, + [2182] = 363, + [2183] = 1641, + [2184] = 395, + [2185] = 1727, + [2186] = 1731, + [2187] = 1709, + [2188] = 1651, + [2189] = 1613, + [2190] = 1656, + [2191] = 1727, + [2192] = 1731, + [2193] = 1614, + [2194] = 1627, + [2195] = 438, + [2196] = 1659, + [2197] = 1659, + [2198] = 1638, + [2199] = 1622, + [2200] = 1623, + [2201] = 1637, + [2202] = 1629, + [2203] = 1656, + [2204] = 1621, + [2205] = 1624, + [2206] = 1636, + [2207] = 1617, + [2208] = 1640, + [2209] = 1622, + [2210] = 1639, + [2211] = 1617, + [2212] = 1624, + [2213] = 1627, + [2214] = 1629, + [2215] = 1639, [2216] = 1613, - [2217] = 1623, - [2218] = 1664, - [2219] = 1652, - [2220] = 1645, - [2221] = 1625, - [2222] = 1678, - [2223] = 435, - [2224] = 1633, - [2225] = 1815, - [2226] = 1645, - [2227] = 1624, - [2228] = 1633, - [2229] = 1618, - [2230] = 2230, - [2231] = 1617, - [2232] = 1616, - [2233] = 1615, - [2234] = 1628, - [2235] = 1624, - [2236] = 1625, - [2237] = 1638, - [2238] = 1626, - [2239] = 1619, - [2240] = 1627, - [2241] = 379, - [2242] = 1623, - [2243] = 2073, - [2244] = 1647, - [2245] = 1652, - [2246] = 1629, - [2247] = 1630, - [2248] = 1616, - [2249] = 1638, - [2250] = 1617, - [2251] = 1618, - [2252] = 1632, - [2253] = 375, - [2254] = 1664, - [2255] = 1619, - [2256] = 1613, - [2257] = 1619, - [2258] = 1635, - [2259] = 1670, - [2260] = 1647, - [2261] = 1630, - [2262] = 1732, - [2263] = 1670, - [2264] = 1625, - [2265] = 1633, - [2266] = 1618, - [2267] = 1629, - [2268] = 1617, - [2269] = 1633, - [2270] = 1614, - [2271] = 1616, - [2272] = 1623, - [2273] = 1615, - [2274] = 1664, - [2275] = 2013, - [2276] = 1652, - [2277] = 2023, - [2278] = 1624, - [2279] = 1623, - [2280] = 2073, - [2281] = 1635, - [2282] = 1616, - [2283] = 1632, - [2284] = 1625, - [2285] = 1635, - [2286] = 1626, - [2287] = 1627, - [2288] = 1628, - [2289] = 1635, - [2290] = 1614, - [2291] = 1642, - [2292] = 1641, - [2293] = 1613, - [2294] = 1613, - [2295] = 1613, - [2296] = 1635, - [2297] = 1619, - [2298] = 1645, - [2299] = 1678, - [2300] = 1618, - [2301] = 1617, - [2302] = 1618, - [2303] = 1815, - [2304] = 2304, - [2305] = 1617, - [2306] = 1616, - [2307] = 2307, - [2308] = 1616, - [2309] = 1615, - [2310] = 1815, - [2311] = 1615, - [2312] = 1652, - [2313] = 1652, - [2314] = 1624, - [2315] = 1624, - [2316] = 1670, - [2317] = 1625, - [2318] = 1625, - [2319] = 1652, - [2320] = 1626, - [2321] = 1635, - [2322] = 1627, - [2323] = 1628, - [2324] = 2023, - [2325] = 1678, - [2326] = 422, - [2327] = 1626, - [2328] = 1627, - [2329] = 2073, - [2330] = 1632, + [2217] = 1634, + [2218] = 1651, + [2219] = 1641, + [2220] = 1637, + [2221] = 1634, + [2222] = 1629, + [2223] = 1627, + [2224] = 1624, + [2225] = 1635, + [2226] = 1636, + [2227] = 1639, + [2228] = 1617, + [2229] = 1617, + [2230] = 1639, + [2231] = 1636, + [2232] = 1635, + [2233] = 1640, + [2234] = 1634, + [2235] = 1634, + [2236] = 1618, + [2237] = 1624, + [2238] = 1627, + [2239] = 1638, + [2240] = 1659, + [2241] = 1629, + [2242] = 1636, + [2243] = 1656, + [2244] = 398, + [2245] = 1637, + [2246] = 1641, + [2247] = 1651, + [2248] = 1613, + [2249] = 1613, + [2250] = 1651, + [2251] = 1641, + [2252] = 1637, + [2253] = 1629, + [2254] = 1627, + [2255] = 1656, + [2256] = 1624, + [2257] = 1617, + [2258] = 1659, + [2259] = 1639, + [2260] = 1636, + [2261] = 1635, + [2262] = 1634, + [2263] = 1634, + [2264] = 1659, + [2265] = 1637, + [2266] = 1641, + [2267] = 1651, + [2268] = 1634, + [2269] = 1638, + [2270] = 1719, + [2271] = 1636, + [2272] = 1656, + [2273] = 2273, + [2274] = 1613, + [2275] = 1635, + [2276] = 1636, + [2277] = 2277, + [2278] = 2278, + [2279] = 1639, + [2280] = 1617, + [2281] = 1624, + [2282] = 1627, + [2283] = 1629, + [2284] = 1637, + [2285] = 1641, + [2286] = 1651, + [2287] = 1619, + [2288] = 1621, + [2289] = 1619, + [2290] = 1613, + [2291] = 1656, + [2292] = 2292, + [2293] = 1634, + [2294] = 1635, + [2295] = 1618, + [2296] = 1659, + [2297] = 1636, + [2298] = 1638, + [2299] = 1639, + [2300] = 1617, + [2301] = 1656, + [2302] = 1624, + [2303] = 1627, + [2304] = 1629, + [2305] = 1618, + [2306] = 1638, + [2307] = 1634, + [2308] = 1637, + [2309] = 1641, + [2310] = 1638, + [2311] = 1651, + [2312] = 1620, + [2313] = 1615, + [2314] = 1622, + [2315] = 1613, + [2316] = 1623, + [2317] = 1659, + [2318] = 1656, + [2319] = 1621, + [2320] = 1659, + [2321] = 1659, + [2322] = 1619, + [2323] = 1656, + [2324] = 1618, + [2325] = 1638, + [2326] = 1635, + [2327] = 1620, + [2328] = 1634, + [2329] = 1640, + [2330] = 1623, [2331] = 1615, - [2332] = 1645, - [2333] = 1616, - [2334] = 1632, - [2335] = 1732, - [2336] = 1628, - [2337] = 2337, - [2338] = 1732, - [2339] = 1630, - [2340] = 1630, - [2341] = 1647, - [2342] = 1647, - [2343] = 1647, - [2344] = 1647, - [2345] = 1632, - [2346] = 1678, - [2347] = 1645, - [2348] = 1632, - [2349] = 1635, - [2350] = 1647, - [2351] = 1732, - [2352] = 1633, - [2353] = 2013, - [2354] = 1614, - [2355] = 1645, - [2356] = 1629, - [2357] = 1678, - [2358] = 1638, - [2359] = 1629, - [2360] = 2360, - [2361] = 1615, - [2362] = 1630, - [2363] = 2023, - [2364] = 370, - [2365] = 422, - [2366] = 362, - [2367] = 357, - [2368] = 436, - [2369] = 1137, - [2370] = 423, - [2371] = 1136, - [2372] = 1134, - [2373] = 1125, - [2374] = 427, - [2375] = 363, - [2376] = 364, - [2377] = 415, - [2378] = 365, - [2379] = 366, - [2380] = 367, - [2381] = 368, - [2382] = 374, - [2383] = 370, - [2384] = 360, - [2385] = 427, - [2386] = 369, - [2387] = 413, - [2388] = 409, - [2389] = 406, - [2390] = 435, - [2391] = 456, - [2392] = 406, - [2393] = 443, - [2394] = 444, - [2395] = 441, - [2396] = 422, - [2397] = 1073, - [2398] = 447, - [2399] = 1079, - [2400] = 415, - [2401] = 413, - [2402] = 406, - [2403] = 409, - [2404] = 413, - [2405] = 435, - [2406] = 361, - [2407] = 409, - [2408] = 456, - [2409] = 423, - [2410] = 358, - [2411] = 443, - [2412] = 415, - [2413] = 447, - [2414] = 371, - [2415] = 375, - [2416] = 444, - [2417] = 372, - [2418] = 373, - [2419] = 858, - [2420] = 831, - [2421] = 858, - [2422] = 831, - [2423] = 359, - [2424] = 436, - [2425] = 441, - [2426] = 443, - [2427] = 494, - [2428] = 480, - [2429] = 487, - [2430] = 444, - [2431] = 490, - [2432] = 456, - [2433] = 441, - [2434] = 441, - [2435] = 509, - [2436] = 370, - [2437] = 504, - [2438] = 495, - [2439] = 479, - [2440] = 504, - [2441] = 496, - [2442] = 491, - [2443] = 456, - [2444] = 488, - [2445] = 491, - [2446] = 495, - [2447] = 456, - [2448] = 483, - [2449] = 375, - [2450] = 456, - [2451] = 487, - [2452] = 490, - [2453] = 443, - [2454] = 509, - [2455] = 447, - [2456] = 503, - [2457] = 488, - [2458] = 480, - [2459] = 496, - [2460] = 479, - [2461] = 484, - [2462] = 503, - [2463] = 447, - [2464] = 483, - [2465] = 444, - [2466] = 360, - [2467] = 484, - [2468] = 359, - [2469] = 441, - [2470] = 441, - [2471] = 443, - [2472] = 357, - [2473] = 361, - [2474] = 363, - [2475] = 364, - [2476] = 365, - [2477] = 366, - [2478] = 367, - [2479] = 368, - [2480] = 369, - [2481] = 374, - [2482] = 447, - [2483] = 447, - [2484] = 444, - [2485] = 373, - [2486] = 372, - [2487] = 371, - [2488] = 447, - [2489] = 444, - [2490] = 443, - [2491] = 443, - [2492] = 441, + [2332] = 1620, + [2333] = 1638, + [2334] = 1622, + [2335] = 1659, + [2336] = 1623, + [2337] = 1621, + [2338] = 1615, + [2339] = 1613, + [2340] = 1620, + [2341] = 1619, + [2342] = 1651, + [2343] = 1621, + [2344] = 1623, + [2345] = 1641, + [2346] = 1637, + [2347] = 1619, + [2348] = 1622, + [2349] = 446, + [2350] = 1620, + [2351] = 1629, + [2352] = 1627, + [2353] = 1624, + [2354] = 1617, + [2355] = 1639, + [2356] = 1636, + [2357] = 1635, + [2358] = 1615, + [2359] = 1615, + [2360] = 1622, + [2361] = 1634, + [2362] = 1623, + [2363] = 1621, + [2364] = 1619, + [2365] = 367, + [2366] = 1620, + [2367] = 369, + [2368] = 1615, + [2369] = 411, + [2370] = 429, + [2371] = 425, + [2372] = 438, + [2373] = 430, + [2374] = 426, + [2375] = 1084, + [2376] = 1078, + [2377] = 1052, + [2378] = 1051, + [2379] = 408, + [2380] = 408, + [2381] = 413, + [2382] = 411, + [2383] = 409, + [2384] = 413, + [2385] = 411, + [2386] = 373, + [2387] = 365, + [2388] = 426, + [2389] = 356, + [2390] = 371, + [2391] = 375, + [2392] = 409, + [2393] = 1089, + [2394] = 1088, + [2395] = 446, + [2396] = 442, + [2397] = 445, + [2398] = 452, + [2399] = 441, + [2400] = 863, + [2401] = 862, + [2402] = 863, + [2403] = 862, + [2404] = 446, + [2405] = 442, + [2406] = 367, + [2407] = 425, + [2408] = 445, + [2409] = 452, + [2410] = 409, + [2411] = 370, + [2412] = 358, + [2413] = 376, + [2414] = 363, + [2415] = 441, + [2416] = 429, + [2417] = 438, + [2418] = 359, + [2419] = 366, + [2420] = 372, + [2421] = 408, + [2422] = 361, + [2423] = 369, + [2424] = 374, + [2425] = 413, + [2426] = 357, + [2427] = 360, + [2428] = 430, + [2429] = 362, + [2430] = 445, + [2431] = 445, + [2432] = 441, + [2433] = 497, + [2434] = 489, + [2435] = 452, + [2436] = 441, + [2437] = 452, + [2438] = 485, + [2439] = 494, + [2440] = 445, + [2441] = 484, + [2442] = 488, + [2443] = 365, + [2444] = 495, + [2445] = 446, + [2446] = 356, + [2447] = 371, + [2448] = 442, + [2449] = 482, + [2450] = 452, + [2451] = 486, + [2452] = 487, + [2453] = 442, + [2454] = 446, + [2455] = 452, + [2456] = 441, + [2457] = 481, + [2458] = 445, + [2459] = 441, + [2460] = 491, + [2461] = 490, + [2462] = 493, + [2463] = 452, + [2464] = 494, + [2465] = 485, + [2466] = 441, + [2467] = 373, + [2468] = 484, + [2469] = 445, + [2470] = 442, + [2471] = 369, + [2472] = 446, + [2473] = 493, + [2474] = 490, + [2475] = 370, + [2476] = 491, + [2477] = 446, + [2478] = 358, + [2479] = 481, + [2480] = 376, + [2481] = 487, + [2482] = 367, + [2483] = 359, + [2484] = 366, + [2485] = 361, + [2486] = 446, + [2487] = 374, + [2488] = 357, + [2489] = 360, + [2490] = 486, + [2491] = 372, + [2492] = 442, [2493] = 362, - [2494] = 444, - [2495] = 456, - [2496] = 494, - [2497] = 365, - [2498] = 503, - [2499] = 484, - [2500] = 370, - [2501] = 483, - [2502] = 484, - [2503] = 480, - [2504] = 480, - [2505] = 379, - [2506] = 483, - [2507] = 383, - [2508] = 382, - [2509] = 389, - [2510] = 373, - [2511] = 375, - [2512] = 487, - [2513] = 379, - [2514] = 360, - [2515] = 383, - [2516] = 372, - [2517] = 371, - [2518] = 382, - [2519] = 362, - [2520] = 389, - [2521] = 490, - [2522] = 479, - [2523] = 504, - [2524] = 496, - [2525] = 491, - [2526] = 488, - [2527] = 495, - [2528] = 509, - [2529] = 509, - [2530] = 495, - [2531] = 488, - [2532] = 389, - [2533] = 382, - [2534] = 383, - [2535] = 494, - [2536] = 379, - [2537] = 359, - [2538] = 491, + [2494] = 442, + [2495] = 497, + [2496] = 489, + [2497] = 482, + [2498] = 363, + [2499] = 495, + [2500] = 488, + [2501] = 370, + [2502] = 487, + [2503] = 481, + [2504] = 367, + [2505] = 486, + [2506] = 359, + [2507] = 398, + [2508] = 484, + [2509] = 482, + [2510] = 495, + [2511] = 488, + [2512] = 491, + [2513] = 485, + [2514] = 497, + [2515] = 357, + [2516] = 398, + [2517] = 395, + [2518] = 393, + [2519] = 361, + [2520] = 372, + [2521] = 521, + [2522] = 366, + [2523] = 358, + [2524] = 376, + [2525] = 384, + [2526] = 484, + [2527] = 494, + [2528] = 360, + [2529] = 493, + [2530] = 384, + [2531] = 490, + [2532] = 398, + [2533] = 398, + [2534] = 362, + [2535] = 395, + [2536] = 489, + [2537] = 374, + [2538] = 493, [2539] = 494, - [2540] = 496, - [2541] = 357, - [2542] = 361, - [2543] = 363, - [2544] = 379, - [2545] = 364, - [2546] = 503, - [2547] = 490, - [2548] = 366, - [2549] = 383, - [2550] = 504, - [2551] = 382, - [2552] = 487, - [2553] = 479, - [2554] = 367, - [2555] = 368, - [2556] = 369, - [2557] = 389, - [2558] = 374, - [2559] = 406, - [2560] = 389, - [2561] = 409, - [2562] = 484, - [2563] = 422, - [2564] = 413, - [2565] = 435, - [2566] = 509, - [2567] = 427, - [2568] = 483, - [2569] = 435, - [2570] = 435, - [2571] = 487, - [2572] = 413, - [2573] = 389, - [2574] = 480, - [2575] = 406, - [2576] = 422, - [2577] = 423, - [2578] = 415, - [2579] = 494, - [2580] = 479, - [2581] = 509, - [2582] = 379, - [2583] = 379, - [2584] = 422, - [2585] = 504, - [2586] = 495, + [2540] = 491, + [2541] = 393, + [2542] = 395, + [2543] = 393, + [2544] = 481, + [2545] = 487, + [2546] = 486, + [2547] = 384, + [2548] = 393, + [2549] = 369, + [2550] = 482, + [2551] = 495, + [2552] = 488, + [2553] = 485, + [2554] = 384, + [2555] = 489, + [2556] = 497, + [2557] = 395, + [2558] = 521, + [2559] = 373, + [2560] = 371, + [2561] = 356, + [2562] = 365, + [2563] = 363, + [2564] = 490, + [2565] = 438, + [2566] = 429, + [2567] = 493, + [2568] = 438, + [2569] = 486, + [2570] = 487, + [2571] = 438, + [2572] = 481, + [2573] = 393, + [2574] = 486, + [2575] = 494, + [2576] = 430, + [2577] = 482, + [2578] = 491, + [2579] = 490, + [2580] = 495, + [2581] = 482, + [2582] = 426, + [2583] = 393, + [2584] = 495, + [2585] = 398, + [2586] = 429, [2587] = 488, - [2588] = 484, - [2589] = 427, - [2590] = 436, - [2591] = 413, - [2592] = 423, - [2593] = 490, - [2594] = 503, - [2595] = 415, - [2596] = 406, - [2597] = 423, - [2598] = 427, - [2599] = 495, - [2600] = 409, - [2601] = 488, - [2602] = 415, - [2603] = 409, - [2604] = 415, - [2605] = 483, - [2606] = 436, - [2607] = 504, - [2608] = 436, - [2609] = 479, - [2610] = 413, - [2611] = 487, - [2612] = 406, - [2613] = 503, - [2614] = 409, - [2615] = 383, - [2616] = 436, - [2617] = 494, - [2618] = 490, - [2619] = 496, - [2620] = 491, - [2621] = 496, - [2622] = 480, - [2623] = 382, - [2624] = 422, - [2625] = 435, - [2626] = 491, - [2627] = 382, - [2628] = 423, - [2629] = 383, - [2630] = 427, - [2631] = 480, - [2632] = 456, - [2633] = 488, - [2634] = 479, - [2635] = 415, - [2636] = 504, - [2637] = 456, - [2638] = 409, - [2639] = 495, - [2640] = 427, - [2641] = 490, - [2642] = 447, - [2643] = 483, - [2644] = 488, - [2645] = 436, - [2646] = 494, - [2647] = 487, - [2648] = 423, - [2649] = 509, - [2650] = 490, - [2651] = 504, - [2652] = 487, - [2653] = 443, - [2654] = 406, - [2655] = 422, - [2656] = 444, - [2657] = 496, - [2658] = 479, - [2659] = 496, - [2660] = 427, - [2661] = 491, - [2662] = 435, - [2663] = 491, - [2664] = 441, - [2665] = 496, - [2666] = 503, - [2667] = 480, - [2668] = 441, - [2669] = 406, - [2670] = 484, - [2671] = 413, - [2672] = 423, - [2673] = 483, - [2674] = 413, - [2675] = 509, - [2676] = 488, - [2677] = 409, + [2588] = 493, + [2589] = 485, + [2590] = 489, + [2591] = 497, + [2592] = 409, + [2593] = 488, + [2594] = 425, + [2595] = 485, + [2596] = 489, + [2597] = 497, + [2598] = 429, + [2599] = 430, + [2600] = 395, + [2601] = 408, + [2602] = 429, + [2603] = 384, + [2604] = 438, + [2605] = 408, + [2606] = 413, + [2607] = 413, + [2608] = 408, + [2609] = 487, + [2610] = 384, + [2611] = 413, + [2612] = 411, + [2613] = 425, + [2614] = 411, + [2615] = 398, + [2616] = 430, + [2617] = 409, + [2618] = 430, + [2619] = 409, + [2620] = 408, + [2621] = 481, + [2622] = 491, + [2623] = 413, + [2624] = 411, + [2625] = 409, + [2626] = 484, + [2627] = 426, + [2628] = 411, + [2629] = 395, + [2630] = 484, + [2631] = 490, + [2632] = 494, + [2633] = 426, + [2634] = 426, + [2635] = 425, + [2636] = 425, + [2637] = 484, + [2638] = 446, + [2639] = 446, + [2640] = 486, + [2641] = 452, + [2642] = 486, + [2643] = 409, + [2644] = 441, + [2645] = 411, + [2646] = 495, + [2647] = 497, + [2648] = 438, + [2649] = 429, + [2650] = 481, + [2651] = 413, + [2652] = 413, + [2653] = 494, + [2654] = 425, + [2655] = 430, + [2656] = 489, + [2657] = 490, + [2658] = 487, + [2659] = 442, + [2660] = 488, + [2661] = 441, + [2662] = 408, + [2663] = 485, + [2664] = 484, + [2665] = 493, + [2666] = 494, + [2667] = 442, + [2668] = 490, + [2669] = 411, + [2670] = 491, + [2671] = 481, + [2672] = 408, + [2673] = 487, + [2674] = 482, + [2675] = 426, + [2676] = 426, + [2677] = 495, [2678] = 494, - [2679] = 443, - [2680] = 495, - [2681] = 422, - [2682] = 490, - [2683] = 509, - [2684] = 503, - [2685] = 480, - [2686] = 415, - [2687] = 436, - [2688] = 484, - [2689] = 435, - [2690] = 479, - [2691] = 444, - [2692] = 447, - [2693] = 487, - [2694] = 759, - [2695] = 503, - [2696] = 494, - [2697] = 447, - [2698] = 484, - [2699] = 441, - [2700] = 444, - [2701] = 441, - [2702] = 491, - [2703] = 447, - [2704] = 504, - [2705] = 483, - [2706] = 758, - [2707] = 456, - [2708] = 443, - [2709] = 443, - [2710] = 456, - [2711] = 495, - [2712] = 759, - [2713] = 444, - [2714] = 758, - [2715] = 758, - [2716] = 441, - [2717] = 444, - [2718] = 447, - [2719] = 456, - [2720] = 759, - [2721] = 456, - [2722] = 447, - [2723] = 443, - [2724] = 441, - [2725] = 444, - [2726] = 443, - [2727] = 765, - [2728] = 487, - [2729] = 490, - [2730] = 503, - [2731] = 783, - [2732] = 479, - [2733] = 480, - [2734] = 483, - [2735] = 495, - [2736] = 484, - [2737] = 484, - [2738] = 480, - [2739] = 509, - [2740] = 494, - [2741] = 483, - [2742] = 491, - [2743] = 765, - [2744] = 496, - [2745] = 776, - [2746] = 503, - [2747] = 504, - [2748] = 488, - [2749] = 490, - [2750] = 494, - [2751] = 479, - [2752] = 488, - [2753] = 765, - [2754] = 491, - [2755] = 504, - [2756] = 496, - [2757] = 495, - [2758] = 487, - [2759] = 509, - [2760] = 765, - [2761] = 783, - [2762] = 776, - [2763] = 504, - [2764] = 784, - [2765] = 483, - [2766] = 496, - [2767] = 490, - [2768] = 480, - [2769] = 487, - [2770] = 495, - [2771] = 509, - [2772] = 504, - [2773] = 484, - [2774] = 479, - [2775] = 480, - [2776] = 503, - [2777] = 479, - [2778] = 496, - [2779] = 758, - [2780] = 784, - [2781] = 494, - [2782] = 484, - [2783] = 495, - [2784] = 488, - [2785] = 494, - [2786] = 491, - [2787] = 488, - [2788] = 491, - [2789] = 483, - [2790] = 487, - [2791] = 490, - [2792] = 503, - [2793] = 509, - [2794] = 759, - [2795] = 496, - [2796] = 812, - [2797] = 494, - [2798] = 819, - [2799] = 785, - [2800] = 479, - [2801] = 819, - [2802] = 802, - [2803] = 504, - [2804] = 487, + [2679] = 445, + [2680] = 429, + [2681] = 486, + [2682] = 481, + [2683] = 482, + [2684] = 495, + [2685] = 491, + [2686] = 445, + [2687] = 425, + [2688] = 493, + [2689] = 409, + [2690] = 438, + [2691] = 452, + [2692] = 430, + [2693] = 488, + [2694] = 490, + [2695] = 497, + [2696] = 489, + [2697] = 485, + [2698] = 485, + [2699] = 446, + [2700] = 487, + [2701] = 497, + [2702] = 442, + [2703] = 489, + [2704] = 452, + [2705] = 445, + [2706] = 445, + [2707] = 452, + [2708] = 482, + [2709] = 441, + [2710] = 442, + [2711] = 764, + [2712] = 441, + [2713] = 484, + [2714] = 764, + [2715] = 488, + [2716] = 446, + [2717] = 493, + [2718] = 754, + [2719] = 754, + [2720] = 491, + [2721] = 442, + [2722] = 764, + [2723] = 452, + [2724] = 445, + [2725] = 754, + [2726] = 445, + [2727] = 442, + [2728] = 446, + [2729] = 452, + [2730] = 441, + [2731] = 446, + [2732] = 441, + [2733] = 490, + [2734] = 485, + [2735] = 489, + [2736] = 772, + [2737] = 497, + [2738] = 495, + [2739] = 486, + [2740] = 755, + [2741] = 495, + [2742] = 772, + [2743] = 484, + [2744] = 487, + [2745] = 482, + [2746] = 497, + [2747] = 488, + [2748] = 494, + [2749] = 755, + [2750] = 487, + [2751] = 494, + [2752] = 481, + [2753] = 493, + [2754] = 489, + [2755] = 484, + [2756] = 481, + [2757] = 488, + [2758] = 485, + [2759] = 490, + [2760] = 486, + [2761] = 491, + [2762] = 482, + [2763] = 491, + [2764] = 493, + [2765] = 491, + [2766] = 484, + [2767] = 495, + [2768] = 482, + [2769] = 482, + [2770] = 784, + [2771] = 485, + [2772] = 488, + [2773] = 485, + [2774] = 494, + [2775] = 489, + [2776] = 497, + [2777] = 764, + [2778] = 487, + [2779] = 494, + [2780] = 487, + [2781] = 489, + [2782] = 491, + [2783] = 488, + [2784] = 481, + [2785] = 497, + [2786] = 486, + [2787] = 484, + [2788] = 490, + [2789] = 481, + [2790] = 493, + [2791] = 486, + [2792] = 493, + [2793] = 495, + [2794] = 490, + [2795] = 754, + [2796] = 784, + [2797] = 793, + [2798] = 494, + [2799] = 807, + [2800] = 485, + [2801] = 481, + [2802] = 489, + [2803] = 490, + [2804] = 493, [2805] = 491, - [2806] = 788, + [2806] = 802, [2807] = 488, - [2808] = 509, - [2809] = 789, - [2810] = 495, - [2811] = 504, - [2812] = 483, - [2813] = 793, - [2814] = 483, - [2815] = 484, - [2816] = 480, - [2817] = 488, - [2818] = 785, - [2819] = 484, - [2820] = 495, - [2821] = 480, - [2822] = 496, - [2823] = 503, - [2824] = 491, - [2825] = 788, - [2826] = 789, - [2827] = 503, - [2828] = 490, - [2829] = 802, - [2830] = 494, - [2831] = 509, - [2832] = 793, - [2833] = 479, - [2834] = 490, + [2808] = 484, + [2809] = 805, + [2810] = 800, + [2811] = 495, + [2812] = 805, + [2813] = 482, + [2814] = 497, + [2815] = 800, + [2816] = 802, + [2817] = 484, + [2818] = 807, + [2819] = 489, + [2820] = 497, + [2821] = 487, + [2822] = 830, + [2823] = 486, + [2824] = 494, + [2825] = 485, + [2826] = 809, + [2827] = 488, + [2828] = 493, + [2829] = 490, + [2830] = 482, + [2831] = 809, + [2832] = 491, + [2833] = 495, + [2834] = 481, [2835] = 487, - [2836] = 765, - [2837] = 843, - [2838] = 783, - [2839] = 788, - [2840] = 861, - [2841] = 856, - [2842] = 875, - [2843] = 848, - [2844] = 864, - [2845] = 852, - [2846] = 870, - [2847] = 833, - [2848] = 874, - [2849] = 846, - [2850] = 847, - [2851] = 870, - [2852] = 858, - [2853] = 831, - [2854] = 862, - [2855] = 847, - [2856] = 845, - [2857] = 863, - [2858] = 843, - [2859] = 849, - [2860] = 846, - [2861] = 869, - [2862] = 851, - [2863] = 789, - [2864] = 838, - [2865] = 793, - [2866] = 850, - [2867] = 848, - [2868] = 850, - [2869] = 836, - [2870] = 851, - [2871] = 776, - [2872] = 869, - [2873] = 854, - [2874] = 865, - [2875] = 857, - [2876] = 868, - [2877] = 849, - [2878] = 785, - [2879] = 838, - [2880] = 836, - [2881] = 865, - [2882] = 863, - [2883] = 868, - [2884] = 854, - [2885] = 802, - [2886] = 861, - [2887] = 856, - [2888] = 875, - [2889] = 842, + [2836] = 486, + [2837] = 793, + [2838] = 857, + [2839] = 851, + [2840] = 872, + [2841] = 871, + [2842] = 869, + [2843] = 864, + [2844] = 868, + [2845] = 793, + [2846] = 867, + [2847] = 864, + [2848] = 855, + [2849] = 856, + [2850] = 876, + [2851] = 853, + [2852] = 802, + [2853] = 873, + [2854] = 861, + [2855] = 831, + [2856] = 861, + [2857] = 858, + [2858] = 873, + [2859] = 876, + [2860] = 854, + [2861] = 851, + [2862] = 860, + [2863] = 850, + [2864] = 863, + [2865] = 872, + [2866] = 871, + [2867] = 869, + [2868] = 859, + [2869] = 831, + [2870] = 868, + [2871] = 867, + [2872] = 862, + [2873] = 856, + [2874] = 850, + [2875] = 835, + [2876] = 834, + [2877] = 853, + [2878] = 845, + [2879] = 843, + [2880] = 807, + [2881] = 834, + [2882] = 772, + [2883] = 844, + [2884] = 858, + [2885] = 844, + [2886] = 835, + [2887] = 805, + [2888] = 845, + [2889] = 832, [2890] = 833, - [2891] = 874, - [2892] = 862, - [2893] = 845, - [2894] = 842, - [2895] = 765, - [2896] = 864, - [2897] = 834, - [2898] = 834, - [2899] = 887, - [2900] = 917, - [2901] = 812, - [2902] = 902, - [2903] = 843, - [2904] = 941, - [2905] = 936, + [2891] = 859, + [2892] = 832, + [2893] = 855, + [2894] = 809, + [2895] = 755, + [2896] = 833, + [2897] = 860, + [2898] = 843, + [2899] = 845, + [2900] = 880, + [2901] = 885, + [2902] = 867, + [2903] = 926, + [2904] = 881, + [2905] = 943, [2906] = 924, - [2907] = 906, - [2908] = 938, - [2909] = 931, - [2910] = 849, - [2911] = 941, - [2912] = 891, - [2913] = 850, - [2914] = 852, - [2915] = 920, - [2916] = 937, - [2917] = 878, - [2918] = 877, - [2919] = 928, - [2920] = 895, - [2921] = 899, - [2922] = 851, - [2923] = 910, - [2924] = 898, - [2925] = 937, - [2926] = 943, - [2927] = 784, - [2928] = 877, - [2929] = 845, - [2930] = 924, - [2931] = 878, - [2932] = 892, - [2933] = 915, - [2934] = 936, - [2935] = 890, - [2936] = 863, - [2937] = 938, - [2938] = 925, - [2939] = 922, - [2940] = 843, - [2941] = 928, - [2942] = 896, - [2943] = 899, - [2944] = 943, - [2945] = 892, - [2946] = 883, - [2947] = 862, - [2948] = 887, - [2949] = 898, - [2950] = 874, - [2951] = 894, - [2952] = 864, - [2953] = 883, - [2954] = 921, - [2955] = 940, - [2956] = 894, - [2957] = 890, - [2958] = 921, - [2959] = 833, - [2960] = 885, + [2907] = 924, + [2908] = 928, + [2909] = 902, + [2910] = 901, + [2911] = 898, + [2912] = 916, + [2913] = 901, + [2914] = 902, + [2915] = 919, + [2916] = 896, + [2917] = 859, + [2918] = 861, + [2919] = 881, + [2920] = 885, + [2921] = 927, + [2922] = 864, + [2923] = 943, + [2924] = 928, + [2925] = 868, + [2926] = 830, + [2927] = 869, + [2928] = 903, + [2929] = 784, + [2930] = 897, + [2931] = 916, + [2932] = 922, + [2933] = 858, + [2934] = 919, + [2935] = 910, + [2936] = 914, + [2937] = 912, + [2938] = 894, + [2939] = 920, + [2940] = 921, + [2941] = 892, + [2942] = 940, + [2943] = 921, + [2944] = 871, + [2945] = 854, + [2946] = 934, + [2947] = 922, + [2948] = 913, + [2949] = 832, + [2950] = 939, + [2951] = 927, + [2952] = 872, + [2953] = 887, + [2954] = 860, + [2955] = 912, + [2956] = 880, + [2957] = 909, + [2958] = 889, + [2959] = 915, + [2960] = 920, [2961] = 891, - [2962] = 926, - [2963] = 922, - [2964] = 914, - [2965] = 875, - [2966] = 934, - [2967] = 920, - [2968] = 940, - [2969] = 942, - [2970] = 918, - [2971] = 915, - [2972] = 939, - [2973] = 910, - [2974] = 834, - [2975] = 925, - [2976] = 926, - [2977] = 918, - [2978] = 856, - [2979] = 861, - [2980] = 907, - [2981] = 869, - [2982] = 939, - [2983] = 931, - [2984] = 888, - [2985] = 906, - [2986] = 902, - [2987] = 942, - [2988] = 895, - [2989] = 916, - [2990] = 885, - [2991] = 896, - [2992] = 955, - [2993] = 965, - [2994] = 966, - [2995] = 788, - [2996] = 812, - [2997] = 789, - [2998] = 793, - [2999] = 785, - [3000] = 1018, - [3001] = 802, - [3002] = 1005, - [3003] = 370, - [3004] = 948, - [3005] = 371, - [3006] = 372, - [3007] = 373, - [3008] = 842, - [3009] = 999, - [3010] = 1014, - [3011] = 1010, - [3012] = 944, - [3013] = 958, - [3014] = 819, - [3015] = 854, - [3016] = 957, - [3017] = 374, - [3018] = 369, - [3019] = 375, - [3020] = 368, - [3021] = 367, - [3022] = 366, - [3023] = 365, - [3024] = 364, - [3025] = 363, - [3026] = 361, - [3027] = 870, - [3028] = 357, - [3029] = 359, - [3030] = 982, - [3031] = 997, - [3032] = 949, - [3033] = 360, - [3034] = 983, - [3035] = 1018, - [3036] = 358, - [3037] = 788, - [3038] = 997, - [3039] = 976, - [3040] = 966, - [3041] = 789, - [3042] = 1010, - [3043] = 991, - [3044] = 959, - [3045] = 793, - [3046] = 1033, - [3047] = 992, - [3048] = 1006, - [3049] = 1032, - [3050] = 785, - [3051] = 1029, - [3052] = 944, - [3053] = 958, - [3054] = 971, + [2962] = 904, + [2963] = 903, + [2964] = 831, + [2965] = 873, + [2966] = 910, + [2967] = 883, + [2968] = 897, + [2969] = 936, + [2970] = 887, + [2971] = 892, + [2972] = 911, + [2973] = 832, + [2974] = 932, + [2975] = 904, + [2976] = 896, + [2977] = 891, + [2978] = 898, + [2979] = 934, + [2980] = 930, + [2981] = 909, + [2982] = 915, + [2983] = 911, + [2984] = 876, + [2985] = 913, + [2986] = 908, + [2987] = 883, + [2988] = 914, + [2989] = 940, + [2990] = 926, + [2991] = 908, + [2992] = 793, + [2993] = 968, + [2994] = 807, + [2995] = 374, + [2996] = 982, + [2997] = 982, + [2998] = 1002, + [2999] = 1005, + [3000] = 970, + [3001] = 1018, + [3002] = 843, + [3003] = 948, + [3004] = 965, + [3005] = 955, + [3006] = 954, + [3007] = 960, + [3008] = 963, + [3009] = 964, + [3010] = 932, + [3011] = 958, + [3012] = 1023, + [3013] = 844, + [3014] = 809, + [3015] = 1008, + [3016] = 1017, + [3017] = 833, + [3018] = 1025, + [3019] = 986, + [3020] = 995, + [3021] = 372, + [3022] = 985, + [3023] = 945, + [3024] = 367, + [3025] = 993, + [3026] = 830, + [3027] = 805, + [3028] = 1016, + [3029] = 947, + [3030] = 802, + [3031] = 3031, + [3032] = 985, + [3033] = 800, + [3034] = 977, + [3035] = 993, + [3036] = 370, + [3037] = 986, + [3038] = 358, + [3039] = 966, + [3040] = 939, + [3041] = 1017, + [3042] = 1014, + [3043] = 834, + [3044] = 1002, + [3045] = 1021, + [3046] = 964, + [3047] = 982, + [3048] = 793, + [3049] = 807, + [3050] = 963, + [3051] = 960, + [3052] = 996, + [3053] = 967, + [3054] = 955, [3055] = 957, - [3056] = 959, - [3057] = 838, - [3058] = 955, - [3059] = 917, - [3060] = 1015, - [3061] = 1005, - [3062] = 802, - [3063] = 949, - [3064] = 948, - [3065] = 993, - [3066] = 968, - [3067] = 991, - [3068] = 992, - [3069] = 1006, - [3070] = 1029, - [3071] = 971, - [3072] = 914, - [3073] = 836, - [3074] = 999, - [3075] = 1014, - [3076] = 1022, - [3077] = 1026, - [3078] = 1022, - [3079] = 1010, - [3080] = 907, - [3081] = 1026, - [3082] = 3082, - [3083] = 1027, - [3084] = 1027, - [3085] = 951, - [3086] = 951, - [3087] = 998, - [3088] = 1036, - [3089] = 995, - [3090] = 1023, - [3091] = 1023, - [3092] = 962, - [3093] = 962, - [3094] = 1008, - [3095] = 1007, - [3096] = 982, - [3097] = 865, - [3098] = 981, - [3099] = 989, - [3100] = 993, - [3101] = 965, - [3102] = 1020, - [3103] = 1015, - [3104] = 964, - [3105] = 1036, - [3106] = 1007, - [3107] = 1020, - [3108] = 963, + [3056] = 805, + [3057] = 965, + [3058] = 802, + [3059] = 1012, + [3060] = 936, + [3061] = 1008, + [3062] = 948, + [3063] = 998, + [3064] = 954, + [3065] = 1025, + [3066] = 953, + [3067] = 809, + [3068] = 977, + [3069] = 1005, + [3070] = 969, + [3071] = 376, + [3072] = 359, + [3073] = 981, + [3074] = 1018, + [3075] = 366, + [3076] = 855, + [3077] = 950, + [3078] = 361, + [3079] = 357, + [3080] = 973, + [3081] = 995, + [3082] = 974, + [3083] = 835, + [3084] = 996, + [3085] = 375, + [3086] = 1012, + [3087] = 953, + [3088] = 966, + [3089] = 360, + [3090] = 978, + [3091] = 947, + [3092] = 951, + [3093] = 1021, + [3094] = 356, + [3095] = 1023, + [3096] = 967, + [3097] = 968, + [3098] = 980, + [3099] = 958, + [3100] = 365, + [3101] = 969, + [3102] = 973, + [3103] = 362, + [3104] = 363, + [3105] = 945, + [3106] = 983, + [3107] = 952, + [3108] = 369, [3109] = 983, - [3110] = 1035, - [3111] = 981, - [3112] = 947, - [3113] = 976, - [3114] = 989, - [3115] = 947, - [3116] = 963, - [3117] = 1035, - [3118] = 964, - [3119] = 945, - [3120] = 915, - [3121] = 1174, - [3122] = 1159, - [3123] = 1143, - [3124] = 1158, - [3125] = 1156, - [3126] = 1162, - [3127] = 1148, - [3128] = 1073, - [3129] = 1155, - [3130] = 1151, - [3131] = 1079, - [3132] = 1038, - [3133] = 1154, - [3134] = 1153, - [3135] = 1153, - [3136] = 1151, - [3137] = 940, - [3138] = 1147, - [3139] = 1154, - [3140] = 1146, - [3141] = 1148, - [3142] = 1155, - [3143] = 1175, - [3144] = 1099, - [3145] = 1147, - [3146] = 1146, - [3147] = 1143, - [3148] = 1141, - [3149] = 1177, - [3150] = 845, - [3151] = 1138, - [3152] = 1156, - [3153] = 1039, - [3154] = 921, - [3155] = 1133, - [3156] = 1197, - [3157] = 1131, - [3158] = 1178, - [3159] = 1185, - [3160] = 1070, - [3161] = 1130, - [3162] = 1129, - [3163] = 1128, - [3164] = 1141, - [3165] = 922, - [3166] = 1124, - [3167] = 1122, - [3168] = 1179, - [3169] = 1159, - [3170] = 1120, - [3171] = 1119, - [3172] = 1118, - [3173] = 910, - [3174] = 925, - [3175] = 1116, - [3176] = 1115, - [3177] = 862, - [3178] = 874, - [3179] = 1161, - [3180] = 1162, - [3181] = 1038, - [3182] = 1082, - [3183] = 833, - [3184] = 1182, - [3185] = 857, - [3186] = 1089, - [3187] = 1109, - [3188] = 842, - [3189] = 1138, - [3190] = 1175, - [3191] = 1177, - [3192] = 1094, - [3193] = 1198, - [3194] = 868, - [3195] = 1045, - [3196] = 1178, + [3110] = 980, + [3111] = 974, + [3112] = 987, + [3113] = 978, + [3114] = 988, + [3115] = 988, + [3116] = 371, + [3117] = 987, + [3118] = 970, + [3119] = 957, + [3120] = 1150, + [3121] = 952, + [3122] = 1200, + [3123] = 920, + [3124] = 1201, + [3125] = 1189, + [3126] = 1107, + [3127] = 1186, + [3128] = 1130, + [3129] = 1185, + [3130] = 1183, + [3131] = 809, + [3132] = 1182, + [3133] = 1181, + [3134] = 1038, + [3135] = 1180, + [3136] = 1178, + [3137] = 1106, + [3138] = 1176, + [3139] = 802, + [3140] = 1114, + [3141] = 914, + [3142] = 1175, + [3143] = 1174, + [3144] = 1173, + [3145] = 1149, + [3146] = 1172, + [3147] = 1056, + [3148] = 1171, + [3149] = 1170, + [3150] = 1169, + [3151] = 1168, + [3152] = 1167, + [3153] = 1055, + [3154] = 1165, + [3155] = 876, + [3156] = 1164, + [3157] = 911, + [3158] = 1161, + [3159] = 1058, + [3160] = 1159, + [3161] = 1199, + [3162] = 1198, + [3163] = 850, + [3164] = 1157, + [3165] = 1154, + [3166] = 1151, + [3167] = 1113, + [3168] = 908, + [3169] = 926, + [3170] = 1147, + [3171] = 1059, + [3172] = 1197, + [3173] = 1146, + [3174] = 1143, + [3175] = 1142, + [3176] = 1196, + [3177] = 904, + [3178] = 1139, + [3179] = 1138, + [3180] = 1054, + [3181] = 1053, + [3182] = 1050, + [3183] = 1195, + [3184] = 1194, + [3185] = 1111, + [3186] = 1047, + [3187] = 1046, + [3188] = 805, + [3189] = 1115, + [3190] = 1129, + [3191] = 843, + [3192] = 1133, + [3193] = 1043, + [3194] = 1103, + [3195] = 1041, + [3196] = 851, [3197] = 856, - [3198] = 1179, - [3199] = 1199, - [3200] = 861, - [3201] = 848, - [3202] = 1039, - [3203] = 1182, - [3204] = 1133, - [3205] = 1105, - [3206] = 898, - [3207] = 869, - [3208] = 1163, - [3209] = 1127, - [3210] = 1149, - [3211] = 1185, - [3212] = 1104, - [3213] = 1083, - [3214] = 1187, - [3215] = 1106, - [3216] = 1127, - [3217] = 1131, - [3218] = 1190, - [3219] = 1191, - [3220] = 1190, - [3221] = 3221, - [3222] = 1191, - [3223] = 1192, - [3224] = 1189, - [3225] = 1074, - [3226] = 1097, - [3227] = 1075, - [3228] = 1102, - [3229] = 864, - [3230] = 802, - [3231] = 1186, - [3232] = 1192, - [3233] = 863, - [3234] = 851, - [3235] = 1084, - [3236] = 850, - [3237] = 849, - [3238] = 785, - [3239] = 1130, - [3240] = 1129, - [3241] = 1184, - [3242] = 847, - [3243] = 1128, - [3244] = 1193, - [3245] = 1196, - [3246] = 1200, - [3247] = 1081, - [3248] = 1201, - [3249] = 1101, - [3250] = 1193, - [3251] = 1126, - [3252] = 793, - [3253] = 1197, - [3254] = 1195, - [3255] = 1188, - [3256] = 1167, - [3257] = 1100, - [3258] = 1196, - [3259] = 1123, - [3260] = 1112, - [3261] = 1181, - [3262] = 875, - [3263] = 1200, - [3264] = 789, - [3265] = 1176, - [3266] = 852, - [3267] = 1124, - [3268] = 1201, - [3269] = 906, - [3270] = 1174, - [3271] = 1173, - [3272] = 1172, - [3273] = 1122, - [3274] = 852, - [3275] = 1112, - [3276] = 1121, - [3277] = 846, - [3278] = 849, - [3279] = 1103, - [3280] = 1169, - [3281] = 1168, - [3282] = 1165, - [3283] = 1100, - [3284] = 850, - [3285] = 1168, - [3286] = 1195, - [3287] = 1043, - [3288] = 1188, - [3289] = 858, - [3290] = 831, - [3291] = 1142, + [3198] = 1134, + [3199] = 807, + [3200] = 793, + [3201] = 1111, + [3202] = 1190, + [3203] = 1083, + [3204] = 1081, + [3205] = 1193, + [3206] = 1107, + [3207] = 1192, + [3208] = 1140, + [3209] = 1141, + [3210] = 1090, + [3211] = 1039, + [3212] = 1106, + [3213] = 910, + [3214] = 864, + [3215] = 861, + [3216] = 1121, + [3217] = 1188, + [3218] = 860, + [3219] = 1187, + [3220] = 1179, + [3221] = 873, + [3222] = 859, + [3223] = 1148, + [3224] = 863, + [3225] = 862, + [3226] = 831, + [3227] = 872, + [3228] = 858, + [3229] = 1120, + [3230] = 1177, + [3231] = 863, + [3232] = 862, + [3233] = 868, + [3234] = 1092, + [3235] = 1166, + [3236] = 863, + [3237] = 862, + [3238] = 1094, + [3239] = 1096, + [3240] = 1149, + [3241] = 863, + [3242] = 1163, + [3243] = 862, + [3244] = 1101, + [3245] = 1113, + [3246] = 1097, + [3247] = 1089, + [3248] = 1121, + [3249] = 1098, + [3250] = 1120, + [3251] = 857, + [3252] = 1088, + [3253] = 1162, + [3254] = 1099, + [3255] = 1100, + [3256] = 1102, + [3257] = 928, + [3258] = 1087, + [3259] = 1135, + [3260] = 1155, + [3261] = 871, + [3262] = 1156, + [3263] = 1156, + [3264] = 876, + [3265] = 1133, + [3266] = 1155, + [3267] = 924, + [3268] = 3268, + [3269] = 854, + [3270] = 869, + [3271] = 1114, + [3272] = 862, + [3273] = 873, + [3274] = 831, + [3275] = 1148, + [3276] = 872, + [3277] = 863, + [3278] = 1168, + [3279] = 858, + [3280] = 871, + [3281] = 853, + [3282] = 869, + [3283] = 868, + [3284] = 867, + [3285] = 867, + [3286] = 1162, + [3287] = 832, + [3288] = 1086, + [3289] = 859, + [3290] = 1141, + [3291] = 860, [3292] = 1163, - [3293] = 1150, - [3294] = 1054, - [3295] = 1102, - [3296] = 998, - [3297] = 899, - [3298] = 995, - [3299] = 1097, - [3300] = 1095, - [3301] = 851, - [3302] = 1140, - [3303] = 1094, - [3304] = 1089, - [3305] = 1123, - [3306] = 1081, - [3307] = 1070, - [3308] = 1183, - [3309] = 1160, - [3310] = 788, - [3311] = 1126, - [3312] = 1120, - [3313] = 890, - [3314] = 1170, - [3315] = 863, - [3316] = 1051, - [3317] = 1119, - [3318] = 1099, - [3319] = 1139, - [3320] = 1045, - [3321] = 1106, - [3322] = 1181, - [3323] = 1176, - [3324] = 1113, - [3325] = 1118, - [3326] = 1047, - [3327] = 864, - [3328] = 895, - [3329] = 1116, - [3330] = 945, - [3331] = 1051, - [3332] = 1115, - [3333] = 1161, - [3334] = 1087, - [3335] = 1173, - [3336] = 1086, - [3337] = 1084, - [3338] = 1083, - [3339] = 1082, - [3340] = 1117, - [3341] = 1044, - [3342] = 1075, - [3343] = 1074, - [3344] = 1172, - [3345] = 1055, - [3346] = 1135, - [3347] = 1091, - [3348] = 1184, - [3349] = 1107, - [3350] = 1132, - [3351] = 1056, - [3352] = 1160, - [3353] = 1165, - [3354] = 1073, - [3355] = 1167, - [3356] = 1186, - [3357] = 1101, - [3358] = 1187, - [3359] = 1069, - [3360] = 1104, - [3361] = 1058, - [3362] = 1050, - [3363] = 1049, - [3364] = 1198, - [3365] = 1105, - [3366] = 1079, - [3367] = 1199, - [3368] = 1053, - [3369] = 1057, - [3370] = 942, - [3371] = 1052, - [3372] = 1078, - [3373] = 1060, - [3374] = 1189, - [3375] = 1063, - [3376] = 1114, - [3377] = 865, - [3378] = 868, - [3379] = 1054, - [3380] = 1095, - [3381] = 1072, - [3382] = 843, - [3383] = 1125, - [3384] = 1134, - [3385] = 1047, - [3386] = 1085, - [3387] = 1150, - [3388] = 1136, - [3389] = 1110, - [3390] = 1091, - [3391] = 1109, - [3392] = 1098, - [3393] = 1108, - [3394] = 1152, - [3395] = 1169, - [3396] = 1044, - [3397] = 848, - [3398] = 1083, - [3399] = 1108, - [3400] = 1110, - [3401] = 1114, - [3402] = 1117, - [3403] = 1121, - [3404] = 831, - [3405] = 847, - [3406] = 858, - [3407] = 846, - [3408] = 1125, - [3409] = 1081, - [3410] = 1103, - [3411] = 1134, - [3412] = 870, - [3413] = 1136, - [3414] = 1135, - [3415] = 1056, - [3416] = 1098, - [3417] = 831, - [3418] = 1183, - [3419] = 1058, - [3420] = 1050, - [3421] = 902, - [3422] = 854, - [3423] = 1049, - [3424] = 1043, - [3425] = 1113, - [3426] = 831, - [3427] = 836, - [3428] = 858, - [3429] = 1137, - [3430] = 1057, - [3431] = 918, - [3432] = 838, - [3433] = 1137, - [3434] = 845, - [3435] = 862, - [3436] = 1158, - [3437] = 1078, - [3438] = 1083, - [3439] = 874, - [3440] = 1060, - [3441] = 1055, - [3442] = 926, - [3443] = 833, - [3444] = 1063, - [3445] = 1086, - [3446] = 834, - [3447] = 1142, - [3448] = 1081, - [3449] = 831, - [3450] = 1152, - [3451] = 883, - [3452] = 1149, - [3453] = 1107, - [3454] = 1072, - [3455] = 1132, - [3456] = 1052, - [3457] = 1053, - [3458] = 875, - [3459] = 1140, - [3460] = 858, - [3461] = 1085, - [3462] = 856, - [3463] = 861, - [3464] = 1087, - [3465] = 1069, - [3466] = 941, - [3467] = 869, - [3468] = 1170, - [3469] = 858, - [3470] = 858, - [3471] = 928, - [3472] = 1139, - [3473] = 831, - [3474] = 906, - [3475] = 788, - [3476] = 895, - [3477] = 892, - [3478] = 943, - [3479] = 941, - [3480] = 936, - [3481] = 883, - [3482] = 924, - [3483] = 898, - [3484] = 899, - [3485] = 838, - [3486] = 885, - [3487] = 836, - [3488] = 937, - [3489] = 877, - [3490] = 894, - [3491] = 891, - [3492] = 931, - [3493] = 942, - [3494] = 888, - [3495] = 887, - [3496] = 938, - [3497] = 940, - [3498] = 843, - [3499] = 920, - [3500] = 802, - [3501] = 896, - [3502] = 907, - [3503] = 878, - [3504] = 926, - [3505] = 902, - [3506] = 928, - [3507] = 917, - [3508] = 890, - [3509] = 915, - [3510] = 916, - [3511] = 785, - [3512] = 870, - [3513] = 921, - [3514] = 922, - [3515] = 925, - [3516] = 1010, - [3517] = 802, - [3518] = 785, - [3519] = 918, - [3520] = 869, - [3521] = 793, - [3522] = 864, - [3523] = 789, - [3524] = 788, - [3525] = 914, - [3526] = 861, - [3527] = 863, - [3528] = 856, - [3529] = 858, - [3530] = 875, - [3531] = 831, - [3532] = 851, - [3533] = 850, - [3534] = 833, - [3535] = 939, - [3536] = 849, - [3537] = 874, - [3538] = 862, - [3539] = 845, - [3540] = 934, - [3541] = 793, - [3542] = 910, - [3543] = 789, - [3544] = 1008, - [3545] = 831, - [3546] = 964, - [3547] = 858, - [3548] = 838, - [3549] = 831, - [3550] = 836, - [3551] = 1006, - [3552] = 1015, - [3553] = 992, - [3554] = 364, - [3555] = 363, - [3556] = 361, - [3557] = 357, - [3558] = 997, - [3559] = 360, - [3560] = 1032, - [3561] = 1033, - [3562] = 370, - [3563] = 991, - [3564] = 371, - [3565] = 372, - [3566] = 899, - [3567] = 1029, - [3568] = 898, - [3569] = 365, - [3570] = 971, - [3571] = 366, - [3572] = 858, - [3573] = 1010, - [3574] = 890, - [3575] = 838, - [3576] = 802, - [3577] = 1036, - [3578] = 949, - [3579] = 836, - [3580] = 1137, - [3581] = 1136, - [3582] = 785, - [3583] = 793, - [3584] = 870, - [3585] = 3585, - [3586] = 367, - [3587] = 1134, - [3588] = 1125, - [3589] = 3589, - [3590] = 914, - [3591] = 789, - [3592] = 788, - [3593] = 834, - [3594] = 3594, - [3595] = 849, - [3596] = 368, - [3597] = 850, - [3598] = 849, - [3599] = 851, - [3600] = 850, - [3601] = 858, - [3602] = 851, - [3603] = 863, - [3604] = 863, - [3605] = 864, - [3606] = 864, - [3607] = 1007, - [3608] = 983, - [3609] = 1010, - [3610] = 976, - [3611] = 895, - [3612] = 925, - [3613] = 1008, - [3614] = 883, - [3615] = 982, - [3616] = 993, - [3617] = 922, - [3618] = 1005, - [3619] = 921, - [3620] = 955, - [3621] = 1073, - [3622] = 1079, - [3623] = 359, - [3624] = 373, - [3625] = 369, - [3626] = 1014, - [3627] = 915, - [3628] = 999, - [3629] = 962, - [3630] = 999, - [3631] = 957, - [3632] = 858, - [3633] = 831, - [3634] = 910, - [3635] = 831, - [3636] = 1023, - [3637] = 836, - [3638] = 870, - [3639] = 838, - [3640] = 907, - [3641] = 906, - [3642] = 958, - [3643] = 374, - [3644] = 902, - [3645] = 870, - [3646] = 948, - [3647] = 3647, - [3648] = 375, - [3649] = 1005, - [3650] = 917, - [3651] = 983, - [3652] = 998, - [3653] = 944, - [3654] = 981, - [3655] = 995, - [3656] = 989, - [3657] = 1020, - [3658] = 959, - [3659] = 1018, - [3660] = 966, - [3661] = 1022, - [3662] = 965, - [3663] = 358, - [3664] = 1035, - [3665] = 968, - [3666] = 947, - [3667] = 934, - [3668] = 945, - [3669] = 1026, - [3670] = 1027, - [3671] = 963, - [3672] = 951, - [3673] = 1131, - [3674] = 899, - [3675] = 1159, - [3676] = 998, - [3677] = 1158, - [3678] = 1156, - [3679] = 1105, - [3680] = 1137, - [3681] = 945, - [3682] = 1190, - [3683] = 1199, - [3684] = 1053, - [3685] = 869, - [3686] = 1191, - [3687] = 1122, - [3688] = 1192, - [3689] = 1165, - [3690] = 1072, - [3691] = 845, - [3692] = 862, - [3693] = 1170, - [3694] = 1178, - [3695] = 874, - [3696] = 833, - [3697] = 1101, - [3698] = 875, - [3699] = 856, - [3700] = 856, - [3701] = 1120, - [3702] = 1155, - [3703] = 861, - [3704] = 1167, - [3705] = 1154, - [3706] = 1186, - [3707] = 1124, - [3708] = 1095, - [3709] = 1119, - [3710] = 1153, - [3711] = 869, - [3712] = 1045, - [3713] = 1118, - [3714] = 1054, - [3715] = 1182, - [3716] = 875, + [3293] = 1140, + [3294] = 1103, + [3295] = 844, + [3296] = 1166, + [3297] = 883, + [3298] = 1136, + [3299] = 950, + [3300] = 1060, + [3301] = 951, + [3302] = 1052, + [3303] = 1118, + [3304] = 1061, + [3305] = 1115, + [3306] = 1104, + [3307] = 1112, + [3308] = 1109, + [3309] = 1062, + [3310] = 1063, + [3311] = 1108, + [3312] = 1167, + [3313] = 1064, + [3314] = 1078, + [3315] = 1105, + [3316] = 1084, + [3317] = 1177, + [3318] = 1086, + [3319] = 1085, + [3320] = 1082, + [3321] = 1118, + [3322] = 1065, + [3323] = 1104, + [3324] = 1080, + [3325] = 1079, + [3326] = 1077, + [3327] = 1051, + [3328] = 1052, + [3329] = 1078, + [3330] = 1051, + [3331] = 880, + [3332] = 1075, + [3333] = 1057, + [3334] = 1074, + [3335] = 845, + [3336] = 1105, + [3337] = 1073, + [3338] = 1179, + [3339] = 1088, + [3340] = 1089, + [3341] = 1072, + [3342] = 1071, + [3343] = 1070, + [3344] = 1066, + [3345] = 1067, + [3346] = 1068, + [3347] = 1069, + [3348] = 1068, + [3349] = 1067, + [3350] = 1138, + [3351] = 1066, + [3352] = 1065, + [3353] = 1064, + [3354] = 1187, + [3355] = 1063, + [3356] = 1076, + [3357] = 1061, + [3358] = 1060, + [3359] = 856, + [3360] = 855, + [3361] = 1139, + [3362] = 1059, + [3363] = 1058, + [3364] = 1057, + [3365] = 1056, + [3366] = 1055, + [3367] = 1054, + [3368] = 1069, + [3369] = 1108, + [3370] = 1053, + [3371] = 1050, + [3372] = 1047, + [3373] = 1046, + [3374] = 1142, + [3375] = 1085, + [3376] = 1043, + [3377] = 1143, + [3378] = 1146, + [3379] = 1147, + [3380] = 1041, + [3381] = 887, + [3382] = 1084, + [3383] = 1150, + [3384] = 1190, + [3385] = 1083, + [3386] = 1070, + [3387] = 1081, + [3388] = 1062, + [3389] = 1090, + [3390] = 1151, + [3391] = 1154, + [3392] = 1188, + [3393] = 1157, + [3394] = 1129, + [3395] = 1071, + [3396] = 1159, + [3397] = 1161, + [3398] = 1164, + [3399] = 1072, + [3400] = 853, + [3401] = 1121, + [3402] = 1039, + [3403] = 1092, + [3404] = 1165, + [3405] = 1173, + [3406] = 854, + [3407] = 1169, + [3408] = 851, + [3409] = 834, + [3410] = 850, + [3411] = 862, + [3412] = 1120, + [3413] = 835, + [3414] = 1077, + [3415] = 1170, + [3416] = 1171, + [3417] = 1101, + [3418] = 1172, + [3419] = 1094, + [3420] = 1073, + [3421] = 1112, + [3422] = 1174, + [3423] = 1175, + [3424] = 1074, + [3425] = 903, + [3426] = 1096, + [3427] = 1176, + [3428] = 833, + [3429] = 1178, + [3430] = 1180, + [3431] = 1038, + [3432] = 1075, + [3433] = 1181, + [3434] = 1182, + [3435] = 1076, + [3436] = 1183, + [3437] = 1185, + [3438] = 896, + [3439] = 1097, + [3440] = 1186, + [3441] = 1121, + [3442] = 1109, + [3443] = 1136, + [3444] = 1189, + [3445] = 1098, + [3446] = 1201, + [3447] = 1079, + [3448] = 1192, + [3449] = 1080, + [3450] = 1099, + [3451] = 1120, + [3452] = 1200, + [3453] = 1135, + [3454] = 1199, + [3455] = 1198, + [3456] = 1197, + [3457] = 1134, + [3458] = 898, + [3459] = 864, + [3460] = 1130, + [3461] = 912, + [3462] = 1193, + [3463] = 1100, + [3464] = 863, + [3465] = 1196, + [3466] = 1195, + [3467] = 1087, + [3468] = 1194, + [3469] = 922, + [3470] = 861, + [3471] = 921, + [3472] = 1082, + [3473] = 1102, + [3474] = 912, + [3475] = 805, + [3476] = 911, + [3477] = 891, + [3478] = 863, + [3479] = 887, + [3480] = 862, + [3481] = 908, + [3482] = 904, + [3483] = 833, + [3484] = 926, + [3485] = 896, + [3486] = 898, + [3487] = 897, + [3488] = 928, + [3489] = 832, + [3490] = 885, + [3491] = 881, + [3492] = 914, + [3493] = 901, + [3494] = 902, + [3495] = 922, + [3496] = 982, + [3497] = 889, + [3498] = 915, + [3499] = 921, + [3500] = 924, + [3501] = 981, + [3502] = 910, + [3503] = 883, + [3504] = 909, + [3505] = 834, + [3506] = 835, + [3507] = 880, + [3508] = 913, + [3509] = 873, + [3510] = 934, + [3511] = 831, + [3512] = 932, + [3513] = 943, + [3514] = 894, + [3515] = 939, + [3516] = 940, + [3517] = 793, + [3518] = 807, + [3519] = 805, + [3520] = 892, + [3521] = 802, + [3522] = 809, + [3523] = 930, + [3524] = 809, + [3525] = 916, + [3526] = 903, + [3527] = 936, + [3528] = 919, + [3529] = 872, + [3530] = 858, + [3531] = 871, + [3532] = 869, + [3533] = 802, + [3534] = 868, + [3535] = 920, + [3536] = 859, + [3537] = 864, + [3538] = 867, + [3539] = 807, + [3540] = 793, + [3541] = 860, + [3542] = 876, + [3543] = 861, + [3544] = 927, + [3545] = 374, + [3546] = 1005, + [3547] = 362, + [3548] = 363, + [3549] = 367, + [3550] = 365, + [3551] = 356, + [3552] = 930, + [3553] = 958, + [3554] = 1023, + [3555] = 863, + [3556] = 862, + [3557] = 1021, + [3558] = 947, + [3559] = 932, + [3560] = 945, + [3561] = 1018, + [3562] = 357, + [3563] = 361, + [3564] = 366, + [3565] = 359, + [3566] = 376, + [3567] = 953, + [3568] = 358, + [3569] = 370, + [3570] = 1012, + [3571] = 372, + [3572] = 954, + [3573] = 858, + [3574] = 996, + [3575] = 993, + [3576] = 964, + [3577] = 948, + [3578] = 988, + [3579] = 862, + [3580] = 995, + [3581] = 863, + [3582] = 3582, + [3583] = 970, + [3584] = 369, + [3585] = 948, + [3586] = 859, + [3587] = 887, + [3588] = 371, + [3589] = 983, + [3590] = 1088, + [3591] = 896, + [3592] = 1025, + [3593] = 898, + [3594] = 860, + [3595] = 1089, + [3596] = 833, + [3597] = 980, + [3598] = 998, + [3599] = 834, + [3600] = 985, + [3601] = 982, + [3602] = 835, + [3603] = 950, + [3604] = 986, + [3605] = 952, + [3606] = 978, + [3607] = 936, + [3608] = 951, + [3609] = 981, + [3610] = 1017, + [3611] = 1008, + [3612] = 861, + [3613] = 375, + [3614] = 957, + [3615] = 947, + [3616] = 924, + [3617] = 910, + [3618] = 920, + [3619] = 914, + [3620] = 911, + [3621] = 908, + [3622] = 904, + [3623] = 833, + [3624] = 858, + [3625] = 859, + [3626] = 953, + [3627] = 860, + [3628] = 974, + [3629] = 864, + [3630] = 965, + [3631] = 863, + [3632] = 3632, + [3633] = 862, + [3634] = 861, + [3635] = 864, + [3636] = 955, + [3637] = 1084, + [3638] = 793, + [3639] = 973, + [3640] = 360, + [3641] = 1078, + [3642] = 834, + [3643] = 835, + [3644] = 1052, + [3645] = 807, + [3646] = 1051, + [3647] = 967, + [3648] = 3648, + [3649] = 969, + [3650] = 862, + [3651] = 987, + [3652] = 863, + [3653] = 809, + [3654] = 977, + [3655] = 833, + [3656] = 968, + [3657] = 880, + [3658] = 3658, + [3659] = 805, + [3660] = 883, + [3661] = 939, + [3662] = 802, + [3663] = 966, + [3664] = 960, + [3665] = 982, + [3666] = 963, + [3667] = 1016, + [3668] = 845, + [3669] = 1014, + [3670] = 834, + [3671] = 835, + [3672] = 1002, + [3673] = 887, + [3674] = 1071, + [3675] = 910, + [3676] = 1108, + [3677] = 868, + [3678] = 1098, + [3679] = 867, + [3680] = 898, + [3681] = 896, + [3682] = 1199, + [3683] = 876, + [3684] = 869, + [3685] = 871, + [3686] = 1106, + [3687] = 887, + [3688] = 873, + [3689] = 831, + [3690] = 872, + [3691] = 1090, + [3692] = 1043, + [3693] = 871, + [3694] = 858, + [3695] = 869, + [3696] = 1054, + [3697] = 1105, + [3698] = 868, + [3699] = 867, + [3700] = 1138, + [3701] = 1139, + [3702] = 924, + [3703] = 872, + [3704] = 1120, + [3705] = 1142, + [3706] = 1146, + [3707] = 831, + [3708] = 873, + [3709] = 1068, + [3710] = 3710, + [3711] = 1198, + [3712] = 1104, + [3713] = 1187, + [3714] = 1147, + [3715] = 1097, + [3716] = 1150, [3717] = 1151, - [3718] = 1193, - [3719] = 833, - [3720] = 1112, - [3721] = 874, - [3722] = 1116, - [3723] = 373, - [3724] = 940, - [3725] = 1103, - [3726] = 862, - [3727] = 1148, - [3728] = 1082, - [3729] = 845, - [3730] = 1115, - [3731] = 359, - [3732] = 1147, - [3733] = 1078, - [3734] = 1161, - [3735] = 1146, - [3736] = 1143, - [3737] = 1141, - [3738] = 1087, - [3739] = 1100, - [3740] = 357, - [3741] = 363, - [3742] = 1162, - [3743] = 1174, - [3744] = 1057, - [3745] = 1150, - [3746] = 1051, - [3747] = 1152, - [3748] = 1113, - [3749] = 361, - [3750] = 1173, - [3751] = 1172, - [3752] = 1038, - [3753] = 858, - [3754] = 831, - [3755] = 1121, - [3756] = 375, - [3757] = 1117, - [3758] = 360, - [3759] = 854, - [3760] = 1128, - [3761] = 1187, - [3762] = 1104, - [3763] = 1196, - [3764] = 1114, - [3765] = 861, - [3766] = 1138, - [3767] = 1200, - [3768] = 1175, - [3769] = 1055, - [3770] = 1102, - [3771] = 890, - [3772] = 1163, - [3773] = 364, - [3774] = 843, - [3775] = 1125, - [3776] = 1183, - [3777] = 1097, - [3778] = 1134, - [3779] = 1043, - [3780] = 1136, - [3781] = 1184, - [3782] = 942, - [3783] = 1086, - [3784] = 1044, - [3785] = 890, - [3786] = 1139, - [3787] = 995, - [3788] = 1039, - [3789] = 843, - [3790] = 1176, - [3791] = 899, - [3792] = 1110, - [3793] = 1123, - [3794] = 1198, - [3795] = 1099, - [3796] = 1181, - [3797] = 365, - [3798] = 1049, - [3799] = 898, - [3800] = 1050, - [3801] = 858, - [3802] = 831, - [3803] = 1129, - [3804] = 850, - [3805] = 1083, - [3806] = 1058, - [3807] = 1130, - [3808] = 902, - [3809] = 1126, - [3810] = 1149, - [3811] = 831, - [3812] = 898, - [3813] = 1084, - [3814] = 968, - [3815] = 1189, - [3816] = 851, - [3817] = 1188, - [3818] = 906, - [3819] = 1108, - [3820] = 883, - [3821] = 1109, - [3822] = 3822, - [3823] = 863, - [3824] = 1107, - [3825] = 864, - [3826] = 895, - [3827] = 910, - [3828] = 842, - [3829] = 1056, - [3830] = 915, - [3831] = 1081, - [3832] = 1085, - [3833] = 1127, - [3834] = 921, - [3835] = 922, - [3836] = 1091, - [3837] = 1201, - [3838] = 1079, - [3839] = 925, - [3840] = 898, - [3841] = 3841, - [3842] = 1140, - [3843] = 1073, - [3844] = 1074, - [3845] = 890, - [3846] = 858, - [3847] = 1063, - [3848] = 1132, - [3849] = 1106, - [3850] = 1098, - [3851] = 1069, - [3852] = 1083, - [3853] = 1177, - [3854] = 899, - [3855] = 1094, - [3856] = 1133, - [3857] = 1081, - [3858] = 902, - [3859] = 366, - [3860] = 1089, - [3861] = 902, - [3862] = 1070, - [3863] = 370, - [3864] = 1160, - [3865] = 1135, - [3866] = 3866, - [3867] = 374, - [3868] = 906, - [3869] = 1197, - [3870] = 1047, - [3871] = 906, - [3872] = 1179, - [3873] = 1052, - [3874] = 367, - [3875] = 1142, - [3876] = 925, - [3877] = 1083, - [3878] = 1032, - [3879] = 371, - [3880] = 1033, - [3881] = 910, - [3882] = 1075, - [3883] = 910, - [3884] = 915, - [3885] = 372, - [3886] = 915, - [3887] = 369, - [3888] = 858, - [3889] = 922, - [3890] = 1060, - [3891] = 1168, - [3892] = 921, - [3893] = 1081, - [3894] = 921, - [3895] = 922, - [3896] = 1185, - [3897] = 925, - [3898] = 368, - [3899] = 849, - [3900] = 831, - [3901] = 1195, - [3902] = 1169, - [3903] = 785, - [3904] = 374, - [3905] = 862, - [3906] = 874, - [3907] = 870, - [3908] = 833, - [3909] = 875, - [3910] = 888, - [3911] = 856, - [3912] = 869, - [3913] = 3913, - [3914] = 793, - [3915] = 861, - [3916] = 373, + [3718] = 1109, + [3719] = 1121, + [3720] = 1154, + [3721] = 1157, + [3722] = 1143, + [3723] = 1112, + [3724] = 1159, + [3725] = 1064, + [3726] = 876, + [3727] = 859, + [3728] = 1161, + [3729] = 860, + [3730] = 1121, + [3731] = 1114, + [3732] = 1164, + [3733] = 369, + [3734] = 1133, + [3735] = 861, + [3736] = 1082, + [3737] = 1096, + [3738] = 898, + [3739] = 1165, + [3740] = 1115, + [3741] = 1168, + [3742] = 896, + [3743] = 1169, + [3744] = 1120, + [3745] = 1046, + [3746] = 1094, + [3747] = 1171, + [3748] = 365, + [3749] = 928, + [3750] = 1172, + [3751] = 832, + [3752] = 1080, + [3753] = 1129, + [3754] = 864, + [3755] = 356, + [3756] = 371, + [3757] = 1079, + [3758] = 1047, + [3759] = 1016, + [3760] = 1014, + [3761] = 1121, + [3762] = 904, + [3763] = 904, + [3764] = 1111, + [3765] = 1050, + [3766] = 908, + [3767] = 1136, + [3768] = 911, + [3769] = 1167, + [3770] = 1118, + [3771] = 1086, + [3772] = 1107, + [3773] = 367, + [3774] = 1099, + [3775] = 951, + [3776] = 1177, + [3777] = 1081, + [3778] = 1053, + [3779] = 1173, + [3780] = 908, + [3781] = 1179, + [3782] = 863, + [3783] = 914, + [3784] = 1156, + [3785] = 920, + [3786] = 1174, + [3787] = 862, + [3788] = 910, + [3789] = 372, + [3790] = 1120, + [3791] = 924, + [3792] = 1083, + [3793] = 1175, + [3794] = 1166, + [3795] = 1176, + [3796] = 1101, + [3797] = 904, + [3798] = 863, + [3799] = 911, + [3800] = 1188, + [3801] = 862, + [3802] = 1077, + [3803] = 1130, + [3804] = 1149, + [3805] = 998, + [3806] = 1155, + [3807] = 1065, + [3808] = 1066, + [3809] = 863, + [3810] = 950, + [3811] = 1190, + [3812] = 926, + [3813] = 862, + [3814] = 1103, + [3815] = 908, + [3816] = 1194, + [3817] = 911, + [3818] = 1163, + [3819] = 1075, + [3820] = 1067, + [3821] = 1170, + [3822] = 883, + [3823] = 1178, + [3824] = 1063, + [3825] = 1140, + [3826] = 1051, + [3827] = 1180, + [3828] = 832, + [3829] = 1039, + [3830] = 1092, + [3831] = 880, + [3832] = 898, + [3833] = 1052, + [3834] = 1074, + [3835] = 1134, + [3836] = 1062, + [3837] = 1076, + [3838] = 914, + [3839] = 887, + [3840] = 1100, + [3841] = 1089, + [3842] = 1196, + [3843] = 1088, + [3844] = 1073, + [3845] = 370, + [3846] = 358, + [3847] = 376, + [3848] = 1078, + [3849] = 1084, + [3850] = 1141, + [3851] = 1038, + [3852] = 1069, + [3853] = 1135, + [3854] = 914, + [3855] = 359, + [3856] = 952, + [3857] = 366, + [3858] = 924, + [3859] = 1181, + [3860] = 361, + [3861] = 1182, + [3862] = 1192, + [3863] = 1041, + [3864] = 1193, + [3865] = 357, + [3866] = 1085, + [3867] = 360, + [3868] = 1113, + [3869] = 863, + [3870] = 1055, + [3871] = 1056, + [3872] = 1162, + [3873] = 3873, + [3874] = 1057, + [3875] = 362, + [3876] = 1183, + [3877] = 1058, + [3878] = 1070, + [3879] = 1148, + [3880] = 843, + [3881] = 363, + [3882] = 920, + [3883] = 862, + [3884] = 374, + [3885] = 3885, + [3886] = 1059, + [3887] = 1197, + [3888] = 920, + [3889] = 910, + [3890] = 844, + [3891] = 1087, + [3892] = 1185, + [3893] = 1186, + [3894] = 1072, + [3895] = 1061, + [3896] = 1195, + [3897] = 1060, + [3898] = 1189, + [3899] = 1201, + [3900] = 1200, + [3901] = 896, + [3902] = 1102, + [3903] = 802, + [3904] = 894, + [3905] = 912, + [3906] = 1078, + [3907] = 356, + [3908] = 1052, + [3909] = 863, + [3910] = 1051, + [3911] = 365, + [3912] = 807, + [3913] = 369, + [3914] = 805, + [3915] = 367, + [3916] = 862, [3917] = 3917, - [3918] = 928, - [3919] = 359, - [3920] = 896, - [3921] = 788, - [3922] = 896, - [3923] = 941, - [3924] = 1125, - [3925] = 1134, - [3926] = 1136, - [3927] = 858, - [3928] = 831, - [3929] = 836, - [3930] = 838, - [3931] = 1137, - [3932] = 916, - [3933] = 895, - [3934] = 789, - [3935] = 926, - [3936] = 802, - [3937] = 368, - [3938] = 367, - [3939] = 366, - [3940] = 365, - [3941] = 364, - [3942] = 375, - [3943] = 363, - [3944] = 361, - [3945] = 785, - [3946] = 357, - [3947] = 360, - [3948] = 858, - [3949] = 831, - [3950] = 1079, - [3951] = 1073, - [3952] = 918, - [3953] = 369, - [3954] = 788, - [3955] = 883, - [3956] = 793, - [3957] = 370, - [3958] = 371, - [3959] = 372, - [3960] = 845, - [3961] = 802, - [3962] = 883, - [3963] = 895, - [3964] = 789, - [3965] = 1073, - [3966] = 902, - [3967] = 849, - [3968] = 3968, - [3969] = 864, - [3970] = 915, - [3971] = 906, - [3972] = 993, - [3973] = 863, - [3974] = 3974, - [3975] = 789, - [3976] = 921, - [3977] = 890, - [3978] = 850, - [3979] = 898, + [3918] = 371, + [3919] = 363, + [3920] = 362, + [3921] = 793, + [3922] = 360, + [3923] = 357, + [3924] = 361, + [3925] = 366, + [3926] = 359, + [3927] = 376, + [3928] = 358, + [3929] = 370, + [3930] = 807, + [3931] = 805, + [3932] = 372, + [3933] = 883, + [3934] = 1084, + [3935] = 868, + [3936] = 921, + [3937] = 833, + [3938] = 802, + [3939] = 809, + [3940] = 940, + [3941] = 867, + [3942] = 809, + [3943] = 869, + [3944] = 1088, + [3945] = 1089, + [3946] = 889, + [3947] = 835, + [3948] = 834, + [3949] = 903, + [3950] = 871, + [3951] = 374, + [3952] = 872, + [3953] = 862, + [3954] = 880, + [3955] = 3955, + [3956] = 863, + [3957] = 876, + [3958] = 793, + [3959] = 831, + [3960] = 922, + [3961] = 880, + [3962] = 940, + [3963] = 873, + [3964] = 883, + [3965] = 863, + [3966] = 1084, + [3967] = 1135, + [3968] = 1130, + [3969] = 954, + [3970] = 982, + [3971] = 363, + [3972] = 954, + [3973] = 1136, + [3974] = 863, + [3975] = 362, + [3976] = 1052, + [3977] = 375, + [3978] = 1051, + [3979] = 360, [3980] = 3980, - [3981] = 851, - [3982] = 788, - [3983] = 922, - [3984] = 910, - [3985] = 899, - [3986] = 1010, - [3987] = 1010, - [3988] = 1008, - [3989] = 925, - [3990] = 371, - [3991] = 1010, - [3992] = 993, - [3993] = 1125, - [3994] = 870, - [3995] = 793, - [3996] = 372, - [3997] = 1134, - [3998] = 864, - [3999] = 1136, - [4000] = 1018, - [4001] = 1109, - [4002] = 4002, - [4003] = 4003, - [4004] = 1137, - [4005] = 785, - [4006] = 373, - [4007] = 1101, - [4008] = 1099, - [4009] = 1018, - [4010] = 863, - [4011] = 1079, - [4012] = 858, - [4013] = 375, - [4014] = 1100, - [4015] = 1106, - [4016] = 374, - [4017] = 359, - [4018] = 369, - [4019] = 368, - [4020] = 367, - [4021] = 366, - [4022] = 831, - [4023] = 365, - [4024] = 364, - [4025] = 360, - [4026] = 836, - [4027] = 363, - [4028] = 802, - [4029] = 370, - [4030] = 838, - [4031] = 361, - [4032] = 357, - [4033] = 849, - [4034] = 851, - [4035] = 850, - [4036] = 831, - [4037] = 858, - [4038] = 358, - [4039] = 845, - [4040] = 925, - [4041] = 861, - [4042] = 869, - [4043] = 1079, - [4044] = 863, - [4045] = 1125, - [4046] = 831, - [4047] = 1073, - [4048] = 1125, - [4049] = 1134, - [4050] = 1136, - [4051] = 1137, - [4052] = 899, - [4053] = 836, - [4054] = 858, - [4055] = 831, - [4056] = 875, - [4057] = 1134, - [4058] = 870, - [4059] = 898, - [4060] = 849, - [4061] = 902, - [4062] = 1073, - [4063] = 906, - [4064] = 910, - [4065] = 864, - [4066] = 883, - [4067] = 833, - [4068] = 915, - [4069] = 858, - [4070] = 869, - [4071] = 861, - [4072] = 874, - [4073] = 862, - [4074] = 856, - [4075] = 856, - [4076] = 875, - [4077] = 833, - [4078] = 921, - [4079] = 890, - [4080] = 845, - [4081] = 874, - [4082] = 922, - [4083] = 838, - [4084] = 895, - [4085] = 850, - [4086] = 1079, - [4087] = 851, - [4088] = 1137, - [4089] = 1136, - [4090] = 862, - [4091] = 874, - [4092] = 1008, - [4093] = 831, - [4094] = 858, - [4095] = 1010, - [4096] = 922, - [4097] = 921, - [4098] = 838, - [4099] = 890, - [4100] = 833, - [4101] = 915, - [4102] = 869, - [4103] = 861, - [4104] = 862, - [4105] = 910, - [4106] = 870, - [4107] = 898, - [4108] = 899, - [4109] = 856, - [4110] = 906, - [4111] = 895, - [4112] = 875, - [4113] = 883, - [4114] = 925, - [4115] = 845, - [4116] = 896, - [4117] = 836, - [4118] = 902, - [4119] = 374, - [4120] = 993, - [4121] = 895, - [4122] = 831, - [4123] = 883, - [4124] = 1137, - [4125] = 925, - [4126] = 1008, - [4127] = 831, - [4128] = 1018, - [4129] = 858, - [4130] = 359, - [4131] = 1010, - [4132] = 1010, - [4133] = 858, - [4134] = 360, - [4135] = 357, - [4136] = 361, - [4137] = 363, - [4138] = 1079, - [4139] = 1073, - [4140] = 364, - [4141] = 365, - [4142] = 899, - [4143] = 373, - [4144] = 922, - [4145] = 366, - [4146] = 898, - [4147] = 367, - [4148] = 368, - [4149] = 370, - [4150] = 371, - [4151] = 372, - [4152] = 921, - [4153] = 369, - [4154] = 1136, - [4155] = 375, - [4156] = 1134, - [4157] = 1125, - [4158] = 915, - [4159] = 358, - [4160] = 890, - [4161] = 902, + [3981] = 805, + [3982] = 371, + [3983] = 1134, + [3984] = 357, + [3985] = 1129, + [3986] = 369, + [3987] = 361, + [3988] = 3988, + [3989] = 807, + [3990] = 910, + [3991] = 833, + [3992] = 834, + [3993] = 904, + [3994] = 366, + [3995] = 372, + [3996] = 374, + [3997] = 3997, + [3998] = 356, + [3999] = 835, + [4000] = 864, + [4001] = 982, + [4002] = 920, + [4003] = 924, + [4004] = 365, + [4005] = 861, + [4006] = 977, + [4007] = 793, + [4008] = 4008, + [4009] = 862, + [4010] = 860, + [4011] = 359, + [4012] = 914, + [4013] = 802, + [4014] = 911, + [4015] = 982, + [4016] = 376, + [4017] = 977, + [4018] = 908, + [4019] = 887, + [4020] = 858, + [4021] = 358, + [4022] = 809, + [4023] = 896, + [4024] = 859, + [4025] = 370, + [4026] = 862, + [4027] = 858, + [4028] = 864, + [4029] = 859, + [4030] = 4030, + [4031] = 1089, + [4032] = 1088, + [4033] = 898, + [4034] = 861, + [4035] = 860, + [4036] = 981, + [4037] = 367, + [4038] = 1078, + [4039] = 1051, + [4040] = 862, + [4041] = 880, + [4042] = 860, + [4043] = 861, + [4044] = 898, + [4045] = 858, + [4046] = 910, + [4047] = 867, + [4048] = 1078, + [4049] = 834, + [4050] = 920, + [4051] = 924, + [4052] = 883, + [4053] = 876, + [4054] = 863, + [4055] = 869, + [4056] = 871, + [4057] = 1088, + [4058] = 871, + [4059] = 833, + [4060] = 872, + [4061] = 1089, + [4062] = 1084, + [4063] = 1078, + [4064] = 1052, + [4065] = 914, + [4066] = 835, + [4067] = 876, + [4068] = 873, + [4069] = 1088, + [4070] = 831, + [4071] = 863, + [4072] = 873, + [4073] = 831, + [4074] = 887, + [4075] = 1052, + [4076] = 872, + [4077] = 859, + [4078] = 1051, + [4079] = 1089, + [4080] = 868, + [4081] = 862, + [4082] = 911, + [4083] = 869, + [4084] = 868, + [4085] = 896, + [4086] = 867, + [4087] = 908, + [4088] = 1084, + [4089] = 864, + [4090] = 904, + [4091] = 896, + [4092] = 981, + [4093] = 868, + [4094] = 910, + [4095] = 869, + [4096] = 898, + [4097] = 924, + [4098] = 940, + [4099] = 833, + [4100] = 521, + [4101] = 871, + [4102] = 914, + [4103] = 862, + [4104] = 863, + [4105] = 521, + [4106] = 883, + [4107] = 835, + [4108] = 867, + [4109] = 876, + [4110] = 872, + [4111] = 880, + [4112] = 831, + [4113] = 873, + [4114] = 834, + [4115] = 904, + [4116] = 920, + [4117] = 887, + [4118] = 908, + [4119] = 911, + [4120] = 982, + [4121] = 981, + [4122] = 911, + [4123] = 360, + [4124] = 1084, + [4125] = 1078, + [4126] = 1052, + [4127] = 1051, + [4128] = 914, + [4129] = 977, + [4130] = 883, + [4131] = 357, + [4132] = 376, + [4133] = 924, + [4134] = 863, + [4135] = 898, + [4136] = 862, + [4137] = 369, + [4138] = 365, + [4139] = 356, + [4140] = 371, + [4141] = 904, + [4142] = 982, + [4143] = 358, + [4144] = 887, + [4145] = 359, + [4146] = 370, + [4147] = 374, + [4148] = 361, + [4149] = 367, + [4150] = 362, + [4151] = 363, + [4152] = 366, + [4153] = 372, + [4154] = 375, + [4155] = 863, + [4156] = 862, + [4157] = 982, + [4158] = 896, + [4159] = 908, + [4160] = 880, + [4161] = 954, [4162] = 910, - [4163] = 906, - [4164] = 357, - [4165] = 1136, - [4166] = 360, - [4167] = 883, - [4168] = 375, - [4169] = 374, - [4170] = 369, - [4171] = 1073, - [4172] = 1079, - [4173] = 368, - [4174] = 895, - [4175] = 373, - [4176] = 372, - [4177] = 371, - [4178] = 1125, - [4179] = 1134, - [4180] = 365, - [4181] = 359, - [4182] = 366, - [4183] = 367, - [4184] = 370, - [4185] = 1137, - [4186] = 361, - [4187] = 363, - [4188] = 364, - [4189] = 375, - [4190] = 1125, - [4191] = 363, - [4192] = 365, - [4193] = 366, - [4194] = 359, - [4195] = 1136, - [4196] = 370, - [4197] = 372, - [4198] = 1137, - [4199] = 4199, - [4200] = 360, - [4201] = 364, - [4202] = 373, - [4203] = 1079, - [4204] = 371, - [4205] = 1073, - [4206] = 374, - [4207] = 369, - [4208] = 368, - [4209] = 1134, - [4210] = 367, - [4211] = 357, + [4163] = 1088, + [4164] = 1089, + [4165] = 920, + [4166] = 362, + [4167] = 358, + [4168] = 371, + [4169] = 359, + [4170] = 366, + [4171] = 1084, + [4172] = 361, + [4173] = 356, + [4174] = 357, + [4175] = 360, + [4176] = 1089, + [4177] = 1088, + [4178] = 369, + [4179] = 1078, + [4180] = 370, + [4181] = 363, + [4182] = 365, + [4183] = 1051, + [4184] = 376, + [4185] = 367, + [4186] = 1052, + [4187] = 374, + [4188] = 372, + [4189] = 880, + [4190] = 883, + [4191] = 1084, + [4192] = 360, + [4193] = 1089, + [4194] = 363, + [4195] = 1088, + [4196] = 369, + [4197] = 521, + [4198] = 356, + [4199] = 372, + [4200] = 362, + [4201] = 4201, + [4202] = 367, + [4203] = 374, + [4204] = 1078, + [4205] = 370, + [4206] = 521, + [4207] = 358, + [4208] = 376, + [4209] = 357, + [4210] = 365, + [4211] = 359, [4212] = 361, - [4213] = 4213, - [4214] = 1125, - [4215] = 4215, - [4216] = 4215, - [4217] = 1134, - [4218] = 4213, - [4219] = 4213, - [4220] = 4215, - [4221] = 4213, - [4222] = 4213, - [4223] = 4215, - [4224] = 4213, - [4225] = 1137, - [4226] = 4215, - [4227] = 4215, - [4228] = 1073, - [4229] = 1079, - [4230] = 1136, - [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 4231, + [4213] = 1051, + [4214] = 371, + [4215] = 1052, + [4216] = 366, + [4217] = 4217, + [4218] = 1089, + [4219] = 4217, + [4220] = 4220, + [4221] = 4220, + [4222] = 4217, + [4223] = 4220, + [4224] = 1052, + [4225] = 4217, + [4226] = 4217, + [4227] = 1084, + [4228] = 1088, + [4229] = 1051, + [4230] = 4220, + [4231] = 1078, + [4232] = 4220, + [4233] = 4220, + [4234] = 4217, [4235] = 4235, [4236] = 4236, [4237] = 4237, [4238] = 4238, [4239] = 4239, [4240] = 4240, - [4241] = 4232, + [4241] = 4241, [4242] = 4242, - [4243] = 4231, - [4244] = 4236, + [4243] = 4243, + [4244] = 4242, [4245] = 4245, - [4246] = 4237, - [4247] = 4231, - [4248] = 4248, - [4249] = 4238, - [4250] = 4250, - [4251] = 4251, - [4252] = 4252, - [4253] = 4238, - [4254] = 4254, - [4255] = 4238, - [4256] = 4256, - [4257] = 4236, - [4258] = 4236, - [4259] = 4237, - [4260] = 4237, - [4261] = 4232, - [4262] = 4239, - [4263] = 4239, - [4264] = 4232, - [4265] = 4239, - [4266] = 4232, - [4267] = 4267, - [4268] = 4268, - [4269] = 4232, - [4270] = 4270, - [4271] = 4239, - [4272] = 4237, - [4273] = 4232, - [4274] = 4231, - [4275] = 4239, - [4276] = 4236, - [4277] = 4238, - [4278] = 4237, - [4279] = 4236, - [4280] = 4280, + [4246] = 4245, + [4247] = 4243, + [4248] = 4243, + [4249] = 4239, + [4250] = 4239, + [4251] = 4238, + [4252] = 4238, + [4253] = 4253, + [4254] = 4242, + [4255] = 4237, + [4256] = 4245, + [4257] = 4243, + [4258] = 4258, + [4259] = 4239, + [4260] = 4243, + [4261] = 4238, + [4262] = 4242, + [4263] = 4237, + [4264] = 4245, + [4265] = 4243, + [4266] = 4239, + [4267] = 4238, + [4268] = 4242, + [4269] = 4245, + [4270] = 4237, + [4271] = 4237, + [4272] = 4272, + [4273] = 4273, + [4274] = 4243, + [4275] = 4242, + [4276] = 4276, + [4277] = 4237, + [4278] = 4278, + [4279] = 4245, + [4280] = 4239, [4281] = 4238, - [4282] = 4231, - [4283] = 4238, - [4284] = 4231, + [4282] = 4242, + [4283] = 4242, + [4284] = 4238, [4285] = 4285, [4286] = 4238, - [4287] = 4238, - [4288] = 4236, - [4289] = 4239, - [4290] = 4239, - [4291] = 4239, - [4292] = 4236, - [4293] = 4237, - [4294] = 4231, - [4295] = 4232, - [4296] = 4231, - [4297] = 4237, - [4298] = 4236, - [4299] = 4232, - [4300] = 4300, - [4301] = 4237, + [4287] = 4239, + [4288] = 4245, + [4289] = 4289, + [4290] = 4243, + [4291] = 4238, + [4292] = 4237, + [4293] = 4239, + [4294] = 4242, + [4295] = 4239, + [4296] = 4296, + [4297] = 4245, + [4298] = 4298, + [4299] = 4237, + [4300] = 4245, + [4301] = 4301, [4302] = 4302, - [4303] = 4303, - [4304] = 4304, + [4303] = 4237, + [4304] = 4243, [4305] = 4305, [4306] = 4306, - [4307] = 4305, - [4308] = 4306, - [4309] = 4303, - [4310] = 4302, - [4311] = 4305, - [4312] = 4303, - [4313] = 4304, + [4307] = 4307, + [4308] = 4308, + [4309] = 4308, + [4310] = 4307, + [4311] = 4306, + [4312] = 4308, + [4313] = 4307, [4314] = 4314, - [4315] = 4306, + [4315] = 4315, [4316] = 4306, - [4317] = 4306, - [4318] = 4303, - [4319] = 4306, - [4320] = 4305, - [4321] = 4304, - [4322] = 4305, - [4323] = 4304, - [4324] = 4305, - [4325] = 4305, - [4326] = 4314, - [4327] = 4303, - [4328] = 4302, - [4329] = 4304, - [4330] = 4330, - [4331] = 4303, + [4317] = 4307, + [4318] = 4315, + [4319] = 4314, + [4320] = 4308, + [4321] = 4306, + [4322] = 4314, + [4323] = 4323, + [4324] = 4315, + [4325] = 4314, + [4326] = 4307, + [4327] = 4315, + [4328] = 4306, + [4329] = 4307, + [4330] = 4308, + [4331] = 4306, [4332] = 4306, - [4333] = 4305, - [4334] = 4306, - [4335] = 4302, - [4336] = 4305, - [4337] = 4306, - [4338] = 4302, - [4339] = 4303, - [4340] = 4303, - [4341] = 4302, + [4333] = 4314, + [4334] = 4315, + [4335] = 4335, + [4336] = 4315, + [4337] = 4337, + [4338] = 4314, + [4339] = 4315, + [4340] = 4315, + [4341] = 4314, [4342] = 4306, - [4343] = 4302, - [4344] = 4305, - [4345] = 4302, - [4346] = 4306, - [4347] = 4314, - [4348] = 4305, - [4349] = 4302, - [4350] = 4305, - [4351] = 4306, - [4352] = 4306, - [4353] = 4302, - [4354] = 4305, - [4355] = 4302, - [4356] = 4302, - [4357] = 4303, - [4358] = 4305, - [4359] = 4303, - [4360] = 4302, - [4361] = 4361, - [4362] = 4305, - [4363] = 4304, - [4364] = 4306, - [4365] = 4306, - [4366] = 4303, - [4367] = 4306, - [4368] = 4330, - [4369] = 4306, - [4370] = 4314, - [4371] = 4305, - [4372] = 4302, - [4373] = 4373, - [4374] = 4302, - [4375] = 4305, - [4376] = 4306, - [4377] = 4306, - [4378] = 4330, - [4379] = 4303, - [4380] = 4302, - [4381] = 4302, - [4382] = 4302, - [4383] = 4305, - [4384] = 4302, - [4385] = 4305, - [4386] = 4306, - [4387] = 4303, - [4388] = 4302, - [4389] = 4303, - [4390] = 4305, - [4391] = 4305, + [4343] = 4307, + [4344] = 4308, + [4345] = 4308, + [4346] = 4323, + [4347] = 4347, + [4348] = 4314, + [4349] = 4308, + [4350] = 4323, + [4351] = 4315, + [4352] = 4335, + [4353] = 4335, + [4354] = 4315, + [4355] = 4355, + [4356] = 4315, + [4357] = 4308, + [4358] = 4306, + [4359] = 4314, + [4360] = 4314, + [4361] = 4306, + [4362] = 4315, + [4363] = 4306, + [4364] = 4314, + [4365] = 4308, + [4366] = 4308, + [4367] = 4314, + [4368] = 4323, + [4369] = 4315, + [4370] = 4306, + [4371] = 4335, + [4372] = 4306, + [4373] = 4335, + [4374] = 4315, + [4375] = 4308, + [4376] = 4314, + [4377] = 4314, + [4378] = 4315, + [4379] = 4379, + [4380] = 4314, + [4381] = 4323, + [4382] = 4308, + [4383] = 4306, + [4384] = 4306, + [4385] = 4306, + [4386] = 4308, + [4387] = 4306, + [4388] = 4315, + [4389] = 4315, + [4390] = 4314, + [4391] = 4315, [4392] = 4306, - [4393] = 4305, - [4394] = 4306, - [4395] = 4304, - [4396] = 4304, - [4397] = 4303, - [4398] = 4302, - [4399] = 4303, - [4400] = 4306, - [4401] = 4302, - [4402] = 4302, - [4403] = 4303, - [4404] = 4303, - [4405] = 4306, - [4406] = 4304, - [4407] = 4303, - [4408] = 4330, - [4409] = 4305, + [4393] = 4308, + [4394] = 4314, + [4395] = 4308, + [4396] = 4315, + [4397] = 4306, + [4398] = 4307, + [4399] = 4306, + [4400] = 4307, + [4401] = 4314, + [4402] = 4306, + [4403] = 4308, + [4404] = 4323, + [4405] = 4314, + [4406] = 4315, + [4407] = 4314, + [4408] = 4308, + [4409] = 4315, [4410] = 4306, - [4411] = 4330, - [4412] = 4303, - [4413] = 4314, - [4414] = 4302, - [4415] = 4305, + [4411] = 4314, + [4412] = 4308, + [4413] = 4308, + [4414] = 4306, + [4415] = 4308, [4416] = 4314, - [4417] = 4302, - [4418] = 4306, - [4419] = 4305, - [4420] = 4302, - [4421] = 4306, - [4422] = 4305, - [4423] = 4303, - [4424] = 4303, - [4425] = 4425, - [4426] = 4305, - [4427] = 4303, - [4428] = 4303, - [4429] = 4429, - [4430] = 4302, - [4431] = 758, - [4432] = 759, - [4433] = 776, - [4434] = 765, - [4435] = 765, - [4436] = 783, - [4437] = 784, - [4438] = 819, - [4439] = 802, - [4440] = 785, - [4441] = 793, - [4442] = 789, - [4443] = 788, - [4444] = 874, - [4445] = 842, - [4446] = 864, - [4447] = 863, - [4448] = 851, - [4449] = 850, - [4450] = 846, - [4451] = 783, - [4452] = 856, - [4453] = 833, - [4454] = 870, - [4455] = 847, - [4456] = 776, - [4457] = 836, - [4458] = 838, - [4459] = 865, - [4460] = 868, - [4461] = 843, - [4462] = 861, - [4463] = 875, - [4464] = 862, - [4465] = 869, - [4466] = 834, - [4467] = 765, - [4468] = 854, - [4469] = 845, - [4470] = 765, - [4471] = 849, - [4472] = 848, - [4473] = 928, - [4474] = 878, - [4475] = 942, - [4476] = 940, - [4477] = 937, - [4478] = 885, - [4479] = 941, - [4480] = 890, - [4481] = 894, - [4482] = 926, - [4483] = 938, - [4484] = 931, + [4417] = 4315, + [4418] = 4314, + [4419] = 4306, + [4420] = 4314, + [4421] = 4308, + [4422] = 4306, + [4423] = 4308, + [4424] = 4308, + [4425] = 4314, + [4426] = 4314, + [4427] = 4306, + [4428] = 4308, + [4429] = 4315, + [4430] = 4315, + [4431] = 4306, + [4432] = 4308, + [4433] = 4308, + [4434] = 4314, + [4435] = 754, + [4436] = 764, + [4437] = 772, + [4438] = 755, + [4439] = 784, + [4440] = 793, + [4441] = 809, + [4442] = 807, + [4443] = 800, + [4444] = 805, + [4445] = 802, + [4446] = 858, + [4447] = 834, + [4448] = 843, + [4449] = 833, + [4450] = 772, + [4451] = 873, + [4452] = 853, + [4453] = 868, + [4454] = 871, + [4455] = 845, + [4456] = 755, + [4457] = 831, + [4458] = 859, + [4459] = 832, + [4460] = 867, + [4461] = 844, + [4462] = 851, + [4463] = 855, + [4464] = 835, + [4465] = 864, + [4466] = 872, + [4467] = 856, + [4468] = 861, + [4469] = 869, + [4470] = 850, + [4471] = 876, + [4472] = 860, + [4473] = 909, + [4474] = 913, + [4475] = 912, + [4476] = 854, + [4477] = 904, + [4478] = 934, + [4479] = 926, + [4480] = 940, + [4481] = 896, + [4482] = 903, + [4483] = 910, + [4484] = 902, [4485] = 887, - [4486] = 852, - [4487] = 892, - [4488] = 939, - [4489] = 898, - [4490] = 918, - [4491] = 925, - [4492] = 943, - [4493] = 784, - [4494] = 883, - [4495] = 936, - [4496] = 920, + [4486] = 915, + [4487] = 928, + [4488] = 880, + [4489] = 883, + [4490] = 908, + [4491] = 901, + [4492] = 927, + [4493] = 892, + [4494] = 885, + [4495] = 943, + [4496] = 924, [4497] = 922, - [4498] = 921, - [4499] = 895, - [4500] = 924, - [4501] = 899, - [4502] = 915, - [4503] = 877, - [4504] = 910, - [4505] = 891, - [4506] = 906, - [4507] = 896, - [4508] = 902, - [4509] = 949, - [4510] = 907, - [4511] = 1027, - [4512] = 948, - [4513] = 1026, - [4514] = 1022, - [4515] = 788, - [4516] = 789, - [4517] = 1010, - [4518] = 793, - [4519] = 785, - [4520] = 1023, - [4521] = 962, - [4522] = 983, - [4523] = 802, - [4524] = 971, - [4525] = 999, - [4526] = 1014, - [4527] = 981, - [4528] = 989, - [4529] = 1018, - [4530] = 959, - [4531] = 963, - [4532] = 1029, - [4533] = 843, - [4534] = 1006, - [4535] = 992, - [4536] = 819, - [4537] = 843, - [4538] = 965, - [4539] = 802, - [4540] = 964, - [4541] = 991, - [4542] = 1015, - [4543] = 947, - [4544] = 1035, - [4545] = 997, - [4546] = 982, - [4547] = 1036, - [4548] = 785, - [4549] = 914, - [4550] = 966, - [4551] = 951, - [4552] = 958, - [4553] = 793, - [4554] = 834, - [4555] = 944, - [4556] = 1020, - [4557] = 957, - [4558] = 1007, - [4559] = 955, - [4560] = 789, - [4561] = 1005, - [4562] = 788, - [4563] = 993, - [4564] = 917, - [4565] = 976, - [4566] = 843, - [4567] = 1074, - [4568] = 1047, - [4569] = 864, - [4570] = 1122, - [4571] = 1052, - [4572] = 854, - [4573] = 1124, - [4574] = 1053, - [4575] = 1081, - [4576] = 842, - [4577] = 788, - [4578] = 1069, - [4579] = 1106, - [4580] = 1039, - [4581] = 1128, - [4582] = 1129, - [4583] = 1130, - [4584] = 1109, - [4585] = 1075, - [4586] = 1084, - [4587] = 1118, - [4588] = 1131, - [4589] = 1083, - [4590] = 1113, - [4591] = 1083, - [4592] = 1133, - [4593] = 831, - [4594] = 858, - [4595] = 1184, - [4596] = 1081, - [4597] = 1146, - [4598] = 1117, - [4599] = 1152, - [4600] = 1114, - [4601] = 1150, - [4602] = 1138, - [4603] = 1139, - [4604] = 1140, - [4605] = 1110, - [4606] = 1108, - [4607] = 1142, - [4608] = 1103, - [4609] = 1098, - [4610] = 869, - [4611] = 861, - [4612] = 856, - [4613] = 998, - [4614] = 875, - [4615] = 789, - [4616] = 995, - [4617] = 1085, - [4618] = 1072, - [4619] = 1168, - [4620] = 833, - [4621] = 945, - [4622] = 1101, - [4623] = 1143, - [4624] = 1169, - [4625] = 1199, - [4626] = 874, - [4627] = 862, - [4628] = 1105, - [4629] = 845, - [4630] = 1063, - [4631] = 1060, - [4632] = 838, - [4633] = 1078, - [4634] = 1147, - [4635] = 1125, - [4636] = 1057, - [4637] = 865, - [4638] = 1148, - [4639] = 1141, - [4640] = 863, - [4641] = 1188, - [4642] = 1091, - [4643] = 1134, - [4644] = 1043, - [4645] = 1049, - [4646] = 1050, - [4647] = 1170, - [4648] = 1126, - [4649] = 1058, - [4650] = 1151, - [4651] = 1153, - [4652] = 1179, - [4653] = 1154, - [4654] = 1056, - [4655] = 1135, - [4656] = 1044, - [4657] = 1136, - [4658] = 1172, - [4659] = 1155, - [4660] = 842, - [4661] = 1173, - [4662] = 1156, - [4663] = 1158, - [4664] = 1174, - [4665] = 851, - [4666] = 1095, - [4667] = 1159, - [4668] = 1137, - [4669] = 1161, - [4670] = 1162, - [4671] = 1054, - [4672] = 868, - [4673] = 865, - [4674] = 850, - [4675] = 849, - [4676] = 1121, - [4677] = 834, - [4678] = 854, - [4679] = 1176, - [4680] = 848, - [4681] = 1082, - [4682] = 1120, - [4683] = 1119, - [4684] = 802, - [4685] = 1123, - [4686] = 849, - [4687] = 1116, - [4688] = 1175, - [4689] = 1198, - [4690] = 1087, - [4691] = 1115, - [4692] = 831, - [4693] = 1079, - [4694] = 1104, - [4695] = 1102, - [4696] = 1177, - [4697] = 1181, - [4698] = 1178, - [4699] = 1187, - [4700] = 1186, - [4701] = 1167, - [4702] = 1165, - [4703] = 1038, - [4704] = 852, - [4705] = 1112, - [4706] = 1160, - [4707] = 1195, - [4708] = 1197, - [4709] = 1132, - [4710] = 793, - [4711] = 850, - [4712] = 1107, - [4713] = 870, - [4714] = 1149, - [4715] = 1182, - [4716] = 1201, - [4717] = 1086, - [4718] = 1200, - [4719] = 1185, - [4720] = 1127, - [4721] = 851, - [4722] = 1073, - [4723] = 1055, - [4724] = 869, - [4725] = 1196, - [4726] = 1100, - [4727] = 1051, - [4728] = 861, - [4729] = 856, - [4730] = 875, - [4731] = 847, - [4732] = 833, - [4733] = 874, - [4734] = 862, - [4735] = 845, - [4736] = 1099, - [4737] = 863, - [4738] = 1193, - [4739] = 858, - [4740] = 1183, - [4741] = 846, - [4742] = 1045, - [4743] = 1163, - [4744] = 785, - [4745] = 1097, - [4746] = 864, - [4747] = 1191, - [4748] = 836, - [4749] = 1189, - [4750] = 1192, - [4751] = 1094, - [4752] = 1089, - [4753] = 1190, - [4754] = 1070, - [4755] = 789, - [4756] = 848, - [4757] = 847, - [4758] = 892, - [4759] = 942, - [4760] = 793, - [4761] = 918, - [4762] = 1010, - [4763] = 785, - [4764] = 890, - [4765] = 943, - [4766] = 898, - [4767] = 846, - [4768] = 899, + [4498] = 784, + [4499] = 911, + [4500] = 881, + [4501] = 914, + [4502] = 898, + [4503] = 891, + [4504] = 916, + [4505] = 920, + [4506] = 921, + [4507] = 897, + [4508] = 919, + [4509] = 985, + [4510] = 978, + [4511] = 980, + [4512] = 945, + [4513] = 968, + [4514] = 957, + [4515] = 977, + [4516] = 974, + [4517] = 948, + [4518] = 966, + [4519] = 793, + [4520] = 958, + [4521] = 802, + [4522] = 832, + [4523] = 807, + [4524] = 1023, + [4525] = 805, + [4526] = 970, + [4527] = 805, + [4528] = 932, + [4529] = 809, + [4530] = 953, + [4531] = 1008, + [4532] = 1017, + [4533] = 807, + [4534] = 936, + [4535] = 802, + [4536] = 986, + [4537] = 973, + [4538] = 1002, + [4539] = 1005, + [4540] = 993, + [4541] = 982, + [4542] = 960, + [4543] = 1025, + [4544] = 983, + [4545] = 1021, + [4546] = 969, + [4547] = 947, + [4548] = 995, + [4549] = 988, + [4550] = 987, + [4551] = 967, + [4552] = 793, + [4553] = 965, + [4554] = 1018, + [4555] = 800, + [4556] = 809, + [4557] = 996, + [4558] = 832, + [4559] = 832, + [4560] = 1012, + [4561] = 939, + [4562] = 963, + [4563] = 954, + [4564] = 955, + [4565] = 964, + [4566] = 845, + [4567] = 1146, + [4568] = 1148, + [4569] = 1088, + [4570] = 1089, + [4571] = 843, + [4572] = 844, + [4573] = 876, + [4574] = 873, + [4575] = 831, + [4576] = 872, + [4577] = 871, + [4578] = 869, + [4579] = 868, + [4580] = 867, + [4581] = 855, + [4582] = 1120, + [4583] = 952, + [4584] = 951, + [4585] = 950, + [4586] = 1121, + [4587] = 1075, + [4588] = 1129, + [4589] = 862, + [4590] = 863, + [4591] = 1138, + [4592] = 1139, + [4593] = 1142, + [4594] = 1143, + [4595] = 1147, + [4596] = 1150, + [4597] = 1151, + [4598] = 1154, + [4599] = 1157, + [4600] = 1159, + [4601] = 1161, + [4602] = 1181, + [4603] = 1164, + [4604] = 1165, + [4605] = 1168, + [4606] = 1169, + [4607] = 1170, + [4608] = 876, + [4609] = 1171, + [4610] = 1172, + [4611] = 873, + [4612] = 831, + [4613] = 1173, + [4614] = 833, + [4615] = 872, + [4616] = 1174, + [4617] = 871, + [4618] = 869, + [4619] = 868, + [4620] = 1175, + [4621] = 867, + [4622] = 1176, + [4623] = 1178, + [4624] = 1180, + [4625] = 1038, + [4626] = 1198, + [4627] = 1182, + [4628] = 1183, + [4629] = 1185, + [4630] = 1186, + [4631] = 1189, + [4632] = 1201, + [4633] = 1200, + [4634] = 1199, + [4635] = 1197, + [4636] = 1196, + [4637] = 1195, + [4638] = 1194, + [4639] = 1193, + [4640] = 1051, + [4641] = 1192, + [4642] = 1052, + [4643] = 1039, + [4644] = 1078, + [4645] = 1084, + [4646] = 1188, + [4647] = 1187, + [4648] = 1179, + [4649] = 1177, + [4650] = 1167, + [4651] = 1166, + [4652] = 1163, + [4653] = 1162, + [4654] = 1120, + [4655] = 1156, + [4656] = 1155, + [4657] = 1141, + [4658] = 1140, + [4659] = 1103, + [4660] = 1121, + [4661] = 1115, + [4662] = 1112, + [4663] = 1109, + [4664] = 1108, + [4665] = 843, + [4666] = 1105, + [4667] = 1104, + [4668] = 858, + [4669] = 859, + [4670] = 860, + [4671] = 861, + [4672] = 864, + [4673] = 844, + [4674] = 845, + [4675] = 809, + [4676] = 802, + [4677] = 805, + [4678] = 807, + [4679] = 793, + [4680] = 1087, + [4681] = 1102, + [4682] = 1100, + [4683] = 1134, + [4684] = 1099, + [4685] = 1130, + [4686] = 1098, + [4687] = 1097, + [4688] = 1101, + [4689] = 1096, + [4690] = 1094, + [4691] = 854, + [4692] = 1092, + [4693] = 1106, + [4694] = 1090, + [4695] = 1135, + [4696] = 1107, + [4697] = 1081, + [4698] = 1083, + [4699] = 1190, + [4700] = 834, + [4701] = 835, + [4702] = 1149, + [4703] = 1041, + [4704] = 850, + [4705] = 851, + [4706] = 1043, + [4707] = 1046, + [4708] = 858, + [4709] = 1047, + [4710] = 859, + [4711] = 1111, + [4712] = 1050, + [4713] = 1053, + [4714] = 860, + [4715] = 1054, + [4716] = 1113, + [4717] = 1136, + [4718] = 861, + [4719] = 1055, + [4720] = 1056, + [4721] = 864, + [4722] = 1057, + [4723] = 1058, + [4724] = 1133, + [4725] = 1059, + [4726] = 1073, + [4727] = 1114, + [4728] = 853, + [4729] = 855, + [4730] = 856, + [4731] = 1060, + [4732] = 1061, + [4733] = 1062, + [4734] = 1063, + [4735] = 1064, + [4736] = 1118, + [4737] = 1065, + [4738] = 1066, + [4739] = 1067, + [4740] = 862, + [4741] = 863, + [4742] = 1068, + [4743] = 1069, + [4744] = 1070, + [4745] = 1071, + [4746] = 1072, + [4747] = 1074, + [4748] = 1076, + [4749] = 1077, + [4750] = 1079, + [4751] = 1086, + [4752] = 1085, + [4753] = 1082, + [4754] = 1080, + [4755] = 833, + [4756] = 903, + [4757] = 912, + [4758] = 921, + [4759] = 922, + [4760] = 850, + [4761] = 851, + [4762] = 853, + [4763] = 880, + [4764] = 854, + [4765] = 883, + [4766] = 891, + [4767] = 856, + [4768] = 809, [4769] = 802, - [4770] = 1008, - [4771] = 940, - [4772] = 869, - [4773] = 902, - [4774] = 906, - [4775] = 910, - [4776] = 863, + [4770] = 805, + [4771] = 834, + [4772] = 835, + [4773] = 807, + [4774] = 793, + [4775] = 809, + [4776] = 802, [4777] = 915, - [4778] = 926, - [4779] = 921, - [4780] = 789, - [4781] = 922, - [4782] = 925, - [4783] = 928, - [4784] = 788, - [4785] = 896, - [4786] = 918, - [4787] = 926, - [4788] = 928, - [4789] = 941, - [4790] = 870, - [4791] = 941, - [4792] = 862, - [4793] = 874, - [4794] = 931, - [4795] = 938, - [4796] = 939, - [4797] = 788, - [4798] = 894, - [4799] = 936, - [4800] = 861, - [4801] = 856, - [4802] = 920, - [4803] = 924, - [4804] = 849, - [4805] = 883, - [4806] = 895, - [4807] = 875, - [4808] = 887, - [4809] = 802, - [4810] = 838, - [4811] = 836, - [4812] = 868, - [4813] = 845, - [4814] = 852, - [4815] = 850, - [4816] = 793, - [4817] = 833, - [4818] = 877, - [4819] = 937, - [4820] = 851, - [4821] = 785, - [4822] = 891, - [4823] = 864, - [4824] = 885, - [4825] = 878, - [4826] = 851, - [4827] = 1010, - [4828] = 965, - [4829] = 864, - [4830] = 838, - [4831] = 863, - [4832] = 851, - [4833] = 898, - [4834] = 899, - [4835] = 864, - [4836] = 964, - [4837] = 982, - [4838] = 850, - [4839] = 917, - [4840] = 963, - [4841] = 976, - [4842] = 966, - [4843] = 951, - [4844] = 836, - [4845] = 1014, - [4846] = 849, - [4847] = 925, - [4848] = 922, - [4849] = 921, - [4850] = 993, - [4851] = 849, - [4852] = 915, - [4853] = 838, - [4854] = 947, - [4855] = 999, - [4856] = 1035, - [4857] = 910, - [4858] = 1008, - [4859] = 863, - [4860] = 1027, - [4861] = 948, - [4862] = 906, - [4863] = 902, - [4864] = 1005, - [4865] = 1026, - [4866] = 1018, - [4867] = 1022, - [4868] = 981, - [4869] = 944, - [4870] = 836, - [4871] = 997, - [4872] = 958, - [4873] = 907, - [4874] = 850, - [4875] = 957, - [4876] = 971, - [4877] = 983, - [4878] = 890, - [4879] = 962, - [4880] = 955, - [4881] = 1029, - [4882] = 914, - [4883] = 1015, - [4884] = 1006, - [4885] = 989, - [4886] = 949, - [4887] = 870, - [4888] = 959, - [4889] = 870, - [4890] = 1020, - [4891] = 992, - [4892] = 991, - [4893] = 895, - [4894] = 1036, - [4895] = 1023, - [4896] = 1007, - [4897] = 883, - [4898] = 1010, - [4899] = 869, - [4900] = 1185, - [4901] = 1087, - [4902] = 1162, - [4903] = 1085, - [4904] = 1072, - [4905] = 1136, - [4906] = 1133, - [4907] = 1098, - [4908] = 915, - [4909] = 921, - [4910] = 1104, - [4911] = 898, - [4912] = 1039, - [4913] = 1134, - [4914] = 1130, - [4915] = 1131, - [4916] = 1138, - [4917] = 1038, - [4918] = 1079, - [4919] = 1198, - [4920] = 1103, - [4921] = 1081, - [4922] = 1169, - [4923] = 1128, - [4924] = 1187, - [4925] = 1172, - [4926] = 902, - [4927] = 902, - [4928] = 1091, - [4929] = 875, - [4930] = 922, - [4931] = 1108, - [4932] = 1124, - [4933] = 983, - [4934] = 1122, - [4935] = 1186, - [4936] = 1167, - [4937] = 1005, - [4938] = 1110, - [4939] = 1150, - [4940] = 1106, - [4941] = 1125, - [4942] = 1053, - [4943] = 1165, - [4944] = 1073, - [4945] = 1142, - [4946] = 1140, - [4947] = 1120, - [4948] = 1054, - [4949] = 1119, - [4950] = 1118, - [4951] = 1141, - [4952] = 925, - [4953] = 1116, - [4954] = 1115, - [4955] = 1063, - [4956] = 1161, - [4957] = 856, - [4958] = 1176, - [4959] = 845, - [4960] = 1060, - [4961] = 1160, - [4962] = 1139, - [4963] = 899, - [4964] = 1078, - [4965] = 921, - [4966] = 1146, - [4967] = 1193, - [4968] = 1082, - [4969] = 1057, - [4970] = 1095, - [4971] = 1132, - [4972] = 1107, - [4973] = 1181, - [4974] = 1149, - [4975] = 1113, - [4976] = 1075, - [4977] = 1147, - [4978] = 895, - [4979] = 869, - [4980] = 1086, - [4981] = 1083, - [4982] = 1109, - [4983] = 922, - [4984] = 1084, - [4985] = 1055, - [4986] = 1043, - [4987] = 831, - [4988] = 1051, - [4989] = 1074, - [4990] = 1174, - [4991] = 1044, - [4992] = 1192, - [4993] = 1058, - [4994] = 1045, - [4995] = 1056, - [4996] = 1129, - [4997] = 1163, - [4998] = 1175, - [4999] = 858, - [5000] = 1135, - [5001] = 1148, - [5002] = 910, - [5003] = 833, - [5004] = 1151, - [5005] = 896, - [5006] = 1049, - [5007] = 858, - [5008] = 1195, - [5009] = 831, - [5010] = 1153, - [5011] = 1177, - [5012] = 1070, - [5013] = 890, - [5014] = 1094, - [5015] = 1197, - [5016] = 1191, - [5017] = 1154, - [5018] = 1189, - [5019] = 915, - [5020] = 1101, - [5021] = 1097, - [5022] = 1102, - [5023] = 906, - [5024] = 1112, - [5025] = 1184, - [5026] = 1190, - [5027] = 861, - [5028] = 856, - [5029] = 1155, - [5030] = 1168, - [5031] = 1123, - [5032] = 1201, - [5033] = 1089, - [5034] = 1183, - [5035] = 1200, - [5036] = 1083, - [5037] = 1126, - [5038] = 1170, - [5039] = 1047, - [5040] = 1100, - [5041] = 874, - [5042] = 925, - [5043] = 906, - [5044] = 862, - [5045] = 883, - [5046] = 875, - [5047] = 998, - [5048] = 1196, - [5049] = 1178, - [5050] = 1069, - [5051] = 1179, - [5052] = 1052, - [5053] = 861, - [5054] = 995, - [5055] = 1156, - [5056] = 1081, - [5057] = 910, - [5058] = 1188, - [5059] = 1158, - [5060] = 1114, - [5061] = 898, - [5062] = 1182, - [5063] = 1105, - [5064] = 1137, - [5065] = 1199, - [5066] = 1117, - [5067] = 1121, - [5068] = 999, - [5069] = 1173, - [5070] = 1099, - [5071] = 845, - [5072] = 833, - [5073] = 1143, - [5074] = 890, - [5075] = 874, - [5076] = 862, - [5077] = 1050, + [4778] = 982, + [4779] = 903, + [4780] = 805, + [4781] = 909, + [4782] = 981, + [4783] = 912, + [4784] = 807, + [4785] = 921, + [4786] = 793, + [4787] = 864, + [4788] = 922, + [4789] = 861, + [4790] = 927, + [4791] = 919, + [4792] = 916, + [4793] = 860, + [4794] = 943, + [4795] = 867, + [4796] = 902, + [4797] = 901, + [4798] = 859, + [4799] = 881, + [4800] = 885, + [4801] = 868, + [4802] = 869, + [4803] = 897, + [4804] = 858, + [4805] = 871, + [4806] = 934, + [4807] = 913, + [4808] = 872, + [4809] = 831, + [4810] = 873, + [4811] = 892, + [4812] = 940, + [4813] = 876, + [4814] = 926, + [4815] = 887, + [4816] = 896, + [4817] = 898, + [4818] = 908, + [4819] = 910, + [4820] = 914, + [4821] = 911, + [4822] = 924, + [4823] = 920, + [4824] = 928, + [4825] = 904, + [4826] = 958, + [4827] = 860, + [4828] = 858, + [4829] = 833, + [4830] = 859, + [4831] = 904, + [4832] = 834, + [4833] = 908, + [4834] = 911, + [4835] = 945, + [4836] = 914, + [4837] = 957, + [4838] = 920, + [4839] = 910, + [4840] = 924, + [4841] = 860, + [4842] = 861, + [4843] = 966, + [4844] = 967, + [4845] = 968, + [4846] = 969, + [4847] = 973, + [4848] = 974, + [4849] = 978, + [4850] = 980, + [4851] = 983, + [4852] = 987, + [4853] = 982, + [4854] = 864, + [4855] = 988, + [4856] = 1023, + [4857] = 1021, + [4858] = 932, + [4859] = 1018, + [4860] = 1012, + [4861] = 996, + [4862] = 995, + [4863] = 977, + [4864] = 964, + [4865] = 965, + [4866] = 955, + [4867] = 939, + [4868] = 960, + [4869] = 963, + [4870] = 833, + [4871] = 864, + [4872] = 993, + [4873] = 982, + [4874] = 985, + [4875] = 947, + [4876] = 986, + [4877] = 1025, + [4878] = 936, + [4879] = 1017, + [4880] = 1008, + [4881] = 835, + [4882] = 954, + [4883] = 981, + [4884] = 861, + [4885] = 970, + [4886] = 835, + [4887] = 859, + [4888] = 898, + [4889] = 834, + [4890] = 887, + [4891] = 858, + [4892] = 880, + [4893] = 948, + [4894] = 1002, + [4895] = 1005, + [4896] = 883, + [4897] = 896, + [4898] = 953, + [4899] = 1173, + [4900] = 1197, + [4901] = 1067, + [4902] = 1066, + [4903] = 1065, + [4904] = 1118, + [4905] = 1064, + [4906] = 1051, + [4907] = 1052, + [4908] = 1078, + [4909] = 1084, + [4910] = 1063, + [4911] = 1062, + [4912] = 914, + [4913] = 1061, + [4914] = 1092, + [4915] = 1060, + [4916] = 867, + [4917] = 1114, + [4918] = 1130, + [4919] = 920, + [4920] = 873, + [4921] = 871, + [4922] = 1059, + [4923] = 1133, + [4924] = 869, + [4925] = 1102, + [4926] = 1058, + [4927] = 896, + [4928] = 940, + [4929] = 1057, + [4930] = 868, + [4931] = 869, + [4932] = 1056, + [4933] = 1055, + [4934] = 1136, + [4935] = 898, + [4936] = 910, + [4937] = 1106, + [4938] = 1075, + [4939] = 1090, + [4940] = 1113, + [4941] = 1054, + [4942] = 871, + [4943] = 1053, + [4944] = 1050, + [4945] = 868, + [4946] = 1111, + [4947] = 880, + [4948] = 1104, + [4949] = 1047, + [4950] = 872, + [4951] = 1105, + [4952] = 1046, + [4953] = 1108, + [4954] = 924, + [4955] = 1109, + [4956] = 1120, + [4957] = 1112, + [4958] = 872, + [4959] = 1068, + [4960] = 1115, + [4961] = 1043, + [4962] = 1121, + [4963] = 883, + [4964] = 1103, + [4965] = 831, + [4966] = 1094, + [4967] = 863, + [4968] = 862, + [4969] = 1140, + [4970] = 1069, + [4971] = 873, + [4972] = 1088, + [4973] = 1070, + [4974] = 1141, + [4975] = 1148, + [4976] = 1071, + [4977] = 908, + [4978] = 1135, + [4979] = 924, + [4980] = 1155, + [4981] = 1156, + [4982] = 1120, + [4983] = 867, + [4984] = 876, + [4985] = 1098, + [4986] = 1162, + [4987] = 1163, + [4988] = 1166, + [4989] = 1072, + [4990] = 904, + [4991] = 1073, + [4992] = 1097, + [4993] = 887, + [4994] = 896, + [4995] = 863, + [4996] = 1167, + [4997] = 1074, + [4998] = 1177, + [4999] = 876, + [5000] = 911, + [5001] = 1187, + [5002] = 1121, + [5003] = 1188, + [5004] = 1107, + [5005] = 910, + [5006] = 1039, + [5007] = 1129, + [5008] = 1192, + [5009] = 1193, + [5010] = 1041, + [5011] = 1194, + [5012] = 1099, + [5013] = 1089, + [5014] = 1087, + [5015] = 1149, + [5016] = 1076, + [5017] = 1195, + [5018] = 1077, + [5019] = 1196, + [5020] = 887, + [5021] = 1079, + [5022] = 950, + [5023] = 1080, + [5024] = 951, + [5025] = 862, + [5026] = 898, + [5027] = 1190, + [5028] = 1198, + [5029] = 1199, + [5030] = 1086, + [5031] = 1200, + [5032] = 1081, + [5033] = 920, + [5034] = 1201, + [5035] = 1085, + [5036] = 1189, + [5037] = 1186, + [5038] = 1185, + [5039] = 947, + [5040] = 1138, + [5041] = 1139, + [5042] = 1082, + [5043] = 1183, + [5044] = 904, + [5045] = 1182, + [5046] = 1181, + [5047] = 948, + [5048] = 952, + [5049] = 1038, + [5050] = 1142, + [5051] = 1180, + [5052] = 1178, + [5053] = 1096, + [5054] = 1143, + [5055] = 1176, + [5056] = 914, + [5057] = 1175, + [5058] = 1146, + [5059] = 1174, + [5060] = 831, + [5061] = 1147, + [5062] = 1150, + [5063] = 1101, + [5064] = 1172, + [5065] = 1100, + [5066] = 1083, + [5067] = 1171, + [5068] = 1170, + [5069] = 1169, + [5070] = 1179, + [5071] = 953, + [5072] = 1165, + [5073] = 1168, + [5074] = 1164, + [5075] = 911, + [5076] = 1161, + [5077] = 908, [5078] = 1159, - [5079] = 945, - [5080] = 1152, - [5081] = 1127, - [5082] = 899, - [5083] = 928, - [5084] = 877, - [5085] = 891, - [5086] = 1008, - [5087] = 831, - [5088] = 982, - [5089] = 885, - [5090] = 858, - [5091] = 915, - [5092] = 878, - [5093] = 802, - [5094] = 937, - [5095] = 993, - [5096] = 883, - [5097] = 785, - [5098] = 831, - [5099] = 858, - [5100] = 1137, - [5101] = 1136, - [5102] = 1134, + [5079] = 1134, + [5080] = 1151, + [5081] = 1157, + [5082] = 1154, + [5083] = 805, + [5084] = 880, + [5085] = 862, + [5086] = 957, + [5087] = 927, + [5088] = 911, + [5089] = 863, + [5090] = 885, + [5091] = 970, + [5092] = 908, + [5093] = 945, + [5094] = 921, + [5095] = 904, + [5096] = 919, + [5097] = 916, + [5098] = 922, + [5099] = 809, + [5100] = 802, + [5101] = 914, + [5102] = 958, [5103] = 793, - [5104] = 789, - [5105] = 1125, - [5106] = 921, - [5107] = 906, - [5108] = 917, - [5109] = 924, - [5110] = 936, - [5111] = 939, - [5112] = 941, - [5113] = 925, - [5114] = 802, - [5115] = 894, - [5116] = 1014, - [5117] = 785, - [5118] = 910, - [5119] = 959, - [5120] = 1079, - [5121] = 1073, - [5122] = 793, - [5123] = 788, - [5124] = 943, - [5125] = 789, - [5126] = 887, - [5127] = 902, - [5128] = 896, - [5129] = 788, - [5130] = 895, - [5131] = 892, - [5132] = 5132, - [5133] = 907, - [5134] = 1010, - [5135] = 858, - [5136] = 948, - [5137] = 1018, - [5138] = 831, - [5139] = 914, - [5140] = 922, - [5141] = 944, - [5142] = 951, - [5143] = 785, - [5144] = 993, - [5145] = 1010, - [5146] = 831, - [5147] = 1079, - [5148] = 1073, - [5149] = 858, - [5150] = 1018, - [5151] = 382, - [5152] = 389, - [5153] = 883, - [5154] = 379, - [5155] = 849, - [5156] = 1136, - [5157] = 870, - [5158] = 383, - [5159] = 864, - [5160] = 1101, - [5161] = 863, - [5162] = 1100, - [5163] = 851, - [5164] = 1099, - [5165] = 850, - [5166] = 838, - [5167] = 788, - [5168] = 958, - [5169] = 976, - [5170] = 849, - [5171] = 836, - [5172] = 998, - [5173] = 858, - [5174] = 831, - [5175] = 850, - [5176] = 965, - [5177] = 995, - [5178] = 1125, - [5179] = 895, - [5180] = 945, - [5181] = 1134, - [5182] = 1109, - [5183] = 1006, - [5184] = 789, - [5185] = 1137, - [5186] = 1195, - [5187] = 834, - [5188] = 851, - [5189] = 793, - [5190] = 1106, - [5191] = 864, - [5192] = 863, - [5193] = 802, - [5194] = 1029, - [5195] = 1075, - [5196] = 875, - [5197] = 1134, - [5198] = 5198, - [5199] = 864, - [5200] = 856, - [5201] = 971, - [5202] = 863, - [5203] = 851, - [5204] = 947, - [5205] = 874, - [5206] = 862, - [5207] = 861, - [5208] = 915, - [5209] = 1035, - [5210] = 869, - [5211] = 910, - [5212] = 845, - [5213] = 850, - [5214] = 906, - [5215] = 992, - [5216] = 849, - [5217] = 966, - [5218] = 1079, - [5219] = 436, - [5220] = 423, - [5221] = 1137, - [5222] = 1136, - [5223] = 1022, - [5224] = 964, - [5225] = 902, - [5226] = 1026, - [5227] = 1020, - [5228] = 963, - [5229] = 1125, - [5230] = 836, - [5231] = 379, - [5232] = 838, - [5233] = 870, - [5234] = 1027, - [5235] = 869, - [5236] = 861, - [5237] = 1015, - [5238] = 957, - [5239] = 856, - [5240] = 875, - [5241] = 389, - [5242] = 427, - [5243] = 925, - [5244] = 955, - [5245] = 1073, - [5246] = 382, - [5247] = 899, - [5248] = 989, - [5249] = 898, - [5250] = 833, - [5251] = 833, - [5252] = 1023, - [5253] = 874, - [5254] = 862, - [5255] = 962, - [5256] = 949, - [5257] = 981, - [5258] = 5258, - [5259] = 921, - [5260] = 845, - [5261] = 435, - [5262] = 383, - [5263] = 991, - [5264] = 422, - [5265] = 890, - [5266] = 922, - [5267] = 1007, - [5268] = 1036, - [5269] = 1191, - [5270] = 1038, - [5271] = 906, - [5272] = 1179, - [5273] = 902, - [5274] = 910, - [5275] = 1173, - [5276] = 436, - [5277] = 1182, - [5278] = 5278, - [5279] = 845, - [5280] = 1008, - [5281] = 1172, - [5282] = 862, - [5283] = 409, - [5284] = 415, - [5285] = 1185, - [5286] = 5278, - [5287] = 1169, - [5288] = 915, - [5289] = 1168, - [5290] = 1127, - [5291] = 1177, - [5292] = 874, + [5104] = 805, + [5105] = 807, + [5106] = 809, + [5107] = 943, + [5108] = 5108, + [5109] = 940, + [5110] = 802, + [5111] = 862, + [5112] = 863, + [5113] = 862, + [5114] = 936, + [5115] = 902, + [5116] = 901, + [5117] = 863, + [5118] = 920, + [5119] = 807, + [5120] = 1088, + [5121] = 1089, + [5122] = 881, + [5123] = 934, + [5124] = 793, + [5125] = 977, + [5126] = 939, + [5127] = 1051, + [5128] = 954, + [5129] = 892, + [5130] = 981, + [5131] = 932, + [5132] = 883, + [5133] = 982, + [5134] = 1052, + [5135] = 910, + [5136] = 924, + [5137] = 897, + [5138] = 913, + [5139] = 1078, + [5140] = 1084, + [5141] = 393, + [5142] = 395, + [5143] = 863, + [5144] = 860, + [5145] = 1112, + [5146] = 861, + [5147] = 859, + [5148] = 834, + [5149] = 835, + [5150] = 858, + [5151] = 864, + [5152] = 883, + [5153] = 880, + [5154] = 952, + [5155] = 1130, + [5156] = 1134, + [5157] = 1135, + [5158] = 1002, + [5159] = 1136, + [5160] = 954, + [5161] = 951, + [5162] = 983, + [5163] = 1008, + [5164] = 1017, + [5165] = 809, + [5166] = 864, + [5167] = 950, + [5168] = 802, + [5169] = 861, + [5170] = 860, + [5171] = 805, + [5172] = 398, + [5173] = 862, + [5174] = 859, + [5175] = 807, + [5176] = 858, + [5177] = 793, + [5178] = 1052, + [5179] = 1018, + [5180] = 982, + [5181] = 845, + [5182] = 1187, + [5183] = 1078, + [5184] = 833, + [5185] = 1089, + [5186] = 977, + [5187] = 1088, + [5188] = 384, + [5189] = 960, + [5190] = 955, + [5191] = 1129, + [5192] = 1051, + [5193] = 863, + [5194] = 862, + [5195] = 1084, + [5196] = 398, + [5197] = 860, + [5198] = 964, + [5199] = 831, + [5200] = 963, + [5201] = 873, + [5202] = 965, + [5203] = 876, + [5204] = 384, + [5205] = 5205, + [5206] = 995, + [5207] = 426, + [5208] = 1012, + [5209] = 5209, + [5210] = 924, + [5211] = 833, + [5212] = 876, + [5213] = 393, + [5214] = 835, + [5215] = 910, + [5216] = 993, + [5217] = 834, + [5218] = 920, + [5219] = 430, + [5220] = 872, + [5221] = 914, + [5222] = 985, + [5223] = 858, + [5224] = 871, + [5225] = 911, + [5226] = 986, + [5227] = 908, + [5228] = 988, + [5229] = 859, + [5230] = 867, + [5231] = 987, + [5232] = 904, + [5233] = 425, + [5234] = 438, + [5235] = 1023, + [5236] = 868, + [5237] = 869, + [5238] = 395, + [5239] = 980, + [5240] = 871, + [5241] = 872, + [5242] = 1005, + [5243] = 869, + [5244] = 1051, + [5245] = 861, + [5246] = 864, + [5247] = 978, + [5248] = 1052, + [5249] = 831, + [5250] = 873, + [5251] = 868, + [5252] = 1078, + [5253] = 1084, + [5254] = 867, + [5255] = 429, + [5256] = 1021, + [5257] = 996, + [5258] = 966, + [5259] = 896, + [5260] = 1089, + [5261] = 967, + [5262] = 974, + [5263] = 968, + [5264] = 973, + [5265] = 898, + [5266] = 1088, + [5267] = 887, + [5268] = 969, + [5269] = 1172, + [5270] = 1169, + [5271] = 1168, + [5272] = 1171, + [5273] = 1165, + [5274] = 1170, + [5275] = 1164, + [5276] = 1051, + [5277] = 1161, + [5278] = 425, + [5279] = 1159, + [5280] = 914, + [5281] = 1173, + [5282] = 1157, + [5283] = 911, + [5284] = 1151, + [5285] = 908, + [5286] = 1150, + [5287] = 1147, + [5288] = 1174, + [5289] = 5289, + [5290] = 920, + [5291] = 1143, + [5292] = 1142, [5293] = 1175, - [5294] = 1200, - [5295] = 921, - [5296] = 1139, - [5297] = 922, - [5298] = 1190, - [5299] = 5278, - [5300] = 1142, - [5301] = 1083, - [5302] = 925, - [5303] = 435, - [5304] = 1140, - [5305] = 5305, - [5306] = 1130, - [5307] = 1081, - [5308] = 5278, - [5309] = 1129, - [5310] = 5305, - [5311] = 1128, - [5312] = 838, - [5313] = 836, - [5314] = 833, - [5315] = 422, - [5316] = 875, - [5317] = 5317, - [5318] = 5318, - [5319] = 1124, - [5320] = 1118, - [5321] = 1161, - [5322] = 1122, - [5323] = 1181, - [5324] = 1039, - [5325] = 870, - [5326] = 942, - [5327] = 1120, - [5328] = 1119, - [5329] = 1162, - [5330] = 1131, - [5331] = 5278, - [5332] = 918, - [5333] = 5278, - [5334] = 890, - [5335] = 1192, - [5336] = 1116, - [5337] = 856, - [5338] = 861, - [5339] = 1138, - [5340] = 898, - [5341] = 1115, - [5342] = 1133, - [5343] = 899, - [5344] = 1174, - [5345] = 427, - [5346] = 1074, - [5347] = 1163, - [5348] = 1052, - [5349] = 1159, - [5350] = 413, - [5351] = 1158, - [5352] = 940, - [5353] = 1137, - [5354] = 1136, - [5355] = 1053, - [5356] = 1156, - [5357] = 1087, - [5358] = 869, - [5359] = 1082, - [5360] = 926, - [5361] = 896, - [5362] = 406, - [5363] = 1141, - [5364] = 1193, - [5365] = 5278, - [5366] = 1069, - [5367] = 1196, - [5368] = 1113, - [5369] = 5278, - [5370] = 423, - [5371] = 1201, - [5372] = 1178, - [5373] = 1143, - [5374] = 5278, - [5375] = 1134, - [5376] = 858, - [5377] = 1010, - [5378] = 1084, - [5379] = 1197, - [5380] = 831, - [5381] = 1125, - [5382] = 1146, - [5383] = 1188, - [5384] = 883, - [5385] = 1147, - [5386] = 1148, - [5387] = 895, - [5388] = 1176, - [5389] = 1151, - [5390] = 1153, - [5391] = 1154, - [5392] = 1155, - [5393] = 441, - [5394] = 5394, + [5294] = 1139, + [5295] = 1138, + [5296] = 904, + [5297] = 5297, + [5298] = 862, + [5299] = 910, + [5300] = 1176, + [5301] = 863, + [5302] = 903, + [5303] = 409, + [5304] = 1104, + [5305] = 924, + [5306] = 1084, + [5307] = 1078, + [5308] = 1105, + [5309] = 1108, + [5310] = 867, + [5311] = 1146, + [5312] = 1178, + [5313] = 1180, + [5314] = 1038, + [5315] = 1181, + [5316] = 1182, + [5317] = 1183, + [5318] = 1052, + [5319] = 1185, + [5320] = 1186, + [5321] = 1114, + [5322] = 868, + [5323] = 1189, + [5324] = 1201, + [5325] = 1109, + [5326] = 1200, + [5327] = 429, + [5328] = 5297, + [5329] = 5329, + [5330] = 1199, + [5331] = 1198, + [5332] = 1154, + [5333] = 869, + [5334] = 1197, + [5335] = 926, + [5336] = 1149, + [5337] = 912, + [5338] = 1196, + [5339] = 928, + [5340] = 1133, + [5341] = 871, + [5342] = 872, + [5343] = 1195, + [5344] = 1194, + [5345] = 831, + [5346] = 940, + [5347] = 413, + [5348] = 880, + [5349] = 1193, + [5350] = 873, + [5351] = 1192, + [5352] = 1039, + [5353] = 1188, + [5354] = 1179, + [5355] = 883, + [5356] = 982, + [5357] = 981, + [5358] = 1177, + [5359] = 1167, + [5360] = 876, + [5361] = 1166, + [5362] = 1163, + [5363] = 1162, + [5364] = 438, + [5365] = 898, + [5366] = 896, + [5367] = 1156, + [5368] = 1120, + [5369] = 1155, + [5370] = 411, + [5371] = 5297, + [5372] = 5372, + [5373] = 1148, + [5374] = 5289, + [5375] = 833, + [5376] = 5297, + [5377] = 426, + [5378] = 887, + [5379] = 5297, + [5380] = 408, + [5381] = 1141, + [5382] = 5297, + [5383] = 1140, + [5384] = 430, + [5385] = 1103, + [5386] = 835, + [5387] = 834, + [5388] = 5297, + [5389] = 1121, + [5390] = 5297, + [5391] = 5297, + [5392] = 1115, + [5393] = 5393, + [5394] = 911, [5395] = 5395, - [5396] = 921, - [5397] = 5397, - [5398] = 910, - [5399] = 409, - [5400] = 415, - [5401] = 890, - [5402] = 444, - [5403] = 5395, - [5404] = 915, - [5405] = 1008, - [5406] = 898, - [5407] = 5395, - [5408] = 906, - [5409] = 5394, - [5410] = 899, - [5411] = 443, - [5412] = 922, - [5413] = 902, - [5414] = 925, - [5415] = 413, - [5416] = 1083, - [5417] = 5394, - [5418] = 1081, - [5419] = 843, - [5420] = 5420, - [5421] = 5394, - [5422] = 5394, - [5423] = 447, - [5424] = 883, - [5425] = 1010, - [5426] = 895, - [5427] = 5394, - [5428] = 858, - [5429] = 5394, - [5430] = 5420, + [5396] = 5393, + [5397] = 5395, + [5398] = 880, + [5399] = 446, + [5400] = 5400, + [5401] = 5401, + [5402] = 5393, + [5403] = 409, + [5404] = 887, + [5405] = 5395, + [5406] = 883, + [5407] = 896, + [5408] = 898, + [5409] = 5395, + [5410] = 1121, + [5411] = 5401, + [5412] = 1120, + [5413] = 5401, + [5414] = 5393, + [5415] = 5393, + [5416] = 954, + [5417] = 411, + [5418] = 441, + [5419] = 5395, + [5420] = 924, + [5421] = 445, + [5422] = 910, + [5423] = 5401, + [5424] = 920, + [5425] = 914, + [5426] = 908, + [5427] = 904, + [5428] = 5401, + [5429] = 5393, + [5430] = 452, [5431] = 5395, - [5432] = 5420, - [5433] = 831, - [5434] = 993, - [5435] = 5435, - [5436] = 5420, - [5437] = 5394, - [5438] = 406, - [5439] = 1018, - [5440] = 5395, - [5441] = 456, - [5442] = 5420, - [5443] = 5420, - [5444] = 5395, - [5445] = 5420, - [5446] = 5395, - [5447] = 5420, - [5448] = 1010, - [5449] = 5420, - [5450] = 5394, - [5451] = 5395, - [5452] = 5395, - [5453] = 1079, - [5454] = 883, - [5455] = 1073, - [5456] = 443, - [5457] = 895, - [5458] = 444, - [5459] = 5318, - [5460] = 1125, - [5461] = 1134, - [5462] = 447, - [5463] = 5463, - [5464] = 854, - [5465] = 5465, - [5466] = 456, - [5467] = 441, - [5468] = 5468, - [5469] = 842, - [5470] = 1137, - [5471] = 1136, - [5472] = 1125, - [5473] = 1079, - [5474] = 1073, - [5475] = 1106, - [5476] = 1136, - [5477] = 1134, - [5478] = 1100, - [5479] = 1101, - [5480] = 1137, - [5481] = 1099, - [5482] = 490, - [5483] = 1137, - [5484] = 496, - [5485] = 1079, - [5486] = 1136, - [5487] = 5487, - [5488] = 1134, - [5489] = 479, - [5490] = 1125, - [5491] = 488, - [5492] = 1073, - [5493] = 480, - [5494] = 509, - [5495] = 483, - [5496] = 488, - [5497] = 509, - [5498] = 479, - [5499] = 5499, - [5500] = 496, + [5432] = 5432, + [5433] = 5401, + [5434] = 832, + [5435] = 408, + [5436] = 982, + [5437] = 442, + [5438] = 5395, + [5439] = 5393, + [5440] = 5401, + [5441] = 862, + [5442] = 5393, + [5443] = 863, + [5444] = 977, + [5445] = 5395, + [5446] = 5401, + [5447] = 5395, + [5448] = 5401, + [5449] = 982, + [5450] = 5393, + [5451] = 981, + [5452] = 413, + [5453] = 1052, + [5454] = 446, + [5455] = 445, + [5456] = 883, + [5457] = 1088, + [5458] = 5458, + [5459] = 5459, + [5460] = 843, + [5461] = 5329, + [5462] = 1089, + [5463] = 441, + [5464] = 1078, + [5465] = 442, + [5466] = 880, + [5467] = 452, + [5468] = 1084, + [5469] = 1051, + [5470] = 844, + [5471] = 5471, + [5472] = 1078, + [5473] = 1134, + [5474] = 1052, + [5475] = 1135, + [5476] = 1088, + [5477] = 1089, + [5478] = 1130, + [5479] = 1084, + [5480] = 1051, + [5481] = 1136, + [5482] = 1084, + [5483] = 1078, + [5484] = 1052, + [5485] = 1089, + [5486] = 1088, + [5487] = 494, + [5488] = 5488, + [5489] = 1051, + [5490] = 481, + [5491] = 485, + [5492] = 490, + [5493] = 486, + [5494] = 495, + [5495] = 5495, + [5496] = 484, + [5497] = 497, + [5498] = 493, + [5499] = 485, + [5500] = 489, [5501] = 5501, - [5502] = 491, - [5503] = 480, - [5504] = 1109, - [5505] = 484, - [5506] = 495, - [5507] = 5507, - [5508] = 503, - [5509] = 504, - [5510] = 858, - [5511] = 487, - [5512] = 494, - [5513] = 490, - [5514] = 831, - [5515] = 848, - [5516] = 503, - [5517] = 494, - [5518] = 483, - [5519] = 484, - [5520] = 487, - [5521] = 504, - [5522] = 495, - [5523] = 491, - [5524] = 831, - [5525] = 858, - [5526] = 846, - [5527] = 5318, - [5528] = 3589, - [5529] = 3589, - [5530] = 834, - [5531] = 812, - [5532] = 843, - [5533] = 854, - [5534] = 842, - [5535] = 812, - [5536] = 843, - [5537] = 834, - [5538] = 3866, - [5539] = 3913, - [5540] = 3866, - [5541] = 928, - [5542] = 3913, - [5543] = 926, - [5544] = 3968, - [5545] = 941, - [5546] = 3980, - [5547] = 847, - [5548] = 918, - [5549] = 4003, - [5550] = 4002, - [5551] = 3974, - [5552] = 5552, - [5553] = 926, - [5554] = 941, - [5555] = 918, - [5556] = 918, - [5557] = 926, - [5558] = 928, - [5559] = 758, - [5560] = 5560, - [5561] = 5561, - [5562] = 5562, - [5563] = 1101, - [5564] = 854, - [5565] = 848, - [5566] = 842, - [5567] = 846, - [5568] = 1109, - [5569] = 1099, - [5570] = 5560, + [5502] = 5502, + [5503] = 863, + [5504] = 482, + [5505] = 495, + [5506] = 487, + [5507] = 491, + [5508] = 488, + [5509] = 486, + [5510] = 1129, + [5511] = 862, + [5512] = 490, + [5513] = 494, + [5514] = 481, + [5515] = 489, + [5516] = 853, + [5517] = 482, + [5518] = 5329, + [5519] = 491, + [5520] = 497, + [5521] = 863, + [5522] = 493, + [5523] = 862, + [5524] = 850, + [5525] = 484, + [5526] = 487, + [5527] = 488, + [5528] = 3648, + [5529] = 845, + [5530] = 832, + [5531] = 830, + [5532] = 3648, + [5533] = 843, + [5534] = 832, + [5535] = 830, + [5536] = 3710, + [5537] = 844, + [5538] = 845, + [5539] = 3710, + [5540] = 3955, + [5541] = 3988, + [5542] = 3980, + [5543] = 3955, + [5544] = 851, + [5545] = 4008, + [5546] = 5546, + [5547] = 903, + [5548] = 3997, + [5549] = 912, + [5550] = 921, + [5551] = 4030, + [5552] = 922, + [5553] = 903, + [5554] = 912, + [5555] = 921, + [5556] = 912, + [5557] = 903, + [5558] = 922, + [5559] = 854, + [5560] = 889, + [5561] = 1135, + [5562] = 1136, + [5563] = 5563, + [5564] = 1129, + [5565] = 5565, + [5566] = 853, + [5567] = 5567, + [5568] = 5568, + [5569] = 855, + [5570] = 5570, [5571] = 3980, - [5572] = 1100, - [5573] = 5561, - [5574] = 5574, - [5575] = 5561, - [5576] = 759, - [5577] = 5561, - [5578] = 5578, - [5579] = 5579, - [5580] = 4002, - [5581] = 5581, - [5582] = 868, - [5583] = 852, - [5584] = 3968, - [5585] = 5579, - [5586] = 888, - [5587] = 847, - [5588] = 5562, - [5589] = 1106, - [5590] = 5574, - [5591] = 865, - [5592] = 5592, - [5593] = 5578, - [5594] = 4003, - [5595] = 5581, - [5596] = 5561, - [5597] = 5561, - [5598] = 5592, - [5599] = 3974, - [5600] = 916, - [5601] = 865, - [5602] = 5602, - [5603] = 5602, - [5604] = 5602, - [5605] = 5602, - [5606] = 5602, - [5607] = 5602, - [5608] = 5602, - [5609] = 5602, - [5610] = 983, - [5611] = 5602, - [5612] = 5602, - [5613] = 868, - [5614] = 5602, - [5615] = 5615, - [5616] = 999, - [5617] = 5602, - [5618] = 5602, - [5619] = 1005, - [5620] = 5602, - [5621] = 852, - [5622] = 5602, - [5623] = 914, - [5624] = 945, - [5625] = 917, - [5626] = 995, - [5627] = 907, - [5628] = 998, - [5629] = 934, - [5630] = 1032, - [5631] = 998, - [5632] = 834, - [5633] = 1033, - [5634] = 3589, - [5635] = 917, - [5636] = 983, - [5637] = 914, - [5638] = 1005, - [5639] = 995, - [5640] = 999, - [5641] = 968, - [5642] = 945, - [5643] = 934, - [5644] = 907, - [5645] = 968, - [5646] = 1032, - [5647] = 1033, + [5572] = 4030, + [5573] = 4008, + [5574] = 1130, + [5575] = 856, + [5576] = 5576, + [5577] = 5576, + [5578] = 3988, + [5579] = 850, + [5580] = 1134, + [5581] = 851, + [5582] = 843, + [5583] = 5583, + [5584] = 844, + [5585] = 5576, + [5586] = 5576, + [5587] = 894, + [5588] = 5576, + [5589] = 5570, + [5590] = 5590, + [5591] = 5563, + [5592] = 3997, + [5593] = 5583, + [5594] = 5565, + [5595] = 5567, + [5596] = 5576, + [5597] = 764, + [5598] = 5568, + [5599] = 5590, + [5600] = 754, + [5601] = 855, + [5602] = 947, + [5603] = 5603, + [5604] = 5603, + [5605] = 856, + [5606] = 5603, + [5607] = 5603, + [5608] = 948, + [5609] = 854, + [5610] = 5603, + [5611] = 5603, + [5612] = 5612, + [5613] = 5603, + [5614] = 5603, + [5615] = 5603, + [5616] = 5603, + [5617] = 5603, + [5618] = 5603, + [5619] = 5603, + [5620] = 5603, + [5621] = 953, + [5622] = 5603, + [5623] = 936, + [5624] = 930, + [5625] = 932, + [5626] = 950, + [5627] = 939, + [5628] = 951, + [5629] = 952, + [5630] = 947, + [5631] = 939, + [5632] = 1016, + [5633] = 1014, + [5634] = 948, + [5635] = 998, + [5636] = 953, + [5637] = 936, + [5638] = 845, + [5639] = 3648, + [5640] = 952, + [5641] = 951, + [5642] = 950, + [5643] = 930, + [5644] = 932, + [5645] = 894, + [5646] = 844, + [5647] = 889, [5648] = 843, - [5649] = 888, - [5650] = 854, - [5651] = 842, - [5652] = 3866, - [5653] = 916, - [5654] = 941, - [5655] = 3913, - [5656] = 928, - [5657] = 3968, + [5649] = 832, + [5650] = 1016, + [5651] = 3710, + [5652] = 998, + [5653] = 1014, + [5654] = 921, + [5655] = 922, + [5656] = 3955, + [5657] = 5657, [5658] = 5658, - [5659] = 1100, - [5660] = 5658, - [5661] = 5661, - [5662] = 5661, - [5663] = 5661, + [5659] = 5659, + [5660] = 5659, + [5661] = 1136, + [5662] = 5659, + [5663] = 5663, [5664] = 5664, - [5665] = 5658, - [5666] = 1109, - [5667] = 5658, - [5668] = 5664, - [5669] = 5658, - [5670] = 5664, - [5671] = 5661, + [5665] = 5664, + [5666] = 5659, + [5667] = 5659, + [5668] = 5668, + [5669] = 5664, + [5670] = 5659, + [5671] = 5659, [5672] = 5664, - [5673] = 5661, + [5673] = 5664, [5674] = 5664, - [5675] = 5658, - [5676] = 5664, - [5677] = 5658, - [5678] = 5658, - [5679] = 5664, - [5680] = 5661, - [5681] = 5658, - [5682] = 5664, - [5683] = 5658, - [5684] = 5658, - [5685] = 5658, - [5686] = 1099, - [5687] = 5661, + [5675] = 5664, + [5676] = 5659, + [5677] = 5664, + [5678] = 5659, + [5679] = 5659, + [5680] = 5664, + [5681] = 5664, + [5682] = 5663, + [5683] = 5683, + [5684] = 5663, + [5685] = 5664, + [5686] = 5664, + [5687] = 5659, [5688] = 5664, - [5689] = 3974, - [5690] = 5658, - [5691] = 4002, - [5692] = 5664, + [5689] = 5659, + [5690] = 5659, + [5691] = 5659, + [5692] = 5659, [5693] = 5664, - [5694] = 5664, - [5695] = 5658, - [5696] = 5664, - [5697] = 5661, - [5698] = 5664, + [5694] = 1135, + [5695] = 5663, + [5696] = 5663, + [5697] = 5663, + [5698] = 5659, [5699] = 5664, - [5700] = 5700, - [5701] = 5658, - [5702] = 5664, + [5700] = 5664, + [5701] = 5659, + [5702] = 5659, [5703] = 5664, [5704] = 5664, - [5705] = 5658, + [5705] = 5659, [5706] = 5664, - [5707] = 5658, - [5708] = 5664, - [5709] = 5709, - [5710] = 5658, - [5711] = 5664, - [5712] = 5661, - [5713] = 1101, - [5714] = 5658, - [5715] = 5661, - [5716] = 5658, - [5717] = 5658, + [5707] = 5663, + [5708] = 5663, + [5709] = 4008, + [5710] = 5664, + [5711] = 5663, + [5712] = 1134, + [5713] = 5664, + [5714] = 5659, + [5715] = 5659, + [5716] = 3997, + [5717] = 5659, [5718] = 5664, - [5719] = 5658, + [5719] = 5659, [5720] = 5664, - [5721] = 5658, - [5722] = 5661, - [5723] = 5658, - [5724] = 1106, - [5725] = 5664, - [5726] = 5658, - [5727] = 5664, - [5728] = 5658, - [5729] = 5664, - [5730] = 4003, - [5731] = 5658, - [5732] = 5664, - [5733] = 3980, - [5734] = 5734, - [5735] = 5735, - [5736] = 5734, - [5737] = 5734, - [5738] = 5734, - [5739] = 5739, - [5740] = 5734, - [5741] = 5734, - [5742] = 5734, - [5743] = 5734, - [5744] = 5734, - [5745] = 5734, - [5746] = 5734, - [5747] = 5734, - [5748] = 5734, - [5749] = 5734, - [5750] = 5739, - [5751] = 5739, - [5752] = 5734, - [5753] = 5734, - [5754] = 5734, - [5755] = 5734, - [5756] = 5739, - [5757] = 5739, - [5758] = 5739, - [5759] = 5734, - [5760] = 5734, - [5761] = 5734, - [5762] = 5734, - [5763] = 5734, - [5764] = 5734, - [5765] = 5734, - [5766] = 5734, - [5767] = 5734, - [5768] = 5768, - [5769] = 5769, + [5721] = 1130, + [5722] = 3988, + [5723] = 1129, + [5724] = 5664, + [5725] = 5659, + [5726] = 5663, + [5727] = 3980, + [5728] = 5664, + [5729] = 4030, + [5730] = 5659, + [5731] = 5664, + [5732] = 5659, + [5733] = 5659, + [5734] = 5664, + [5735] = 5663, + [5736] = 5736, + [5737] = 5737, + [5738] = 5737, + [5739] = 5737, + [5740] = 5737, + [5741] = 5737, + [5742] = 5736, + [5743] = 5737, + [5744] = 5737, + [5745] = 5737, + [5746] = 5737, + [5747] = 5737, + [5748] = 5736, + [5749] = 5736, + [5750] = 5737, + [5751] = 5737, + [5752] = 5737, + [5753] = 5736, + [5754] = 5737, + [5755] = 5737, + [5756] = 5737, + [5757] = 5737, + [5758] = 5758, + [5759] = 5737, + [5760] = 5737, + [5761] = 5737, + [5762] = 5737, + [5763] = 5737, + [5764] = 5737, + [5765] = 5736, + [5766] = 5737, + [5767] = 5737, + [5768] = 5737, + [5769] = 5737, [5770] = 5770, [5771] = 5771, [5772] = 5772, [5773] = 5773, [5774] = 5774, [5775] = 5775, - [5776] = 5776, + [5776] = 5774, [5777] = 5777, [5778] = 5778, - [5779] = 5779, + [5779] = 5775, [5780] = 5780, - [5781] = 5772, + [5781] = 5781, [5782] = 5782, - [5783] = 5774, - [5784] = 5784, - [5785] = 5768, - [5786] = 5786, - [5787] = 5779, - [5788] = 5788, - [5789] = 5771, - [5790] = 5790, - [5791] = 5773, + [5783] = 5783, + [5784] = 5772, + [5785] = 5785, + [5786] = 5778, + [5787] = 5783, + [5788] = 5785, + [5789] = 5783, + [5790] = 5777, + [5791] = 5791, [5792] = 5792, - [5793] = 5793, - [5794] = 5790, - [5795] = 5773, - [5796] = 5790, - [5797] = 5797, - [5798] = 5790, - [5799] = 5773, - [5800] = 5800, - [5801] = 5771, + [5793] = 5782, + [5794] = 5794, + [5795] = 5771, + [5796] = 5781, + [5797] = 5792, + [5798] = 5794, + [5799] = 5794, + [5800] = 5771, + [5801] = 5801, [5802] = 5802, [5803] = 5803, - [5804] = 5790, - [5805] = 5805, - [5806] = 5768, - [5807] = 5769, - [5808] = 5808, - [5809] = 5782, - [5810] = 5793, + [5804] = 5804, + [5805] = 5771, + [5806] = 5777, + [5807] = 5807, + [5808] = 5775, + [5809] = 5809, + [5810] = 5810, [5811] = 5792, [5812] = 5812, [5813] = 5813, - [5814] = 5814, - [5815] = 5768, - [5816] = 5797, - [5817] = 5817, - [5818] = 5818, - [5819] = 5779, - [5820] = 5788, - [5821] = 5793, - [5822] = 5792, - [5823] = 5771, - [5824] = 5824, - [5825] = 5790, - [5826] = 5773, - [5827] = 5790, - [5828] = 5773, - [5829] = 5790, - [5830] = 5790, - [5831] = 5773, - [5832] = 5793, - [5833] = 5792, - [5834] = 5790, - [5835] = 5773, - [5836] = 5836, - [5837] = 5775, - [5838] = 5838, - [5839] = 5788, - [5840] = 5784, - [5841] = 5788, - [5842] = 5793, - [5843] = 5792, - [5844] = 5844, - [5845] = 5845, - [5846] = 5808, - [5847] = 5847, - [5848] = 5813, - [5849] = 5849, - [5850] = 5844, + [5814] = 5785, + [5815] = 5815, + [5816] = 5816, + [5817] = 5775, + [5818] = 5783, + [5819] = 5792, + [5820] = 5820, + [5821] = 5794, + [5822] = 5782, + [5823] = 5812, + [5824] = 5801, + [5825] = 5785, + [5826] = 5820, + [5827] = 5781, + [5828] = 5810, + [5829] = 5803, + [5830] = 5810, + [5831] = 5803, + [5832] = 5820, + [5833] = 5770, + [5834] = 5810, + [5835] = 5810, + [5836] = 5803, + [5837] = 5810, + [5838] = 5820, + [5839] = 5770, + [5840] = 5803, + [5841] = 5782, + [5842] = 5842, + [5843] = 5778, + [5844] = 5770, + [5845] = 5820, + [5846] = 5770, + [5847] = 5810, + [5848] = 5777, + [5849] = 5816, + [5850] = 5785, [5851] = 5774, - [5852] = 5779, - [5853] = 5853, - [5854] = 5793, - [5855] = 5770, - [5856] = 5856, - [5857] = 5782, - [5858] = 5772, + [5852] = 5812, + [5853] = 5778, + [5854] = 5801, + [5855] = 5812, + [5856] = 5815, + [5857] = 5857, + [5858] = 5858, [5859] = 5782, - [5860] = 5774, - [5861] = 5792, - [5862] = 5784, - [5863] = 5768, - [5864] = 5779, - [5865] = 5788, - [5866] = 5771, - [5867] = 5772, - [5868] = 5779, - [5869] = 5788, - [5870] = 5771, - [5871] = 5779, - [5872] = 5776, - [5873] = 5777, - [5874] = 5780, - [5875] = 5768, - [5876] = 5788, - [5877] = 5797, - [5878] = 5778, - [5879] = 5784, - [5880] = 5786, + [5860] = 5781, + [5861] = 5861, + [5862] = 5803, + [5863] = 5863, + [5864] = 5807, + [5865] = 5810, + [5866] = 5772, + [5867] = 5775, + [5868] = 5777, + [5869] = 5810, + [5870] = 5778, + [5871] = 5792, + [5872] = 5775, + [5873] = 5781, + [5874] = 5801, + [5875] = 5807, + [5876] = 5774, + [5877] = 5783, + [5878] = 5771, + [5879] = 5794, + [5880] = 5812, [5881] = 5771, - [5882] = 5771, - [5883] = 5769, - [5884] = 5818, - [5885] = 5768, - [5886] = 5824, - [5887] = 5775, - [5888] = 5770, - [5889] = 5808, - [5890] = 5844, - [5891] = 5797, - [5892] = 5784, - [5893] = 5790, - [5894] = 5773, - [5895] = 5790, - [5896] = 5788, - [5897] = 5773, - [5898] = 5790, - [5899] = 5790, - [5900] = 5773, - [5901] = 5845, - [5902] = 5790, - [5903] = 5773, - [5904] = 5813, - [5905] = 5849, - [5906] = 5779, - [5907] = 5782, - [5908] = 5774, - [5909] = 5772, - [5910] = 5844, - [5911] = 5808, - [5912] = 5780, - [5913] = 5769, - [5914] = 5818, - [5915] = 5768, - [5916] = 5824, - [5917] = 5775, - [5918] = 5784, - [5919] = 5845, - [5920] = 5813, - [5921] = 5849, - [5922] = 5774, + [5882] = 5791, + [5883] = 5815, + [5884] = 5781, + [5885] = 5792, + [5886] = 5794, + [5887] = 5771, + [5888] = 5792, + [5889] = 5794, + [5890] = 5783, + [5891] = 5771, + [5892] = 5772, + [5893] = 5774, + [5894] = 5781, + [5895] = 5809, + [5896] = 5791, + [5897] = 5777, + [5898] = 5783, + [5899] = 5809, + [5900] = 5778, + [5901] = 5785, + [5902] = 5781, + [5903] = 5775, + [5904] = 5809, + [5905] = 5801, + [5906] = 5801, + [5907] = 5781, + [5908] = 5812, + [5909] = 5809, + [5910] = 5775, + [5911] = 5782, + [5912] = 5783, + [5913] = 5778, + [5914] = 5809, + [5915] = 5777, + [5916] = 5771, + [5917] = 5794, + [5918] = 5792, + [5919] = 5801, + [5920] = 5804, + [5921] = 5804, + [5922] = 5801, [5923] = 5782, - [5924] = 5772, - [5925] = 5772, - [5926] = 5818, - [5927] = 5849, - [5928] = 5774, - [5929] = 5818, - [5930] = 5849, - [5931] = 5818, - [5932] = 5849, - [5933] = 5782, - [5934] = 5818, - [5935] = 5849, - [5936] = 5818, - [5937] = 5849, - [5938] = 5818, - [5939] = 5849, - [5940] = 5818, - [5941] = 5849, - [5942] = 5818, - [5943] = 5849, - [5944] = 5818, - [5945] = 5849, - [5946] = 5772, - [5947] = 5782, - [5948] = 5773, - [5949] = 5774, - [5950] = 5784, - [5951] = 5770, - [5952] = 5780, - [5953] = 5786, - [5954] = 5768, - [5955] = 5790, - [5956] = 5769, - [5957] = 5779, - [5958] = 5788, - [5959] = 5782, - [5960] = 5771, - [5961] = 5818, - [5962] = 5774, - [5963] = 5778, - [5964] = 5779, - [5965] = 5788, - [5966] = 5772, - [5967] = 5768, - [5968] = 5818, - [5969] = 5797, - [5970] = 5824, - [5971] = 5771, - [5972] = 5775, - [5973] = 5771, - [5974] = 5784, - [5975] = 5844, - [5976] = 5849, - [5977] = 5845, - [5978] = 5808, - [5979] = 5784, - [5980] = 5788, - [5981] = 5813, - [5982] = 5849, - [5983] = 5774, - [5984] = 5778, - [5985] = 5779, - [5986] = 5773, - [5987] = 5778, - [5988] = 5768, - [5989] = 5790, - [5990] = 5768, - [5991] = 5797, - [5992] = 5778, - [5993] = 5784, - [5994] = 5844, - [5995] = 5790, - [5996] = 5808, - [5997] = 5774, - [5998] = 5770, - [5999] = 5778, - [6000] = 5782, - [6001] = 5772, - [6002] = 5773, - [6003] = 5778, - [6004] = 5790, - [6005] = 5768, - [6006] = 5778, - [6007] = 5797, - [6008] = 5773, - [6009] = 5784, - [6010] = 5844, - [6011] = 5808, - [6012] = 5778, - [6013] = 5774, - [6014] = 5770, - [6015] = 5782, + [5924] = 5812, + [5925] = 5801, + [5926] = 5785, + [5927] = 5777, + [5928] = 5778, + [5929] = 5782, + [5930] = 5775, + [5931] = 5812, + [5932] = 5801, + [5933] = 5781, + [5934] = 5785, + [5935] = 5783, + [5936] = 5936, + [5937] = 5803, + [5938] = 5938, + [5939] = 5777, + [5940] = 5781, + [5941] = 5778, + [5942] = 5782, + [5943] = 5775, + [5944] = 5812, + [5945] = 5801, + [5946] = 5781, + [5947] = 5785, + [5948] = 5783, + [5949] = 5794, + [5950] = 5810, + [5951] = 5785, + [5952] = 5803, + [5953] = 5783, + [5954] = 5792, + [5955] = 5861, + [5956] = 5794, + [5957] = 5771, + [5958] = 5777, + [5959] = 5810, + [5960] = 5778, + [5961] = 5782, + [5962] = 5775, + [5963] = 5815, + [5964] = 5812, + [5965] = 5801, + [5966] = 5781, + [5967] = 5785, + [5968] = 5783, + [5969] = 5792, + [5970] = 5794, + [5971] = 5791, + [5972] = 5771, + [5973] = 5804, + [5974] = 5777, + [5975] = 5778, + [5976] = 5782, + [5977] = 5775, + [5978] = 5812, + [5979] = 5816, + [5980] = 5801, + [5981] = 5781, + [5982] = 5803, + [5983] = 5785, + [5984] = 5783, + [5985] = 5803, + [5986] = 5804, + [5987] = 5792, + [5988] = 5794, + [5989] = 5775, + [5990] = 5771, + [5991] = 5991, + [5992] = 5777, + [5993] = 5815, + [5994] = 5778, + [5995] = 5775, + [5996] = 5781, + [5997] = 5783, + [5998] = 5816, + [5999] = 5816, + [6000] = 5792, + [6001] = 5774, + [6002] = 5794, + [6003] = 5803, + [6004] = 5771, + [6005] = 5775, + [6006] = 5792, + [6007] = 5812, + [6008] = 5778, + [6009] = 5861, + [6010] = 5777, + [6011] = 5815, + [6012] = 5791, + [6013] = 5782, + [6014] = 5778, + [6015] = 5783, [6016] = 5772, - [6017] = 5770, - [6018] = 5782, - [6019] = 5772, - [6020] = 5797, - [6021] = 5844, - [6022] = 5808, - [6023] = 5776, - [6024] = 5777, - [6025] = 5770, - [6026] = 5808, - [6027] = 5844, - [6028] = 5797, + [6017] = 5807, + [6018] = 5775, + [6019] = 5785, + [6020] = 5777, + [6021] = 5810, + [6022] = 5803, + [6023] = 5783, + [6024] = 5857, + [6025] = 5861, + [6026] = 5858, + [6027] = 5810, + [6028] = 5863, [6029] = 5772, - [6030] = 5778, - [6031] = 5782, - [6032] = 5770, - [6033] = 5770, - [6034] = 5774, - [6035] = 5786, - [6036] = 5797, - [6037] = 5808, - [6038] = 5844, - [6039] = 5844, - [6040] = 5784, - [6041] = 5797, - [6042] = 5768, - [6043] = 5771, - [6044] = 5773, - [6045] = 5772, - [6046] = 5782, - [6047] = 5770, - [6048] = 5774, - [6049] = 5808, - [6050] = 5844, - [6051] = 5784, - [6052] = 5797, - [6053] = 5768, - [6054] = 5790, - [6055] = 5808, - [6056] = 5770, - [6057] = 5775, - [6058] = 5773, - [6059] = 5779, - [6060] = 5788, - [6061] = 5771, - [6062] = 5772, - [6063] = 5788, - [6064] = 5782, - [6065] = 5770, - [6066] = 5778, - [6067] = 5774, - [6068] = 5808, - [6069] = 5773, - [6070] = 5844, - [6071] = 5784, - [6072] = 5770, - [6073] = 5797, - [6074] = 5778, - [6075] = 5768, - [6076] = 5813, - [6077] = 5779, - [6078] = 5788, - [6079] = 5771, - [6080] = 5772, - [6081] = 5782, - [6082] = 5779, - [6083] = 5770, - [6084] = 5774, - [6085] = 5808, - [6086] = 5844, - [6087] = 5784, - [6088] = 5797, - [6089] = 5768, - [6090] = 5779, - [6091] = 5788, - [6092] = 5813, - [6093] = 5808, - [6094] = 5771, - [6095] = 5772, - [6096] = 5782, - [6097] = 5774, - [6098] = 5784, - [6099] = 5768, - [6100] = 5773, - [6101] = 5779, - [6102] = 5788, - [6103] = 5778, - [6104] = 5771, - [6105] = 5844, - [6106] = 5778, - [6107] = 5780, - [6108] = 5790, - [6109] = 5784, - [6110] = 5778, - [6111] = 5778, - [6112] = 5778, - [6113] = 5768, - [6114] = 5797, - [6115] = 5824, - [6116] = 5775, - [6117] = 5778, - [6118] = 5784, - [6119] = 5844, - [6120] = 5845, - [6121] = 5808, - [6122] = 5813, - [6123] = 5774, - [6124] = 5770, - [6125] = 5782, - [6126] = 5772, - [6127] = 5775, - [6128] = 5776, - [6129] = 5777, - [6130] = 5786, - [6131] = 5771, - [6132] = 5788, - [6133] = 5779, - [6134] = 5773, - [6135] = 5779, - [6136] = 5780, - [6137] = 5790, - [6138] = 5797, - [6139] = 5790, - [6140] = 5769, - [6141] = 5773, - [6142] = 5768, - [6143] = 5797, - [6144] = 5824, - [6145] = 5775, - [6146] = 5772, - [6147] = 5784, - [6148] = 5844, - [6149] = 5778, - [6150] = 5845, - [6151] = 5808, - [6152] = 5813, - [6153] = 5788, - [6154] = 5774, - [6155] = 5770, - [6156] = 5782, - [6157] = 5782, - [6158] = 5770, - [6159] = 5772, - [6160] = 5776, - [6161] = 5777, - [6162] = 5786, - [6163] = 5771, - [6164] = 5788, - [6165] = 5779, - [6166] = 5774, - [6167] = 5813, - [6168] = 5808, - [6169] = 5778, - [6170] = 5845, - [6171] = 5844, - [6172] = 5784, - [6173] = 5778, - [6174] = 5775, - [6175] = 5824, - [6176] = 5771, - [6177] = 5797, - [6178] = 5778, - [6179] = 5768, - [6180] = 5769, - [6181] = 5790, - [6182] = 5780, - [6183] = 5778, - [6184] = 5773, - [6185] = 5786, - [6186] = 5772, - [6187] = 5782, - [6188] = 5778, - [6189] = 5770, - [6190] = 5774, - [6191] = 5813, - [6192] = 5808, - [6193] = 5845, - [6194] = 5778, - [6195] = 5844, - [6196] = 5770, - [6197] = 5808, - [6198] = 5844, - [6199] = 5797, - [6200] = 5784, - [6201] = 5780, - [6202] = 5770, - [6203] = 5808, - [6204] = 5844, - [6205] = 5797, - [6206] = 5772, - [6207] = 5770, - [6208] = 5782, - [6209] = 5808, - [6210] = 5770, - [6211] = 5844, - [6212] = 5774, - [6213] = 5808, - [6214] = 5844, - [6215] = 5784, - [6216] = 5797, - [6217] = 5768, - [6218] = 5797, - [6219] = 5773, - [6220] = 5772, - [6221] = 5773, - [6222] = 5782, - [6223] = 5775, - [6224] = 5770, - [6225] = 5824, - [6226] = 5774, - [6227] = 5808, - [6228] = 5844, - [6229] = 5784, - [6230] = 5797, - [6231] = 5768, - [6232] = 5790, - [6233] = 5773, - [6234] = 5779, - [6235] = 5788, - [6236] = 5771, - [6237] = 5778, - [6238] = 5772, - [6239] = 5782, - [6240] = 5770, - [6241] = 5797, - [6242] = 5774, - [6243] = 5808, - [6244] = 5844, - [6245] = 5768, - [6246] = 5784, - [6247] = 5769, - [6248] = 5797, - [6249] = 5768, - [6250] = 5779, - [6251] = 5788, - [6252] = 5771, - [6253] = 5772, - [6254] = 5782, - [6255] = 5770, - [6256] = 5774, - [6257] = 5790, - [6258] = 5808, - [6259] = 5844, - [6260] = 5784, - [6261] = 5797, - [6262] = 5769, - [6263] = 5790, - [6264] = 5779, - [6265] = 5788, - [6266] = 5771, - [6267] = 5768, - [6268] = 5772, - [6269] = 5782, - [6270] = 5774, - [6271] = 5784, - [6272] = 5768, - [6273] = 5824, - [6274] = 5775, - [6275] = 5779, - [6276] = 5788, - [6277] = 5771, - [6278] = 5797, - [6279] = 5784, - [6280] = 5844, - [6281] = 5845, - [6282] = 5808, - [6283] = 5813, - [6284] = 5774, - [6285] = 5770, - [6286] = 5782, - [6287] = 5772, - [6288] = 5776, - [6289] = 5777, - [6290] = 5786, - [6291] = 5771, - [6292] = 5788, - [6293] = 5779, - [6294] = 5773, - [6295] = 5780, - [6296] = 6296, - [6297] = 6296, - [6298] = 6296, + [6030] = 5771, + [6031] = 5803, + [6032] = 5807, + [6033] = 5791, + [6034] = 5777, + [6035] = 5783, + [6036] = 5772, + [6037] = 5792, + [6038] = 5794, + [6039] = 5815, + [6040] = 5774, + [6041] = 5803, + [6042] = 5781, + [6043] = 5804, + [6044] = 5815, + [6045] = 5792, + [6046] = 5810, + [6047] = 5794, + [6048] = 5816, + [6049] = 5775, + [6050] = 5810, + [6051] = 5774, + [6052] = 5803, + [6053] = 5810, + [6054] = 5803, + [6055] = 5782, + [6056] = 5785, + [6057] = 5771, + [6058] = 5778, + [6059] = 5809, + [6060] = 5771, + [6061] = 5810, + [6062] = 5809, + [6063] = 5863, + [6064] = 5792, + [6065] = 5781, + [6066] = 5801, + [6067] = 5812, + [6068] = 5809, + [6069] = 5775, + [6070] = 5858, + [6071] = 5782, + [6072] = 5857, + [6073] = 5778, + [6074] = 5777, + [6075] = 5810, + [6076] = 5803, + [6077] = 5809, + [6078] = 5778, + [6079] = 5777, + [6080] = 5783, + [6081] = 5785, + [6082] = 5781, + [6083] = 5809, + [6084] = 5801, + [6085] = 5812, + [6086] = 5775, + [6087] = 5774, + [6088] = 5815, + [6089] = 5809, + [6090] = 5782, + [6091] = 5778, + [6092] = 5782, + [6093] = 5778, + [6094] = 5777, + [6095] = 5791, + [6096] = 5809, + [6097] = 5785, + [6098] = 5812, + [6099] = 5775, + [6100] = 5816, + [6101] = 5801, + [6102] = 5815, + [6103] = 5812, + [6104] = 5794, + [6105] = 5812, + [6106] = 5782, + [6107] = 5771, + [6108] = 5809, + [6109] = 5804, + [6110] = 5801, + [6111] = 5777, + [6112] = 5815, + [6113] = 5781, + [6114] = 5794, + [6115] = 5785, + [6116] = 5782, + [6117] = 5782, + [6118] = 5812, + [6119] = 5801, + [6120] = 5785, + [6121] = 5774, + [6122] = 5777, + [6123] = 5792, + [6124] = 5782, + [6125] = 5812, + [6126] = 5801, + [6127] = 5785, + [6128] = 5777, + [6129] = 5778, + [6130] = 5782, + [6131] = 5775, + [6132] = 5863, + [6133] = 5812, + [6134] = 5801, + [6135] = 5781, + [6136] = 5785, + [6137] = 5783, + [6138] = 5785, + [6139] = 5772, + [6140] = 5785, + [6141] = 5803, + [6142] = 5812, + [6143] = 5777, + [6144] = 5785, + [6145] = 5783, + [6146] = 5778, + [6147] = 5858, + [6148] = 5782, + [6149] = 5801, + [6150] = 5775, + [6151] = 5812, + [6152] = 5801, + [6153] = 5791, + [6154] = 5781, + [6155] = 5785, + [6156] = 5783, + [6157] = 5804, + [6158] = 5810, + [6159] = 5783, + [6160] = 5803, + [6161] = 5812, + [6162] = 5792, + [6163] = 5794, + [6164] = 5771, + [6165] = 5777, + [6166] = 5807, + [6167] = 6167, + [6168] = 5778, + [6169] = 5782, + [6170] = 5810, + [6171] = 5775, + [6172] = 5812, + [6173] = 6173, + [6174] = 5801, + [6175] = 5807, + [6176] = 5781, + [6177] = 5809, + [6178] = 5857, + [6179] = 5785, + [6180] = 5783, + [6181] = 5801, + [6182] = 5778, + [6183] = 5792, + [6184] = 5794, + [6185] = 5809, + [6186] = 5771, + [6187] = 5777, + [6188] = 5863, + [6189] = 5778, + [6190] = 5810, + [6191] = 5782, + [6192] = 5775, + [6193] = 5812, + [6194] = 5801, + [6195] = 5781, + [6196] = 5785, + [6197] = 5783, + [6198] = 5820, + [6199] = 5812, + [6200] = 6200, + [6201] = 6201, + [6202] = 5782, + [6203] = 5778, + [6204] = 5782, + [6205] = 5792, + [6206] = 5794, + [6207] = 5771, + [6208] = 5774, + [6209] = 5777, + [6210] = 5803, + [6211] = 5863, + [6212] = 5778, + [6213] = 5863, + [6214] = 5775, + [6215] = 5782, + [6216] = 5781, + [6217] = 5783, + [6218] = 5775, + [6219] = 5861, + [6220] = 5815, + [6221] = 5770, + [6222] = 5812, + [6223] = 5792, + [6224] = 5794, + [6225] = 5861, + [6226] = 5771, + [6227] = 5804, + [6228] = 5801, + [6229] = 5781, + [6230] = 5816, + [6231] = 5774, + [6232] = 5791, + [6233] = 5772, + [6234] = 5785, + [6235] = 5783, + [6236] = 5803, + [6237] = 5809, + [6238] = 5803, + [6239] = 5807, + [6240] = 5810, + [6241] = 5809, + [6242] = 5816, + [6243] = 5861, + [6244] = 5807, + [6245] = 5803, + [6246] = 5810, + [6247] = 5803, + [6248] = 5792, + [6249] = 5810, + [6250] = 5803, + [6251] = 5809, + [6252] = 5861, + [6253] = 5777, + [6254] = 5794, + [6255] = 5809, + [6256] = 5791, + [6257] = 5810, + [6258] = 5809, + [6259] = 5809, + [6260] = 5803, + [6261] = 5810, + [6262] = 5771, + [6263] = 5794, + [6264] = 5771, + [6265] = 5809, + [6266] = 5792, + [6267] = 5791, + [6268] = 5816, + [6269] = 5783, + [6270] = 5861, + [6271] = 5858, + [6272] = 5809, + [6273] = 5809, + [6274] = 5809, + [6275] = 5791, + [6276] = 5792, + [6277] = 5794, + [6278] = 5809, + [6279] = 5781, + [6280] = 5781, + [6281] = 5816, + [6282] = 5816, + [6283] = 5857, + [6284] = 5810, + [6285] = 5791, + [6286] = 5771, + [6287] = 5857, + [6288] = 5858, + [6289] = 5801, + [6290] = 5775, + [6291] = 5816, + [6292] = 5816, + [6293] = 5778, + [6294] = 5777, + [6295] = 5863, + [6296] = 5803, + [6297] = 5791, + [6298] = 6298, [6299] = 6299, [6300] = 6299, - [6301] = 6296, - [6302] = 6296, + [6301] = 6298, + [6302] = 6299, [6303] = 6299, - [6304] = 6299, - [6305] = 6296, + [6304] = 6298, + [6305] = 6298, [6306] = 6299, - [6307] = 6296, + [6307] = 6299, [6308] = 6299, [6309] = 6299, - [6310] = 6296, - [6311] = 6296, + [6310] = 6298, + [6311] = 6298, [6312] = 6299, - [6313] = 6299, - [6314] = 6299, - [6315] = 6296, - [6316] = 6299, + [6313] = 6298, + [6314] = 6298, + [6315] = 6298, + [6316] = 843, [6317] = 6299, [6318] = 6299, - [6319] = 6296, - [6320] = 6296, - [6321] = 6296, - [6322] = 6299, - [6323] = 6299, - [6324] = 6296, - [6325] = 6296, - [6326] = 6299, - [6327] = 6296, - [6328] = 6296, - [6329] = 6296, + [6319] = 6299, + [6320] = 6298, + [6321] = 6298, + [6322] = 6298, + [6323] = 844, + [6324] = 6299, + [6325] = 6299, + [6326] = 6298, + [6327] = 6298, + [6328] = 6298, + [6329] = 6298, [6330] = 6299, - [6331] = 6299, + [6331] = 6298, [6332] = 6299, - [6333] = 6296, - [6334] = 6296, - [6335] = 6296, - [6336] = 854, + [6333] = 6298, + [6334] = 6298, + [6335] = 6299, + [6336] = 6298, [6337] = 6299, [6338] = 6299, - [6339] = 6299, + [6339] = 6298, [6340] = 6299, - [6341] = 6296, - [6342] = 6296, - [6343] = 6296, - [6344] = 6299, - [6345] = 6296, - [6346] = 842, + [6341] = 6299, + [6342] = 6299, + [6343] = 6298, + [6344] = 6298, + [6345] = 6298, + [6346] = 6299, [6347] = 6299, - [6348] = 6296, + [6348] = 6298, [6349] = 6299, [6350] = 6299, - [6351] = 6296, - [6352] = 6352, - [6353] = 6352, - [6354] = 6352, - [6355] = 6352, - [6356] = 6352, - [6357] = 6352, - [6358] = 6352, - [6359] = 6352, - [6360] = 6352, - [6361] = 6361, - [6362] = 6362, - [6363] = 6361, - [6364] = 6362, - [6365] = 6361, - [6366] = 6361, - [6367] = 6361, + [6351] = 6298, + [6352] = 6298, + [6353] = 6299, + [6354] = 6354, + [6355] = 6354, + [6356] = 6354, + [6357] = 6354, + [6358] = 6354, + [6359] = 6354, + [6360] = 6354, + [6361] = 6354, + [6362] = 6354, + [6363] = 6363, + [6364] = 6364, + [6365] = 6363, + [6366] = 6363, + [6367] = 6363, [6368] = 6368, - [6369] = 6361, - [6370] = 6362, - [6371] = 6362, - [6372] = 6362, - [6373] = 6362, - [6374] = 6361, - [6375] = 6361, - [6376] = 6361, - [6377] = 6362, - [6378] = 6362, - [6379] = 6362, - [6380] = 6380, - [6381] = 6380, - [6382] = 6382, + [6369] = 6368, + [6370] = 6368, + [6371] = 6363, + [6372] = 6368, + [6373] = 6368, + [6374] = 6363, + [6375] = 6363, + [6376] = 6363, + [6377] = 6368, + [6378] = 6378, + [6379] = 6363, + [6380] = 6368, + [6381] = 6368, + [6382] = 6368, [6383] = 6383, [6384] = 6383, - [6385] = 6380, + [6385] = 6383, [6386] = 6386, - [6387] = 6380, - [6388] = 6380, - [6389] = 6383, - [6390] = 6383, - [6391] = 6383, + [6387] = 6383, + [6388] = 6383, + [6389] = 6386, + [6390] = 6390, + [6391] = 6386, [6392] = 6383, - [6393] = 6380, - [6394] = 6383, - [6395] = 6395, - [6396] = 6395, - [6397] = 6397, - [6398] = 6395, - [6399] = 6397, - [6400] = 6395, - [6401] = 6395, - [6402] = 6397, - [6403] = 6397, - [6404] = 6395, - [6405] = 6397, - [6406] = 6395, - [6407] = 6395, - [6408] = 6397, - [6409] = 6397, - [6410] = 6397, - [6411] = 6395, - [6412] = 6395, - [6413] = 6397, - [6414] = 6397, - [6415] = 6397, - [6416] = 6397, - [6417] = 6397, - [6418] = 6395, - [6419] = 6395, - [6420] = 6397, - [6421] = 6395, - [6422] = 6397, - [6423] = 6395, - [6424] = 6397, - [6425] = 6397, - [6426] = 6395, - [6427] = 6397, - [6428] = 6395, - [6429] = 6395, - [6430] = 6397, - [6431] = 6395, - [6432] = 6397, - [6433] = 6395, - [6434] = 6397, - [6435] = 6395, - [6436] = 6397, - [6437] = 6395, - [6438] = 6397, - [6439] = 6395, - [6440] = 6397, - [6441] = 6395, - [6442] = 6395, - [6443] = 6395, - [6444] = 6397, - [6445] = 6397, - [6446] = 6395, - [6447] = 6397, - [6448] = 6395, - [6449] = 6449, - [6450] = 6450, - [6451] = 6451, + [6393] = 6393, + [6394] = 6386, + [6395] = 6386, + [6396] = 6383, + [6397] = 6386, + [6398] = 6398, + [6399] = 6399, + [6400] = 6399, + [6401] = 6399, + [6402] = 6398, + [6403] = 6398, + [6404] = 6399, + [6405] = 6399, + [6406] = 6399, + [6407] = 6398, + [6408] = 6399, + [6409] = 6398, + [6410] = 6399, + [6411] = 6398, + [6412] = 6398, + [6413] = 6399, + [6414] = 6398, + [6415] = 6399, + [6416] = 6399, + [6417] = 6398, + [6418] = 6399, + [6419] = 6398, + [6420] = 6398, + [6421] = 6399, + [6422] = 6398, + [6423] = 6398, + [6424] = 6399, + [6425] = 6399, + [6426] = 6398, + [6427] = 6398, + [6428] = 6399, + [6429] = 6399, + [6430] = 6399, + [6431] = 6399, + [6432] = 6398, + [6433] = 6398, + [6434] = 6398, + [6435] = 6399, + [6436] = 6398, + [6437] = 6399, + [6438] = 6399, + [6439] = 6399, + [6440] = 6398, + [6441] = 6398, + [6442] = 6399, + [6443] = 6398, + [6444] = 6399, + [6445] = 6398, + [6446] = 6398, + [6447] = 6399, + [6448] = 6398, + [6449] = 6399, + [6450] = 6398, + [6451] = 6398, [6452] = 6452, [6453] = 6453, - [6454] = 6452, + [6454] = 6454, [6455] = 6455, - [6456] = 6455, - [6457] = 6455, - [6458] = 6453, + [6456] = 6456, + [6457] = 6453, + [6458] = 6458, [6459] = 6459, [6460] = 6460, [6461] = 6453, - [6462] = 6462, - [6463] = 6463, - [6464] = 6462, - [6465] = 6462, - [6466] = 6452, + [6462] = 6452, + [6463] = 6459, + [6464] = 6460, + [6465] = 6465, + [6466] = 6466, [6467] = 6467, [6468] = 6468, - [6469] = 6463, + [6469] = 6456, [6470] = 6470, - [6471] = 6471, - [6472] = 6450, - [6473] = 6473, - [6474] = 6449, - [6475] = 6450, + [6471] = 6468, + [6472] = 6465, + [6473] = 6467, + [6474] = 6474, + [6475] = 6458, [6476] = 6476, - [6477] = 6449, - [6478] = 6478, - [6479] = 6479, - [6480] = 6479, - [6481] = 6478, - [6482] = 6449, - [6483] = 6476, - [6484] = 6471, - [6485] = 6450, - [6486] = 6470, - [6487] = 6468, - [6488] = 6478, - [6489] = 6467, - [6490] = 6463, - [6491] = 6462, - [6492] = 6468, - [6493] = 6453, - [6494] = 6455, - [6495] = 6479, - [6496] = 6452, - [6497] = 6470, + [6477] = 6459, + [6478] = 6454, + [6479] = 6474, + [6480] = 6452, + [6481] = 6453, + [6482] = 6460, + [6483] = 6455, + [6484] = 6466, + [6485] = 6456, + [6486] = 6467, + [6487] = 6456, + [6488] = 6468, + [6489] = 6470, + [6490] = 6465, + [6491] = 6452, + [6492] = 6466, + [6493] = 6470, + [6494] = 6467, + [6495] = 6470, + [6496] = 6474, + [6497] = 6454, [6498] = 6476, - [6499] = 6471, - [6500] = 6470, - [6501] = 6468, - [6502] = 6449, - [6503] = 6450, + [6499] = 6466, + [6500] = 6452, + [6501] = 6465, + [6502] = 6468, + [6503] = 6456, [6504] = 6467, - [6505] = 6463, - [6506] = 6462, - [6507] = 6453, - [6508] = 6455, - [6509] = 6450, - [6510] = 6473, - [6511] = 6449, - [6512] = 6452, - [6513] = 6452, - [6514] = 6455, - [6515] = 6453, - [6516] = 6462, - [6517] = 6478, - [6518] = 6479, - [6519] = 6463, - [6520] = 6473, - [6521] = 6467, - [6522] = 6468, - [6523] = 6470, - [6524] = 6471, - [6525] = 6476, - [6526] = 6471, - [6527] = 6476, - [6528] = 6479, - [6529] = 6470, - [6530] = 6468, - [6531] = 6471, - [6532] = 6478, - [6533] = 6450, - [6534] = 6534, - [6535] = 6467, - [6536] = 6463, - [6537] = 6449, - [6538] = 6462, - [6539] = 6473, - [6540] = 6449, - [6541] = 6453, - [6542] = 6455, - [6543] = 6450, - [6544] = 6452, - [6545] = 6476, - [6546] = 6455, - [6547] = 6452, - [6548] = 6463, + [6505] = 6454, + [6506] = 6474, + [6507] = 6460, + [6508] = 6452, + [6509] = 6453, + [6510] = 6454, + [6511] = 6452, + [6512] = 6458, + [6513] = 6459, + [6514] = 6459, + [6515] = 6476, + [6516] = 6458, + [6517] = 6460, + [6518] = 6476, + [6519] = 6458, + [6520] = 6453, + [6521] = 6460, + [6522] = 6459, + [6523] = 6459, + [6524] = 6453, + [6525] = 6465, + [6526] = 6465, + [6527] = 6460, + [6528] = 6456, + [6529] = 6468, + [6530] = 6459, + [6531] = 6456, + [6532] = 6465, + [6533] = 6452, + [6534] = 6458, + [6535] = 6468, + [6536] = 6467, + [6537] = 6459, + [6538] = 6466, + [6539] = 6470, + [6540] = 6476, + [6541] = 6467, + [6542] = 6465, + [6543] = 6452, + [6544] = 6474, + [6545] = 6454, + [6546] = 6452, + [6547] = 6466, + [6548] = 6470, [6549] = 6467, - [6550] = 6550, - [6551] = 6453, - [6552] = 6478, - [6553] = 6479, - [6554] = 6449, - [6555] = 6450, - [6556] = 6473, - [6557] = 6449, - [6558] = 6462, - [6559] = 6463, - [6560] = 6467, - [6561] = 6468, - [6562] = 6470, - [6563] = 6471, - [6564] = 6476, - [6565] = 6478, - [6566] = 6450, - [6567] = 6550, - [6568] = 6449, - [6569] = 6479, - [6570] = 6478, - [6571] = 6479, - [6572] = 6449, - [6573] = 6476, - [6574] = 6471, - [6575] = 6470, - [6576] = 6468, - [6577] = 6467, - [6578] = 6478, + [6550] = 6476, + [6551] = 6551, + [6552] = 6468, + [6553] = 6474, + [6554] = 6455, + [6555] = 6456, + [6556] = 6455, + [6557] = 6456, + [6558] = 6454, + [6559] = 6468, + [6560] = 6476, + [6561] = 6458, + [6562] = 6465, + [6563] = 6459, + [6564] = 6453, + [6565] = 6460, + [6566] = 6458, + [6567] = 6456, + [6568] = 6465, + [6569] = 6460, + [6570] = 6470, + [6571] = 6454, + [6572] = 6454, + [6573] = 6468, + [6574] = 6474, + [6575] = 6474, + [6576] = 6474, + [6577] = 6465, + [6578] = 6467, [6579] = 6452, - [6580] = 6479, - [6581] = 6463, - [6582] = 6478, - [6583] = 6455, - [6584] = 6462, - [6585] = 6453, - [6586] = 6462, - [6587] = 6463, - [6588] = 6476, - [6589] = 6479, - [6590] = 6453, - [6591] = 6471, - [6592] = 6479, - [6593] = 6478, - [6594] = 6467, + [6580] = 6467, + [6581] = 6466, + [6582] = 6470, + [6583] = 6468, + [6584] = 6467, + [6585] = 6474, + [6586] = 6470, + [6587] = 6458, + [6588] = 6453, + [6589] = 6454, + [6590] = 6454, + [6591] = 6466, + [6592] = 6456, + [6593] = 6466, + [6594] = 6476, [6595] = 6455, - [6596] = 6452, - [6597] = 6479, - [6598] = 6478, - [6599] = 6470, - [6600] = 6471, - [6601] = 6476, - [6602] = 6470, - [6603] = 6476, - [6604] = 6471, + [6596] = 6474, + [6597] = 6597, + [6598] = 6476, + [6599] = 6458, + [6600] = 6459, + [6601] = 6452, + [6602] = 6460, + [6603] = 6453, + [6604] = 6465, [6605] = 6468, - [6606] = 6606, - [6607] = 6449, - [6608] = 6550, - [6609] = 6609, - [6610] = 6450, - [6611] = 6452, - [6612] = 6455, - [6613] = 6550, - [6614] = 6550, - [6615] = 6453, - [6616] = 6462, - [6617] = 6463, - [6618] = 6467, - [6619] = 6468, - [6620] = 6470, - [6621] = 6476, - [6622] = 6479, - [6623] = 6471, - [6624] = 6471, - [6625] = 6478, + [6606] = 6460, + [6607] = 6456, + [6608] = 6454, + [6609] = 6468, + [6610] = 6465, + [6611] = 6456, + [6612] = 6460, + [6613] = 6453, + [6614] = 6452, + [6615] = 6459, + [6616] = 6470, + [6617] = 6466, + [6618] = 6466, + [6619] = 6470, + [6620] = 6467, + [6621] = 6474, + [6622] = 6452, + [6623] = 6454, + [6624] = 6465, + [6625] = 6458, [6626] = 6476, - [6627] = 6470, - [6628] = 6479, - [6629] = 6478, - [6630] = 6449, - [6631] = 6450, - [6632] = 6468, - [6633] = 6468, - [6634] = 6467, - [6635] = 6452, - [6636] = 6470, - [6637] = 6455, - [6638] = 6453, - [6639] = 6468, - [6640] = 6462, - [6641] = 6463, - [6642] = 6463, - [6643] = 6450, - [6644] = 6467, - [6645] = 6462, - [6646] = 6468, - [6647] = 6470, - [6648] = 6471, - [6649] = 6452, - [6650] = 6476, - [6651] = 6479, - [6652] = 6478, - [6653] = 6453, - [6654] = 6450, - [6655] = 6452, - [6656] = 6455, - [6657] = 6453, - [6658] = 6462, - [6659] = 6463, - [6660] = 6449, - [6661] = 6455, - [6662] = 6467, - [6663] = 6455, - [6664] = 6467, + [6627] = 6452, + [6628] = 6468, + [6629] = 6456, + [6630] = 6465, + [6631] = 6474, + [6632] = 6476, + [6633] = 6454, + [6634] = 6460, + [6635] = 6456, + [6636] = 6474, + [6637] = 6467, + [6638] = 6551, + [6639] = 6476, + [6640] = 6452, + [6641] = 6468, + [6642] = 6458, + [6643] = 6453, + [6644] = 6453, + [6645] = 6470, + [6646] = 6646, + [6647] = 6647, + [6648] = 6466, + [6649] = 6467, + [6650] = 6452, + [6651] = 6468, + [6652] = 6459, + [6653] = 6454, + [6654] = 6465, + [6655] = 6467, + [6656] = 6460, + [6657] = 6468, + [6658] = 6456, + [6659] = 6458, + [6660] = 6460, + [6661] = 6453, + [6662] = 6459, + [6663] = 6460, + [6664] = 6459, [6665] = 6453, - [6666] = 6468, - [6667] = 6470, - [6668] = 6452, - [6669] = 6471, - [6670] = 6450, - [6671] = 6476, - [6672] = 6462, - [6673] = 6479, - [6674] = 6463, - [6675] = 6467, - [6676] = 6463, - [6677] = 6478, - [6678] = 6449, - [6679] = 6550, - [6680] = 6450, - [6681] = 6452, - [6682] = 6462, - [6683] = 6452, - [6684] = 6455, - [6685] = 6453, - [6686] = 6455, - [6687] = 6462, - [6688] = 6453, - [6689] = 6462, - [6690] = 6463, - [6691] = 6468, - [6692] = 6467, - [6693] = 6468, - [6694] = 6470, - [6695] = 6471, - [6696] = 6467, - [6697] = 6470, - [6698] = 6471, - [6699] = 6476, - [6700] = 6479, - [6701] = 6453, - [6702] = 6550, - [6703] = 6478, - [6704] = 6550, - [6705] = 6455, - [6706] = 6449, - [6707] = 6450, - [6708] = 6452, - [6709] = 6550, - [6710] = 6550, - [6711] = 6455, - [6712] = 6463, - [6713] = 6467, - [6714] = 6452, - [6715] = 6476, - [6716] = 6453, - [6717] = 6450, - [6718] = 6462, - [6719] = 6550, - [6720] = 6550, - [6721] = 6463, - [6722] = 6449, - [6723] = 6450, - [6724] = 6467, - [6725] = 6468, - [6726] = 6470, - [6727] = 6471, + [6666] = 6470, + [6667] = 6459, + [6668] = 6465, + [6669] = 6452, + [6670] = 6458, + [6671] = 6460, + [6672] = 6452, + [6673] = 6458, + [6674] = 6466, + [6675] = 6476, + [6676] = 6455, + [6677] = 6470, + [6678] = 6476, + [6679] = 6454, + [6680] = 6455, + [6681] = 6474, + [6682] = 6467, + [6683] = 6467, + [6684] = 6458, + [6685] = 6474, + [6686] = 6476, + [6687] = 6454, + [6688] = 6470, + [6689] = 6476, + [6690] = 6454, + [6691] = 6458, + [6692] = 6466, + [6693] = 6452, + [6694] = 6465, + [6695] = 6468, + [6696] = 6468, + [6697] = 6456, + [6698] = 6476, + [6699] = 6474, + [6700] = 6458, + [6701] = 6459, + [6702] = 6454, + [6703] = 6453, + [6704] = 6460, + [6705] = 6474, + [6706] = 6459, + [6707] = 6551, + [6708] = 6467, + [6709] = 6456, + [6710] = 6460, + [6711] = 6453, + [6712] = 6459, + [6713] = 6459, + [6714] = 6467, + [6715] = 6470, + [6716] = 6468, + [6717] = 6453, + [6718] = 6466, + [6719] = 6465, + [6720] = 6470, + [6721] = 6466, + [6722] = 6453, + [6723] = 6458, + [6724] = 6452, + [6725] = 6465, + [6726] = 6465, + [6727] = 6466, [6728] = 6476, - [6729] = 6550, - [6730] = 6449, - [6731] = 6476, - [6732] = 6473, - [6733] = 6471, - [6734] = 6479, - [6735] = 6478, - [6736] = 6449, - [6737] = 6479, - [6738] = 6478, - [6739] = 6478, - [6740] = 6479, - [6741] = 6550, - [6742] = 6450, - [6743] = 6478, - [6744] = 6479, - [6745] = 6452, - [6746] = 3866, - [6747] = 6476, - [6748] = 6455, - [6749] = 6471, - [6750] = 6453, - [6751] = 6462, - [6752] = 6476, - [6753] = 6470, - [6754] = 6468, - [6755] = 6463, - [6756] = 6471, - [6757] = 6467, - [6758] = 6467, - [6759] = 6470, - [6760] = 6463, + [6729] = 6468, + [6730] = 6460, + [6731] = 6452, + [6732] = 6454, + [6733] = 6474, + [6734] = 6456, + [6735] = 6468, + [6736] = 6467, + [6737] = 6458, + [6738] = 6460, + [6739] = 6476, + [6740] = 6470, + [6741] = 6455, + [6742] = 6453, + [6743] = 6452, + [6744] = 6470, + [6745] = 6476, + [6746] = 6454, + [6747] = 6474, + [6748] = 6459, + [6749] = 6465, + [6750] = 6458, + [6751] = 6467, + [6752] = 6470, + [6753] = 6466, + [6754] = 6551, + [6755] = 6466, + [6756] = 6452, + [6757] = 6468, + [6758] = 6465, + [6759] = 6465, + [6760] = 6452, [6761] = 6468, - [6762] = 6468, - [6763] = 6470, - [6764] = 6471, - [6765] = 6449, - [6766] = 6462, - [6767] = 6467, - [6768] = 6452, - [6769] = 6476, - [6770] = 6453, - [6771] = 6455, - [6772] = 6452, - [6773] = 6452, - [6774] = 6455, - [6775] = 6479, - [6776] = 6478, - [6777] = 6449, - [6778] = 6463, - [6779] = 6453, - [6780] = 6450, - [6781] = 6462, - [6782] = 6450, - [6783] = 6450, + [6762] = 6456, + [6763] = 6456, + [6764] = 6465, + [6765] = 6466, + [6766] = 6452, + [6767] = 6468, + [6768] = 6460, + [6769] = 6453, + [6770] = 6460, + [6771] = 6453, + [6772] = 6456, + [6773] = 6466, + [6774] = 6459, + [6775] = 6453, + [6776] = 6470, + [6777] = 6460, + [6778] = 6456, + [6779] = 6458, + [6780] = 6476, + [6781] = 6470, + [6782] = 6455, + [6783] = 6467, [6784] = 6455, - [6785] = 6463, - [6786] = 6467, - [6787] = 6449, - [6788] = 6468, - [6789] = 6452, - [6790] = 6470, - [6791] = 6452, - [6792] = 6470, - [6793] = 6453, - [6794] = 6455, - [6795] = 6478, - [6796] = 6455, - [6797] = 6453, - [6798] = 6479, - [6799] = 6450, - [6800] = 6449, - [6801] = 6471, - [6802] = 6468, - [6803] = 6476, - [6804] = 6462, - [6805] = 6478, - [6806] = 6463, - [6807] = 6467, - [6808] = 6468, - [6809] = 6462, - [6810] = 6476, - [6811] = 6471, - [6812] = 6479, - [6813] = 6470, - [6814] = 6479, - [6815] = 6471, - [6816] = 6478, - [6817] = 6470, - [6818] = 6476, - [6819] = 6468, - [6820] = 6462, + [6785] = 6466, + [6786] = 6470, + [6787] = 6551, + [6788] = 6456, + [6789] = 6476, + [6790] = 6454, + [6791] = 6791, + [6792] = 6474, + [6793] = 6467, + [6794] = 6470, + [6795] = 6459, + [6796] = 6466, + [6797] = 6467, + [6798] = 6474, + [6799] = 6460, + [6800] = 6454, + [6801] = 6474, + [6802] = 6466, + [6803] = 6466, + [6804] = 6466, + [6805] = 6454, + [6806] = 6455, + [6807] = 6470, + [6808] = 6453, + [6809] = 6476, + [6810] = 6459, + [6811] = 6467, + [6812] = 6452, + [6813] = 6454, + [6814] = 6470, + [6815] = 6474, + [6816] = 6458, + [6817] = 6458, + [6818] = 6465, + [6819] = 6458, + [6820] = 6468, [6821] = 6453, - [6822] = 6450, - [6823] = 6479, - [6824] = 6476, - [6825] = 6478, - [6826] = 6449, - [6827] = 6471, - [6828] = 6467, - [6829] = 6463, - [6830] = 6450, - [6831] = 6449, - [6832] = 6449, - [6833] = 6470, - [6834] = 6452, - [6835] = 6462, - [6836] = 6455, - [6837] = 6450, - [6838] = 6453, - [6839] = 6468, - [6840] = 6462, - [6841] = 6463, - [6842] = 6467, - [6843] = 6478, - [6844] = 6453, - [6845] = 6463, - [6846] = 6468, - [6847] = 6470, - [6848] = 6455, - [6849] = 6471, - [6850] = 6467, - [6851] = 6452, - [6852] = 6476, - [6853] = 6479, - [6854] = 6854, + [6822] = 6455, + [6823] = 6459, + [6824] = 6458, + [6825] = 6455, + [6826] = 6476, + [6827] = 6456, + [6828] = 6476, + [6829] = 6474, + [6830] = 6454, + [6831] = 6474, + [6832] = 6459, + [6833] = 6460, + [6834] = 6453, + [6835] = 6459, + [6836] = 6458, + [6837] = 6453, + [6838] = 6476, + [6839] = 6456, + [6840] = 6476, + [6841] = 6460, + [6842] = 3710, + [6843] = 6456, + [6844] = 6551, + [6845] = 6468, + [6846] = 6454, + [6847] = 6465, + [6848] = 6467, + [6849] = 6468, + [6850] = 6466, + [6851] = 6455, + [6852] = 6470, + [6853] = 6467, + [6854] = 6474, [6855] = 6855, - [6856] = 6854, - [6857] = 6855, - [6858] = 6854, + [6856] = 6856, + [6857] = 6856, + [6858] = 6855, [6859] = 6859, - [6860] = 6855, - [6861] = 6854, - [6862] = 6854, + [6860] = 6856, + [6861] = 6856, + [6862] = 6859, [6863] = 6855, - [6864] = 6855, - [6865] = 6859, + [6864] = 6859, + [6865] = 6856, [6866] = 6855, - [6867] = 6854, + [6867] = 6856, [6868] = 6859, [6869] = 6859, - [6870] = 6854, - [6871] = 6854, - [6872] = 6855, - [6873] = 6859, - [6874] = 6855, - [6875] = 6875, - [6876] = 6859, - [6877] = 6859, - [6878] = 6854, - [6879] = 6855, - [6880] = 6854, - [6881] = 6859, - [6882] = 6855, - [6883] = 6854, + [6870] = 6859, + [6871] = 6855, + [6872] = 6856, + [6873] = 6856, + [6874] = 6856, + [6875] = 6856, + [6876] = 6855, + [6877] = 6855, + [6878] = 6859, + [6879] = 6859, + [6880] = 6859, + [6881] = 6856, + [6882] = 6859, + [6883] = 6883, [6884] = 6855, - [6885] = 6855, - [6886] = 6859, - [6887] = 6854, + [6885] = 6856, + [6886] = 6856, + [6887] = 6855, [6888] = 6855, - [6889] = 6854, - [6890] = 6855, - [6891] = 6854, - [6892] = 6854, - [6893] = 6855, + [6889] = 6855, + [6890] = 6856, + [6891] = 6855, + [6892] = 6855, + [6893] = 6856, [6894] = 6855, - [6895] = 6854, - [6896] = 6859, + [6895] = 6856, + [6896] = 6855, [6897] = 6855, - [6898] = 6854, - [6899] = 6854, + [6898] = 6856, + [6899] = 6855, [6900] = 6855, - [6901] = 6855, - [6902] = 6854, - [6903] = 6854, - [6904] = 6859, + [6901] = 6856, + [6902] = 6855, + [6903] = 6859, + [6904] = 6856, [6905] = 6855, - [6906] = 6854, - [6907] = 6854, - [6908] = 6854, - [6909] = 6854, - [6910] = 6855, - [6911] = 6859, - [6912] = 6855, - [6913] = 6859, - [6914] = 6855, - [6915] = 6854, - [6916] = 6855, - [6917] = 6859, - [6918] = 6918, - [6919] = 6854, - [6920] = 6859, - [6921] = 6855, + [6906] = 6859, + [6907] = 6856, + [6908] = 6856, + [6909] = 6855, + [6910] = 6859, + [6911] = 6855, + [6912] = 6912, + [6913] = 6856, + [6914] = 6856, + [6915] = 6855, + [6916] = 6859, + [6917] = 6856, + [6918] = 6855, + [6919] = 6859, + [6920] = 6855, + [6921] = 6856, [6922] = 6855, [6923] = 6855, - [6924] = 6854, - [6925] = 6925, + [6924] = 6856, + [6925] = 6856, [6926] = 6926, [6927] = 6927, [6928] = 6928, @@ -9438,2650 +9445,2653 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6931] = 6931, [6932] = 6932, [6933] = 6933, - [6934] = 6932, - [6935] = 6933, - [6936] = 6933, - [6937] = 6933, - [6938] = 6932, - [6939] = 6932, - [6940] = 6932, + [6934] = 6934, + [6935] = 6935, + [6936] = 6936, + [6937] = 3955, + [6938] = 6938, + [6939] = 6939, + [6940] = 6935, [6941] = 6941, - [6942] = 6932, - [6943] = 6933, - [6944] = 6932, - [6945] = 6945, - [6946] = 6945, - [6947] = 6932, - [6948] = 6941, - [6949] = 6932, - [6950] = 6941, - [6951] = 6933, - [6952] = 6945, - [6953] = 6953, - [6954] = 6933, - [6955] = 6945, - [6956] = 6945, - [6957] = 3589, - [6958] = 6932, - [6959] = 6933, - [6960] = 6941, - [6961] = 3913, - [6962] = 6933, - [6963] = 6941, - [6964] = 6932, - [6965] = 834, - [6966] = 6932, - [6967] = 6933, - [6968] = 6968, - [6969] = 6933, - [6970] = 6933, - [6971] = 842, - [6972] = 6972, - [6973] = 6972, + [6942] = 6938, + [6943] = 6935, + [6944] = 6935, + [6945] = 6939, + [6946] = 6939, + [6947] = 6938, + [6948] = 6936, + [6949] = 6939, + [6950] = 6939, + [6951] = 6938, + [6952] = 3648, + [6953] = 6939, + [6954] = 6935, + [6955] = 6935, + [6956] = 6935, + [6957] = 6935, + [6958] = 6939, + [6959] = 845, + [6960] = 6939, + [6961] = 6936, + [6962] = 6938, + [6963] = 6939, + [6964] = 6935, + [6965] = 6936, + [6966] = 6935, + [6967] = 6967, + [6968] = 6939, + [6969] = 6935, + [6970] = 6939, + [6971] = 6935, + [6972] = 6936, + [6973] = 6939, [6974] = 6974, [6975] = 6975, - [6976] = 6976, + [6976] = 844, [6977] = 6975, [6978] = 6978, - [6979] = 6972, - [6980] = 6980, + [6979] = 6979, + [6980] = 6979, [6981] = 6974, - [6982] = 6976, + [6982] = 6982, [6983] = 6975, - [6984] = 6972, + [6984] = 6975, [6985] = 6975, - [6986] = 6976, - [6987] = 6975, - [6988] = 6978, + [6986] = 6986, + [6987] = 6979, + [6988] = 6988, [6989] = 6989, - [6990] = 6975, - [6991] = 6991, - [6992] = 6974, - [6993] = 6993, - [6994] = 854, - [6995] = 6978, - [6996] = 6974, - [6997] = 6975, - [6998] = 843, - [6999] = 6991, - [7000] = 6976, - [7001] = 7001, - [7002] = 6991, - [7003] = 6991, - [7004] = 6975, - [7005] = 6991, - [7006] = 6978, - [7007] = 6975, - [7008] = 6975, - [7009] = 6972, - [7010] = 6978, - [7011] = 6976, - [7012] = 6991, - [7013] = 6975, - [7014] = 6976, - [7015] = 6975, - [7016] = 6978, - [7017] = 3866, - [7018] = 6974, - [7019] = 6976, - [7020] = 7020, - [7021] = 7021, - [7022] = 7022, + [6990] = 6974, + [6991] = 6975, + [6992] = 6989, + [6993] = 843, + [6994] = 6989, + [6995] = 6988, + [6996] = 6996, + [6997] = 6988, + [6998] = 6988, + [6999] = 6982, + [7000] = 6988, + [7001] = 832, + [7002] = 6988, + [7003] = 6979, + [7004] = 6989, + [7005] = 6979, + [7006] = 6979, + [7007] = 6982, + [7008] = 6989, + [7009] = 6989, + [7010] = 6975, + [7011] = 6974, + [7012] = 6975, + [7013] = 6974, + [7014] = 6982, + [7015] = 7015, + [7016] = 6988, + [7017] = 6975, + [7018] = 6975, + [7019] = 3710, + [7020] = 6982, + [7021] = 6975, + [7022] = 6975, [7023] = 7023, [7024] = 7024, [7025] = 7025, - [7026] = 7020, - [7027] = 7025, - [7028] = 7020, - [7029] = 7021, - [7030] = 7021, - [7031] = 7023, - [7032] = 7020, - [7033] = 7022, - [7034] = 7034, - [7035] = 7024, + [7026] = 7024, + [7027] = 7027, + [7028] = 7027, + [7029] = 7029, + [7030] = 7030, + [7031] = 7027, + [7032] = 7027, + [7033] = 7027, + [7034] = 7025, + [7035] = 7023, [7036] = 7025, - [7037] = 7021, - [7038] = 7025, - [7039] = 7024, - [7040] = 7022, - [7041] = 7024, - [7042] = 7025, - [7043] = 7020, - [7044] = 7023, - [7045] = 7022, - [7046] = 7022, - [7047] = 7021, - [7048] = 7022, + [7037] = 7023, + [7038] = 7029, + [7039] = 7023, + [7040] = 7029, + [7041] = 7027, + [7042] = 7024, + [7043] = 7030, + [7044] = 7025, + [7045] = 7023, + [7046] = 7025, + [7047] = 7029, + [7048] = 7025, [7049] = 7024, - [7050] = 7021, - [7051] = 7021, + [7050] = 7030, + [7051] = 7024, [7052] = 7024, - [7053] = 7022, - [7054] = 7020, - [7055] = 7022, - [7056] = 7021, - [7057] = 3913, - [7058] = 7024, - [7059] = 7022, - [7060] = 7021, - [7061] = 7061, - [7062] = 7020, - [7063] = 7022, + [7053] = 7024, + [7054] = 7027, + [7055] = 7023, + [7056] = 7056, + [7057] = 7027, + [7058] = 7027, + [7059] = 7029, + [7060] = 7023, + [7061] = 7023, + [7062] = 7025, + [7063] = 7029, [7064] = 7023, - [7065] = 7020, - [7066] = 7021, - [7067] = 7020, - [7068] = 7023, + [7065] = 7023, + [7066] = 7027, + [7067] = 7029, + [7068] = 7024, [7069] = 7025, - [7070] = 7024, - [7071] = 7021, - [7072] = 7025, - [7073] = 7022, - [7074] = 7021, - [7075] = 7024, - [7076] = 7020, - [7077] = 7022, - [7078] = 7021, - [7079] = 7023, - [7080] = 7021, - [7081] = 7021, + [7070] = 7030, + [7071] = 7029, + [7072] = 7027, + [7073] = 7029, + [7074] = 7023, + [7075] = 7029, + [7076] = 7030, + [7077] = 7025, + [7078] = 7030, + [7079] = 7030, + [7080] = 7027, + [7081] = 7024, [7082] = 7023, - [7083] = 7020, - [7084] = 7024, - [7085] = 7022, - [7086] = 941, - [7087] = 7025, - [7088] = 928, - [7089] = 7024, - [7090] = 7024, - [7091] = 7023, - [7092] = 926, - [7093] = 7024, - [7094] = 918, - [7095] = 7025, - [7096] = 7024, - [7097] = 7022, - [7098] = 7025, - [7099] = 7025, - [7100] = 7023, - [7101] = 7022, - [7102] = 7020, - [7103] = 7020, - [7104] = 7022, - [7105] = 7020, + [7083] = 7024, + [7084] = 7027, + [7085] = 7025, + [7086] = 7030, + [7087] = 7024, + [7088] = 7088, + [7089] = 7025, + [7090] = 7029, + [7091] = 7029, + [7092] = 7024, + [7093] = 7023, + [7094] = 7025, + [7095] = 7027, + [7096] = 7030, + [7097] = 7027, + [7098] = 7030, + [7099] = 7027, + [7100] = 7024, + [7101] = 7030, + [7102] = 7030, + [7103] = 7030, + [7104] = 7024, + [7105] = 7105, [7106] = 7025, - [7107] = 7021, - [7108] = 7025, - [7109] = 7023, - [7110] = 7020, + [7107] = 7024, + [7108] = 7030, + [7109] = 7025, + [7110] = 7029, [7111] = 7023, - [7112] = 7020, - [7113] = 7022, - [7114] = 7025, - [7115] = 7021, - [7116] = 7021, - [7117] = 7022, - [7118] = 7022, - [7119] = 7023, - [7120] = 7023, - [7121] = 7020, - [7122] = 7122, - [7123] = 7024, - [7124] = 7024, - [7125] = 7125, - [7126] = 7025, - [7127] = 7020, - [7128] = 7022, - [7129] = 7024, - [7130] = 7024, - [7131] = 7023, - [7132] = 7023, - [7133] = 7024, + [7112] = 7027, + [7113] = 7029, + [7114] = 7023, + [7115] = 7027, + [7116] = 7029, + [7117] = 7023, + [7118] = 7025, + [7119] = 7029, + [7120] = 921, + [7121] = 7030, + [7122] = 7030, + [7123] = 7030, + [7124] = 7029, + [7125] = 7023, + [7126] = 7024, + [7127] = 7027, + [7128] = 7024, + [7129] = 7027, + [7130] = 7023, + [7131] = 7029, + [7132] = 7030, + [7133] = 7025, [7134] = 7023, - [7135] = 7024, - [7136] = 7023, - [7137] = 7021, - [7138] = 7022, - [7139] = 7025, - [7140] = 7020, - [7141] = 7024, - [7142] = 7022, - [7143] = 7020, + [7135] = 7029, + [7136] = 7029, + [7137] = 903, + [7138] = 7025, + [7139] = 7029, + [7140] = 7027, + [7141] = 7030, + [7142] = 7024, + [7143] = 7025, [7144] = 7023, - [7145] = 7020, - [7146] = 7024, - [7147] = 7020, - [7148] = 7024, - [7149] = 7022, + [7145] = 912, + [7146] = 7023, + [7147] = 7024, + [7148] = 7025, + [7149] = 7029, [7150] = 7023, - [7151] = 7020, - [7152] = 7024, - [7153] = 7025, - [7154] = 7021, - [7155] = 7023, - [7156] = 7023, - [7157] = 7023, - [7158] = 7021, - [7159] = 7020, - [7160] = 7025, - [7161] = 7034, - [7162] = 7025, - [7163] = 7020, + [7151] = 7151, + [7152] = 7088, + [7153] = 7030, + [7154] = 7030, + [7155] = 7025, + [7156] = 7024, + [7157] = 7030, + [7158] = 7027, + [7159] = 7027, + [7160] = 922, + [7161] = 7024, + [7162] = 7024, + [7163] = 7029, [7164] = 7023, - [7165] = 7021, - [7166] = 7021, - [7167] = 7021, - [7168] = 7020, + [7165] = 7029, + [7166] = 7027, + [7167] = 7023, + [7168] = 7024, [7169] = 7025, - [7170] = 7025, - [7171] = 7025, - [7172] = 7022, - [7173] = 7021, - [7174] = 7025, - [7175] = 7020, + [7170] = 7024, + [7171] = 7029, + [7172] = 7030, + [7173] = 7025, + [7174] = 7030, + [7175] = 7025, [7176] = 7024, - [7177] = 7025, - [7178] = 7025, - [7179] = 7023, - [7180] = 7022, + [7177] = 7029, + [7178] = 7030, + [7179] = 7027, + [7180] = 7029, [7181] = 7025, - [7182] = 7024, - [7183] = 7023, - [7184] = 7022, - [7185] = 7023, - [7186] = 7021, - [7187] = 7023, - [7188] = 7022, - [7189] = 7024, - [7190] = 7025, - [7191] = 7021, - [7192] = 7192, - [7193] = 7193, - [7194] = 7194, + [7182] = 7025, + [7183] = 7024, + [7184] = 7023, + [7185] = 7025, + [7186] = 7025, + [7187] = 7030, + [7188] = 7027, + [7189] = 7030, + [7190] = 7027, + [7191] = 7024, + [7192] = 7023, + [7193] = 3955, + [7194] = 7023, [7195] = 7195, [7196] = 7196, - [7197] = 7197, - [7198] = 7196, - [7199] = 7193, - [7200] = 7193, - [7201] = 7192, - [7202] = 7196, - [7203] = 7192, - [7204] = 7192, - [7205] = 7193, + [7197] = 7195, + [7198] = 7198, + [7199] = 7199, + [7200] = 7200, + [7201] = 7196, + [7202] = 7199, + [7203] = 7203, + [7204] = 7196, + [7205] = 7198, [7206] = 7206, - [7207] = 7206, - [7208] = 7197, - [7209] = 7196, - [7210] = 7197, - [7211] = 7211, - [7212] = 7197, - [7213] = 7213, - [7214] = 7194, - [7215] = 7193, - [7216] = 7206, - [7217] = 7211, - [7218] = 7213, - [7219] = 7194, - [7220] = 7194, - [7221] = 7192, - [7222] = 7194, - [7223] = 7197, - [7224] = 7197, - [7225] = 7193, - [7226] = 7213, - [7227] = 7211, - [7228] = 7192, - [7229] = 7196, + [7207] = 7198, + [7208] = 7206, + [7209] = 7209, + [7210] = 7209, + [7211] = 7203, + [7212] = 7199, + [7213] = 7198, + [7214] = 7198, + [7215] = 7203, + [7216] = 7195, + [7217] = 7198, + [7218] = 7195, + [7219] = 7199, + [7220] = 7196, + [7221] = 7196, + [7222] = 7195, + [7223] = 7198, + [7224] = 7196, + [7225] = 7200, + [7226] = 7206, + [7227] = 7203, + [7228] = 7198, + [7229] = 7229, [7230] = 7206, - [7231] = 7194, - [7232] = 7213, - [7233] = 7206, - [7234] = 7192, - [7235] = 7194, - [7236] = 7197, + [7231] = 7198, + [7232] = 7195, + [7233] = 7200, + [7234] = 7198, + [7235] = 7199, + [7236] = 7203, [7237] = 7206, - [7238] = 7211, - [7239] = 7211, - [7240] = 7196, - [7241] = 7192, - [7242] = 7192, - [7243] = 7194, - [7244] = 7197, - [7245] = 7211, + [7238] = 7209, + [7239] = 7199, + [7240] = 7203, + [7241] = 7195, + [7242] = 7196, + [7243] = 7200, + [7244] = 7199, + [7245] = 7203, [7246] = 7196, - [7247] = 7206, - [7248] = 7194, - [7249] = 7211, - [7250] = 7211, - [7251] = 7192, - [7252] = 7193, - [7253] = 7196, - [7254] = 7194, - [7255] = 7211, - [7256] = 7194, - [7257] = 7197, - [7258] = 7194, - [7259] = 7206, - [7260] = 7196, - [7261] = 7206, - [7262] = 7196, - [7263] = 7197, - [7264] = 7197, - [7265] = 7193, - [7266] = 7213, - [7267] = 7192, - [7268] = 7194, - [7269] = 7206, - [7270] = 7193, - [7271] = 7193, - [7272] = 7197, - [7273] = 7211, - [7274] = 7213, - [7275] = 7213, - [7276] = 7211, - [7277] = 7193, - [7278] = 7193, - [7279] = 7192, - [7280] = 7211, - [7281] = 7211, - [7282] = 7193, - [7283] = 7213, - [7284] = 7193, - [7285] = 7192, + [7247] = 7196, + [7248] = 7199, + [7249] = 7206, + [7250] = 7198, + [7251] = 7203, + [7252] = 7195, + [7253] = 7198, + [7254] = 7195, + [7255] = 7203, + [7256] = 7196, + [7257] = 7199, + [7258] = 7200, + [7259] = 7199, + [7260] = 7195, + [7261] = 7199, + [7262] = 7198, + [7263] = 7209, + [7264] = 7195, + [7265] = 7206, + [7266] = 7209, + [7267] = 7206, + [7268] = 7198, + [7269] = 7209, + [7270] = 7203, + [7271] = 7199, + [7272] = 7203, + [7273] = 7195, + [7274] = 7206, + [7275] = 7203, + [7276] = 7206, + [7277] = 7195, + [7278] = 7229, + [7279] = 7195, + [7280] = 7206, + [7281] = 7196, + [7282] = 7199, + [7283] = 7206, + [7284] = 7206, + [7285] = 7199, [7286] = 7196, - [7287] = 7197, - [7288] = 7197, - [7289] = 7197, - [7290] = 7194, - [7291] = 7196, - [7292] = 7195, - [7293] = 7211, - [7294] = 7196, - [7295] = 7193, - [7296] = 7213, - [7297] = 7194, - [7298] = 7193, + [7287] = 7198, + [7288] = 7195, + [7289] = 7198, + [7290] = 7209, + [7291] = 7200, + [7292] = 7199, + [7293] = 7195, + [7294] = 7200, + [7295] = 7195, + [7296] = 7196, + [7297] = 7203, + [7298] = 7203, [7299] = 7206, - [7300] = 7196, - [7301] = 7211, - [7302] = 7197, - [7303] = 7193, - [7304] = 7192, - [7305] = 7196, - [7306] = 7213, - [7307] = 7213, - [7308] = 7196, - [7309] = 7211, - [7310] = 7213, - [7311] = 7194, - [7312] = 7193, - [7313] = 7213, - [7314] = 7197, - [7315] = 7211, - [7316] = 7211, - [7317] = 7193, - [7318] = 7197, - [7319] = 7197, - [7320] = 7196, - [7321] = 7213, - [7322] = 7192, - [7323] = 7213, - [7324] = 7192, - [7325] = 7197, - [7326] = 7211, - [7327] = 7213, - [7328] = 7197, - [7329] = 7211, - [7330] = 7206, - [7331] = 7197, - [7332] = 7211, - [7333] = 7194, - [7334] = 7196, - [7335] = 7194, - [7336] = 7211, - [7337] = 7192, - [7338] = 7193, - [7339] = 7197, - [7340] = 7197, - [7341] = 7213, - [7342] = 7211, - [7343] = 7213, - [7344] = 7211, - [7345] = 7195, - [7346] = 7213, - [7347] = 7196, - [7348] = 7196, - [7349] = 7196, - [7350] = 7194, - [7351] = 7197, - [7352] = 7194, - [7353] = 7194, - [7354] = 7192, - [7355] = 7197, - [7356] = 7211, - [7357] = 7196, - [7358] = 7192, - [7359] = 7197, - [7360] = 7213, - [7361] = 7197, - [7362] = 7213, - [7363] = 7193, - [7364] = 7193, - [7365] = 7193, - [7366] = 7193, - [7367] = 7211, - [7368] = 7211, - [7369] = 7192, - [7370] = 7195, - [7371] = 7211, - [7372] = 7197, - [7373] = 7196, - [7374] = 7213, - [7375] = 7211, - [7376] = 7197, - [7377] = 7194, - [7378] = 7194, - [7379] = 7195, - [7380] = 7193, - [7381] = 7192, - [7382] = 7197, - [7383] = 7197, - [7384] = 7211, - [7385] = 7211, - [7386] = 7211, - [7387] = 7196, - [7388] = 7197, - [7389] = 7193, - [7390] = 7192, - [7391] = 7196, - [7392] = 7211, - [7393] = 7192, - [7394] = 7206, - [7395] = 7211, - [7396] = 7213, - [7397] = 7194, - [7398] = 7192, - [7399] = 7197, - [7400] = 7213, - [7401] = 7194, - [7402] = 7195, - [7403] = 7192, - [7404] = 7211, - [7405] = 7194, - [7406] = 7192, - [7407] = 7197, - [7408] = 7196, - [7409] = 7206, - [7410] = 7211, - [7411] = 7192, + [7300] = 7229, + [7301] = 7199, + [7302] = 7195, + [7303] = 7203, + [7304] = 7203, + [7305] = 7209, + [7306] = 7196, + [7307] = 7199, + [7308] = 7209, + [7309] = 7198, + [7310] = 7196, + [7311] = 7195, + [7312] = 7196, + [7313] = 7195, + [7314] = 7203, + [7315] = 7200, + [7316] = 7195, + [7317] = 7198, + [7318] = 7200, + [7319] = 7198, + [7320] = 7200, + [7321] = 7198, + [7322] = 7200, + [7323] = 7198, + [7324] = 7198, + [7325] = 7195, + [7326] = 7198, + [7327] = 7200, + [7328] = 7200, + [7329] = 7195, + [7330] = 7195, + [7331] = 7199, + [7332] = 7203, + [7333] = 7200, + [7334] = 7198, + [7335] = 7199, + [7336] = 7195, + [7337] = 7198, + [7338] = 7198, + [7339] = 7206, + [7340] = 7200, + [7341] = 7196, + [7342] = 7206, + [7343] = 7198, + [7344] = 7206, + [7345] = 7209, + [7346] = 7229, + [7347] = 7206, + [7348] = 7200, + [7349] = 7195, + [7350] = 7196, + [7351] = 7199, + [7352] = 7198, + [7353] = 7209, + [7354] = 7195, + [7355] = 7195, + [7356] = 7206, + [7357] = 7195, + [7358] = 7203, + [7359] = 7200, + [7360] = 7200, + [7361] = 7203, + [7362] = 7198, + [7363] = 7195, + [7364] = 7206, + [7365] = 7198, + [7366] = 7203, + [7367] = 7196, + [7368] = 7199, + [7369] = 7209, + [7370] = 7200, + [7371] = 7195, + [7372] = 7199, + [7373] = 7198, + [7374] = 7199, + [7375] = 7206, + [7376] = 7195, + [7377] = 7200, + [7378] = 7195, + [7379] = 7209, + [7380] = 7209, + [7381] = 7203, + [7382] = 7198, + [7383] = 7200, + [7384] = 7196, + [7385] = 7203, + [7386] = 7195, + [7387] = 7206, + [7388] = 7200, + [7389] = 7203, + [7390] = 7198, + [7391] = 7200, + [7392] = 7206, + [7393] = 7198, + [7394] = 7196, + [7395] = 7206, + [7396] = 7200, + [7397] = 7198, + [7398] = 7196, + [7399] = 7199, + [7400] = 7195, + [7401] = 7206, + [7402] = 7199, + [7403] = 7199, + [7404] = 7203, + [7405] = 7203, + [7406] = 7200, + [7407] = 7199, + [7408] = 7200, + [7409] = 7195, + [7410] = 7203, + [7411] = 7198, [7412] = 7196, - [7413] = 7194, - [7414] = 7197, - [7415] = 7193, - [7416] = 842, - [7417] = 4003, - [7418] = 1099, - [7419] = 1100, - [7420] = 1101, - [7421] = 1106, - [7422] = 1109, - [7423] = 7423, - [7424] = 7424, - [7425] = 3866, - [7426] = 7426, - [7427] = 7427, - [7428] = 4002, - [7429] = 3968, + [7413] = 7229, + [7414] = 7206, + [7415] = 7229, + [7416] = 7206, + [7417] = 7200, + [7418] = 7196, + [7419] = 3710, + [7420] = 7420, + [7421] = 1134, + [7422] = 4008, + [7423] = 1130, + [7424] = 1135, + [7425] = 1136, + [7426] = 1129, + [7427] = 3997, + [7428] = 7428, + [7429] = 3988, [7430] = 3980, - [7431] = 3974, + [7431] = 4030, [7432] = 7432, - [7433] = 7432, - [7434] = 7434, - [7435] = 7434, - [7436] = 7436, - [7437] = 7432, + [7433] = 7433, + [7434] = 843, + [7435] = 7435, + [7436] = 7435, + [7437] = 7437, [7438] = 7438, - [7439] = 7439, + [7439] = 7435, [7440] = 7440, - [7441] = 7432, - [7442] = 7439, + [7441] = 7441, + [7442] = 7438, [7443] = 7443, - [7444] = 7438, - [7445] = 7445, - [7446] = 7438, - [7447] = 7439, - [7448] = 7438, - [7449] = 7439, + [7444] = 7435, + [7445] = 7438, + [7446] = 7435, + [7447] = 7447, + [7448] = 7448, + [7449] = 7443, [7450] = 7438, - [7451] = 7439, - [7452] = 7432, - [7453] = 7438, - [7454] = 7432, - [7455] = 7455, - [7456] = 7438, - [7457] = 865, - [7458] = 7432, - [7459] = 7432, - [7460] = 7439, - [7461] = 7461, - [7462] = 7434, - [7463] = 7463, - [7464] = 7439, - [7465] = 7439, - [7466] = 7432, - [7467] = 7461, - [7468] = 7434, + [7451] = 7438, + [7452] = 7435, + [7453] = 7435, + [7454] = 7443, + [7455] = 7441, + [7456] = 7435, + [7457] = 7443, + [7458] = 7458, + [7459] = 7438, + [7460] = 7443, + [7461] = 7448, + [7462] = 7443, + [7463] = 7448, + [7464] = 7435, + [7465] = 7465, + [7466] = 7466, + [7467] = 7438, + [7468] = 7438, [7469] = 7438, - [7470] = 7432, - [7471] = 7445, - [7472] = 7438, - [7473] = 7439, - [7474] = 7439, - [7475] = 7432, - [7476] = 7443, - [7477] = 7436, - [7478] = 7438, - [7479] = 7440, - [7480] = 7439, - [7481] = 7440, - [7482] = 7436, - [7483] = 854, - [7484] = 7440, - [7485] = 7439, - [7486] = 7461, - [7487] = 834, - [7488] = 7439, - [7489] = 7439, - [7490] = 7443, - [7491] = 7432, - [7492] = 7492, - [7493] = 7493, + [7470] = 7443, + [7471] = 7458, + [7472] = 7435, + [7473] = 7448, + [7474] = 7474, + [7475] = 7435, + [7476] = 7438, + [7477] = 7443, + [7478] = 7448, + [7479] = 7466, + [7480] = 7438, + [7481] = 7448, + [7482] = 7443, + [7483] = 7483, + [7484] = 7443, + [7485] = 7435, + [7486] = 7438, + [7487] = 7438, + [7488] = 7443, + [7489] = 7458, + [7490] = 7448, + [7491] = 7466, + [7492] = 7435, + [7493] = 7438, [7494] = 7443, - [7495] = 7495, - [7496] = 7432, - [7497] = 7439, - [7498] = 7432, - [7499] = 7436, - [7500] = 7439, - [7501] = 7492, - [7502] = 7440, + [7495] = 7435, + [7496] = 7438, + [7497] = 7438, + [7498] = 7437, + [7499] = 7443, + [7500] = 7435, + [7501] = 7435, + [7502] = 7465, [7503] = 7438, - [7504] = 7432, - [7505] = 7439, - [7506] = 7432, - [7507] = 7438, - [7508] = 7432, - [7509] = 7439, - [7510] = 7492, - [7511] = 7440, - [7512] = 7438, - [7513] = 7438, - [7514] = 7438, - [7515] = 7438, - [7516] = 7434, - [7517] = 842, - [7518] = 7443, - [7519] = 7440, - [7520] = 7432, - [7521] = 7432, - [7522] = 7440, - [7523] = 7439, - [7524] = 7438, - [7525] = 7438, - [7526] = 7438, - [7527] = 7432, - [7528] = 7439, - [7529] = 7443, - [7530] = 7432, - [7531] = 7531, - [7532] = 7432, + [7504] = 7443, + [7505] = 7474, + [7506] = 7438, + [7507] = 7441, + [7508] = 7458, + [7509] = 7435, + [7510] = 7448, + [7511] = 7438, + [7512] = 7474, + [7513] = 7441, + [7514] = 7514, + [7515] = 7443, + [7516] = 7435, + [7517] = 7435, + [7518] = 845, + [7519] = 7438, + [7520] = 7443, + [7521] = 7448, + [7522] = 7443, + [7523] = 856, + [7524] = 7466, + [7525] = 7443, + [7526] = 7458, + [7527] = 7443, + [7528] = 7438, + [7529] = 7448, + [7530] = 7466, + [7531] = 7441, + [7532] = 7474, [7533] = 7438, - [7534] = 7445, - [7535] = 7438, - [7536] = 7461, - [7537] = 868, - [7538] = 7439, - [7539] = 7434, - [7540] = 7432, - [7541] = 7439, - [7542] = 7438, - [7543] = 7461, - [7544] = 7439, - [7545] = 7443, - [7546] = 7440, - [7547] = 7432, - [7548] = 7438, - [7549] = 7432, - [7550] = 7440, - [7551] = 7492, - [7552] = 7552, - [7553] = 7440, - [7554] = 7438, - [7555] = 7436, - [7556] = 7445, - [7557] = 7440, + [7534] = 7474, + [7535] = 7458, + [7536] = 7441, + [7537] = 7458, + [7538] = 7443, + [7539] = 7458, + [7540] = 7458, + [7541] = 7437, + [7542] = 7443, + [7543] = 7458, + [7544] = 7441, + [7545] = 7448, + [7546] = 7458, + [7547] = 7437, + [7548] = 7435, + [7549] = 854, + [7550] = 7438, + [7551] = 7466, + [7552] = 7465, + [7553] = 7448, + [7554] = 7474, + [7555] = 7555, + [7556] = 7441, + [7557] = 7443, [7558] = 7443, - [7559] = 7434, - [7560] = 7439, - [7561] = 7434, - [7562] = 7492, - [7563] = 7492, - [7564] = 7436, - [7565] = 7440, - [7566] = 7439, - [7567] = 852, - [7568] = 7434, - [7569] = 7438, + [7559] = 7458, + [7560] = 7435, + [7561] = 7448, + [7562] = 7465, + [7563] = 7435, + [7564] = 7465, + [7565] = 844, + [7566] = 7448, + [7567] = 7443, + [7568] = 7448, + [7569] = 7435, [7570] = 7443, - [7571] = 7434, - [7572] = 7440, - [7573] = 7434, - [7574] = 7432, - [7575] = 7440, - [7576] = 7443, - [7577] = 7439, - [7578] = 7432, - [7579] = 7445, - [7580] = 7461, - [7581] = 7445, - [7582] = 7582, - [7583] = 7443, - [7584] = 7436, - [7585] = 7439, - [7586] = 7443, - [7587] = 7440, - [7588] = 7434, - [7589] = 7438, - [7590] = 7440, - [7591] = 7440, - [7592] = 7438, - [7593] = 7593, - [7594] = 7594, - [7595] = 7595, - [7596] = 7593, - [7597] = 7595, - [7598] = 7594, + [7571] = 7437, + [7572] = 7448, + [7573] = 7441, + [7574] = 843, + [7575] = 7438, + [7576] = 7441, + [7577] = 7438, + [7578] = 7578, + [7579] = 7579, + [7580] = 855, + [7581] = 7441, + [7582] = 7438, + [7583] = 7435, + [7584] = 7435, + [7585] = 7448, + [7586] = 7438, + [7587] = 7437, + [7588] = 7465, + [7589] = 7448, + [7590] = 7466, + [7591] = 7435, + [7592] = 7443, + [7593] = 7443, + [7594] = 7435, + [7595] = 7441, + [7596] = 7596, + [7597] = 7597, + [7598] = 7598, [7599] = 7599, - [7600] = 7594, + [7600] = 7597, [7601] = 7601, - [7602] = 7593, - [7603] = 7594, - [7604] = 983, - [7605] = 7595, - [7606] = 7594, - [7607] = 7601, + [7602] = 7602, + [7603] = 7603, + [7604] = 7604, + [7605] = 7596, + [7606] = 7599, + [7607] = 7607, [7608] = 7601, - [7609] = 7594, - [7610] = 7595, - [7611] = 7611, - [7612] = 7595, - [7613] = 7613, - [7614] = 7601, - [7615] = 7613, + [7609] = 7609, + [7610] = 7610, + [7611] = 844, + [7612] = 7612, + [7613] = 7607, + [7614] = 7602, + [7615] = 7603, [7616] = 7616, - [7617] = 7599, - [7618] = 865, - [7619] = 7601, - [7620] = 7601, - [7621] = 7613, - [7622] = 7622, - [7623] = 7594, - [7624] = 7594, - [7625] = 7593, - [7626] = 7595, - [7627] = 7611, - [7628] = 7599, - [7629] = 7595, - [7630] = 7611, - [7631] = 7631, - [7632] = 7622, - [7633] = 854, - [7634] = 7634, - [7635] = 7593, - [7636] = 7601, - [7637] = 7601, - [7638] = 7613, - [7639] = 7639, - [7640] = 7640, - [7641] = 7599, - [7642] = 7594, - [7643] = 7611, - [7644] = 7595, - [7645] = 7601, - [7646] = 7594, - [7647] = 7595, - [7648] = 7593, - [7649] = 7640, - [7650] = 7634, - [7651] = 7611, - [7652] = 7599, - [7653] = 7613, - [7654] = 7640, - [7655] = 7593, - [7656] = 7634, - [7657] = 7622, - [7658] = 7639, - [7659] = 7611, - [7660] = 7601, - [7661] = 7661, - [7662] = 7613, - [7663] = 7599, - [7664] = 7640, - [7665] = 7640, - [7666] = 7593, - [7667] = 7634, - [7668] = 7611, - [7669] = 7613, - [7670] = 7599, - [7671] = 7640, - [7672] = 7593, - [7673] = 7634, - [7674] = 7611, - [7675] = 7613, - [7676] = 7599, - [7677] = 7593, - [7678] = 7678, - [7679] = 7634, - [7680] = 7622, - [7681] = 7593, - [7682] = 7640, - [7683] = 7683, - [7684] = 7634, - [7685] = 7594, - [7686] = 7634, - [7687] = 7639, - [7688] = 7634, - [7689] = 7595, - [7690] = 7594, - [7691] = 7594, - [7692] = 865, - [7693] = 7594, - [7694] = 7640, - [7695] = 7639, - [7696] = 7640, - [7697] = 7634, - [7698] = 7601, - [7699] = 1005, - [7700] = 999, - [7701] = 7595, - [7702] = 7640, - [7703] = 7593, - [7704] = 7634, - [7705] = 7611, - [7706] = 7599, - [7707] = 7707, - [7708] = 7611, - [7709] = 7634, - [7710] = 7640, - [7711] = 7599, - [7712] = 7640, - [7713] = 7593, - [7714] = 7634, - [7715] = 7611, - [7716] = 7599, - [7717] = 7593, - [7718] = 7595, - [7719] = 7634, - [7720] = 7611, - [7721] = 7613, - [7722] = 7611, - [7723] = 7599, - [7724] = 7640, - [7725] = 7613, - [7726] = 7593, - [7727] = 7599, - [7728] = 7613, - [7729] = 7611, - [7730] = 7634, - [7731] = 7640, - [7732] = 7595, - [7733] = 7639, - [7734] = 7611, - [7735] = 7601, - [7736] = 7593, - [7737] = 7595, - [7738] = 7634, - [7739] = 7595, - [7740] = 7611, - [7741] = 7613, - [7742] = 7594, - [7743] = 7595, - [7744] = 7601, - [7745] = 7599, - [7746] = 7595, - [7747] = 7595, - [7748] = 7594, - [7749] = 7601, - [7750] = 7613, - [7751] = 7595, - [7752] = 7594, - [7753] = 7601, - [7754] = 7599, - [7755] = 7595, - [7756] = 7640, - [7757] = 7594, - [7758] = 7601, - [7759] = 7595, - [7760] = 7594, - [7761] = 7601, - [7762] = 7593, - [7763] = 7634, - [7764] = 7611, - [7765] = 7599, - [7766] = 7634, - [7767] = 7613, - [7768] = 7622, - [7769] = 7593, - [7770] = 7640, - [7771] = 7613, - [7772] = 7593, - [7773] = 7634, - [7774] = 7640, - [7775] = 7611, - [7776] = 7613, - [7777] = 7599, - [7778] = 7594, - [7779] = 7640, - [7780] = 7613, - [7781] = 7613, - [7782] = 7640, + [7617] = 7612, + [7618] = 7604, + [7619] = 7610, + [7620] = 7607, + [7621] = 7610, + [7622] = 7603, + [7623] = 7601, + [7624] = 7607, + [7625] = 7612, + [7626] = 7596, + [7627] = 7607, + [7628] = 7628, + [7629] = 855, + [7630] = 7603, + [7631] = 7597, + [7632] = 7607, + [7633] = 947, + [7634] = 7612, + [7635] = 7604, + [7636] = 7603, + [7637] = 7603, + [7638] = 7599, + [7639] = 7601, + [7640] = 7599, + [7641] = 7610, + [7642] = 7603, + [7643] = 7610, + [7644] = 7644, + [7645] = 7602, + [7646] = 7607, + [7647] = 7604, + [7648] = 7610, + [7649] = 7649, + [7650] = 7596, + [7651] = 7601, + [7652] = 7598, + [7653] = 7598, + [7654] = 7597, + [7655] = 7596, + [7656] = 7607, + [7657] = 7610, + [7658] = 948, + [7659] = 7596, + [7660] = 7596, + [7661] = 7599, + [7662] = 7598, + [7663] = 7602, + [7664] = 7597, + [7665] = 7601, + [7666] = 7598, + [7667] = 7612, + [7668] = 7610, + [7669] = 7597, + [7670] = 7603, + [7671] = 7602, + [7672] = 7612, + [7673] = 7603, + [7674] = 7596, + [7675] = 7607, + [7676] = 7602, + [7677] = 7599, + [7678] = 7601, + [7679] = 7607, + [7680] = 7610, + [7681] = 7603, + [7682] = 7612, + [7683] = 7607, + [7684] = 7601, + [7685] = 7599, + [7686] = 7599, + [7687] = 7604, + [7688] = 7610, + [7689] = 7601, + [7690] = 7607, + [7691] = 7607, + [7692] = 7603, + [7693] = 7610, + [7694] = 7597, + [7695] = 7603, + [7696] = 7603, + [7697] = 7603, + [7698] = 7599, + [7699] = 7612, + [7700] = 7602, + [7701] = 7607, + [7702] = 7610, + [7703] = 7597, + [7704] = 7599, + [7705] = 7601, + [7706] = 7602, + [7707] = 7602, + [7708] = 7596, + [7709] = 7597, + [7710] = 7612, + [7711] = 7612, + [7712] = 7607, + [7713] = 7599, + [7714] = 7607, + [7715] = 953, + [7716] = 7602, + [7717] = 7610, + [7718] = 7598, + [7719] = 7601, + [7720] = 7597, + [7721] = 855, + [7722] = 7596, + [7723] = 7602, + [7724] = 7598, + [7725] = 7599, + [7726] = 7602, + [7727] = 7610, + [7728] = 7597, + [7729] = 7597, + [7730] = 7599, + [7731] = 7610, + [7732] = 7604, + [7733] = 7604, + [7734] = 7602, + [7735] = 7599, + [7736] = 7597, + [7737] = 843, + [7738] = 7599, + [7739] = 7602, + [7740] = 7603, + [7741] = 7612, + [7742] = 7612, + [7743] = 7603, + [7744] = 7597, + [7745] = 7596, + [7746] = 7602, + [7747] = 7612, + [7748] = 7610, + [7749] = 7596, + [7750] = 7601, + [7751] = 7612, + [7752] = 7612, + [7753] = 7597, + [7754] = 7601, + [7755] = 7607, + [7756] = 7610, + [7757] = 7757, + [7758] = 7607, + [7759] = 7612, + [7760] = 7599, + [7761] = 7603, + [7762] = 7602, + [7763] = 7601, + [7764] = 7599, + [7765] = 7607, + [7766] = 7596, + [7767] = 7603, + [7768] = 7601, + [7769] = 7769, + [7770] = 7597, + [7771] = 7607, + [7772] = 7602, + [7773] = 7597, + [7774] = 7601, + [7775] = 7602, + [7776] = 7597, + [7777] = 7612, + [7778] = 7596, + [7779] = 7610, + [7780] = 7610, + [7781] = 7602, + [7782] = 7603, [7783] = 7601, - [7784] = 7639, + [7784] = 7601, [7785] = 7601, - [7786] = 7594, - [7787] = 7634, - [7788] = 7788, - [7789] = 7611, - [7790] = 7613, - [7791] = 7601, - [7792] = 7599, - [7793] = 7595, - [7794] = 7593, - [7795] = 7795, - [7796] = 7640, - [7797] = 7593, - [7798] = 7640, - [7799] = 7634, - [7800] = 7634, - [7801] = 7611, - [7802] = 7613, - [7803] = 7599, - [7804] = 7593, - [7805] = 7594, - [7806] = 7599, - [7807] = 7601, - [7808] = 7611, - [7809] = 7622, - [7810] = 7599, - [7811] = 7622, - [7812] = 7812, - [7813] = 7613, + [7786] = 7612, + [7787] = 7601, + [7788] = 7607, + [7789] = 7601, + [7790] = 7599, + [7791] = 7612, + [7792] = 7596, + [7793] = 7599, + [7794] = 7596, + [7795] = 7612, + [7796] = 7596, + [7797] = 7602, + [7798] = 7597, + [7799] = 7601, + [7800] = 7604, + [7801] = 7612, + [7802] = 7610, + [7803] = 7610, + [7804] = 7596, + [7805] = 7598, + [7806] = 7601, + [7807] = 7603, + [7808] = 7597, + [7809] = 7596, + [7810] = 7610, + [7811] = 7597, + [7812] = 7596, + [7813] = 7607, [7814] = 7601, - [7815] = 7634, - [7816] = 7611, - [7817] = 7611, - [7818] = 7613, - [7819] = 7622, - [7820] = 7820, - [7821] = 7613, - [7822] = 7599, - [7823] = 7634, - [7824] = 7595, - [7825] = 7611, - [7826] = 7593, - [7827] = 7639, - [7828] = 7640, - [7829] = 7640, - [7830] = 842, - [7831] = 7634, - [7832] = 7593, - [7833] = 7611, - [7834] = 7640, - [7835] = 7601, - [7836] = 7594, - [7837] = 7611, - [7838] = 7599, - [7839] = 7595, - [7840] = 7595, - [7841] = 7599, - [7842] = 7594, - [7843] = 7601, - [7844] = 7594, - [7845] = 7613, - [7846] = 7640, - [7847] = 7595, - [7848] = 7622, - [7849] = 7593, - [7850] = 7634, - [7851] = 7601, - [7852] = 7599, - [7853] = 7611, - [7854] = 7640, - [7855] = 7639, - [7856] = 7601, + [7815] = 7599, + [7816] = 7816, + [7817] = 7607, + [7818] = 7602, + [7819] = 7604, + [7820] = 7603, + [7821] = 7607, + [7822] = 7597, + [7823] = 7612, + [7824] = 7602, + [7825] = 7825, + [7826] = 7597, + [7827] = 7610, + [7828] = 7610, + [7829] = 7596, + [7830] = 7607, + [7831] = 7599, + [7832] = 7612, + [7833] = 7599, + [7834] = 7599, + [7835] = 7603, + [7836] = 7603, + [7837] = 7612, + [7838] = 7607, + [7839] = 7602, + [7840] = 7597, + [7841] = 7596, + [7842] = 7612, + [7843] = 7597, + [7844] = 7601, + [7845] = 7596, + [7846] = 7602, + [7847] = 7599, + [7848] = 7596, + [7849] = 7601, + [7850] = 7603, + [7851] = 7596, + [7852] = 7610, + [7853] = 7597, + [7854] = 7602, + [7855] = 7602, + [7856] = 7610, [7857] = 7599, - [7858] = 7613, - [7859] = 7594, - [7860] = 7613, - [7861] = 7613, - [7862] = 7595, - [7863] = 7594, - [7864] = 7639, - [7865] = 7599, - [7866] = 7640, - [7867] = 7593, - [7868] = 7593, - [7869] = 7634, - [7870] = 7601, - [7871] = 788, - [7872] = 789, - [7873] = 793, - [7874] = 7874, - [7875] = 802, - [7876] = 785, - [7877] = 788, - [7878] = 802, - [7879] = 863, - [7880] = 7880, - [7881] = 789, - [7882] = 851, - [7883] = 7880, - [7884] = 793, - [7885] = 864, - [7886] = 850, - [7887] = 7880, - [7888] = 896, - [7889] = 7880, - [7890] = 7880, - [7891] = 785, - [7892] = 849, - [7893] = 7880, - [7894] = 7894, - [7895] = 7894, - [7896] = 7894, - [7897] = 7894, - [7898] = 7894, - [7899] = 849, - [7900] = 7894, - [7901] = 850, - [7902] = 851, - [7903] = 7894, - [7904] = 812, - [7905] = 856, - [7906] = 7894, - [7907] = 7894, - [7908] = 863, - [7909] = 7894, - [7910] = 862, - [7911] = 7894, - [7912] = 874, - [7913] = 869, - [7914] = 845, - [7915] = 7894, - [7916] = 861, - [7917] = 7894, - [7918] = 7918, - [7919] = 7894, - [7920] = 7920, - [7921] = 7894, - [7922] = 7894, - [7923] = 7894, - [7924] = 864, - [7925] = 833, - [7926] = 7894, - [7927] = 896, - [7928] = 7894, - [7929] = 7894, - [7930] = 7894, - [7931] = 7894, - [7932] = 7034, - [7933] = 7894, - [7934] = 875, - [7935] = 7894, - [7936] = 7936, - [7937] = 993, - [7938] = 875, - [7939] = 833, - [7940] = 7940, - [7941] = 7941, - [7942] = 1010, - [7943] = 906, - [7944] = 856, - [7945] = 910, - [7946] = 861, + [7858] = 7603, + [7859] = 7599, + [7860] = 7602, + [7861] = 7612, + [7862] = 7597, + [7863] = 7598, + [7864] = 7603, + [7865] = 7612, + [7866] = 7607, + [7867] = 7601, + [7868] = 7868, + [7869] = 7596, + [7870] = 7599, + [7871] = 7603, + [7872] = 7610, + [7873] = 7596, + [7874] = 802, + [7875] = 807, + [7876] = 793, + [7877] = 7877, + [7878] = 809, + [7879] = 805, + [7880] = 940, + [7881] = 793, + [7882] = 859, + [7883] = 7883, + [7884] = 7883, + [7885] = 805, + [7886] = 858, + [7887] = 861, + [7888] = 809, + [7889] = 7883, + [7890] = 802, + [7891] = 860, + [7892] = 864, + [7893] = 7883, + [7894] = 7883, + [7895] = 807, + [7896] = 7883, + [7897] = 873, + [7898] = 7898, + [7899] = 7898, + [7900] = 858, + [7901] = 859, + [7902] = 7902, + [7903] = 7898, + [7904] = 868, + [7905] = 7898, + [7906] = 864, + [7907] = 7907, + [7908] = 872, + [7909] = 7898, + [7910] = 7898, + [7911] = 7898, + [7912] = 7088, + [7913] = 7913, + [7914] = 7898, + [7915] = 871, + [7916] = 7898, + [7917] = 7898, + [7918] = 7898, + [7919] = 867, + [7920] = 7898, + [7921] = 7898, + [7922] = 7898, + [7923] = 830, + [7924] = 7898, + [7925] = 7898, + [7926] = 7898, + [7927] = 7898, + [7928] = 7898, + [7929] = 7898, + [7930] = 7898, + [7931] = 861, + [7932] = 876, + [7933] = 7898, + [7934] = 860, + [7935] = 7898, + [7936] = 940, + [7937] = 831, + [7938] = 7898, + [7939] = 869, + [7940] = 871, + [7941] = 910, + [7942] = 945, + [7943] = 924, + [7944] = 7944, + [7945] = 981, + [7946] = 982, [7947] = 7947, - [7948] = 7948, - [7949] = 1018, - [7950] = 885, - [7951] = 1008, - [7952] = 7941, - [7953] = 7947, - [7954] = 874, - [7955] = 894, - [7956] = 862, - [7957] = 891, - [7958] = 914, - [7959] = 869, - [7960] = 7941, - [7961] = 939, - [7962] = 925, - [7963] = 7947, - [7964] = 7947, - [7965] = 845, - [7966] = 902, - [7967] = 922, - [7968] = 7941, - [7969] = 7947, - [7970] = 7941, - [7971] = 917, - [7972] = 959, - [7973] = 887, - [7974] = 892, - [7975] = 7941, - [7976] = 921, - [7977] = 948, - [7978] = 982, - [7979] = 943, - [7980] = 878, - [7981] = 877, - [7982] = 1014, - [7983] = 915, - [7984] = 937, - [7985] = 7985, - [7986] = 924, - [7987] = 907, - [7988] = 936, - [7989] = 7947, - [7990] = 7990, - [7991] = 7991, - [7992] = 7992, - [7993] = 7991, - [7994] = 887, - [7995] = 883, - [7996] = 934, + [7948] = 868, + [7949] = 7944, + [7950] = 954, + [7951] = 7951, + [7952] = 873, + [7953] = 939, + [7954] = 7947, + [7955] = 919, + [7956] = 892, + [7957] = 7947, + [7958] = 916, + [7959] = 7959, + [7960] = 927, + [7961] = 970, + [7962] = 869, + [7963] = 920, + [7964] = 936, + [7965] = 872, + [7966] = 908, + [7967] = 911, + [7968] = 7947, + [7969] = 901, + [7970] = 902, + [7971] = 904, + [7972] = 876, + [7973] = 897, + [7974] = 7947, + [7975] = 867, + [7976] = 7944, + [7977] = 7944, + [7978] = 7947, + [7979] = 7944, + [7980] = 914, + [7981] = 881, + [7982] = 934, + [7983] = 957, + [7984] = 943, + [7985] = 913, + [7986] = 885, + [7987] = 831, + [7988] = 7988, + [7989] = 977, + [7990] = 932, + [7991] = 7944, + [7992] = 958, + [7993] = 7993, + [7994] = 7994, + [7995] = 7995, + [7996] = 7994, [7997] = 7997, - [7998] = 7991, - [7999] = 7992, - [8000] = 7992, + [7998] = 7994, + [7999] = 920, + [8000] = 957, [8001] = 8001, - [8002] = 922, - [8003] = 8001, - [8004] = 965, - [8005] = 7997, - [8006] = 1109, - [8007] = 7997, - [8008] = 8008, - [8009] = 921, - [8010] = 7997, - [8011] = 7992, - [8012] = 958, - [8013] = 959, - [8014] = 7992, - [8015] = 7991, - [8016] = 948, - [8017] = 8001, - [8018] = 944, - [8019] = 8001, - [8020] = 7997, - [8021] = 1014, - [8022] = 7991, - [8023] = 7991, - [8024] = 976, - [8025] = 982, - [8026] = 7997, - [8027] = 878, - [8028] = 877, - [8029] = 7997, - [8030] = 8030, - [8031] = 915, - [8032] = 8032, - [8033] = 7991, - [8034] = 8001, - [8035] = 937, - [8036] = 8001, - [8037] = 1006, - [8038] = 924, - [8039] = 7990, - [8040] = 951, - [8041] = 936, - [8042] = 7992, - [8043] = 8043, - [8044] = 8001, - [8045] = 1106, - [8046] = 8046, - [8047] = 7991, - [8048] = 8001, - [8049] = 7992, - [8050] = 7991, - [8051] = 7997, - [8052] = 7991, - [8053] = 1100, - [8054] = 8054, - [8055] = 8055, - [8056] = 1099, - [8057] = 1101, - [8058] = 910, - [8059] = 834, - [8060] = 7992, - [8061] = 7991, - [8062] = 8001, - [8063] = 7992, - [8064] = 7997, - [8065] = 7991, - [8066] = 7991, - [8067] = 943, - [8068] = 7991, - [8069] = 8054, - [8070] = 7997, - [8071] = 8001, - [8072] = 7992, - [8073] = 7991, - [8074] = 892, - [8075] = 925, - [8076] = 917, - [8077] = 7990, - [8078] = 7997, - [8079] = 8001, - [8080] = 8054, - [8081] = 1008, - [8082] = 1075, - [8083] = 1029, - [8084] = 7992, - [8085] = 7991, - [8086] = 7991, - [8087] = 939, - [8088] = 8001, - [8089] = 7997, - [8090] = 907, - [8091] = 1032, - [8092] = 7997, - [8093] = 7991, - [8094] = 7997, - [8095] = 8001, - [8096] = 7992, - [8097] = 1018, - [8098] = 7992, - [8099] = 7990, - [8100] = 902, - [8101] = 8001, - [8102] = 7997, - [8103] = 8001, - [8104] = 7997, - [8105] = 894, - [8106] = 914, - [8107] = 891, - [8108] = 8001, - [8109] = 8001, - [8110] = 885, - [8111] = 7997, - [8112] = 843, - [8113] = 7991, - [8114] = 1195, - [8115] = 993, - [8116] = 7992, - [8117] = 7990, - [8118] = 8054, - [8119] = 7992, - [8120] = 7992, - [8121] = 8001, - [8122] = 895, - [8123] = 7997, - [8124] = 7991, - [8125] = 7991, - [8126] = 7992, - [8127] = 7997, - [8128] = 7991, - [8129] = 7997, - [8130] = 8001, - [8131] = 7992, - [8132] = 8001, - [8133] = 8001, - [8134] = 7997, - [8135] = 7991, - [8136] = 7997, - [8137] = 7991, - [8138] = 8001, - [8139] = 7997, - [8140] = 7992, - [8141] = 7991, - [8142] = 7990, - [8143] = 8054, - [8144] = 7991, - [8145] = 7997, - [8146] = 8001, - [8147] = 7992, - [8148] = 7992, - [8149] = 906, - [8150] = 8001, - [8151] = 7992, - [8152] = 8001, - [8153] = 8054, - [8154] = 7991, - [8155] = 7992, - [8156] = 8001, - [8157] = 7992, - [8158] = 1010, - [8159] = 7997, - [8160] = 7992, - [8161] = 7992, - [8162] = 8001, - [8163] = 7997, - [8164] = 7992, - [8165] = 7997, - [8166] = 8166, - [8167] = 8167, - [8168] = 8168, - [8169] = 8166, - [8170] = 8167, - [8171] = 8171, - [8172] = 8168, - [8173] = 8166, - [8174] = 8167, - [8175] = 8168, - [8176] = 8171, - [8177] = 8167, - [8178] = 8168, - [8179] = 8166, - [8180] = 8180, - [8181] = 8168, - [8182] = 8171, - [8183] = 8167, - [8184] = 8166, - [8185] = 8166, - [8186] = 949, - [8187] = 865, - [8188] = 8167, - [8189] = 8171, - [8190] = 8167, - [8191] = 8168, - [8192] = 971, - [8193] = 8168, - [8194] = 8171, - [8195] = 8168, - [8196] = 8171, - [8197] = 8167, - [8198] = 8171, - [8199] = 8166, - [8200] = 8166, - [8201] = 8171, - [8202] = 8166, - [8203] = 8171, - [8204] = 8204, - [8205] = 8171, - [8206] = 8167, - [8207] = 8166, - [8208] = 8166, - [8209] = 8168, - [8210] = 8166, - [8211] = 8167, - [8212] = 8212, - [8213] = 8171, - [8214] = 8167, - [8215] = 8215, - [8216] = 8168, - [8217] = 8171, - [8218] = 8167, - [8219] = 8168, - [8220] = 8168, - [8221] = 1195, - [8222] = 8222, - [8223] = 8166, + [8002] = 8002, + [8003] = 7995, + [8004] = 8004, + [8005] = 8005, + [8006] = 7993, + [8007] = 7994, + [8008] = 7994, + [8009] = 8009, + [8010] = 7995, + [8011] = 7994, + [8012] = 7993, + [8013] = 1018, + [8014] = 901, + [8015] = 8009, + [8016] = 902, + [8017] = 970, + [8018] = 7995, + [8019] = 7995, + [8020] = 8004, + [8021] = 7994, + [8022] = 8004, + [8023] = 7994, + [8024] = 7994, + [8025] = 8025, + [8026] = 7993, + [8027] = 8009, + [8028] = 1014, + [8029] = 983, + [8030] = 8004, + [8031] = 7993, + [8032] = 8004, + [8033] = 7994, + [8034] = 7995, + [8035] = 7993, + [8036] = 1002, + [8037] = 910, + [8038] = 943, + [8039] = 7993, + [8040] = 914, + [8041] = 7994, + [8042] = 8004, + [8043] = 832, + [8044] = 8004, + [8045] = 881, + [8046] = 8004, + [8047] = 7994, + [8048] = 885, + [8049] = 8004, + [8050] = 7995, + [8051] = 977, + [8052] = 7993, + [8053] = 7995, + [8054] = 8005, + [8055] = 7993, + [8056] = 982, + [8057] = 932, + [8058] = 1112, + [8059] = 880, + [8060] = 916, + [8061] = 8004, + [8062] = 7995, + [8063] = 919, + [8064] = 8004, + [8065] = 883, + [8066] = 7994, + [8067] = 913, + [8068] = 8068, + [8069] = 939, + [8070] = 7995, + [8071] = 7993, + [8072] = 945, + [8073] = 934, + [8074] = 8004, + [8075] = 911, + [8076] = 8009, + [8077] = 7993, + [8078] = 7995, + [8079] = 8004, + [8080] = 7993, + [8081] = 897, + [8082] = 7994, + [8083] = 7995, + [8084] = 927, + [8085] = 7993, + [8086] = 8004, + [8087] = 8005, + [8088] = 7993, + [8089] = 8004, + [8090] = 7994, + [8091] = 7994, + [8092] = 7994, + [8093] = 7995, + [8094] = 7995, + [8095] = 7993, + [8096] = 8004, + [8097] = 7993, + [8098] = 908, + [8099] = 7995, + [8100] = 8004, + [8101] = 892, + [8102] = 924, + [8103] = 8004, + [8104] = 958, + [8105] = 8005, + [8106] = 7994, + [8107] = 955, + [8108] = 8004, + [8109] = 7993, + [8110] = 7995, + [8111] = 7993, + [8112] = 8004, + [8113] = 8004, + [8114] = 1187, + [8115] = 8009, + [8116] = 7994, + [8117] = 981, + [8118] = 1017, + [8119] = 7995, + [8120] = 8005, + [8121] = 904, + [8122] = 7994, + [8123] = 954, + [8124] = 7995, + [8125] = 930, + [8126] = 7995, + [8127] = 7995, + [8128] = 8004, + [8129] = 7993, + [8130] = 7993, + [8131] = 7995, + [8132] = 7994, + [8133] = 8004, + [8134] = 960, + [8135] = 8009, + [8136] = 1136, + [8137] = 7994, + [8138] = 7994, + [8139] = 7995, + [8140] = 8004, + [8141] = 1129, + [8142] = 1135, + [8143] = 7993, + [8144] = 7993, + [8145] = 1008, + [8146] = 1134, + [8147] = 7995, + [8148] = 7995, + [8149] = 7993, + [8150] = 1130, + [8151] = 8004, + [8152] = 7994, + [8153] = 7994, + [8154] = 8004, + [8155] = 8004, + [8156] = 7993, + [8157] = 7993, + [8158] = 7995, + [8159] = 7995, + [8160] = 7993, + [8161] = 7993, + [8162] = 7995, + [8163] = 8163, + [8164] = 7994, + [8165] = 7994, + [8166] = 845, + [8167] = 8005, + [8168] = 936, + [8169] = 8169, + [8170] = 3710, + [8171] = 964, + [8172] = 8172, + [8173] = 8169, + [8174] = 8174, + [8175] = 8175, + [8176] = 963, + [8177] = 8172, + [8178] = 8172, + [8179] = 8169, + [8180] = 8174, + [8181] = 1017, + [8182] = 1008, + [8183] = 8175, + [8184] = 844, + [8185] = 8185, + [8186] = 832, + [8187] = 965, + [8188] = 8188, + [8189] = 843, + [8190] = 8175, + [8191] = 1187, + [8192] = 8174, + [8193] = 8193, + [8194] = 8194, + [8195] = 8169, + [8196] = 8172, + [8197] = 8169, + [8198] = 883, + [8199] = 8175, + [8200] = 8174, + [8201] = 8169, + [8202] = 8172, + [8203] = 960, + [8204] = 8169, + [8205] = 8172, + [8206] = 955, + [8207] = 995, + [8208] = 8175, + [8209] = 8174, + [8210] = 996, + [8211] = 8175, + [8212] = 8174, + [8213] = 8172, + [8214] = 8214, + [8215] = 8172, + [8216] = 8169, + [8217] = 8174, + [8218] = 8175, + [8219] = 8172, + [8220] = 8169, + [8221] = 8174, + [8222] = 8175, + [8223] = 8175, [8224] = 8224, - [8225] = 8225, - [8226] = 1029, - [8227] = 8227, - [8228] = 8228, - [8229] = 8166, - [8230] = 1006, - [8231] = 1075, - [8232] = 8168, - [8233] = 8167, - [8234] = 8171, - [8235] = 8166, - [8236] = 8168, - [8237] = 8168, - [8238] = 958, - [8239] = 944, - [8240] = 8166, - [8241] = 951, - [8242] = 895, - [8243] = 8243, - [8244] = 8167, - [8245] = 8171, - [8246] = 8167, - [8247] = 8247, - [8248] = 8168, - [8249] = 842, - [8250] = 8171, - [8251] = 8171, - [8252] = 8167, - [8253] = 8168, - [8254] = 8171, - [8255] = 8166, - [8256] = 8166, - [8257] = 8168, - [8258] = 854, - [8259] = 8167, - [8260] = 8171, - [8261] = 1022, - [8262] = 8168, - [8263] = 8167, - [8264] = 8168, - [8265] = 1026, - [8266] = 1027, - [8267] = 8168, - [8268] = 976, - [8269] = 8171, - [8270] = 8167, - [8271] = 8166, - [8272] = 8167, - [8273] = 883, - [8274] = 8171, - [8275] = 843, - [8276] = 1015, - [8277] = 1023, - [8278] = 1036, - [8279] = 992, - [8280] = 8171, - [8281] = 965, - [8282] = 1007, - [8283] = 8167, - [8284] = 962, - [8285] = 8285, - [8286] = 8168, - [8287] = 8166, - [8288] = 1020, - [8289] = 3866, - [8290] = 8168, - [8291] = 8166, - [8292] = 8168, - [8293] = 8171, - [8294] = 8168, - [8295] = 8171, - [8296] = 8167, - [8297] = 8167, - [8298] = 8166, - [8299] = 1035, - [8300] = 1082, - [8301] = 966, - [8302] = 955, - [8303] = 8171, - [8304] = 947, + [8225] = 8174, + [8226] = 8226, + [8227] = 1012, + [8228] = 8169, + [8229] = 1021, + [8230] = 1023, + [8231] = 8231, + [8232] = 8172, + [8233] = 8233, + [8234] = 993, + [8235] = 8169, + [8236] = 8236, + [8237] = 1149, + [8238] = 8169, + [8239] = 8174, + [8240] = 8175, + [8241] = 8172, + [8242] = 8169, + [8243] = 8174, + [8244] = 8175, + [8245] = 1114, + [8246] = 8172, + [8247] = 8169, + [8248] = 8174, + [8249] = 8175, + [8250] = 855, + [8251] = 8172, + [8252] = 8169, + [8253] = 8174, + [8254] = 8175, + [8255] = 8172, + [8256] = 8169, + [8257] = 8174, + [8258] = 8175, + [8259] = 8172, + [8260] = 8175, + [8261] = 8174, + [8262] = 1002, + [8263] = 8169, + [8264] = 8172, + [8265] = 8175, + [8266] = 8172, + [8267] = 8169, + [8268] = 8174, + [8269] = 8175, + [8270] = 8174, + [8271] = 8169, + [8272] = 8172, + [8273] = 8172, + [8274] = 8172, + [8275] = 8169, + [8276] = 8174, + [8277] = 8175, + [8278] = 8169, + [8279] = 8174, + [8280] = 8175, + [8281] = 8281, + [8282] = 8282, + [8283] = 8172, + [8284] = 8175, + [8285] = 988, + [8286] = 987, + [8287] = 983, + [8288] = 1005, + [8289] = 8174, + [8290] = 8174, + [8291] = 8175, + [8292] = 8174, + [8293] = 8169, + [8294] = 8172, + [8295] = 980, + [8296] = 8296, + [8297] = 8169, + [8298] = 8174, + [8299] = 8299, + [8300] = 880, + [8301] = 8175, + [8302] = 978, + [8303] = 8172, + [8304] = 8169, [8305] = 8305, - [8306] = 1163, - [8307] = 8168, - [8308] = 8308, - [8309] = 8167, - [8310] = 8166, - [8311] = 8166, - [8312] = 8166, - [8313] = 8166, - [8314] = 957, - [8315] = 963, - [8316] = 8316, - [8317] = 991, - [8318] = 964, - [8319] = 8171, - [8320] = 8168, - [8321] = 8166, - [8322] = 8171, - [8323] = 8167, - [8324] = 989, - [8325] = 981, - [8326] = 8167, - [8327] = 8167, - [8328] = 8171, - [8329] = 8329, - [8330] = 8329, - [8331] = 8331, + [8306] = 8174, + [8307] = 8175, + [8308] = 8172, + [8309] = 8169, + [8310] = 8172, + [8311] = 8174, + [8312] = 1112, + [8313] = 8175, + [8314] = 974, + [8315] = 973, + [8316] = 1018, + [8317] = 8175, + [8318] = 985, + [8319] = 969, + [8320] = 8175, + [8321] = 8172, + [8322] = 8169, + [8323] = 986, + [8324] = 968, + [8325] = 8174, + [8326] = 967, + [8327] = 8174, + [8328] = 8169, + [8329] = 8172, + [8330] = 8175, + [8331] = 966, [8332] = 8332, - [8333] = 8333, - [8334] = 8331, - [8335] = 8333, + [8333] = 922, + [8334] = 993, + [8335] = 985, [8336] = 8336, [8337] = 8337, [8338] = 8338, [8339] = 8339, [8340] = 8340, - [8341] = 8341, - [8342] = 8342, + [8341] = 8337, + [8342] = 8332, [8343] = 8343, - [8344] = 8344, + [8344] = 912, [8345] = 8345, - [8346] = 8346, - [8347] = 940, - [8348] = 8348, + [8346] = 1051, + [8347] = 903, + [8348] = 1052, [8349] = 8349, - [8350] = 8350, + [8350] = 8340, [8351] = 8351, - [8352] = 8350, - [8353] = 8333, - [8354] = 8331, - [8355] = 8355, + [8352] = 8338, + [8353] = 998, + [8354] = 8354, + [8355] = 995, [8356] = 8356, - [8357] = 8357, - [8358] = 8358, + [8357] = 8340, + [8358] = 8338, [8359] = 8359, - [8360] = 8360, - [8361] = 8361, + [8360] = 8339, + [8361] = 8345, [8362] = 8362, - [8363] = 8363, - [8364] = 8346, + [8363] = 8349, + [8364] = 8345, [8365] = 8365, - [8366] = 8337, - [8367] = 1015, + [8366] = 8366, + [8367] = 8349, [8368] = 8345, [8369] = 8369, [8370] = 8370, - [8371] = 8371, - [8372] = 8372, - [8373] = 1036, - [8374] = 8374, - [8375] = 1007, + [8371] = 996, + [8372] = 8343, + [8373] = 8373, + [8374] = 1012, + [8375] = 8365, [8376] = 8376, - [8377] = 8377, - [8378] = 8365, - [8379] = 8379, - [8380] = 1020, + [8377] = 8332, + [8378] = 8349, + [8379] = 8376, + [8380] = 8332, [8381] = 8381, - [8382] = 8329, - [8383] = 8383, - [8384] = 8384, - [8385] = 8358, - [8386] = 8358, - [8387] = 8336, - [8388] = 8374, - [8389] = 8336, - [8390] = 1035, - [8391] = 8370, - [8392] = 947, - [8393] = 8345, - [8394] = 3913, - [8395] = 8336, - [8396] = 966, - [8397] = 8346, - [8398] = 8371, - [8399] = 8371, - [8400] = 8370, - [8401] = 963, - [8402] = 8374, - [8403] = 8369, - [8404] = 964, - [8405] = 8350, - [8406] = 848, - [8407] = 8371, - [8408] = 8346, - [8409] = 8358, - [8410] = 1033, - [8411] = 847, - [8412] = 989, - [8413] = 8345, - [8414] = 846, - [8415] = 8362, - [8416] = 8371, - [8417] = 981, - [8418] = 8329, - [8419] = 8333, - [8420] = 8420, - [8421] = 8370, - [8422] = 8370, - [8423] = 8358, - [8424] = 8424, - [8425] = 8369, - [8426] = 8359, - [8427] = 8361, - [8428] = 941, - [8429] = 8329, - [8430] = 8360, - [8431] = 928, - [8432] = 8374, - [8433] = 8433, - [8434] = 918, - [8435] = 8379, - [8436] = 926, - [8437] = 8365, - [8438] = 8346, - [8439] = 942, - [8440] = 8359, - [8441] = 8357, - [8442] = 8337, - [8443] = 962, - [8444] = 8362, - [8445] = 1023, - [8446] = 8331, - [8447] = 8346, - [8448] = 8345, - [8449] = 8449, - [8450] = 8433, - [8451] = 8433, - [8452] = 1027, - [8453] = 8345, - [8454] = 1026, - [8455] = 8337, - [8456] = 8456, - [8457] = 8346, - [8458] = 1022, - [8459] = 8379, - [8460] = 8333, - [8461] = 8461, - [8462] = 8345, - [8463] = 8374, - [8464] = 8346, - [8465] = 8350, - [8466] = 8357, - [8467] = 8337, - [8468] = 8331, - [8469] = 8371, - [8470] = 8346, - [8471] = 957, - [8472] = 8345, - [8473] = 8350, - [8474] = 8360, - [8475] = 8358, - [8476] = 8331, - [8477] = 955, - [8478] = 8346, - [8479] = 8479, - [8480] = 8360, - [8481] = 8379, - [8482] = 8350, - [8483] = 949, - [8484] = 8377, - [8485] = 8371, - [8486] = 8433, - [8487] = 8370, - [8488] = 8357, - [8489] = 8365, - [8490] = 8490, - [8491] = 8491, - [8492] = 1125, - [8493] = 991, - [8494] = 8359, - [8495] = 8329, - [8496] = 8358, - [8497] = 8360, - [8498] = 8362, - [8499] = 8379, - [8500] = 8357, - [8501] = 8370, - [8502] = 8371, - [8503] = 8331, - [8504] = 8374, - [8505] = 8357, - [8506] = 992, - [8507] = 8371, - [8508] = 8346, - [8509] = 1136, - [8510] = 971, - [8511] = 1137, - [8512] = 8362, - [8513] = 8359, - [8514] = 8370, - [8515] = 8515, - [8516] = 8358, - [8517] = 8360, - [8518] = 8518, - [8519] = 8337, - [8520] = 8361, - [8521] = 8521, - [8522] = 8522, - [8523] = 8345, - [8524] = 8336, - [8525] = 8365, - [8526] = 8337, - [8527] = 8346, - [8528] = 8371, - [8529] = 8433, - [8530] = 8377, - [8531] = 8345, - [8532] = 8532, - [8533] = 8533, - [8534] = 8379, - [8535] = 8357, - [8536] = 8345, - [8537] = 8360, - [8538] = 8362, - [8539] = 8370, - [8540] = 8374, - [8541] = 8370, - [8542] = 8371, - [8543] = 8374, - [8544] = 8371, - [8545] = 8350, - [8546] = 8362, - [8547] = 1134, - [8548] = 8360, - [8549] = 868, - [8550] = 8357, - [8551] = 8333, - [8552] = 8346, - [8553] = 8369, - [8554] = 8360, - [8555] = 8361, - [8556] = 8337, - [8557] = 8359, - [8558] = 8337, - [8559] = 8361, - [8560] = 8360, - [8561] = 8361, + [8382] = 8345, + [8383] = 8349, + [8384] = 8340, + [8385] = 8385, + [8386] = 8386, + [8387] = 8387, + [8388] = 8351, + [8389] = 8356, + [8390] = 8390, + [8391] = 1021, + [8392] = 8392, + [8393] = 8338, + [8394] = 8394, + [8395] = 8395, + [8396] = 988, + [8397] = 8339, + [8398] = 8398, + [8399] = 1016, + [8400] = 8392, + [8401] = 8392, + [8402] = 8402, + [8403] = 8398, + [8404] = 8373, + [8405] = 8340, + [8406] = 964, + [8407] = 8407, + [8408] = 1023, + [8409] = 926, + [8410] = 8343, + [8411] = 8402, + [8412] = 8412, + [8413] = 8413, + [8414] = 8414, + [8415] = 8415, + [8416] = 963, + [8417] = 8417, + [8418] = 8337, + [8419] = 8419, + [8420] = 8339, + [8421] = 8373, + [8422] = 986, + [8423] = 8376, + [8424] = 8398, + [8425] = 8425, + [8426] = 8395, + [8427] = 8351, + [8428] = 8428, + [8429] = 8338, + [8430] = 8430, + [8431] = 8431, + [8432] = 8373, + [8433] = 8366, + [8434] = 8402, + [8435] = 8366, + [8436] = 8365, + [8437] = 8345, + [8438] = 8438, + [8439] = 8390, + [8440] = 8394, + [8441] = 987, + [8442] = 8343, + [8443] = 8395, + [8444] = 8390, + [8445] = 8373, + [8446] = 8446, + [8447] = 8402, + [8448] = 8448, + [8449] = 8366, + [8450] = 850, + [8451] = 851, + [8452] = 8351, + [8453] = 8373, + [8454] = 8332, + [8455] = 8332, + [8456] = 8337, + [8457] = 980, + [8458] = 8356, + [8459] = 978, + [8460] = 8337, + [8461] = 8373, + [8462] = 853, + [8463] = 8394, + [8464] = 8390, + [8465] = 8402, + [8466] = 974, + [8467] = 973, + [8468] = 8339, + [8469] = 3955, + [8470] = 8402, + [8471] = 8343, + [8472] = 969, + [8473] = 8431, + [8474] = 8431, + [8475] = 8438, + [8476] = 8402, + [8477] = 8332, + [8478] = 968, + [8479] = 967, + [8480] = 8366, + [8481] = 8343, + [8482] = 8343, + [8483] = 8356, + [8484] = 966, + [8485] = 8339, + [8486] = 8438, + [8487] = 8337, + [8488] = 8339, + [8489] = 8349, + [8490] = 8390, + [8491] = 8394, + [8492] = 8332, + [8493] = 8376, + [8494] = 8349, + [8495] = 8339, + [8496] = 8345, + [8497] = 1078, + [8498] = 8398, + [8499] = 1084, + [8500] = 8500, + [8501] = 8343, + [8502] = 8390, + [8503] = 8332, + [8504] = 8504, + [8505] = 8505, + [8506] = 8332, + [8507] = 8343, + [8508] = 8349, + [8509] = 8431, + [8510] = 8345, + [8511] = 8356, + [8512] = 8398, + [8513] = 8513, + [8514] = 8514, + [8515] = 8345, + [8516] = 8332, + [8517] = 8343, + [8518] = 8349, + [8519] = 8345, + [8520] = 8395, + [8521] = 8438, + [8522] = 8356, + [8523] = 8343, + [8524] = 8345, + [8525] = 8351, + [8526] = 8343, + [8527] = 8345, + [8528] = 8394, + [8529] = 8529, + [8530] = 8366, + [8531] = 8365, + [8532] = 8337, + [8533] = 8402, + [8534] = 8534, + [8535] = 8332, + [8536] = 8343, + [8537] = 8431, + [8538] = 8338, + [8539] = 8539, + [8540] = 8540, + [8541] = 8541, + [8542] = 8542, + [8543] = 8345, + [8544] = 8340, + [8545] = 8402, + [8546] = 8351, + [8547] = 8351, + [8548] = 928, + [8549] = 8398, + [8550] = 8349, + [8551] = 8339, + [8552] = 8392, + [8553] = 8392, + [8554] = 8340, + [8555] = 8373, + [8556] = 8340, + [8557] = 8557, + [8558] = 8338, + [8559] = 8395, + [8560] = 8376, + [8561] = 8349, [8562] = 8345, - [8563] = 8346, - [8564] = 8362, - [8565] = 8331, - [8566] = 8566, - [8567] = 8362, - [8568] = 8371, - [8569] = 8336, - [8570] = 8370, - [8571] = 968, - [8572] = 8331, - [8573] = 8573, - [8574] = 8360, - [8575] = 8369, - [8576] = 8359, - [8577] = 8377, - [8578] = 8370, - [8579] = 8357, - [8580] = 8580, - [8581] = 8358, - [8582] = 8371, - [8583] = 8433, - [8584] = 8346, - [8585] = 8345, - [8586] = 8365, - [8587] = 8369, - [8588] = 8374, - [8589] = 8371, - [8590] = 8370, - [8591] = 8591, - [8592] = 8592, - [8593] = 8593, + [8563] = 8338, + [8564] = 8337, + [8565] = 8338, + [8566] = 8394, + [8567] = 965, + [8568] = 8568, + [8569] = 8351, + [8570] = 8431, + [8571] = 8395, + [8572] = 8572, + [8573] = 8343, + [8574] = 1005, + [8575] = 856, + [8576] = 8345, + [8577] = 8339, + [8578] = 8349, + [8579] = 8365, + [8580] = 8376, + [8581] = 8365, + [8582] = 8340, + [8583] = 8349, + [8584] = 8392, + [8585] = 8339, + [8586] = 8332, + [8587] = 8398, + [8588] = 8337, + [8589] = 8395, + [8590] = 8351, + [8591] = 921, + [8592] = 8373, + [8593] = 8343, [8594] = 8594, - [8595] = 1084, + [8595] = 8594, [8596] = 8596, - [8597] = 8597, - [8598] = 8593, - [8599] = 8594, - [8600] = 8594, + [8597] = 8594, + [8598] = 8598, + [8599] = 8599, + [8600] = 8600, [8601] = 8601, - [8602] = 8596, - [8603] = 8601, - [8604] = 8594, - [8605] = 1142, - [8606] = 8592, - [8607] = 8607, - [8608] = 8591, - [8609] = 8593, - [8610] = 8591, - [8611] = 8593, - [8612] = 8592, - [8613] = 8592, - [8614] = 8594, - [8615] = 8601, + [8602] = 8602, + [8603] = 8603, + [8604] = 8604, + [8605] = 8605, + [8606] = 8596, + [8607] = 8596, + [8608] = 8608, + [8609] = 8596, + [8610] = 8610, + [8611] = 8604, + [8612] = 8601, + [8613] = 8608, + [8614] = 8614, + [8615] = 8596, [8616] = 8616, - [8617] = 8591, - [8618] = 8592, - [8619] = 8593, - [8620] = 8593, + [8617] = 8604, + [8618] = 8610, + [8619] = 8594, + [8620] = 8601, [8621] = 8621, - [8622] = 8607, - [8623] = 8597, - [8624] = 8591, - [8625] = 8625, - [8626] = 8593, - [8627] = 8601, - [8628] = 8591, + [8622] = 930, + [8623] = 8602, + [8624] = 8594, + [8625] = 8594, + [8626] = 8604, + [8627] = 8596, + [8628] = 8604, [8629] = 8601, - [8630] = 8592, + [8630] = 8594, [8631] = 8631, - [8632] = 8597, - [8633] = 8597, - [8634] = 8634, - [8635] = 8635, - [8636] = 8591, - [8637] = 8637, - [8638] = 8601, - [8639] = 8592, - [8640] = 8640, - [8641] = 8596, - [8642] = 8597, + [8632] = 8601, + [8633] = 8604, + [8634] = 8596, + [8635] = 8594, + [8636] = 1052, + [8637] = 1051, + [8638] = 8594, + [8639] = 8639, + [8640] = 8631, + [8641] = 8616, + [8642] = 8631, [8643] = 8643, - [8644] = 8597, - [8645] = 8594, - [8646] = 1181, - [8647] = 8591, - [8648] = 8616, - [8649] = 8592, - [8650] = 8607, - [8651] = 8601, - [8652] = 8652, - [8653] = 8653, - [8654] = 8594, - [8655] = 8655, - [8656] = 8597, - [8657] = 8593, - [8658] = 8658, - [8659] = 1188, - [8660] = 8601, - [8661] = 8637, - [8662] = 8662, - [8663] = 8637, - [8664] = 8664, - [8665] = 8665, - [8666] = 8594, - [8667] = 8667, - [8668] = 8667, - [8669] = 8591, - [8670] = 8625, - [8671] = 8592, - [8672] = 8607, - [8673] = 8592, - [8674] = 8592, - [8675] = 8593, - [8676] = 8592, - [8677] = 1197, - [8678] = 1053, - [8679] = 8601, - [8680] = 8616, - [8681] = 8681, - [8682] = 8652, - [8683] = 8597, - [8684] = 8601, - [8685] = 8594, - [8686] = 8592, - [8687] = 8594, - [8688] = 8607, - [8689] = 8625, - [8690] = 8593, - [8691] = 8607, - [8692] = 8601, - [8693] = 8593, - [8694] = 8593, - [8695] = 8596, - [8696] = 8597, - [8697] = 1176, - [8698] = 8597, - [8699] = 8601, - [8700] = 1201, - [8701] = 8591, - [8702] = 8616, - [8703] = 8652, - [8704] = 8592, - [8705] = 8591, - [8706] = 8616, - [8707] = 8597, - [8708] = 8601, - [8709] = 8597, - [8710] = 8662, - [8711] = 8596, - [8712] = 8621, - [8713] = 8594, - [8714] = 8601, - [8715] = 8625, - [8716] = 1200, - [8717] = 8593, - [8718] = 8594, - [8719] = 8594, - [8720] = 8591, - [8721] = 8625, - [8722] = 1196, - [8723] = 8592, - [8724] = 8621, - [8725] = 8634, + [8644] = 8601, + [8645] = 8645, + [8646] = 8596, + [8647] = 8604, + [8648] = 8599, + [8649] = 928, + [8650] = 8614, + [8651] = 8599, + [8652] = 8601, + [8653] = 8639, + [8654] = 8605, + [8655] = 8601, + [8656] = 8594, + [8657] = 8616, + [8658] = 1148, + [8659] = 8616, + [8660] = 8643, + [8661] = 8604, + [8662] = 8605, + [8663] = 8601, + [8664] = 8594, + [8665] = 926, + [8666] = 8598, + [8667] = 8604, + [8668] = 8643, + [8669] = 8605, + [8670] = 8596, + [8671] = 8601, + [8672] = 8598, + [8673] = 1186, + [8674] = 8604, + [8675] = 8643, + [8676] = 1189, + [8677] = 8596, + [8678] = 8678, + [8679] = 8643, + [8680] = 8600, + [8681] = 1201, + [8682] = 8616, + [8683] = 8598, + [8684] = 8643, + [8685] = 8685, + [8686] = 8639, + [8687] = 8608, + [8688] = 8631, + [8689] = 8598, + [8690] = 8596, + [8691] = 8594, + [8692] = 8598, + [8693] = 8610, + [8694] = 8643, + [8695] = 8610, + [8696] = 8696, + [8697] = 1200, + [8698] = 8639, + [8699] = 8643, + [8700] = 8608, + [8701] = 8701, + [8702] = 8600, + [8703] = 8616, + [8704] = 8596, + [8705] = 8705, + [8706] = 8631, + [8707] = 8602, + [8708] = 8708, + [8709] = 8631, + [8710] = 8594, + [8711] = 8631, + [8712] = 8616, + [8713] = 1199, + [8714] = 1198, + [8715] = 8601, + [8716] = 8598, + [8717] = 8616, + [8718] = 8596, + [8719] = 8604, + [8720] = 1078, + [8721] = 8608, + [8722] = 1149, + [8723] = 8599, + [8724] = 8614, + [8725] = 1084, [8726] = 8726, - [8727] = 8662, - [8728] = 8625, - [8729] = 8729, - [8730] = 1125, - [8731] = 1134, - [8732] = 934, - [8733] = 8592, - [8734] = 1168, - [8735] = 8652, - [8736] = 1169, - [8737] = 8593, - [8738] = 8667, - [8739] = 8597, - [8740] = 8740, + [8727] = 8604, + [8728] = 1133, + [8729] = 1197, + [8730] = 8730, + [8731] = 8614, + [8732] = 1196, + [8733] = 8599, + [8734] = 1114, + [8735] = 8631, + [8736] = 8643, + [8737] = 1195, + [8738] = 8594, + [8739] = 8594, + [8740] = 1105, [8741] = 8741, - [8742] = 8634, - [8743] = 8597, - [8744] = 8597, - [8745] = 8740, - [8746] = 8637, - [8747] = 8625, - [8748] = 8621, - [8749] = 8749, - [8750] = 8596, - [8751] = 8597, - [8752] = 8625, - [8753] = 8625, - [8754] = 8652, - [8755] = 8607, - [8756] = 8593, - [8757] = 8592, - [8758] = 8601, - [8759] = 8740, - [8760] = 8625, - [8761] = 8761, - [8762] = 8625, - [8763] = 8594, - [8764] = 8764, - [8765] = 8592, - [8766] = 8616, - [8767] = 8767, - [8768] = 8597, - [8769] = 8634, - [8770] = 8625, - [8771] = 8621, - [8772] = 8601, - [8773] = 8601, - [8774] = 1193, - [8775] = 8592, - [8776] = 8594, - [8777] = 8593, - [8778] = 8637, - [8779] = 8667, - [8780] = 1074, - [8781] = 8591, - [8782] = 8782, - [8783] = 1140, - [8784] = 1192, - [8785] = 8593, - [8786] = 8591, - [8787] = 8625, - [8788] = 8591, - [8789] = 8601, - [8790] = 8591, - [8791] = 8625, - [8792] = 8592, - [8793] = 1174, - [8794] = 8662, - [8795] = 8597, - [8796] = 8591, - [8797] = 8797, - [8798] = 8798, - [8799] = 8597, - [8800] = 8591, - [8801] = 8616, - [8802] = 8591, - [8803] = 1173, - [8804] = 8592, - [8805] = 8740, - [8806] = 1191, - [8807] = 8601, - [8808] = 1136, - [8809] = 1137, - [8810] = 8637, - [8811] = 8625, - [8812] = 8591, - [8813] = 8594, + [8742] = 8605, + [8743] = 8601, + [8744] = 1115, + [8745] = 8708, + [8746] = 8604, + [8747] = 8596, + [8748] = 8596, + [8749] = 8616, + [8750] = 8750, + [8751] = 8601, + [8752] = 8596, + [8753] = 8594, + [8754] = 8754, + [8755] = 8598, + [8756] = 8756, + [8757] = 8616, + [8758] = 8631, + [8759] = 8604, + [8760] = 8631, + [8761] = 8643, + [8762] = 8598, + [8763] = 1108, + [8764] = 8604, + [8765] = 8599, + [8766] = 8766, + [8767] = 1183, + [8768] = 8768, + [8769] = 8601, + [8770] = 1182, + [8771] = 8631, + [8772] = 8708, + [8773] = 8602, + [8774] = 8594, + [8775] = 8639, + [8776] = 8601, + [8777] = 8616, + [8778] = 8778, + [8779] = 8616, + [8780] = 8643, + [8781] = 1155, + [8782] = 1156, + [8783] = 1181, + [8784] = 8784, + [8785] = 8643, + [8786] = 8594, + [8787] = 8608, + [8788] = 8788, + [8789] = 8600, + [8790] = 1103, + [8791] = 1038, + [8792] = 8708, + [8793] = 8631, + [8794] = 8708, + [8795] = 8596, + [8796] = 8631, + [8797] = 8600, + [8798] = 8601, + [8799] = 8799, + [8800] = 1180, + [8801] = 1185, + [8802] = 1104, + [8803] = 8604, + [8804] = 8631, + [8805] = 8643, + [8806] = 8600, + [8807] = 8616, + [8808] = 8643, + [8809] = 8601, + [8810] = 1194, + [8811] = 1176, + [8812] = 8631, + [8813] = 8813, [8814] = 8814, - [8815] = 1052, + [8815] = 8616, [8816] = 8816, - [8817] = 8601, - [8818] = 1190, - [8819] = 8819, - [8820] = 1115, - [8821] = 1116, - [8822] = 1175, - [8823] = 1118, - [8824] = 1119, - [8825] = 8596, - [8826] = 1120, - [8827] = 8594, - [8828] = 8593, - [8829] = 8652, + [8817] = 8616, + [8818] = 8604, + [8819] = 8643, + [8820] = 8631, + [8821] = 8821, + [8822] = 8822, + [8823] = 8596, + [8824] = 8824, + [8825] = 1175, + [8826] = 8610, + [8827] = 8605, + [8828] = 8616, + [8829] = 1193, [8830] = 8594, - [8831] = 1122, - [8832] = 942, - [8833] = 8667, - [8834] = 8625, - [8835] = 1124, - [8836] = 8596, - [8837] = 8837, - [8838] = 1128, + [8831] = 8643, + [8832] = 8596, + [8833] = 8594, + [8834] = 1192, + [8835] = 8601, + [8836] = 8600, + [8837] = 8604, + [8838] = 8596, [8839] = 8594, - [8840] = 8594, - [8841] = 8593, - [8842] = 1129, - [8843] = 8601, - [8844] = 940, - [8845] = 8625, - [8846] = 8601, - [8847] = 1130, - [8848] = 8848, - [8849] = 8601, - [8850] = 1113, - [8851] = 1131, - [8852] = 8597, - [8853] = 8597, - [8854] = 8597, - [8855] = 8662, - [8856] = 1127, - [8857] = 1185, - [8858] = 8858, - [8859] = 1133, - [8860] = 8860, - [8861] = 1039, - [8862] = 8616, - [8863] = 8596, - [8864] = 8625, - [8865] = 8597, - [8866] = 8592, - [8867] = 1138, - [8868] = 8592, - [8869] = 1141, - [8870] = 8607, - [8871] = 1143, - [8872] = 8625, - [8873] = 1146, - [8874] = 8592, - [8875] = 8601, - [8876] = 1147, - [8877] = 8594, - [8878] = 8591, - [8879] = 8594, - [8880] = 8634, - [8881] = 1148, - [8882] = 1069, - [8883] = 8593, - [8884] = 8625, - [8885] = 8597, - [8886] = 1082, - [8887] = 8625, + [8840] = 8604, + [8841] = 8601, + [8842] = 8616, + [8843] = 1174, + [8844] = 8643, + [8845] = 1173, + [8846] = 8604, + [8847] = 8596, + [8848] = 8594, + [8849] = 8614, + [8850] = 8594, + [8851] = 1141, + [8852] = 1039, + [8853] = 8643, + [8854] = 8601, + [8855] = 8616, + [8856] = 8601, + [8857] = 8601, + [8858] = 1172, + [8859] = 8631, + [8860] = 8604, + [8861] = 1171, + [8862] = 8602, + [8863] = 8863, + [8864] = 8604, + [8865] = 1188, + [8866] = 8643, + [8867] = 8596, + [8868] = 1170, + [8869] = 1169, + [8870] = 8604, + [8871] = 1168, + [8872] = 8631, + [8873] = 8596, + [8874] = 1165, + [8875] = 8631, + [8876] = 8601, + [8877] = 8631, + [8878] = 8643, + [8879] = 8616, + [8880] = 8614, + [8881] = 1179, + [8882] = 1164, + [8883] = 8631, + [8884] = 8600, + [8885] = 8594, + [8886] = 8708, + [8887] = 8594, [8888] = 8888, - [8889] = 8593, - [8890] = 1151, - [8891] = 1153, - [8892] = 8592, - [8893] = 8591, - [8894] = 1154, - [8895] = 8593, - [8896] = 8896, - [8897] = 1182, - [8898] = 8898, - [8899] = 1087, - [8900] = 8593, - [8901] = 8621, - [8902] = 1163, - [8903] = 1172, - [8904] = 8625, + [8889] = 8616, + [8890] = 1161, + [8891] = 8601, + [8892] = 8631, + [8893] = 8893, + [8894] = 8604, + [8895] = 8616, + [8896] = 8610, + [8897] = 8643, + [8898] = 1140, + [8899] = 8596, + [8900] = 8900, + [8901] = 1159, + [8902] = 8596, + [8903] = 8604, + [8904] = 1157, [8905] = 8905, - [8906] = 1155, - [8907] = 8607, - [8908] = 8662, - [8909] = 8601, - [8910] = 8740, - [8911] = 8594, - [8912] = 1139, - [8913] = 8593, - [8914] = 1156, - [8915] = 8625, - [8916] = 1158, - [8917] = 8625, - [8918] = 1159, - [8919] = 8591, - [8920] = 8616, - [8921] = 8740, - [8922] = 1161, - [8923] = 8597, - [8924] = 8601, - [8925] = 8591, - [8926] = 1162, - [8927] = 8594, - [8928] = 1038, - [8929] = 8597, - [8930] = 8625, - [8931] = 8667, - [8932] = 8591, - [8933] = 8591, - [8934] = 8625, - [8935] = 8634, - [8936] = 8592, - [8937] = 1177, - [8938] = 8597, - [8939] = 1178, - [8940] = 8601, - [8941] = 1179, - [8942] = 8592, - [8943] = 8625, - [8944] = 8591, - [8945] = 8945, - [8946] = 8946, - [8947] = 8947, + [8906] = 8604, + [8907] = 1177, + [8908] = 1154, + [8909] = 8643, + [8910] = 8594, + [8911] = 1151, + [8912] = 8631, + [8913] = 8601, + [8914] = 1150, + [8915] = 8594, + [8916] = 8616, + [8917] = 8605, + [8918] = 8631, + [8919] = 1167, + [8920] = 8639, + [8921] = 8601, + [8922] = 8616, + [8923] = 8643, + [8924] = 8604, + [8925] = 8596, + [8926] = 1147, + [8927] = 1146, + [8928] = 1143, + [8929] = 8602, + [8930] = 1178, + [8931] = 8605, + [8932] = 8631, + [8933] = 8605, + [8934] = 8596, + [8935] = 1166, + [8936] = 1163, + [8937] = 8631, + [8938] = 8616, + [8939] = 8643, + [8940] = 1142, + [8941] = 8600, + [8942] = 1162, + [8943] = 1109, + [8944] = 1139, + [8945] = 8601, + [8946] = 8631, + [8947] = 1138, [8948] = 8948, [8949] = 8949, [8950] = 8950, - [8951] = 8946, + [8951] = 8949, [8952] = 8952, - [8953] = 8948, - [8954] = 8954, - [8955] = 8955, + [8953] = 8953, + [8954] = 8948, + [8955] = 8948, [8956] = 8956, [8957] = 8957, - [8958] = 8950, - [8959] = 8959, + [8958] = 8958, + [8959] = 8958, [8960] = 8960, - [8961] = 8961, - [8962] = 8947, + [8961] = 8958, + [8962] = 8950, [8963] = 8963, - [8964] = 8946, - [8965] = 8965, + [8964] = 8964, + [8965] = 8953, [8966] = 8966, [8967] = 8967, [8968] = 8968, - [8969] = 8950, - [8970] = 8947, + [8969] = 8969, + [8970] = 8970, [8971] = 8971, [8972] = 8972, [8973] = 8973, [8974] = 8974, - [8975] = 8948, - [8976] = 8946, + [8975] = 8975, + [8976] = 8960, [8977] = 8977, - [8978] = 8950, - [8979] = 8967, - [8980] = 8947, - [8981] = 8948, + [8978] = 8975, + [8979] = 8960, + [8980] = 8975, + [8981] = 8960, [8982] = 8982, - [8983] = 8946, - [8984] = 8950, - [8985] = 8985, - [8986] = 8946, - [8987] = 8987, - [8988] = 8947, - [8989] = 8948, - [8990] = 8967, - [8991] = 1053, - [8992] = 8950, - [8993] = 1069, - [8994] = 8947, - [8995] = 8948, - [8996] = 8963, - [8997] = 8997, - [8998] = 8963, - [8999] = 8997, - [9000] = 8963, - [9001] = 8997, - [9002] = 8963, - [9003] = 8997, - [9004] = 8948, - [9005] = 8963, - [9006] = 8997, - [9007] = 8946, - [9008] = 8950, - [9009] = 8948, - [9010] = 8947, - [9011] = 9011, - [9012] = 9012, - [9013] = 8997, - [9014] = 8948, - [9015] = 1074, + [8983] = 8975, + [8984] = 8960, + [8985] = 8956, + [8986] = 8975, + [8987] = 8960, + [8988] = 8975, + [8989] = 8989, + [8990] = 8990, + [8991] = 8991, + [8992] = 8992, + [8993] = 8993, + [8994] = 8989, + [8995] = 8995, + [8996] = 8996, + [8997] = 8956, + [8998] = 8949, + [8999] = 8999, + [9000] = 9000, + [9001] = 9001, + [9002] = 9002, + [9003] = 9003, + [9004] = 8956, + [9005] = 9005, + [9006] = 9006, + [9007] = 9007, + [9008] = 9008, + [9009] = 8977, + [9010] = 8949, + [9011] = 8982, + [9012] = 8956, + [9013] = 9002, + [9014] = 8973, + [9015] = 8949, [9016] = 9016, - [9017] = 1084, - [9018] = 8946, - [9019] = 8950, - [9020] = 8947, - [9021] = 1113, - [9022] = 8947, - [9023] = 1139, - [9024] = 1140, - [9025] = 8948, - [9026] = 8950, - [9027] = 1142, - [9028] = 8946, - [9029] = 1168, - [9030] = 1169, - [9031] = 8950, - [9032] = 1172, - [9033] = 1174, - [9034] = 8946, - [9035] = 1176, - [9036] = 1181, + [9017] = 9016, + [9018] = 9001, + [9019] = 9007, + [9020] = 9008, + [9021] = 9016, + [9022] = 8977, + [9023] = 8989, + [9024] = 8991, + [9025] = 9001, + [9026] = 9007, + [9027] = 9008, + [9028] = 8977, + [9029] = 8989, + [9030] = 9016, + [9031] = 9031, + [9032] = 9007, + [9033] = 9008, + [9034] = 9034, + [9035] = 8953, + [9036] = 9036, [9037] = 9037, - [9038] = 1173, - [9039] = 9039, - [9040] = 1197, - [9041] = 8948, - [9042] = 8946, - [9043] = 8950, - [9044] = 9044, - [9045] = 8967, - [9046] = 8947, + [9038] = 9038, + [9039] = 8977, + [9040] = 9002, + [9041] = 8992, + [9042] = 9042, + [9043] = 9043, + [9044] = 8956, + [9045] = 9045, + [9046] = 8956, [9047] = 9047, [9048] = 9048, - [9049] = 9049, + [9049] = 8989, [9050] = 9050, - [9051] = 8950, + [9051] = 9051, [9052] = 9052, - [9053] = 8946, - [9054] = 8950, - [9055] = 1188, - [9056] = 8947, - [9057] = 8947, - [9058] = 8948, - [9059] = 8946, - [9060] = 8947, - [9061] = 1200, - [9062] = 8948, - [9063] = 1196, - [9064] = 1193, - [9065] = 1141, + [9053] = 8974, + [9054] = 8968, + [9055] = 9016, + [9056] = 9056, + [9057] = 9057, + [9058] = 9007, + [9059] = 8949, + [9060] = 9008, + [9061] = 8974, + [9062] = 8953, + [9063] = 8958, + [9064] = 8977, + [9065] = 9016, [9066] = 9066, - [9067] = 8950, - [9068] = 8947, - [9069] = 9069, - [9070] = 8947, - [9071] = 1192, - [9072] = 1191, - [9073] = 1190, - [9074] = 8948, - [9075] = 1127, - [9076] = 8948, - [9077] = 1185, - [9078] = 8946, - [9079] = 1182, - [9080] = 1201, - [9081] = 8947, - [9082] = 1179, - [9083] = 8946, - [9084] = 1178, - [9085] = 9085, - [9086] = 1177, - [9087] = 1175, - [9088] = 1038, - [9089] = 1162, - [9090] = 1161, - [9091] = 1159, - [9092] = 1158, - [9093] = 1156, - [9094] = 8950, - [9095] = 1155, - [9096] = 8947, - [9097] = 1154, - [9098] = 1153, - [9099] = 1151, - [9100] = 1148, - [9101] = 1147, - [9102] = 1146, - [9103] = 1143, - [9104] = 8947, - [9105] = 8948, - [9106] = 1039, - [9107] = 8967, - [9108] = 1133, - [9109] = 9044, - [9110] = 1131, - [9111] = 8946, - [9112] = 8946, - [9113] = 1130, - [9114] = 1129, - [9115] = 1128, - [9116] = 1124, - [9117] = 1122, - [9118] = 1120, - [9119] = 1119, - [9120] = 1118, - [9121] = 1116, - [9122] = 9122, - [9123] = 1115, - [9124] = 8950, - [9125] = 8947, - [9126] = 8946, - [9127] = 1138, - [9128] = 8950, - [9129] = 8947, - [9130] = 8946, - [9131] = 8950, - [9132] = 8947, - [9133] = 8987, - [9134] = 8946, - [9135] = 8950, - [9136] = 8947, - [9137] = 8946, - [9138] = 8950, - [9139] = 8947, - [9140] = 8946, - [9141] = 8950, - [9142] = 9142, - [9143] = 8948, - [9144] = 8947, - [9145] = 1087, - [9146] = 8947, - [9147] = 8950, - [9148] = 8950, - [9149] = 8950, - [9150] = 8948, - [9151] = 9122, - [9152] = 8948, - [9153] = 9153, - [9154] = 9154, - [9155] = 9155, - [9156] = 8963, - [9157] = 8997, - [9158] = 8963, - [9159] = 8950, - [9160] = 8967, - [9161] = 8997, - [9162] = 8963, - [9163] = 8997, - [9164] = 8946, - [9165] = 8963, - [9166] = 8997, - [9167] = 8963, - [9168] = 8997, - [9169] = 9169, - [9170] = 8963, - [9171] = 9050, - [9172] = 8997, + [9067] = 9007, + [9068] = 8977, + [9069] = 9008, + [9070] = 1105, + [9071] = 8989, + [9072] = 8974, + [9073] = 9073, + [9074] = 8989, + [9075] = 9016, + [9076] = 1108, + [9077] = 9007, + [9078] = 9008, + [9079] = 8956, + [9080] = 8982, + [9081] = 9016, + [9082] = 8989, + [9083] = 1109, + [9084] = 8956, + [9085] = 9016, + [9086] = 8982, + [9087] = 9050, + [9088] = 1115, + [9089] = 9034, + [9090] = 8992, + [9091] = 8956, + [9092] = 9007, + [9093] = 8991, + [9094] = 8977, + [9095] = 8974, + [9096] = 8989, + [9097] = 8956, + [9098] = 9016, + [9099] = 9007, + [9100] = 8977, + [9101] = 8989, + [9102] = 1103, + [9103] = 9016, + [9104] = 9007, + [9105] = 8977, + [9106] = 8991, + [9107] = 1140, + [9108] = 8977, + [9109] = 8958, + [9110] = 9016, + [9111] = 1141, + [9112] = 9007, + [9113] = 8992, + [9114] = 9002, + [9115] = 8977, + [9116] = 8989, + [9117] = 9016, + [9118] = 9007, + [9119] = 8956, + [9120] = 8956, + [9121] = 1148, + [9122] = 8977, + [9123] = 8989, + [9124] = 8977, + [9125] = 9034, + [9126] = 9007, + [9127] = 8977, + [9128] = 8958, + [9129] = 8989, + [9130] = 1155, + [9131] = 1156, + [9132] = 9050, + [9133] = 8992, + [9134] = 9016, + [9135] = 9135, + [9136] = 8966, + [9137] = 9050, + [9138] = 8991, + [9139] = 9007, + [9140] = 1162, + [9141] = 1163, + [9142] = 1166, + [9143] = 8982, + [9144] = 8956, + [9145] = 8989, + [9146] = 9016, + [9147] = 8966, + [9148] = 9148, + [9149] = 9148, + [9150] = 9148, + [9151] = 9006, + [9152] = 8970, + [9153] = 9148, + [9154] = 9006, + [9155] = 8970, + [9156] = 9148, + [9157] = 1167, + [9158] = 8989, + [9159] = 9016, + [9160] = 9007, + [9161] = 8977, + [9162] = 8989, + [9163] = 9016, + [9164] = 9007, + [9165] = 8977, + [9166] = 8989, + [9167] = 9016, + [9168] = 9007, + [9169] = 8977, + [9170] = 8989, + [9171] = 9016, + [9172] = 9007, [9173] = 9173, - [9174] = 9122, - [9175] = 9069, - [9176] = 9176, - [9177] = 8948, - [9178] = 9178, + [9174] = 8977, + [9175] = 8989, + [9176] = 9016, + [9177] = 9007, + [9178] = 8977, [9179] = 9179, - [9180] = 8946, - [9181] = 9181, - [9182] = 9182, - [9183] = 9183, - [9184] = 9048, - [9185] = 9185, - [9186] = 9186, - [9187] = 9047, - [9188] = 9188, - [9189] = 8946, - [9190] = 9190, - [9191] = 9190, - [9192] = 9192, - [9193] = 9154, - [9194] = 8950, - [9195] = 8963, - [9196] = 8997, - [9197] = 9049, - [9198] = 9069, - [9199] = 9199, - [9200] = 9142, - [9201] = 9044, - [9202] = 9181, - [9203] = 9153, - [9204] = 9069, - [9205] = 9049, - [9206] = 9011, - [9207] = 9190, - [9208] = 8955, - [9209] = 9192, - [9210] = 8948, - [9211] = 8987, - [9212] = 9154, - [9213] = 9154, - [9214] = 9154, - [9215] = 8955, - [9216] = 9011, - [9217] = 9154, - [9218] = 8955, - [9219] = 9011, - [9220] = 9190, - [9221] = 9069, - [9222] = 9222, - [9223] = 8997, - [9224] = 9069, - [9225] = 9142, - [9226] = 9190, - [9227] = 9192, - [9228] = 9188, - [9229] = 9176, - [9230] = 8963, - [9231] = 8997, - [9232] = 8977, - [9233] = 9233, - [9234] = 8968, - [9235] = 9069, - [9236] = 9142, - [9237] = 9190, - [9238] = 8957, - [9239] = 9239, - [9240] = 8963, - [9241] = 9192, - [9242] = 9176, - [9243] = 9044, - [9244] = 9047, - [9245] = 9245, - [9246] = 8967, - [9247] = 9047, - [9248] = 8946, - [9249] = 9048, - [9250] = 9050, - [9251] = 8963, - [9252] = 8945, - [9253] = 9253, - [9254] = 9044, - [9255] = 9047, - [9256] = 9048, - [9257] = 9050, - [9258] = 8997, - [9259] = 8977, - [9260] = 8968, - [9261] = 9050, - [9262] = 9262, - [9263] = 9142, - [9264] = 9264, - [9265] = 9186, - [9266] = 9044, - [9267] = 9190, - [9268] = 9047, - [9269] = 9122, - [9270] = 9048, - [9271] = 9050, - [9272] = 9272, - [9273] = 8967, - [9274] = 9185, - [9275] = 9192, - [9276] = 9176, - [9277] = 8946, - [9278] = 8963, - [9279] = 8945, - [9280] = 9048, - [9281] = 9044, - [9282] = 9253, - [9283] = 9047, - [9284] = 9048, - [9285] = 9050, - [9286] = 8997, - [9287] = 8948, - [9288] = 8977, - [9289] = 8968, - [9290] = 9069, - [9291] = 9142, - [9292] = 8957, - [9293] = 9044, - [9294] = 9047, - [9295] = 9048, - [9296] = 9183, - [9297] = 9044, - [9298] = 9192, - [9299] = 9176, - [9300] = 9169, - [9301] = 8947, - [9302] = 8963, - [9303] = 9303, - [9304] = 8945, - [9305] = 9050, - [9306] = 9173, - [9307] = 9176, - [9308] = 9178, - [9309] = 9181, - [9310] = 9183, - [9311] = 9048, - [9312] = 9185, - [9313] = 9186, - [9314] = 9047, - [9315] = 9190, - [9316] = 9188, - [9317] = 9153, - [9318] = 9253, - [9319] = 9142, - [9320] = 8957, - [9321] = 8968, - [9322] = 9069, - [9323] = 9049, - [9324] = 8997, - [9325] = 8977, - [9326] = 9069, - [9327] = 8957, - [9328] = 8967, - [9329] = 9069, - [9330] = 9142, - [9331] = 9190, - [9332] = 9169, - [9333] = 9050, - [9334] = 9173, - [9335] = 9190, - [9336] = 9178, - [9337] = 9181, - [9338] = 8950, - [9339] = 9183, - [9340] = 9185, - [9341] = 9186, - [9342] = 9047, - [9343] = 8957, - [9344] = 9188, - [9345] = 9190, - [9346] = 9153, - [9347] = 9192, - [9348] = 9044, - [9349] = 9176, - [9350] = 9050, - [9351] = 9049, - [9352] = 8963, - [9353] = 8987, - [9354] = 9048, - [9355] = 8945, - [9356] = 8987, - [9357] = 8957, - [9358] = 9253, - [9359] = 8987, - [9360] = 8987, - [9361] = 8987, - [9362] = 8987, - [9363] = 8987, - [9364] = 8987, - [9365] = 8987, - [9366] = 8987, - [9367] = 8987, - [9368] = 8987, - [9369] = 8987, - [9370] = 8987, - [9371] = 8987, - [9372] = 8987, - [9373] = 8987, - [9374] = 8987, - [9375] = 8987, - [9376] = 8987, - [9377] = 8987, - [9378] = 8987, - [9379] = 8987, - [9380] = 8997, - [9381] = 8955, - [9382] = 9011, - [9383] = 9169, - [9384] = 9154, - [9385] = 9050, - [9386] = 9173, - [9387] = 9044, - [9388] = 9047, - [9389] = 9264, - [9390] = 9048, - [9391] = 9050, - [9392] = 8977, - [9393] = 9044, - [9394] = 8968, - [9395] = 9047, - [9396] = 9048, - [9397] = 9181, - [9398] = 9050, - [9399] = 8957, - [9400] = 9400, - [9401] = 9049, - [9402] = 8957, - [9403] = 9069, - [9404] = 9044, - [9405] = 9044, - [9406] = 9142, - [9407] = 9178, - [9408] = 9178, - [9409] = 9047, - [9410] = 8957, - [9411] = 9192, - [9412] = 9048, - [9413] = 9181, - [9414] = 9050, - [9415] = 9190, - [9416] = 9047, - [9417] = 9183, - [9418] = 9044, - [9419] = 9181, - [9420] = 9047, - [9421] = 9176, - [9422] = 8957, - [9423] = 9192, - [9424] = 9048, - [9425] = 9050, - [9426] = 9176, - [9427] = 8963, - [9428] = 9048, - [9429] = 9185, - [9430] = 9044, - [9431] = 9186, - [9432] = 9253, - [9433] = 9044, - [9434] = 9047, - [9435] = 9048, - [9436] = 9050, - [9437] = 8997, - [9438] = 9185, - [9439] = 9047, - [9440] = 9044, - [9441] = 9185, - [9442] = 9047, - [9443] = 9048, - [9444] = 9188, - [9445] = 8963, - [9446] = 9050, - [9447] = 9153, - [9448] = 9048, - [9449] = 9044, - [9450] = 8945, - [9451] = 8957, - [9452] = 9049, - [9453] = 9185, - [9454] = 8957, - [9455] = 9455, - [9456] = 9456, - [9457] = 9173, - [9458] = 9049, - [9459] = 9169, - [9460] = 9154, - [9461] = 1052, - [9462] = 9122, - [9463] = 9050, - [9464] = 9173, - [9465] = 9050, - [9466] = 9178, - [9467] = 8957, - [9468] = 9181, - [9469] = 8957, - [9470] = 9183, - [9471] = 9048, - [9472] = 9185, - [9473] = 9186, - [9474] = 9047, - [9475] = 9188, - [9476] = 8957, - [9477] = 8957, - [9478] = 9153, - [9479] = 9253, - [9480] = 8957, - [9481] = 9169, - [9482] = 9049, - [9483] = 9186, - [9484] = 9185, - [9485] = 8957, - [9486] = 9181, - [9487] = 9050, - [9488] = 9181, - [9489] = 8957, - [9490] = 9183, - [9491] = 9491, - [9492] = 9048, - [9493] = 9493, - [9494] = 9185, - [9495] = 9186, - [9496] = 9047, - [9497] = 9188, - [9498] = 9044, - [9499] = 9049, - [9500] = 8957, - [9501] = 9181, - [9502] = 9502, - [9503] = 9050, - [9504] = 9181, - [9505] = 9183, - [9506] = 9048, - [9507] = 9185, - [9508] = 9186, - [9509] = 9047, - [9510] = 8948, - [9511] = 8947, - [9512] = 8987, - [9513] = 9188, - [9514] = 8997, - [9515] = 9044, - [9516] = 8955, - [9517] = 9011, - [9518] = 9154, - [9519] = 9049, - [9520] = 8948, - [9521] = 8963, - [9522] = 8997, - [9523] = 9049, - [9524] = 8963, - [9525] = 8997, - [9526] = 9186, - [9527] = 9185, - [9528] = 9050, - [9529] = 8957, - [9530] = 9181, - [9531] = 9049, - [9532] = 9044, - [9533] = 9183, - [9534] = 9047, - [9535] = 9048, - [9536] = 9050, - [9537] = 9044, - [9538] = 9047, - [9539] = 9048, - [9540] = 9050, - [9541] = 9185, - [9542] = 9186, - [9543] = 9044, - [9544] = 9047, - [9545] = 9048, - [9546] = 9188, - [9547] = 8957, - [9548] = 9044, - [9549] = 9047, - [9550] = 9048, - [9551] = 9050, - [9552] = 8997, - [9553] = 8963, - [9554] = 8997, - [9555] = 8963, - [9556] = 8997, - [9557] = 8963, - [9558] = 8997, - [9559] = 8963, - [9560] = 9186, - [9561] = 9185, - [9562] = 9264, - [9563] = 9181, - [9564] = 9044, - [9565] = 9047, - [9566] = 9048, - [9567] = 9050, - [9568] = 9049, - [9569] = 9044, - [9570] = 9264, - [9571] = 9047, - [9572] = 8957, - [9573] = 9264, - [9574] = 9264, - [9575] = 9048, - [9576] = 9050, - [9577] = 9577, + [9180] = 8991, + [9181] = 8989, + [9182] = 9007, + [9183] = 8977, + [9184] = 8989, + [9185] = 9007, + [9186] = 1177, + [9187] = 9187, + [9188] = 8977, + [9189] = 9008, + [9190] = 8992, + [9191] = 8974, + [9192] = 8989, + [9193] = 9007, + [9194] = 9007, + [9195] = 9050, + [9196] = 9002, + [9197] = 9197, + [9198] = 8989, + [9199] = 9007, + [9200] = 8977, + [9201] = 8949, + [9202] = 8977, + [9203] = 8982, + [9204] = 8982, + [9205] = 9002, + [9206] = 8973, + [9207] = 9007, + [9208] = 8977, + [9209] = 1179, + [9210] = 8989, + [9211] = 9007, + [9212] = 8977, + [9213] = 9016, + [9214] = 8949, + [9215] = 1188, + [9216] = 9034, + [9217] = 8982, + [9218] = 9002, + [9219] = 8973, + [9220] = 9034, + [9221] = 9148, + [9222] = 1039, + [9223] = 9223, + [9224] = 9050, + [9225] = 1199, + [9226] = 8949, + [9227] = 8982, + [9228] = 9002, + [9229] = 8973, + [9230] = 9230, + [9231] = 1192, + [9232] = 1193, + [9233] = 8949, + [9234] = 9234, + [9235] = 8982, + [9236] = 9002, + [9237] = 8973, + [9238] = 8973, + [9239] = 8975, + [9240] = 8958, + [9241] = 8970, + [9242] = 8991, + [9243] = 9197, + [9244] = 8960, + [9245] = 9006, + [9246] = 1194, + [9247] = 8949, + [9248] = 8989, + [9249] = 8992, + [9250] = 8982, + [9251] = 9002, + [9252] = 8973, + [9253] = 1195, + [9254] = 1196, + [9255] = 1197, + [9256] = 9256, + [9257] = 1198, + [9258] = 9050, + [9259] = 1138, + [9260] = 1200, + [9261] = 9261, + [9262] = 9256, + [9263] = 9050, + [9264] = 8975, + [9265] = 1201, + [9266] = 8956, + [9267] = 1189, + [9268] = 9197, + [9269] = 9002, + [9270] = 1186, + [9271] = 1185, + [9272] = 1183, + [9273] = 9273, + [9274] = 1182, + [9275] = 1181, + [9276] = 1038, + [9277] = 1180, + [9278] = 1178, + [9279] = 1176, + [9280] = 1175, + [9281] = 9034, + [9282] = 9050, + [9283] = 1174, + [9284] = 9230, + [9285] = 1172, + [9286] = 8992, + [9287] = 1171, + [9288] = 1170, + [9289] = 1173, + [9290] = 1168, + [9291] = 1165, + [9292] = 1164, + [9293] = 8991, + [9294] = 8973, + [9295] = 1161, + [9296] = 1159, + [9297] = 1157, + [9298] = 1154, + [9299] = 1151, + [9300] = 1150, + [9301] = 1147, + [9302] = 1146, + [9303] = 1143, + [9304] = 1142, + [9305] = 1139, + [9306] = 8992, + [9307] = 8975, + [9308] = 8960, + [9309] = 8975, + [9310] = 8960, + [9311] = 8958, + [9312] = 9234, + [9313] = 1169, + [9314] = 8956, + [9315] = 9050, + [9316] = 8992, + [9317] = 8991, + [9318] = 8958, + [9319] = 9234, + [9320] = 8960, + [9321] = 8973, + [9322] = 8992, + [9323] = 9256, + [9324] = 8975, + [9325] = 9002, + [9326] = 8992, + [9327] = 8960, + [9328] = 9328, + [9329] = 8973, + [9330] = 9330, + [9331] = 8956, + [9332] = 8975, + [9333] = 8960, + [9334] = 9230, + [9335] = 9273, + [9336] = 9050, + [9337] = 9006, + [9338] = 8970, + [9339] = 9148, + [9340] = 8960, + [9341] = 8949, + [9342] = 8975, + [9343] = 8960, + [9344] = 8948, + [9345] = 8948, + [9346] = 8956, + [9347] = 8949, + [9348] = 9273, + [9349] = 8982, + [9350] = 8948, + [9351] = 8949, + [9352] = 8982, + [9353] = 9002, + [9354] = 8973, + [9355] = 9330, + [9356] = 8966, + [9357] = 8968, + [9358] = 8949, + [9359] = 8966, + [9360] = 8982, + [9361] = 9002, + [9362] = 8966, + [9363] = 8966, + [9364] = 8966, + [9365] = 8966, + [9366] = 8966, + [9367] = 8966, + [9368] = 8966, + [9369] = 8966, + [9370] = 8966, + [9371] = 8966, + [9372] = 8966, + [9373] = 8966, + [9374] = 8966, + [9375] = 8966, + [9376] = 8966, + [9377] = 8966, + [9378] = 8966, + [9379] = 8966, + [9380] = 8966, + [9381] = 8966, + [9382] = 8966, + [9383] = 9197, + [9384] = 8973, + [9385] = 8968, + [9386] = 8958, + [9387] = 8975, + [9388] = 8949, + [9389] = 8950, + [9390] = 9050, + [9391] = 8982, + [9392] = 9179, + [9393] = 9002, + [9394] = 8973, + [9395] = 8958, + [9396] = 8950, + [9397] = 8949, + [9398] = 8953, + [9399] = 8949, + [9400] = 8982, + [9401] = 9002, + [9402] = 8973, + [9403] = 8968, + [9404] = 8974, + [9405] = 8982, + [9406] = 8958, + [9407] = 1133, + [9408] = 9034, + [9409] = 8949, + [9410] = 8975, + [9411] = 8982, + [9412] = 9002, + [9413] = 9002, + [9414] = 8973, + [9415] = 8991, + [9416] = 8992, + [9417] = 8968, + [9418] = 8991, + [9419] = 8948, + [9420] = 8958, + [9421] = 8992, + [9422] = 8973, + [9423] = 9002, + [9424] = 9424, + [9425] = 9425, + [9426] = 9234, + [9427] = 8949, + [9428] = 8982, + [9429] = 9002, + [9430] = 9034, + [9431] = 8973, + [9432] = 8956, + [9433] = 9043, + [9434] = 9148, + [9435] = 1104, + [9436] = 9001, + [9437] = 9052, + [9438] = 9050, + [9439] = 8973, + [9440] = 9197, + [9441] = 9230, + [9442] = 8956, + [9443] = 8991, + [9444] = 9234, + [9445] = 8973, + [9446] = 8949, + [9447] = 8982, + [9448] = 9256, + [9449] = 8953, + [9450] = 8974, + [9451] = 8982, + [9452] = 9256, + [9453] = 8992, + [9454] = 9002, + [9455] = 9034, + [9456] = 8974, + [9457] = 8958, + [9458] = 9050, + [9459] = 9197, + [9460] = 9328, + [9461] = 9234, + [9462] = 9256, + [9463] = 8973, + [9464] = 8975, + [9465] = 8960, + [9466] = 9328, + [9467] = 8968, + [9468] = 9330, + [9469] = 8975, + [9470] = 8956, + [9471] = 9230, + [9472] = 9273, + [9473] = 8977, + [9474] = 8968, + [9475] = 9475, + [9476] = 8950, + [9477] = 9477, + [9478] = 8948, + [9479] = 9043, + [9480] = 9052, + [9481] = 8960, + [9482] = 9328, + [9483] = 9273, + [9484] = 8960, + [9485] = 9330, + [9486] = 8975, + [9487] = 9230, + [9488] = 9273, + [9489] = 9489, + [9490] = 8960, + [9491] = 8956, + [9492] = 8956, + [9493] = 8948, + [9494] = 8968, + [9495] = 8950, + [9496] = 8948, + [9497] = 9008, + [9498] = 9007, + [9499] = 8950, + [9500] = 9043, + [9501] = 9052, + [9502] = 8960, + [9503] = 8968, + [9504] = 9006, + [9505] = 8970, + [9506] = 9328, + [9507] = 9016, + [9508] = 8989, + [9509] = 8966, + [9510] = 9148, + [9511] = 9016, + [9512] = 8975, + [9513] = 9001, + [9514] = 9016, + [9515] = 8960, + [9516] = 8989, + [9517] = 8960, + [9518] = 8975, + [9519] = 8973, + [9520] = 8975, + [9521] = 9230, + [9522] = 9273, + [9523] = 9273, + [9524] = 9230, + [9525] = 8968, + [9526] = 8975, + [9527] = 8960, + [9528] = 8949, + [9529] = 8950, + [9530] = 8982, + [9531] = 9002, + [9532] = 8973, + [9533] = 9052, + [9534] = 9043, + [9535] = 8949, + [9536] = 8948, + [9537] = 8982, + [9538] = 9002, + [9539] = 8973, + [9540] = 8948, + [9541] = 8950, + [9542] = 9043, + [9543] = 8968, + [9544] = 9052, + [9545] = 8949, + [9546] = 8982, + [9547] = 9002, + [9548] = 8960, + [9549] = 9328, + [9550] = 8949, + [9551] = 9330, + [9552] = 8982, + [9553] = 9002, + [9554] = 8973, + [9555] = 8960, + [9556] = 8975, + [9557] = 8960, + [9558] = 8975, + [9559] = 8960, + [9560] = 8975, + [9561] = 8960, + [9562] = 8975, + [9563] = 9273, + [9564] = 9230, + [9565] = 9179, + [9566] = 8949, + [9567] = 8982, + [9568] = 9002, + [9569] = 8973, + [9570] = 8956, + [9571] = 8949, + [9572] = 9330, + [9573] = 9179, + [9574] = 8982, + [9575] = 9002, + [9576] = 9179, + [9577] = 9179, + [9578] = 8973, + [9579] = 8975, + [9580] = 9580, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -14230,18 +14240,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 1, .external_lex_state = 4}, [14] = {.lex_state = 1, .external_lex_state = 4}, [15] = {.lex_state = 1, .external_lex_state = 4}, - [16] = {.lex_state = 1, .external_lex_state = 4}, + [16] = {.lex_state = 1, .external_lex_state = 3}, [17] = {.lex_state = 1, .external_lex_state = 3}, [18] = {.lex_state = 1, .external_lex_state = 4}, [19] = {.lex_state = 1, .external_lex_state = 4}, - [20] = {.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 = 4}, - [23] = {.lex_state = 1, .external_lex_state = 4}, - [24] = {.lex_state = 1, .external_lex_state = 4}, - [25] = {.lex_state = 1, .external_lex_state = 3}, + [23] = {.lex_state = 1, .external_lex_state = 3}, + [24] = {.lex_state = 1, .external_lex_state = 3}, + [25] = {.lex_state = 1, .external_lex_state = 4}, [26] = {.lex_state = 1, .external_lex_state = 4}, - [27] = {.lex_state = 1, .external_lex_state = 3}, + [27] = {.lex_state = 1, .external_lex_state = 4}, [28] = {.lex_state = 1, .external_lex_state = 3}, [29] = {.lex_state = 1, .external_lex_state = 3}, [30] = {.lex_state = 1, .external_lex_state = 3}, @@ -14255,17 +14265,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 1, .external_lex_state = 4}, [39] = {.lex_state = 1, .external_lex_state = 4}, [40] = {.lex_state = 1, .external_lex_state = 4}, - [41] = {.lex_state = 1, .external_lex_state = 4}, + [41] = {.lex_state = 1, .external_lex_state = 3}, [42] = {.lex_state = 1, .external_lex_state = 4}, [43] = {.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 = 3}, + [46] = {.lex_state = 1, .external_lex_state = 4}, + [47] = {.lex_state = 1, .external_lex_state = 4}, + [48] = {.lex_state = 1, .external_lex_state = 4}, [49] = {.lex_state = 1, .external_lex_state = 4}, - [50] = {.lex_state = 1, .external_lex_state = 4}, - [51] = {.lex_state = 1, .external_lex_state = 4}, + [50] = {.lex_state = 1, .external_lex_state = 3}, + [51] = {.lex_state = 1, .external_lex_state = 3}, [52] = {.lex_state = 31, .external_lex_state = 2}, [53] = {.lex_state = 31, .external_lex_state = 2}, [54] = {.lex_state = 31, .external_lex_state = 2}, @@ -14301,21 +14311,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 31, .external_lex_state = 2}, [85] = {.lex_state = 31, .external_lex_state = 2}, [86] = {.lex_state = 31, .external_lex_state = 5}, - [87] = {.lex_state = 31, .external_lex_state = 5}, + [87] = {.lex_state = 31, .external_lex_state = 2}, [88] = {.lex_state = 31, .external_lex_state = 2}, [89] = {.lex_state = 31, .external_lex_state = 2}, - [90] = {.lex_state = 31, .external_lex_state = 5}, + [90] = {.lex_state = 31, .external_lex_state = 2}, [91] = {.lex_state = 31, .external_lex_state = 2}, [92] = {.lex_state = 31, .external_lex_state = 2}, [93] = {.lex_state = 31, .external_lex_state = 2}, [94] = {.lex_state = 31, .external_lex_state = 2}, [95] = {.lex_state = 31, .external_lex_state = 2}, [96] = {.lex_state = 31, .external_lex_state = 2}, - [97] = {.lex_state = 31, .external_lex_state = 2}, + [97] = {.lex_state = 31, .external_lex_state = 5}, [98] = {.lex_state = 31, .external_lex_state = 2}, [99] = {.lex_state = 31, .external_lex_state = 2}, [100] = {.lex_state = 31, .external_lex_state = 2}, - [101] = {.lex_state = 31, .external_lex_state = 2}, + [101] = {.lex_state = 31, .external_lex_state = 5}, [102] = {.lex_state = 31, .external_lex_state = 2}, [103] = {.lex_state = 31, .external_lex_state = 2}, [104] = {.lex_state = 31, .external_lex_state = 2}, @@ -14434,7 +14444,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [217] = {.lex_state = 31, .external_lex_state = 2}, [218] = {.lex_state = 31, .external_lex_state = 2}, [219] = {.lex_state = 31, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 3}, + [220] = {.lex_state = 31, .external_lex_state = 2}, [221] = {.lex_state = 31, .external_lex_state = 2}, [222] = {.lex_state = 31, .external_lex_state = 2}, [223] = {.lex_state = 31, .external_lex_state = 2}, @@ -14470,7 +14480,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 31, .external_lex_state = 2}, [254] = {.lex_state = 31, .external_lex_state = 2}, [255] = {.lex_state = 31, .external_lex_state = 2}, - [256] = {.lex_state = 31, .external_lex_state = 2}, + [256] = {.lex_state = 1, .external_lex_state = 3}, [257] = {.lex_state = 31, .external_lex_state = 2}, [258] = {.lex_state = 31, .external_lex_state = 2}, [259] = {.lex_state = 31, .external_lex_state = 2}, @@ -14763,13 +14773,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [546] = {.lex_state = 1, .external_lex_state = 4}, [547] = {.lex_state = 1, .external_lex_state = 4}, [548] = {.lex_state = 1, .external_lex_state = 4}, - [549] = {.lex_state = 1, .external_lex_state = 4}, + [549] = {.lex_state = 5, .external_lex_state = 6}, [550] = {.lex_state = 1, .external_lex_state = 4}, - [551] = {.lex_state = 1, .external_lex_state = 4}, + [551] = {.lex_state = 5, .external_lex_state = 6}, [552] = {.lex_state = 1, .external_lex_state = 4}, [553] = {.lex_state = 1, .external_lex_state = 4}, - [554] = {.lex_state = 1, .external_lex_state = 4}, - [555] = {.lex_state = 1, .external_lex_state = 4}, + [554] = {.lex_state = 5, .external_lex_state = 6}, + [555] = {.lex_state = 5, .external_lex_state = 6}, [556] = {.lex_state = 1, .external_lex_state = 4}, [557] = {.lex_state = 1, .external_lex_state = 4}, [558] = {.lex_state = 1, .external_lex_state = 4}, @@ -14780,7 +14790,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [563] = {.lex_state = 1, .external_lex_state = 4}, [564] = {.lex_state = 1, .external_lex_state = 4}, [565] = {.lex_state = 1, .external_lex_state = 4}, - [566] = {.lex_state = 5, .external_lex_state = 6}, + [566] = {.lex_state = 1, .external_lex_state = 4}, [567] = {.lex_state = 5, .external_lex_state = 6}, [568] = {.lex_state = 1, .external_lex_state = 4}, [569] = {.lex_state = 1, .external_lex_state = 4}, @@ -14793,23 +14803,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [576] = {.lex_state = 1, .external_lex_state = 4}, [577] = {.lex_state = 1, .external_lex_state = 4}, [578] = {.lex_state = 1, .external_lex_state = 4}, - [579] = {.lex_state = 5, .external_lex_state = 6}, - [580] = {.lex_state = 5, .external_lex_state = 6}, - [581] = {.lex_state = 5, .external_lex_state = 6}, + [579] = {.lex_state = 1, .external_lex_state = 4}, + [580] = {.lex_state = 1, .external_lex_state = 4}, + [581] = {.lex_state = 1, .external_lex_state = 4}, [582] = {.lex_state = 5, .external_lex_state = 6}, - [583] = {.lex_state = 5, .external_lex_state = 6}, + [583] = {.lex_state = 1, .external_lex_state = 4}, [584] = {.lex_state = 5, .external_lex_state = 6}, - [585] = {.lex_state = 5, .external_lex_state = 6}, + [585] = {.lex_state = 1, .external_lex_state = 4}, [586] = {.lex_state = 1, .external_lex_state = 4}, - [587] = {.lex_state = 1, .external_lex_state = 4}, - [588] = {.lex_state = 1, .external_lex_state = 4}, - [589] = {.lex_state = 1, .external_lex_state = 4}, - [590] = {.lex_state = 1, .external_lex_state = 4}, - [591] = {.lex_state = 5, .external_lex_state = 6}, - [592] = {.lex_state = 5, .external_lex_state = 6}, + [587] = {.lex_state = 5, .external_lex_state = 6}, + [588] = {.lex_state = 5, .external_lex_state = 6}, + [589] = {.lex_state = 5, .external_lex_state = 6}, + [590] = {.lex_state = 5, .external_lex_state = 6}, + [591] = {.lex_state = 1, .external_lex_state = 4}, + [592] = {.lex_state = 1, .external_lex_state = 4}, [593] = {.lex_state = 1, .external_lex_state = 4}, [594] = {.lex_state = 1, .external_lex_state = 4}, - [595] = {.lex_state = 5, .external_lex_state = 6}, + [595] = {.lex_state = 1, .external_lex_state = 4}, [596] = {.lex_state = 1, .external_lex_state = 4}, [597] = {.lex_state = 1, .external_lex_state = 4}, [598] = {.lex_state = 1, .external_lex_state = 4}, @@ -14824,7 +14834,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 1, .external_lex_state = 4}, [608] = {.lex_state = 1, .external_lex_state = 4}, [609] = {.lex_state = 1, .external_lex_state = 4}, - [610] = {.lex_state = 1, .external_lex_state = 4}, + [610] = {.lex_state = 5, .external_lex_state = 6}, [611] = {.lex_state = 1, .external_lex_state = 4}, [612] = {.lex_state = 1, .external_lex_state = 4}, [613] = {.lex_state = 1, .external_lex_state = 4}, @@ -14854,41 +14864,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [637] = {.lex_state = 1, .external_lex_state = 4}, [638] = {.lex_state = 1, .external_lex_state = 4}, [639] = {.lex_state = 1, .external_lex_state = 4}, - [640] = {.lex_state = 5, .external_lex_state = 7}, - [641] = {.lex_state = 5, .external_lex_state = 7}, + [640] = {.lex_state = 1, .external_lex_state = 4}, + [641] = {.lex_state = 1, .external_lex_state = 4}, [642] = {.lex_state = 1, .external_lex_state = 4}, - [643] = {.lex_state = 1, .external_lex_state = 4}, - [644] = {.lex_state = 5, .external_lex_state = 7}, + [643] = {.lex_state = 5, .external_lex_state = 7}, + [644] = {.lex_state = 1, .external_lex_state = 4}, [645] = {.lex_state = 5, .external_lex_state = 7}, [646] = {.lex_state = 5, .external_lex_state = 7}, - [647] = {.lex_state = 1, .external_lex_state = 4}, - [648] = {.lex_state = 1, .external_lex_state = 4}, + [647] = {.lex_state = 5, .external_lex_state = 7}, + [648] = {.lex_state = 5, .external_lex_state = 7}, [649] = {.lex_state = 5, .external_lex_state = 7}, [650] = {.lex_state = 5, .external_lex_state = 7}, [651] = {.lex_state = 5, .external_lex_state = 7}, - [652] = {.lex_state = 1, .external_lex_state = 4}, + [652] = {.lex_state = 5, .external_lex_state = 7}, [653] = {.lex_state = 5, .external_lex_state = 7}, [654] = {.lex_state = 5, .external_lex_state = 7}, [655] = {.lex_state = 5, .external_lex_state = 7}, - [656] = {.lex_state = 5, .external_lex_state = 7}, + [656] = {.lex_state = 1, .external_lex_state = 4}, [657] = {.lex_state = 1, .external_lex_state = 4}, [658] = {.lex_state = 1, .external_lex_state = 4}, [659] = {.lex_state = 1, .external_lex_state = 4}, [660] = {.lex_state = 1, .external_lex_state = 4}, - [661] = {.lex_state = 5, .external_lex_state = 6}, + [661] = {.lex_state = 1, .external_lex_state = 4}, [662] = {.lex_state = 5, .external_lex_state = 6}, - [663] = {.lex_state = 5, .external_lex_state = 6}, - [664] = {.lex_state = 5, .external_lex_state = 6}, - [665] = {.lex_state = 5, .external_lex_state = 6}, + [663] = {.lex_state = 1, .external_lex_state = 4}, + [664] = {.lex_state = 1, .external_lex_state = 4}, + [665] = {.lex_state = 1, .external_lex_state = 4}, [666] = {.lex_state = 1, .external_lex_state = 4}, - [667] = {.lex_state = 5, .external_lex_state = 6}, - [668] = {.lex_state = 5, .external_lex_state = 6}, - [669] = {.lex_state = 5, .external_lex_state = 6}, - [670] = {.lex_state = 5, .external_lex_state = 6}, + [667] = {.lex_state = 1, .external_lex_state = 4}, + [668] = {.lex_state = 1, .external_lex_state = 4}, + [669] = {.lex_state = 1, .external_lex_state = 4}, + [670] = {.lex_state = 1, .external_lex_state = 4}, [671] = {.lex_state = 1, .external_lex_state = 4}, - [672] = {.lex_state = 1, .external_lex_state = 4}, - [673] = {.lex_state = 5, .external_lex_state = 6}, - [674] = {.lex_state = 1, .external_lex_state = 4}, + [672] = {.lex_state = 5, .external_lex_state = 6}, + [673] = {.lex_state = 1, .external_lex_state = 4}, + [674] = {.lex_state = 5, .external_lex_state = 6}, [675] = {.lex_state = 1, .external_lex_state = 4}, [676] = {.lex_state = 1, .external_lex_state = 4}, [677] = {.lex_state = 1, .external_lex_state = 4}, @@ -14899,22 +14909,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [682] = {.lex_state = 1, .external_lex_state = 4}, [683] = {.lex_state = 5, .external_lex_state = 6}, [684] = {.lex_state = 1, .external_lex_state = 4}, - [685] = {.lex_state = 1, .external_lex_state = 4}, + [685] = {.lex_state = 5, .external_lex_state = 6}, [686] = {.lex_state = 1, .external_lex_state = 4}, [687] = {.lex_state = 1, .external_lex_state = 4}, [688] = {.lex_state = 1, .external_lex_state = 4}, - [689] = {.lex_state = 1, .external_lex_state = 4}, + [689] = {.lex_state = 5, .external_lex_state = 6}, [690] = {.lex_state = 1, .external_lex_state = 4}, [691] = {.lex_state = 1, .external_lex_state = 4}, [692] = {.lex_state = 1, .external_lex_state = 4}, [693] = {.lex_state = 1, .external_lex_state = 4}, [694] = {.lex_state = 1, .external_lex_state = 4}, [695] = {.lex_state = 1, .external_lex_state = 4}, - [696] = {.lex_state = 1, .external_lex_state = 4}, - [697] = {.lex_state = 1, .external_lex_state = 4}, - [698] = {.lex_state = 1, .external_lex_state = 4}, - [699] = {.lex_state = 5, .external_lex_state = 7}, - [700] = {.lex_state = 5, .external_lex_state = 7}, + [696] = {.lex_state = 5, .external_lex_state = 6}, + [697] = {.lex_state = 5, .external_lex_state = 6}, + [698] = {.lex_state = 5, .external_lex_state = 6}, + [699] = {.lex_state = 5, .external_lex_state = 6}, + [700] = {.lex_state = 5, .external_lex_state = 6}, [701] = {.lex_state = 5, .external_lex_state = 7}, [702] = {.lex_state = 5, .external_lex_state = 7}, [703] = {.lex_state = 5, .external_lex_state = 7}, @@ -14925,140 +14935,140 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [708] = {.lex_state = 5, .external_lex_state = 7}, [709] = {.lex_state = 5, .external_lex_state = 7}, [710] = {.lex_state = 5, .external_lex_state = 7}, - [711] = {.lex_state = 1, .external_lex_state = 4}, - [712] = {.lex_state = 1, .external_lex_state = 4}, - [713] = {.lex_state = 5, .external_lex_state = 6}, - [714] = {.lex_state = 1, .external_lex_state = 4}, - [715] = {.lex_state = 5, .external_lex_state = 6}, - [716] = {.lex_state = 5, .external_lex_state = 6}, + [711] = {.lex_state = 5, .external_lex_state = 7}, + [712] = {.lex_state = 5, .external_lex_state = 7}, + [713] = {.lex_state = 1, .external_lex_state = 4}, + [714] = {.lex_state = 5, .external_lex_state = 6}, + [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 = 5, .external_lex_state = 6}, + [718] = {.lex_state = 1, .external_lex_state = 4}, [719] = {.lex_state = 1, .external_lex_state = 4}, - [720] = {.lex_state = 5, .external_lex_state = 6}, + [720] = {.lex_state = 1, .external_lex_state = 4}, [721] = {.lex_state = 1, .external_lex_state = 4}, - [722] = {.lex_state = 5, .external_lex_state = 6}, + [722] = {.lex_state = 1, .external_lex_state = 4}, [723] = {.lex_state = 1, .external_lex_state = 4}, [724] = {.lex_state = 1, .external_lex_state = 4}, - [725] = {.lex_state = 1, .external_lex_state = 4}, - [726] = {.lex_state = 1, .external_lex_state = 4}, - [727] = {.lex_state = 1, .external_lex_state = 4}, - [728] = {.lex_state = 1, .external_lex_state = 4}, + [725] = {.lex_state = 5, .external_lex_state = 6}, + [726] = {.lex_state = 5, .external_lex_state = 6}, + [727] = {.lex_state = 5, .external_lex_state = 6}, + [728] = {.lex_state = 5, .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}, + [730] = {.lex_state = 5, .external_lex_state = 6}, + [731] = {.lex_state = 5, .external_lex_state = 6}, [732] = {.lex_state = 1, .external_lex_state = 4}, [733] = {.lex_state = 1, .external_lex_state = 4}, [734] = {.lex_state = 1, .external_lex_state = 4}, [735] = {.lex_state = 1, .external_lex_state = 4}, [736] = {.lex_state = 1, .external_lex_state = 4}, - [737] = {.lex_state = 5, .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}, + [737] = {.lex_state = 1, .external_lex_state = 4}, + [738] = {.lex_state = 5, .external_lex_state = 6}, + [739] = {.lex_state = 5, .external_lex_state = 6}, + [740] = {.lex_state = 5, .external_lex_state = 6}, [741] = {.lex_state = 1, .external_lex_state = 4}, - [742] = {.lex_state = 5, .external_lex_state = 6}, - [743] = {.lex_state = 1, .external_lex_state = 4}, - [744] = {.lex_state = 5, .external_lex_state = 6}, + [742] = {.lex_state = 1, .external_lex_state = 4}, + [743] = {.lex_state = 5, .external_lex_state = 6}, + [744] = {.lex_state = 1, .external_lex_state = 4}, [745] = {.lex_state = 1, .external_lex_state = 4}, [746] = {.lex_state = 5, .external_lex_state = 6}, [747] = {.lex_state = 1, .external_lex_state = 4}, - [748] = {.lex_state = 5, .external_lex_state = 6}, - [749] = {.lex_state = 5, .external_lex_state = 6}, + [748] = {.lex_state = 1, .external_lex_state = 4}, + [749] = {.lex_state = 1, .external_lex_state = 4}, [750] = {.lex_state = 1, .external_lex_state = 4}, - [751] = {.lex_state = 4, .external_lex_state = 2}, - [752] = {.lex_state = 4, .external_lex_state = 2}, + [751] = {.lex_state = 1, .external_lex_state = 4}, + [752] = {.lex_state = 1, .external_lex_state = 4}, [753] = {.lex_state = 4, .external_lex_state = 2}, - [754] = {.lex_state = 4, .external_lex_state = 2}, - [755] = {.lex_state = 4, .external_lex_state = 2}, + [754] = {.lex_state = 1, .external_lex_state = 4}, + [755] = {.lex_state = 1, .external_lex_state = 4}, [756] = {.lex_state = 4, .external_lex_state = 2}, [757] = {.lex_state = 4, .external_lex_state = 2}, - [758] = {.lex_state = 1, .external_lex_state = 4}, - [759] = {.lex_state = 1, .external_lex_state = 4}, - [760] = {.lex_state = 1, .external_lex_state = 4}, - [761] = {.lex_state = 1, .external_lex_state = 4}, - [762] = {.lex_state = 4, .external_lex_state = 2}, + [758] = {.lex_state = 4, .external_lex_state = 2}, + [759] = {.lex_state = 4, .external_lex_state = 2}, + [760] = {.lex_state = 4, .external_lex_state = 2}, + [761] = {.lex_state = 4, .external_lex_state = 2}, + [762] = {.lex_state = 1, .external_lex_state = 4}, [763] = {.lex_state = 4, .external_lex_state = 2}, - [764] = {.lex_state = 4, .external_lex_state = 2}, - [765] = {.lex_state = 1, .external_lex_state = 4}, + [764] = {.lex_state = 1, .external_lex_state = 4}, + [765] = {.lex_state = 4, .external_lex_state = 2}, [766] = {.lex_state = 4, .external_lex_state = 2}, [767] = {.lex_state = 4, .external_lex_state = 2}, - [768] = {.lex_state = 4, .external_lex_state = 2}, + [768] = {.lex_state = 1, .external_lex_state = 4}, [769] = {.lex_state = 4, .external_lex_state = 2}, [770] = {.lex_state = 4, .external_lex_state = 2}, [771] = {.lex_state = 4, .external_lex_state = 2}, - [772] = {.lex_state = 4, .external_lex_state = 2}, + [772] = {.lex_state = 1, .external_lex_state = 4}, [773] = {.lex_state = 4, .external_lex_state = 2}, [774] = {.lex_state = 4, .external_lex_state = 2}, [775] = {.lex_state = 4, .external_lex_state = 2}, - [776] = {.lex_state = 1, .external_lex_state = 4}, - [777] = {.lex_state = 1, .external_lex_state = 4}, + [776] = {.lex_state = 4, .external_lex_state = 2}, + [777] = {.lex_state = 4, .external_lex_state = 2}, [778] = {.lex_state = 4, .external_lex_state = 2}, [779] = {.lex_state = 4, .external_lex_state = 2}, [780] = {.lex_state = 4, .external_lex_state = 2}, [781] = {.lex_state = 4, .external_lex_state = 2}, [782] = {.lex_state = 4, .external_lex_state = 2}, - [783] = {.lex_state = 1, .external_lex_state = 4}, + [783] = {.lex_state = 4, .external_lex_state = 2}, [784] = {.lex_state = 1, .external_lex_state = 4}, - [785] = {.lex_state = 1, .external_lex_state = 4}, + [785] = {.lex_state = 5, .external_lex_state = 7}, [786] = {.lex_state = 31, .external_lex_state = 2}, [787] = {.lex_state = 31, .external_lex_state = 2}, - [788] = {.lex_state = 1, .external_lex_state = 4}, - [789] = {.lex_state = 1, .external_lex_state = 4}, + [788] = {.lex_state = 31, .external_lex_state = 2}, + [789] = {.lex_state = 31, .external_lex_state = 2}, [790] = {.lex_state = 31, .external_lex_state = 2}, - [791] = {.lex_state = 31, .external_lex_state = 2}, + [791] = {.lex_state = 5, .external_lex_state = 7}, [792] = {.lex_state = 5, .external_lex_state = 7}, [793] = {.lex_state = 1, .external_lex_state = 4}, [794] = {.lex_state = 5, .external_lex_state = 7}, - [795] = {.lex_state = 31, .external_lex_state = 2}, + [795] = {.lex_state = 5, .external_lex_state = 7}, [796] = {.lex_state = 5, .external_lex_state = 7}, [797] = {.lex_state = 31, .external_lex_state = 2}, [798] = {.lex_state = 31, .external_lex_state = 2}, [799] = {.lex_state = 31, .external_lex_state = 2}, - [800] = {.lex_state = 31, .external_lex_state = 2}, + [800] = {.lex_state = 1, .external_lex_state = 4}, [801] = {.lex_state = 31, .external_lex_state = 2}, [802] = {.lex_state = 1, .external_lex_state = 4}, [803] = {.lex_state = 31, .external_lex_state = 2}, [804] = {.lex_state = 31, .external_lex_state = 2}, - [805] = {.lex_state = 31, .external_lex_state = 2}, + [805] = {.lex_state = 1, .external_lex_state = 4}, [806] = {.lex_state = 31, .external_lex_state = 2}, - [807] = {.lex_state = 5, .external_lex_state = 7}, + [807] = {.lex_state = 1, .external_lex_state = 4}, [808] = {.lex_state = 31, .external_lex_state = 2}, - [809] = {.lex_state = 31, .external_lex_state = 2}, + [809] = {.lex_state = 1, .external_lex_state = 4}, [810] = {.lex_state = 31, .external_lex_state = 2}, [811] = {.lex_state = 31, .external_lex_state = 2}, - [812] = {.lex_state = 1, .external_lex_state = 4}, + [812] = {.lex_state = 31, .external_lex_state = 2}, [813] = {.lex_state = 31, .external_lex_state = 2}, - [814] = {.lex_state = 5, .external_lex_state = 7}, + [814] = {.lex_state = 31, .external_lex_state = 2}, [815] = {.lex_state = 31, .external_lex_state = 2}, - [816] = {.lex_state = 5, .external_lex_state = 7}, - [817] = {.lex_state = 5, .external_lex_state = 7}, - [818] = {.lex_state = 31, .external_lex_state = 2}, - [819] = {.lex_state = 1, .external_lex_state = 4}, + [816] = {.lex_state = 31, .external_lex_state = 2}, + [817] = {.lex_state = 31, .external_lex_state = 2}, + [818] = {.lex_state = 5, .external_lex_state = 7}, + [819] = {.lex_state = 5, .external_lex_state = 7}, [820] = {.lex_state = 5, .external_lex_state = 7}, [821] = {.lex_state = 5, .external_lex_state = 7}, [822] = {.lex_state = 31, .external_lex_state = 2}, [823] = {.lex_state = 5, .external_lex_state = 7}, - [824] = {.lex_state = 31, .external_lex_state = 2}, - [825] = {.lex_state = 5, .external_lex_state = 7}, + [824] = {.lex_state = 5, .external_lex_state = 7}, + [825] = {.lex_state = 31, .external_lex_state = 2}, [826] = {.lex_state = 31, .external_lex_state = 2}, [827] = {.lex_state = 31, .external_lex_state = 2}, - [828] = {.lex_state = 5, .external_lex_state = 7}, + [828] = {.lex_state = 31, .external_lex_state = 2}, [829] = {.lex_state = 31, .external_lex_state = 2}, - [830] = {.lex_state = 31, .external_lex_state = 2}, - [831] = {.lex_state = 1, .external_lex_state = 3}, - [832] = {.lex_state = 5, .external_lex_state = 6}, + [830] = {.lex_state = 1, .external_lex_state = 4}, + [831] = {.lex_state = 1, .external_lex_state = 4}, + [832] = {.lex_state = 1, .external_lex_state = 4}, [833] = {.lex_state = 1, .external_lex_state = 4}, [834] = {.lex_state = 1, .external_lex_state = 4}, - [835] = {.lex_state = 5, .external_lex_state = 6}, - [836] = {.lex_state = 1, .external_lex_state = 4}, + [835] = {.lex_state = 1, .external_lex_state = 4}, + [836] = {.lex_state = 5, .external_lex_state = 6}, [837] = {.lex_state = 5, .external_lex_state = 6}, - [838] = {.lex_state = 1, .external_lex_state = 4}, + [838] = {.lex_state = 5, .external_lex_state = 6}, [839] = {.lex_state = 5, .external_lex_state = 6}, [840] = {.lex_state = 5, .external_lex_state = 6}, [841] = {.lex_state = 5, .external_lex_state = 6}, - [842] = {.lex_state = 1, .external_lex_state = 4}, + [842] = {.lex_state = 5, .external_lex_state = 6}, [843] = {.lex_state = 1, .external_lex_state = 4}, - [844] = {.lex_state = 5, .external_lex_state = 6}, + [844] = {.lex_state = 1, .external_lex_state = 4}, [845] = {.lex_state = 1, .external_lex_state = 4}, [846] = {.lex_state = 1, .external_lex_state = 4}, [847] = {.lex_state = 1, .external_lex_state = 4}, @@ -15067,67 +15077,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [850] = {.lex_state = 1, .external_lex_state = 4}, [851] = {.lex_state = 1, .external_lex_state = 4}, [852] = {.lex_state = 1, .external_lex_state = 4}, - [853] = {.lex_state = 5, .external_lex_state = 6}, + [853] = {.lex_state = 1, .external_lex_state = 4}, [854] = {.lex_state = 1, .external_lex_state = 4}, - [855] = {.lex_state = 5, .external_lex_state = 6}, + [855] = {.lex_state = 1, .external_lex_state = 4}, [856] = {.lex_state = 1, .external_lex_state = 4}, [857] = {.lex_state = 1, .external_lex_state = 3}, - [858] = {.lex_state = 1, .external_lex_state = 3}, - [859] = {.lex_state = 5, .external_lex_state = 6}, - [860] = {.lex_state = 5, .external_lex_state = 6}, + [858] = {.lex_state = 1, .external_lex_state = 4}, + [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}, - [863] = {.lex_state = 1, .external_lex_state = 4}, + [862] = {.lex_state = 1, .external_lex_state = 3}, + [863] = {.lex_state = 1, .external_lex_state = 3}, [864] = {.lex_state = 1, .external_lex_state = 4}, - [865] = {.lex_state = 1, .external_lex_state = 4}, + [865] = {.lex_state = 5, .external_lex_state = 6}, [866] = {.lex_state = 5, .external_lex_state = 6}, [867] = {.lex_state = 1, .external_lex_state = 4}, [868] = {.lex_state = 1, .external_lex_state = 4}, [869] = {.lex_state = 1, .external_lex_state = 4}, - [870] = {.lex_state = 1, .external_lex_state = 4}, + [870] = {.lex_state = 5, .external_lex_state = 6}, [871] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [874] = {.lex_state = 5, .external_lex_state = 6}, + [875] = {.lex_state = 5, .external_lex_state = 6}, [876] = {.lex_state = 1, .external_lex_state = 4}, [877] = {.lex_state = 1, .external_lex_state = 4}, - [878] = {.lex_state = 1, .external_lex_state = 4}, + [878] = {.lex_state = 5, .external_lex_state = 7}, [879] = {.lex_state = 5, .external_lex_state = 7}, [880] = {.lex_state = 1, .external_lex_state = 4}, - [881] = {.lex_state = 5, .external_lex_state = 7}, + [881] = {.lex_state = 1, .external_lex_state = 4}, [882] = {.lex_state = 5, .external_lex_state = 7}, [883] = {.lex_state = 1, .external_lex_state = 4}, - [884] = {.lex_state = 1, .external_lex_state = 4}, + [884] = {.lex_state = 5, .external_lex_state = 7}, [885] = {.lex_state = 1, .external_lex_state = 4}, - [886] = {.lex_state = 1, .external_lex_state = 4}, + [886] = {.lex_state = 5, .external_lex_state = 7}, [887] = {.lex_state = 1, .external_lex_state = 4}, - [888] = {.lex_state = 1, .external_lex_state = 4}, - [889] = {.lex_state = 5, .external_lex_state = 7}, - [890] = {.lex_state = 1, .external_lex_state = 4}, + [888] = {.lex_state = 5, .external_lex_state = 7}, + [889] = {.lex_state = 1, .external_lex_state = 4}, + [890] = {.lex_state = 5, .external_lex_state = 7}, [891] = {.lex_state = 1, .external_lex_state = 4}, [892] = {.lex_state = 1, .external_lex_state = 4}, - [893] = {.lex_state = 1, .external_lex_state = 4}, + [893] = {.lex_state = 4, .external_lex_state = 2}, [894] = {.lex_state = 1, .external_lex_state = 4}, - [895] = {.lex_state = 1, .external_lex_state = 4}, + [895] = {.lex_state = 5, .external_lex_state = 7}, [896] = {.lex_state = 1, .external_lex_state = 4}, [897] = {.lex_state = 1, .external_lex_state = 4}, [898] = {.lex_state = 1, .external_lex_state = 4}, - [899] = {.lex_state = 1, .external_lex_state = 4}, - [900] = {.lex_state = 5, .external_lex_state = 7}, - [901] = {.lex_state = 5, .external_lex_state = 7}, + [899] = {.lex_state = 5, .external_lex_state = 7}, + [900] = {.lex_state = 1, .external_lex_state = 4}, + [901] = {.lex_state = 1, .external_lex_state = 4}, [902] = {.lex_state = 1, .external_lex_state = 4}, - [903] = {.lex_state = 5, .external_lex_state = 7}, - [904] = {.lex_state = 5, .external_lex_state = 7}, + [903] = {.lex_state = 1, .external_lex_state = 4}, + [904] = {.lex_state = 1, .external_lex_state = 4}, [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 = 5, .external_lex_state = 7}, + [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 = 5, .external_lex_state = 7}, - [913] = {.lex_state = 5, .external_lex_state = 7}, + [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}, @@ -15137,19 +15147,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [920] = {.lex_state = 1, .external_lex_state = 4}, [921] = {.lex_state = 1, .external_lex_state = 4}, [922] = {.lex_state = 1, .external_lex_state = 4}, - [923] = {.lex_state = 1, .external_lex_state = 4}, + [923] = {.lex_state = 5, .external_lex_state = 7}, [924] = {.lex_state = 1, .external_lex_state = 4}, - [925] = {.lex_state = 1, .external_lex_state = 4}, + [925] = {.lex_state = 5, .external_lex_state = 7}, [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}, [930] = {.lex_state = 1, .external_lex_state = 4}, [931] = {.lex_state = 1, .external_lex_state = 4}, - [932] = {.lex_state = 4, .external_lex_state = 2}, - [933] = {.lex_state = 5, .external_lex_state = 7}, + [932] = {.lex_state = 1, .external_lex_state = 4}, + [933] = {.lex_state = 1, .external_lex_state = 4}, [934] = {.lex_state = 1, .external_lex_state = 4}, - [935] = {.lex_state = 1, .external_lex_state = 4}, + [935] = {.lex_state = 5, .external_lex_state = 7}, [936] = {.lex_state = 1, .external_lex_state = 4}, [937] = {.lex_state = 1, .external_lex_state = 4}, [938] = {.lex_state = 1, .external_lex_state = 4}, @@ -15160,96 +15170,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 1, .external_lex_state = 4}, [944] = {.lex_state = 1, .external_lex_state = 4}, [945] = {.lex_state = 1, .external_lex_state = 4}, - [946] = {.lex_state = 5, .external_lex_state = 6}, + [946] = {.lex_state = 1, .external_lex_state = 4}, [947] = {.lex_state = 1, .external_lex_state = 4}, [948] = {.lex_state = 1, .external_lex_state = 4}, - [949] = {.lex_state = 1, .external_lex_state = 4}, - [950] = {.lex_state = 5, .external_lex_state = 6}, + [949] = {.lex_state = 5, .external_lex_state = 6}, + [950] = {.lex_state = 1, .external_lex_state = 4}, [951] = {.lex_state = 1, .external_lex_state = 4}, - [952] = {.lex_state = 5, .external_lex_state = 6}, - [953] = {.lex_state = 5, .external_lex_state = 6}, + [952] = {.lex_state = 1, .external_lex_state = 4}, + [953] = {.lex_state = 1, .external_lex_state = 4}, [954] = {.lex_state = 1, .external_lex_state = 4}, [955] = {.lex_state = 1, .external_lex_state = 4}, - [956] = {.lex_state = 5, .external_lex_state = 6}, + [956] = {.lex_state = 1, .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 = 5, .external_lex_state = 6}, - [961] = {.lex_state = 5, .external_lex_state = 6}, + [959] = {.lex_state = 5, .external_lex_state = 7}, + [960] = {.lex_state = 1, .external_lex_state = 4}, + [961] = {.lex_state = 1, .external_lex_state = 4}, [962] = {.lex_state = 1, .external_lex_state = 4}, [963] = {.lex_state = 1, .external_lex_state = 4}, [964] = {.lex_state = 1, .external_lex_state = 4}, [965] = {.lex_state = 1, .external_lex_state = 4}, [966] = {.lex_state = 1, .external_lex_state = 4}, - [967] = {.lex_state = 5, .external_lex_state = 6}, + [967] = {.lex_state = 1, .external_lex_state = 4}, [968] = {.lex_state = 1, .external_lex_state = 4}, [969] = {.lex_state = 1, .external_lex_state = 4}, [970] = {.lex_state = 1, .external_lex_state = 4}, [971] = {.lex_state = 1, .external_lex_state = 4}, [972] = {.lex_state = 5, .external_lex_state = 7}, [973] = {.lex_state = 1, .external_lex_state = 4}, - [974] = {.lex_state = 5, .external_lex_state = 6}, - [975] = {.lex_state = 5, .external_lex_state = 6}, + [974] = {.lex_state = 1, .external_lex_state = 4}, + [975] = {.lex_state = 1, .external_lex_state = 4}, [976] = {.lex_state = 1, .external_lex_state = 4}, - [977] = {.lex_state = 5, .external_lex_state = 6}, + [977] = {.lex_state = 1, .external_lex_state = 4}, [978] = {.lex_state = 1, .external_lex_state = 4}, - [979] = {.lex_state = 5, .external_lex_state = 6}, + [979] = {.lex_state = 1, .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 = 5, .external_lex_state = 6}, + [984] = {.lex_state = 1, .external_lex_state = 4}, [985] = {.lex_state = 1, .external_lex_state = 4}, [986] = {.lex_state = 1, .external_lex_state = 4}, [987] = {.lex_state = 1, .external_lex_state = 4}, - [988] = {.lex_state = 5, .external_lex_state = 6}, - [989] = {.lex_state = 1, .external_lex_state = 4}, - [990] = {.lex_state = 1, .external_lex_state = 4}, - [991] = {.lex_state = 1, .external_lex_state = 4}, + [988] = {.lex_state = 1, .external_lex_state = 4}, + [989] = {.lex_state = 5, .external_lex_state = 6}, + [990] = {.lex_state = 5, .external_lex_state = 6}, + [991] = {.lex_state = 5, .external_lex_state = 6}, [992] = {.lex_state = 1, .external_lex_state = 4}, [993] = {.lex_state = 1, .external_lex_state = 4}, - [994] = {.lex_state = 1, .external_lex_state = 4}, + [994] = {.lex_state = 5, .external_lex_state = 6}, [995] = {.lex_state = 1, .external_lex_state = 4}, [996] = {.lex_state = 1, .external_lex_state = 4}, - [997] = {.lex_state = 1, .external_lex_state = 4}, + [997] = {.lex_state = 5, .external_lex_state = 7}, [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}, + [1001] = {.lex_state = 5, .external_lex_state = 6}, [1002] = {.lex_state = 1, .external_lex_state = 4}, - [1003] = {.lex_state = 1, .external_lex_state = 4}, - [1004] = {.lex_state = 1, .external_lex_state = 4}, + [1003] = {.lex_state = 5, .external_lex_state = 7}, + [1004] = {.lex_state = 5, .external_lex_state = 6}, [1005] = {.lex_state = 1, .external_lex_state = 4}, - [1006] = {.lex_state = 1, .external_lex_state = 4}, - [1007] = {.lex_state = 1, .external_lex_state = 4}, + [1006] = {.lex_state = 5, .external_lex_state = 7}, + [1007] = {.lex_state = 5, .external_lex_state = 6}, [1008] = {.lex_state = 1, .external_lex_state = 4}, [1009] = {.lex_state = 5, .external_lex_state = 6}, - [1010] = {.lex_state = 1, .external_lex_state = 4}, + [1010] = {.lex_state = 5, .external_lex_state = 6}, [1011] = {.lex_state = 5, .external_lex_state = 6}, - [1012] = {.lex_state = 5, .external_lex_state = 6}, + [1012] = {.lex_state = 1, .external_lex_state = 4}, [1013] = {.lex_state = 5, .external_lex_state = 6}, [1014] = {.lex_state = 1, .external_lex_state = 4}, - [1015] = {.lex_state = 1, .external_lex_state = 4}, - [1016] = {.lex_state = 5, .external_lex_state = 6}, + [1015] = {.lex_state = 5, .external_lex_state = 6}, + [1016] = {.lex_state = 1, .external_lex_state = 4}, [1017] = {.lex_state = 1, .external_lex_state = 4}, [1018] = {.lex_state = 1, .external_lex_state = 4}, - [1019] = {.lex_state = 5, .external_lex_state = 7}, - [1020] = {.lex_state = 1, .external_lex_state = 4}, - [1021] = {.lex_state = 5, .external_lex_state = 7}, - [1022] = {.lex_state = 1, .external_lex_state = 4}, + [1019] = {.lex_state = 1, .external_lex_state = 4}, + [1020] = {.lex_state = 5, .external_lex_state = 6}, + [1021] = {.lex_state = 1, .external_lex_state = 4}, + [1022] = {.lex_state = 5, .external_lex_state = 7}, [1023] = {.lex_state = 1, .external_lex_state = 4}, - [1024] = {.lex_state = 5, .external_lex_state = 7}, + [1024] = {.lex_state = 5, .external_lex_state = 6}, [1025] = {.lex_state = 1, .external_lex_state = 4}, - [1026] = {.lex_state = 1, .external_lex_state = 4}, + [1026] = {.lex_state = 5, .external_lex_state = 6}, [1027] = {.lex_state = 1, .external_lex_state = 4}, - [1028] = {.lex_state = 5, .external_lex_state = 7}, + [1028] = {.lex_state = 1, .external_lex_state = 4}, [1029] = {.lex_state = 1, .external_lex_state = 4}, - [1030] = {.lex_state = 5, .external_lex_state = 7}, - [1031] = {.lex_state = 1, .external_lex_state = 4}, + [1030] = {.lex_state = 1, .external_lex_state = 4}, + [1031] = {.lex_state = 5, .external_lex_state = 6}, [1032] = {.lex_state = 1, .external_lex_state = 4}, - [1033] = {.lex_state = 1, .external_lex_state = 4}, + [1033] = {.lex_state = 5, .external_lex_state = 6}, [1034] = {.lex_state = 1, .external_lex_state = 4}, - [1035] = {.lex_state = 1, .external_lex_state = 4}, + [1035] = {.lex_state = 5, .external_lex_state = 6}, [1036] = {.lex_state = 1, .external_lex_state = 4}, [1037] = {.lex_state = 1, .external_lex_state = 4}, [1038] = {.lex_state = 1, .external_lex_state = 4}, @@ -15304,12 +15314,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 6}, + [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}, + [1093] = {.lex_state = 5, .external_lex_state = 6}, [1094] = {.lex_state = 1, .external_lex_state = 4}, - [1095] = {.lex_state = 1, .external_lex_state = 4}, + [1095] = {.lex_state = 5, .external_lex_state = 6}, [1096] = {.lex_state = 1, .external_lex_state = 4}, [1097] = {.lex_state = 1, .external_lex_state = 4}, [1098] = {.lex_state = 1, .external_lex_state = 4}, @@ -15325,7 +15335,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1108] = {.lex_state = 1, .external_lex_state = 4}, [1109] = {.lex_state = 1, .external_lex_state = 4}, [1110] = {.lex_state = 1, .external_lex_state = 4}, - [1111] = {.lex_state = 5, .external_lex_state = 6}, + [1111] = {.lex_state = 1, .external_lex_state = 4}, [1112] = {.lex_state = 1, .external_lex_state = 4}, [1113] = {.lex_state = 1, .external_lex_state = 4}, [1114] = {.lex_state = 1, .external_lex_state = 4}, @@ -15333,7 +15343,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1116] = {.lex_state = 1, .external_lex_state = 4}, [1117] = {.lex_state = 1, .external_lex_state = 4}, [1118] = {.lex_state = 1, .external_lex_state = 4}, - [1119] = {.lex_state = 1, .external_lex_state = 4}, + [1119] = {.lex_state = 5, .external_lex_state = 6}, [1120] = {.lex_state = 1, .external_lex_state = 4}, [1121] = {.lex_state = 1, .external_lex_state = 4}, [1122] = {.lex_state = 1, .external_lex_state = 4}, @@ -15345,7 +15355,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 1, .external_lex_state = 4}, [1129] = {.lex_state = 1, .external_lex_state = 4}, [1130] = {.lex_state = 1, .external_lex_state = 4}, - [1131] = {.lex_state = 1, .external_lex_state = 4}, + [1131] = {.lex_state = 5, .external_lex_state = 6}, [1132] = {.lex_state = 1, .external_lex_state = 4}, [1133] = {.lex_state = 1, .external_lex_state = 4}, [1134] = {.lex_state = 1, .external_lex_state = 4}, @@ -15371,14 +15381,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1154] = {.lex_state = 1, .external_lex_state = 4}, [1155] = {.lex_state = 1, .external_lex_state = 4}, [1156] = {.lex_state = 1, .external_lex_state = 4}, - [1157] = {.lex_state = 5, .external_lex_state = 6}, + [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}, + [1160] = {.lex_state = 5, .external_lex_state = 6}, [1161] = {.lex_state = 1, .external_lex_state = 4}, [1162] = {.lex_state = 1, .external_lex_state = 4}, [1163] = {.lex_state = 1, .external_lex_state = 4}, - [1164] = {.lex_state = 5, .external_lex_state = 6}, + [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}, @@ -15394,11 +15404,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1177] = {.lex_state = 1, .external_lex_state = 4}, [1178] = {.lex_state = 1, .external_lex_state = 4}, [1179] = {.lex_state = 1, .external_lex_state = 4}, - [1180] = {.lex_state = 5, .external_lex_state = 6}, + [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 = 1, .external_lex_state = 4}, + [1184] = {.lex_state = 5, .external_lex_state = 6}, [1185] = {.lex_state = 1, .external_lex_state = 4}, [1186] = {.lex_state = 1, .external_lex_state = 4}, [1187] = {.lex_state = 1, .external_lex_state = 4}, @@ -15408,7 +15418,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1191] = {.lex_state = 1, .external_lex_state = 4}, [1192] = {.lex_state = 1, .external_lex_state = 4}, [1193] = {.lex_state = 1, .external_lex_state = 4}, - [1194] = {.lex_state = 5, .external_lex_state = 6}, + [1194] = {.lex_state = 1, .external_lex_state = 4}, [1195] = {.lex_state = 1, .external_lex_state = 4}, [1196] = {.lex_state = 1, .external_lex_state = 4}, [1197] = {.lex_state = 1, .external_lex_state = 4}, @@ -15416,386 +15426,386 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1199] = {.lex_state = 1, .external_lex_state = 4}, [1200] = {.lex_state = 1, .external_lex_state = 4}, [1201] = {.lex_state = 1, .external_lex_state = 4}, - [1202] = {.lex_state = 1, .external_lex_state = 3}, - [1203] = {.lex_state = 1, .external_lex_state = 3}, + [1202] = {.lex_state = 1, .external_lex_state = 4}, + [1203] = {.lex_state = 5, .external_lex_state = 6}, [1204] = {.lex_state = 5, .external_lex_state = 6}, - [1205] = {.lex_state = 1, .external_lex_state = 4}, - [1206] = {.lex_state = 1, .external_lex_state = 4}, + [1205] = {.lex_state = 5, .external_lex_state = 6}, + [1206] = {.lex_state = 5, .external_lex_state = 6}, [1207] = {.lex_state = 1, .external_lex_state = 4}, - [1208] = {.lex_state = 1, .external_lex_state = 4}, + [1208] = {.lex_state = 5, .external_lex_state = 6}, [1209] = {.lex_state = 1, .external_lex_state = 4}, - [1210] = {.lex_state = 1, .external_lex_state = 4}, + [1210] = {.lex_state = 5, .external_lex_state = 6}, [1211] = {.lex_state = 1, .external_lex_state = 4}, [1212] = {.lex_state = 1, .external_lex_state = 4}, - [1213] = {.lex_state = 1, .external_lex_state = 4}, + [1213] = {.lex_state = 5, .external_lex_state = 6}, [1214] = {.lex_state = 1, .external_lex_state = 4}, - [1215] = {.lex_state = 1, .external_lex_state = 4}, - [1216] = {.lex_state = 1, .external_lex_state = 4}, + [1215] = {.lex_state = 1, .external_lex_state = 3}, + [1216] = {.lex_state = 1, .external_lex_state = 3}, [1217] = {.lex_state = 1, .external_lex_state = 4}, [1218] = {.lex_state = 1, .external_lex_state = 4}, [1219] = {.lex_state = 1, .external_lex_state = 4}, [1220] = {.lex_state = 1, .external_lex_state = 4}, - [1221] = {.lex_state = 5, .external_lex_state = 6}, - [1222] = {.lex_state = 5, .external_lex_state = 6}, + [1221] = {.lex_state = 1, .external_lex_state = 4}, + [1222] = {.lex_state = 1, .external_lex_state = 4}, [1223] = {.lex_state = 1, .external_lex_state = 4}, [1224] = {.lex_state = 1, .external_lex_state = 4}, - [1225] = {.lex_state = 5, .external_lex_state = 6}, + [1225] = {.lex_state = 1, .external_lex_state = 4}, [1226] = {.lex_state = 1, .external_lex_state = 4}, [1227] = {.lex_state = 1, .external_lex_state = 4}, [1228] = {.lex_state = 1, .external_lex_state = 4}, [1229] = {.lex_state = 1, .external_lex_state = 4}, - [1230] = {.lex_state = 5, .external_lex_state = 6}, + [1230] = {.lex_state = 1, .external_lex_state = 4}, [1231] = {.lex_state = 5, .external_lex_state = 6}, - [1232] = {.lex_state = 5, .external_lex_state = 6}, - [1233] = {.lex_state = 5, .external_lex_state = 6}, + [1232] = {.lex_state = 1, .external_lex_state = 4}, + [1233] = {.lex_state = 1, .external_lex_state = 4}, [1234] = {.lex_state = 1, .external_lex_state = 4}, [1235] = {.lex_state = 5, .external_lex_state = 6}, - [1236] = {.lex_state = 1, .external_lex_state = 4}, - [1237] = {.lex_state = 1, .external_lex_state = 4}, + [1236] = {.lex_state = 5, .external_lex_state = 6}, + [1237] = {.lex_state = 5, .external_lex_state = 6}, [1238] = {.lex_state = 1, .external_lex_state = 4}, [1239] = {.lex_state = 1, .external_lex_state = 4}, [1240] = {.lex_state = 1, .external_lex_state = 4}, [1241] = {.lex_state = 1, .external_lex_state = 4}, - [1242] = {.lex_state = 1, .external_lex_state = 4}, + [1242] = {.lex_state = 5, .external_lex_state = 6}, [1243] = {.lex_state = 1, .external_lex_state = 4}, [1244] = {.lex_state = 1, .external_lex_state = 4}, [1245] = {.lex_state = 1, .external_lex_state = 4}, - [1246] = {.lex_state = 1, .external_lex_state = 4}, + [1246] = {.lex_state = 5, .external_lex_state = 6}, [1247] = {.lex_state = 5, .external_lex_state = 7}, [1248] = {.lex_state = 1, .external_lex_state = 4}, - [1249] = {.lex_state = 5, .external_lex_state = 7}, + [1249] = {.lex_state = 1, .external_lex_state = 4}, [1250] = {.lex_state = 1, .external_lex_state = 4}, - [1251] = {.lex_state = 1, .external_lex_state = 4}, + [1251] = {.lex_state = 5, .external_lex_state = 6}, [1252] = {.lex_state = 5, .external_lex_state = 6}, - [1253] = {.lex_state = 5, .external_lex_state = 7}, + [1253] = {.lex_state = 1, .external_lex_state = 4}, [1254] = {.lex_state = 1, .external_lex_state = 4}, [1255] = {.lex_state = 5, .external_lex_state = 7}, - [1256] = {.lex_state = 1, .external_lex_state = 4}, + [1256] = {.lex_state = 5, .external_lex_state = 6}, [1257] = {.lex_state = 5, .external_lex_state = 7}, [1258] = {.lex_state = 1, .external_lex_state = 4}, - [1259] = {.lex_state = 1, .external_lex_state = 4}, - [1260] = {.lex_state = 1, .external_lex_state = 4}, - [1261] = {.lex_state = 5, .external_lex_state = 7}, - [1262] = {.lex_state = 5, .external_lex_state = 7}, + [1259] = {.lex_state = 5, .external_lex_state = 7}, + [1260] = {.lex_state = 5, .external_lex_state = 7}, + [1261] = {.lex_state = 1, .external_lex_state = 4}, + [1262] = {.lex_state = 1, .external_lex_state = 4}, [1263] = {.lex_state = 1, .external_lex_state = 4}, [1264] = {.lex_state = 5, .external_lex_state = 7}, - [1265] = {.lex_state = 5, .external_lex_state = 7}, - [1266] = {.lex_state = 5, .external_lex_state = 7}, - [1267] = {.lex_state = 5, .external_lex_state = 6}, + [1265] = {.lex_state = 1, .external_lex_state = 4}, + [1266] = {.lex_state = 1, .external_lex_state = 4}, + [1267] = {.lex_state = 1, .external_lex_state = 4}, [1268] = {.lex_state = 5, .external_lex_state = 7}, - [1269] = {.lex_state = 5, .external_lex_state = 7}, + [1269] = {.lex_state = 1, .external_lex_state = 4}, [1270] = {.lex_state = 5, .external_lex_state = 7}, [1271] = {.lex_state = 5, .external_lex_state = 7}, [1272] = {.lex_state = 5, .external_lex_state = 7}, - [1273] = {.lex_state = 1, .external_lex_state = 4}, + [1273] = {.lex_state = 5, .external_lex_state = 7}, [1274] = {.lex_state = 5, .external_lex_state = 7}, - [1275] = {.lex_state = 1, .external_lex_state = 4}, - [1276] = {.lex_state = 1, .external_lex_state = 4}, - [1277] = {.lex_state = 5, .external_lex_state = 6}, + [1275] = {.lex_state = 5, .external_lex_state = 7}, + [1276] = {.lex_state = 5, .external_lex_state = 7}, + [1277] = {.lex_state = 5, .external_lex_state = 7}, [1278] = {.lex_state = 5, .external_lex_state = 7}, - [1279] = {.lex_state = 1, .external_lex_state = 4}, + [1279] = {.lex_state = 5, .external_lex_state = 7}, [1280] = {.lex_state = 1, .external_lex_state = 4}, [1281] = {.lex_state = 1, .external_lex_state = 4}, - [1282] = {.lex_state = 5, .external_lex_state = 6}, - [1283] = {.lex_state = 5, .external_lex_state = 6}, - [1284] = {.lex_state = 5, .external_lex_state = 6}, - [1285] = {.lex_state = 5, .external_lex_state = 7}, - [1286] = {.lex_state = 5, .external_lex_state = 7}, - [1287] = {.lex_state = 5, .external_lex_state = 6}, - [1288] = {.lex_state = 1, .external_lex_state = 4}, - [1289] = {.lex_state = 5, .external_lex_state = 6}, + [1282] = {.lex_state = 5, .external_lex_state = 7}, + [1283] = {.lex_state = 1, .external_lex_state = 4}, + [1284] = {.lex_state = 5, .external_lex_state = 7}, + [1285] = {.lex_state = 1, .external_lex_state = 4}, + [1286] = {.lex_state = 1, .external_lex_state = 4}, + [1287] = {.lex_state = 1, .external_lex_state = 4}, + [1288] = {.lex_state = 5, .external_lex_state = 6}, + [1289] = {.lex_state = 1, .external_lex_state = 4}, [1290] = {.lex_state = 5, .external_lex_state = 6}, [1291] = {.lex_state = 5, .external_lex_state = 6}, - [1292] = {.lex_state = 1, .external_lex_state = 4}, - [1293] = {.lex_state = 5, .external_lex_state = 6}, + [1292] = {.lex_state = 5, .external_lex_state = 6}, + [1293] = {.lex_state = 1, .external_lex_state = 4}, [1294] = {.lex_state = 5, .external_lex_state = 6}, - [1295] = {.lex_state = 1, .external_lex_state = 4}, - [1296] = {.lex_state = 5, .external_lex_state = 6}, - [1297] = {.lex_state = 1, .external_lex_state = 4}, + [1295] = {.lex_state = 5, .external_lex_state = 6}, + [1296] = {.lex_state = 1, .external_lex_state = 4}, + [1297] = {.lex_state = 5, .external_lex_state = 6}, [1298] = {.lex_state = 1, .external_lex_state = 4}, - [1299] = {.lex_state = 1, .external_lex_state = 4}, - [1300] = {.lex_state = 1, .external_lex_state = 4}, + [1299] = {.lex_state = 5, .external_lex_state = 6}, + [1300] = {.lex_state = 5, .external_lex_state = 6}, [1301] = {.lex_state = 1, .external_lex_state = 4}, [1302] = {.lex_state = 5, .external_lex_state = 6}, [1303] = {.lex_state = 1, .external_lex_state = 4}, - [1304] = {.lex_state = 1, .external_lex_state = 4}, - [1305] = {.lex_state = 1, .external_lex_state = 4}, - [1306] = {.lex_state = 1, .external_lex_state = 4}, - [1307] = {.lex_state = 1, .external_lex_state = 4}, - [1308] = {.lex_state = 1, .external_lex_state = 4}, + [1304] = {.lex_state = 5, .external_lex_state = 6}, + [1305] = {.lex_state = 5, .external_lex_state = 6}, + [1306] = {.lex_state = 5, .external_lex_state = 6}, + [1307] = {.lex_state = 5, .external_lex_state = 6}, + [1308] = {.lex_state = 5, .external_lex_state = 6}, [1309] = {.lex_state = 5, .external_lex_state = 6}, [1310] = {.lex_state = 5, .external_lex_state = 6}, [1311] = {.lex_state = 5, .external_lex_state = 6}, - [1312] = {.lex_state = 1, .external_lex_state = 4}, - [1313] = {.lex_state = 1, .external_lex_state = 4}, + [1312] = {.lex_state = 5, .external_lex_state = 6}, + [1313] = {.lex_state = 5, .external_lex_state = 6}, [1314] = {.lex_state = 1, .external_lex_state = 4}, [1315] = {.lex_state = 5, .external_lex_state = 6}, - [1316] = {.lex_state = 5, .external_lex_state = 6}, - [1317] = {.lex_state = 1, .external_lex_state = 3}, + [1316] = {.lex_state = 1, .external_lex_state = 4}, + [1317] = {.lex_state = 5, .external_lex_state = 6}, [1318] = {.lex_state = 5, .external_lex_state = 6}, - [1319] = {.lex_state = 1, .external_lex_state = 4}, - [1320] = {.lex_state = 1, .external_lex_state = 4}, + [1319] = {.lex_state = 5, .external_lex_state = 6}, + [1320] = {.lex_state = 5, .external_lex_state = 6}, [1321] = {.lex_state = 1, .external_lex_state = 4}, - [1322] = {.lex_state = 1, .external_lex_state = 4}, - [1323] = {.lex_state = 5, .external_lex_state = 6}, - [1324] = {.lex_state = 1, .external_lex_state = 4}, - [1325] = {.lex_state = 1, .external_lex_state = 4}, + [1322] = {.lex_state = 1, .external_lex_state = 3}, + [1323] = {.lex_state = 1, .external_lex_state = 4}, + [1324] = {.lex_state = 1, .external_lex_state = 3}, + [1325] = {.lex_state = 5, .external_lex_state = 6}, [1326] = {.lex_state = 5, .external_lex_state = 6}, - [1327] = {.lex_state = 5, .external_lex_state = 6}, - [1328] = {.lex_state = 5, .external_lex_state = 6}, - [1329] = {.lex_state = 5, .external_lex_state = 6}, - [1330] = {.lex_state = 5, .external_lex_state = 6}, - [1331] = {.lex_state = 5, .external_lex_state = 6}, - [1332] = {.lex_state = 5, .external_lex_state = 6}, - [1333] = {.lex_state = 1, .external_lex_state = 3}, - [1334] = {.lex_state = 5, .external_lex_state = 6}, - [1335] = {.lex_state = 5, .external_lex_state = 6}, - [1336] = {.lex_state = 5, .external_lex_state = 6}, + [1327] = {.lex_state = 1, .external_lex_state = 4}, + [1328] = {.lex_state = 1, .external_lex_state = 4}, + [1329] = {.lex_state = 1, .external_lex_state = 4}, + [1330] = {.lex_state = 1, .external_lex_state = 4}, + [1331] = {.lex_state = 1, .external_lex_state = 4}, + [1332] = {.lex_state = 1, .external_lex_state = 4}, + [1333] = {.lex_state = 1, .external_lex_state = 4}, + [1334] = {.lex_state = 1, .external_lex_state = 4}, + [1335] = {.lex_state = 1, .external_lex_state = 4}, + [1336] = {.lex_state = 1, .external_lex_state = 4}, [1337] = {.lex_state = 5, .external_lex_state = 6}, - [1338] = {.lex_state = 5, .external_lex_state = 6}, - [1339] = {.lex_state = 5, .external_lex_state = 6}, - [1340] = {.lex_state = 5, .external_lex_state = 6}, - [1341] = {.lex_state = 1, .external_lex_state = 4}, - [1342] = {.lex_state = 31, .external_lex_state = 2}, - [1343] = {.lex_state = 5, .external_lex_state = 6}, - [1344] = {.lex_state = 5, .external_lex_state = 6}, + [1338] = {.lex_state = 1, .external_lex_state = 4}, + [1339] = {.lex_state = 1, .external_lex_state = 4}, + [1340] = {.lex_state = 1, .external_lex_state = 4}, + [1341] = {.lex_state = 31, .external_lex_state = 2}, + [1342] = {.lex_state = 5, .external_lex_state = 7}, + [1343] = {.lex_state = 31, .external_lex_state = 2}, + [1344] = {.lex_state = 31, .external_lex_state = 2}, [1345] = {.lex_state = 31, .external_lex_state = 2}, - [1346] = {.lex_state = 5, .external_lex_state = 6}, - [1347] = {.lex_state = 5, .external_lex_state = 7}, - [1348] = {.lex_state = 5, .external_lex_state = 6}, - [1349] = {.lex_state = 1, .external_lex_state = 4}, - [1350] = {.lex_state = 5, .external_lex_state = 6}, + [1346] = {.lex_state = 31, .external_lex_state = 2}, + [1347] = {.lex_state = 31, .external_lex_state = 2}, + [1348] = {.lex_state = 31, .external_lex_state = 2}, + [1349] = {.lex_state = 5, .external_lex_state = 7}, + [1350] = {.lex_state = 31, .external_lex_state = 2}, [1351] = {.lex_state = 31, .external_lex_state = 2}, - [1352] = {.lex_state = 1, .external_lex_state = 4}, - [1353] = {.lex_state = 5, .external_lex_state = 6}, + [1352] = {.lex_state = 31, .external_lex_state = 2}, + [1353] = {.lex_state = 31, .external_lex_state = 2}, [1354] = {.lex_state = 5, .external_lex_state = 6}, - [1355] = {.lex_state = 5, .external_lex_state = 7}, - [1356] = {.lex_state = 1, .external_lex_state = 4}, - [1357] = {.lex_state = 5, .external_lex_state = 7}, - [1358] = {.lex_state = 5, .external_lex_state = 7}, + [1355] = {.lex_state = 5, .external_lex_state = 6}, + [1356] = {.lex_state = 5, .external_lex_state = 6}, + [1357] = {.lex_state = 5, .external_lex_state = 6}, + [1358] = {.lex_state = 5, .external_lex_state = 6}, [1359] = {.lex_state = 5, .external_lex_state = 7}, - [1360] = {.lex_state = 5, .external_lex_state = 7}, + [1360] = {.lex_state = 5, .external_lex_state = 6}, [1361] = {.lex_state = 5, .external_lex_state = 6}, - [1362] = {.lex_state = 1, .external_lex_state = 4}, - [1363] = {.lex_state = 5, .external_lex_state = 6}, - [1364] = {.lex_state = 5, .external_lex_state = 6}, - [1365] = {.lex_state = 31, .external_lex_state = 2}, + [1362] = {.lex_state = 5, .external_lex_state = 7}, + [1363] = {.lex_state = 5, .external_lex_state = 7}, + [1364] = {.lex_state = 1, .external_lex_state = 4}, + [1365] = {.lex_state = 1, .external_lex_state = 4}, [1366] = {.lex_state = 5, .external_lex_state = 6}, - [1367] = {.lex_state = 31, .external_lex_state = 2}, - [1368] = {.lex_state = 1, .external_lex_state = 4}, + [1367] = {.lex_state = 1, .external_lex_state = 4}, + [1368] = {.lex_state = 31, .external_lex_state = 2}, [1369] = {.lex_state = 31, .external_lex_state = 2}, [1370] = {.lex_state = 5, .external_lex_state = 7}, - [1371] = {.lex_state = 31, .external_lex_state = 2}, - [1372] = {.lex_state = 5, .external_lex_state = 6}, + [1371] = {.lex_state = 5, .external_lex_state = 7}, + [1372] = {.lex_state = 5, .external_lex_state = 7}, [1373] = {.lex_state = 5, .external_lex_state = 7}, - [1374] = {.lex_state = 1, .external_lex_state = 4}, + [1374] = {.lex_state = 31, .external_lex_state = 2}, [1375] = {.lex_state = 31, .external_lex_state = 2}, - [1376] = {.lex_state = 31, .external_lex_state = 2}, - [1377] = {.lex_state = 31, .external_lex_state = 2}, - [1378] = {.lex_state = 5, .external_lex_state = 6}, - [1379] = {.lex_state = 31, .external_lex_state = 2}, + [1376] = {.lex_state = 1, .external_lex_state = 4}, + [1377] = {.lex_state = 1, .external_lex_state = 4}, + [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 = 31, .external_lex_state = 2}, + [1382] = {.lex_state = 1, .external_lex_state = 4}, [1383] = {.lex_state = 5, .external_lex_state = 7}, - [1384] = {.lex_state = 5, .external_lex_state = 6}, + [1384] = {.lex_state = 5, .external_lex_state = 7}, [1385] = {.lex_state = 5, .external_lex_state = 7}, - [1386] = {.lex_state = 5, .external_lex_state = 7}, + [1386] = {.lex_state = 1, .external_lex_state = 4}, [1387] = {.lex_state = 5, .external_lex_state = 7}, [1388] = {.lex_state = 1, .external_lex_state = 4}, - [1389] = {.lex_state = 31, .external_lex_state = 2}, - [1390] = {.lex_state = 5, .external_lex_state = 7}, - [1391] = {.lex_state = 5, .external_lex_state = 7}, + [1389] = {.lex_state = 1, .external_lex_state = 4}, + [1390] = {.lex_state = 1, .external_lex_state = 4}, + [1391] = {.lex_state = 31, .external_lex_state = 2}, [1392] = {.lex_state = 31, .external_lex_state = 2}, - [1393] = {.lex_state = 31, .external_lex_state = 2}, + [1393] = {.lex_state = 5, .external_lex_state = 7}, [1394] = {.lex_state = 31, .external_lex_state = 2}, [1395] = {.lex_state = 31, .external_lex_state = 2}, [1396] = {.lex_state = 5, .external_lex_state = 6}, - [1397] = {.lex_state = 31, .external_lex_state = 2}, + [1397] = {.lex_state = 5, .external_lex_state = 7}, [1398] = {.lex_state = 5, .external_lex_state = 7}, [1399] = {.lex_state = 5, .external_lex_state = 7}, - [1400] = {.lex_state = 31, .external_lex_state = 2}, + [1400] = {.lex_state = 5, .external_lex_state = 6}, [1401] = {.lex_state = 5, .external_lex_state = 7}, - [1402] = {.lex_state = 5, .external_lex_state = 7}, - [1403] = {.lex_state = 31, .external_lex_state = 2}, - [1404] = {.lex_state = 5, .external_lex_state = 7}, + [1402] = {.lex_state = 5, .external_lex_state = 6}, + [1403] = {.lex_state = 5, .external_lex_state = 7}, + [1404] = {.lex_state = 5, .external_lex_state = 6}, [1405] = {.lex_state = 5, .external_lex_state = 7}, - [1406] = {.lex_state = 5, .external_lex_state = 7}, - [1407] = {.lex_state = 31, .external_lex_state = 2}, - [1408] = {.lex_state = 31, .external_lex_state = 2}, + [1406] = {.lex_state = 5, .external_lex_state = 6}, + [1407] = {.lex_state = 5, .external_lex_state = 7}, + [1408] = {.lex_state = 5, .external_lex_state = 7}, [1409] = {.lex_state = 5, .external_lex_state = 6}, [1410] = {.lex_state = 5, .external_lex_state = 6}, - [1411] = {.lex_state = 1, .external_lex_state = 4}, - [1412] = {.lex_state = 1, .external_lex_state = 4}, - [1413] = {.lex_state = 1, .external_lex_state = 4}, - [1414] = {.lex_state = 5, .external_lex_state = 6}, - [1415] = {.lex_state = 31, .external_lex_state = 2}, - [1416] = {.lex_state = 5, .external_lex_state = 7}, + [1411] = {.lex_state = 31, .external_lex_state = 2}, + [1412] = {.lex_state = 5, .external_lex_state = 7}, + [1413] = {.lex_state = 5, .external_lex_state = 6}, + [1414] = {.lex_state = 5, .external_lex_state = 7}, + [1415] = {.lex_state = 5, .external_lex_state = 6}, + [1416] = {.lex_state = 5, .external_lex_state = 6}, [1417] = {.lex_state = 31, .external_lex_state = 2}, - [1418] = {.lex_state = 5, .external_lex_state = 7}, - [1419] = {.lex_state = 5, .external_lex_state = 7}, - [1420] = {.lex_state = 5, .external_lex_state = 7}, + [1418] = {.lex_state = 31, .external_lex_state = 2}, + [1419] = {.lex_state = 31, .external_lex_state = 2}, + [1420] = {.lex_state = 31, .external_lex_state = 2}, [1421] = {.lex_state = 5, .external_lex_state = 7}, - [1422] = {.lex_state = 1, .external_lex_state = 4}, - [1423] = {.lex_state = 1, .external_lex_state = 4}, + [1422] = {.lex_state = 5, .external_lex_state = 7}, + [1423] = {.lex_state = 5, .external_lex_state = 6}, [1424] = {.lex_state = 1, .external_lex_state = 4}, [1425] = {.lex_state = 31, .external_lex_state = 2}, - [1426] = {.lex_state = 5, .external_lex_state = 7}, - [1427] = {.lex_state = 5, .external_lex_state = 7}, + [1426] = {.lex_state = 31, .external_lex_state = 2}, + [1427] = {.lex_state = 31, .external_lex_state = 2}, [1428] = {.lex_state = 31, .external_lex_state = 2}, - [1429] = {.lex_state = 5, .external_lex_state = 7}, - [1430] = {.lex_state = 31, .external_lex_state = 2}, - [1431] = {.lex_state = 5, .external_lex_state = 6}, + [1429] = {.lex_state = 5, .external_lex_state = 6}, + [1430] = {.lex_state = 5, .external_lex_state = 7}, + [1431] = {.lex_state = 31, .external_lex_state = 2}, [1432] = {.lex_state = 31, .external_lex_state = 2}, - [1433] = {.lex_state = 5, .external_lex_state = 6}, - [1434] = {.lex_state = 31, .external_lex_state = 2}, - [1435] = {.lex_state = 5, .external_lex_state = 7}, + [1433] = {.lex_state = 1, .external_lex_state = 4}, + [1434] = {.lex_state = 1, .external_lex_state = 4}, + [1435] = {.lex_state = 1, .external_lex_state = 4}, [1436] = {.lex_state = 1, .external_lex_state = 4}, - [1437] = {.lex_state = 5, .external_lex_state = 6}, - [1438] = {.lex_state = 5, .external_lex_state = 6}, + [1437] = {.lex_state = 1, .external_lex_state = 4}, + [1438] = {.lex_state = 1, .external_lex_state = 4}, [1439] = {.lex_state = 1, .external_lex_state = 4}, - [1440] = {.lex_state = 5, .external_lex_state = 7}, - [1441] = {.lex_state = 1, .external_lex_state = 4}, - [1442] = {.lex_state = 5, .external_lex_state = 7}, - [1443] = {.lex_state = 31, .external_lex_state = 2}, - [1444] = {.lex_state = 5, .external_lex_state = 6}, + [1440] = {.lex_state = 31, .external_lex_state = 2}, + [1441] = {.lex_state = 31, .external_lex_state = 2}, + [1442] = {.lex_state = 31, .external_lex_state = 2}, + [1443] = {.lex_state = 1, .external_lex_state = 4}, + [1444] = {.lex_state = 1, .external_lex_state = 4}, [1445] = {.lex_state = 1, .external_lex_state = 4}, [1446] = {.lex_state = 31, .external_lex_state = 2}, - [1447] = {.lex_state = 5, .external_lex_state = 7}, - [1448] = {.lex_state = 31, .external_lex_state = 2}, + [1447] = {.lex_state = 31, .external_lex_state = 2}, + [1448] = {.lex_state = 5, .external_lex_state = 7}, [1449] = {.lex_state = 5, .external_lex_state = 6}, - [1450] = {.lex_state = 5, .external_lex_state = 6}, - [1451] = {.lex_state = 5, .external_lex_state = 7}, + [1450] = {.lex_state = 31, .external_lex_state = 2}, + [1451] = {.lex_state = 5, .external_lex_state = 6}, [1452] = {.lex_state = 31, .external_lex_state = 2}, [1453] = {.lex_state = 5, .external_lex_state = 6}, [1454] = {.lex_state = 5, .external_lex_state = 6}, - [1455] = {.lex_state = 1, .external_lex_state = 4}, - [1456] = {.lex_state = 31, .external_lex_state = 2}, + [1455] = {.lex_state = 5, .external_lex_state = 6}, + [1456] = {.lex_state = 5, .external_lex_state = 6}, [1457] = {.lex_state = 5, .external_lex_state = 6}, - [1458] = {.lex_state = 1, .external_lex_state = 4}, - [1459] = {.lex_state = 5, .external_lex_state = 7}, - [1460] = {.lex_state = 1, .external_lex_state = 4}, + [1458] = {.lex_state = 31, .external_lex_state = 2}, + [1459] = {.lex_state = 5, .external_lex_state = 6}, + [1460] = {.lex_state = 5, .external_lex_state = 6}, [1461] = {.lex_state = 5, .external_lex_state = 7}, - [1462] = {.lex_state = 1, .external_lex_state = 4}, - [1463] = {.lex_state = 1, .external_lex_state = 4}, + [1462] = {.lex_state = 31, .external_lex_state = 2}, + [1463] = {.lex_state = 31, .external_lex_state = 2}, [1464] = {.lex_state = 31, .external_lex_state = 2}, - [1465] = {.lex_state = 1, .external_lex_state = 4}, + [1465] = {.lex_state = 5, .external_lex_state = 6}, [1466] = {.lex_state = 31, .external_lex_state = 2}, - [1467] = {.lex_state = 31, .external_lex_state = 2}, - [1468] = {.lex_state = 31, .external_lex_state = 2}, - [1469] = {.lex_state = 1, .external_lex_state = 4}, - [1470] = {.lex_state = 1, .external_lex_state = 4}, - [1471] = {.lex_state = 1, .external_lex_state = 4}, - [1472] = {.lex_state = 1, .external_lex_state = 4}, - [1473] = {.lex_state = 31, .external_lex_state = 2}, - [1474] = {.lex_state = 1, .external_lex_state = 4}, - [1475] = {.lex_state = 1, .external_lex_state = 4}, - [1476] = {.lex_state = 1, .external_lex_state = 4}, - [1477] = {.lex_state = 31, .external_lex_state = 2}, - [1478] = {.lex_state = 5, .external_lex_state = 6}, - [1479] = {.lex_state = 31, .external_lex_state = 2}, + [1467] = {.lex_state = 5, .external_lex_state = 6}, + [1468] = {.lex_state = 5, .external_lex_state = 6}, + [1469] = {.lex_state = 5, .external_lex_state = 6}, + [1470] = {.lex_state = 5, .external_lex_state = 6}, + [1471] = {.lex_state = 5, .external_lex_state = 6}, + [1472] = {.lex_state = 5, .external_lex_state = 6}, + [1473] = {.lex_state = 5, .external_lex_state = 6}, + [1474] = {.lex_state = 5, .external_lex_state = 6}, + [1475] = {.lex_state = 5, .external_lex_state = 6}, + [1476] = {.lex_state = 31, .external_lex_state = 2}, + [1477] = {.lex_state = 5, .external_lex_state = 6}, + [1478] = {.lex_state = 31, .external_lex_state = 2}, + [1479] = {.lex_state = 5, .external_lex_state = 6}, [1480] = {.lex_state = 31, .external_lex_state = 2}, - [1481] = {.lex_state = 1, .external_lex_state = 4}, - [1482] = {.lex_state = 1, .external_lex_state = 4}, - [1483] = {.lex_state = 1, .external_lex_state = 4}, - [1484] = {.lex_state = 1, .external_lex_state = 4}, - [1485] = {.lex_state = 1, .external_lex_state = 4}, - [1486] = {.lex_state = 31, .external_lex_state = 2}, - [1487] = {.lex_state = 5, .external_lex_state = 6}, - [1488] = {.lex_state = 5, .external_lex_state = 6}, - [1489] = {.lex_state = 5, .external_lex_state = 6}, - [1490] = {.lex_state = 5, .external_lex_state = 6}, - [1491] = {.lex_state = 5, .external_lex_state = 6}, - [1492] = {.lex_state = 5, .external_lex_state = 6}, + [1481] = {.lex_state = 5, .external_lex_state = 6}, + [1482] = {.lex_state = 5, .external_lex_state = 6}, + [1483] = {.lex_state = 5, .external_lex_state = 6}, + [1484] = {.lex_state = 5, .external_lex_state = 6}, + [1485] = {.lex_state = 31, .external_lex_state = 2}, + [1486] = {.lex_state = 1, .external_lex_state = 4}, + [1487] = {.lex_state = 31, .external_lex_state = 2}, + [1488] = {.lex_state = 31, .external_lex_state = 2}, + [1489] = {.lex_state = 31, .external_lex_state = 2}, + [1490] = {.lex_state = 31, .external_lex_state = 2}, + [1491] = {.lex_state = 1, .external_lex_state = 4}, + [1492] = {.lex_state = 1, .external_lex_state = 4}, [1493] = {.lex_state = 1, .external_lex_state = 4}, - [1494] = {.lex_state = 5, .external_lex_state = 6}, + [1494] = {.lex_state = 1, .external_lex_state = 4}, [1495] = {.lex_state = 31, .external_lex_state = 2}, - [1496] = {.lex_state = 1, .external_lex_state = 4}, + [1496] = {.lex_state = 5, .external_lex_state = 7}, [1497] = {.lex_state = 1, .external_lex_state = 4}, - [1498] = {.lex_state = 5, .external_lex_state = 6}, - [1499] = {.lex_state = 5, .external_lex_state = 6}, - [1500] = {.lex_state = 5, .external_lex_state = 6}, - [1501] = {.lex_state = 5, .external_lex_state = 6}, - [1502] = {.lex_state = 5, .external_lex_state = 6}, - [1503] = {.lex_state = 31, .external_lex_state = 2}, - [1504] = {.lex_state = 31, .external_lex_state = 2}, + [1498] = {.lex_state = 31, .external_lex_state = 2}, + [1499] = {.lex_state = 1, .external_lex_state = 4}, + [1500] = {.lex_state = 1, .external_lex_state = 4}, + [1501] = {.lex_state = 1, .external_lex_state = 4}, + [1502] = {.lex_state = 5, .external_lex_state = 7}, + [1503] = {.lex_state = 5, .external_lex_state = 7}, + [1504] = {.lex_state = 1, .external_lex_state = 4}, [1505] = {.lex_state = 31, .external_lex_state = 2}, - [1506] = {.lex_state = 31, .external_lex_state = 2}, + [1506] = {.lex_state = 1, .external_lex_state = 4}, [1507] = {.lex_state = 31, .external_lex_state = 2}, [1508] = {.lex_state = 1, .external_lex_state = 4}, - [1509] = {.lex_state = 5, .external_lex_state = 6}, - [1510] = {.lex_state = 5, .external_lex_state = 6}, - [1511] = {.lex_state = 31, .external_lex_state = 2}, - [1512] = {.lex_state = 5, .external_lex_state = 7}, - [1513] = {.lex_state = 31, .external_lex_state = 2}, - [1514] = {.lex_state = 31, .external_lex_state = 2}, - [1515] = {.lex_state = 31, .external_lex_state = 2}, + [1509] = {.lex_state = 1, .external_lex_state = 4}, + [1510] = {.lex_state = 1, .external_lex_state = 4}, + [1511] = {.lex_state = 1, .external_lex_state = 4}, + [1512] = {.lex_state = 1, .external_lex_state = 4}, + [1513] = {.lex_state = 5, .external_lex_state = 7}, + [1514] = {.lex_state = 5, .external_lex_state = 7}, + [1515] = {.lex_state = 1, .external_lex_state = 4}, [1516] = {.lex_state = 31, .external_lex_state = 2}, - [1517] = {.lex_state = 5, .external_lex_state = 7}, - [1518] = {.lex_state = 5, .external_lex_state = 6}, + [1517] = {.lex_state = 31, .external_lex_state = 2}, + [1518] = {.lex_state = 31, .external_lex_state = 2}, [1519] = {.lex_state = 31, .external_lex_state = 2}, - [1520] = {.lex_state = 31, .external_lex_state = 2}, - [1521] = {.lex_state = 31, .external_lex_state = 2}, - [1522] = {.lex_state = 31, .external_lex_state = 2}, + [1520] = {.lex_state = 5, .external_lex_state = 7}, + [1521] = {.lex_state = 1, .external_lex_state = 4}, + [1522] = {.lex_state = 5, .external_lex_state = 7}, [1523] = {.lex_state = 5, .external_lex_state = 7}, [1524] = {.lex_state = 31, .external_lex_state = 2}, - [1525] = {.lex_state = 31, .external_lex_state = 2}, + [1525] = {.lex_state = 5, .external_lex_state = 7}, [1526] = {.lex_state = 1, .external_lex_state = 4}, - [1527] = {.lex_state = 1, .external_lex_state = 4}, - [1528] = {.lex_state = 1, .external_lex_state = 4}, + [1527] = {.lex_state = 31, .external_lex_state = 2}, + [1528] = {.lex_state = 5, .external_lex_state = 7}, [1529] = {.lex_state = 1, .external_lex_state = 4}, - [1530] = {.lex_state = 31, .external_lex_state = 2}, - [1531] = {.lex_state = 5, .external_lex_state = 7}, + [1530] = {.lex_state = 5, .external_lex_state = 7}, + [1531] = {.lex_state = 31, .external_lex_state = 2}, [1532] = {.lex_state = 31, .external_lex_state = 2}, [1533] = {.lex_state = 1, .external_lex_state = 4}, - [1534] = {.lex_state = 5, .external_lex_state = 6}, - [1535] = {.lex_state = 5, .external_lex_state = 7}, - [1536] = {.lex_state = 5, .external_lex_state = 7}, - [1537] = {.lex_state = 31, .external_lex_state = 2}, - [1538] = {.lex_state = 5, .external_lex_state = 7}, - [1539] = {.lex_state = 1, .external_lex_state = 4}, - [1540] = {.lex_state = 4, .external_lex_state = 5}, - [1541] = {.lex_state = 5, .external_lex_state = 6}, - [1542] = {.lex_state = 5, .external_lex_state = 6}, - [1543] = {.lex_state = 5, .external_lex_state = 7}, - [1544] = {.lex_state = 1, .external_lex_state = 4}, + [1534] = {.lex_state = 5, .external_lex_state = 7}, + [1535] = {.lex_state = 31, .external_lex_state = 2}, + [1536] = {.lex_state = 1, .external_lex_state = 4}, + [1537] = {.lex_state = 5, .external_lex_state = 7}, + [1538] = {.lex_state = 1, .external_lex_state = 4}, + [1539] = {.lex_state = 5, .external_lex_state = 6}, + [1540] = {.lex_state = 5, .external_lex_state = 7}, + [1541] = {.lex_state = 1, .external_lex_state = 4}, + [1542] = {.lex_state = 5, .external_lex_state = 7}, + [1543] = {.lex_state = 31, .external_lex_state = 2}, + [1544] = {.lex_state = 5, .external_lex_state = 7}, [1545] = {.lex_state = 1, .external_lex_state = 4}, [1546] = {.lex_state = 5, .external_lex_state = 7}, [1547] = {.lex_state = 5, .external_lex_state = 7}, - [1548] = {.lex_state = 5, .external_lex_state = 6}, + [1548] = {.lex_state = 5, .external_lex_state = 7}, [1549] = {.lex_state = 5, .external_lex_state = 7}, - [1550] = {.lex_state = 1, .external_lex_state = 4}, - [1551] = {.lex_state = 4, .external_lex_state = 5}, - [1552] = {.lex_state = 1, .external_lex_state = 4}, - [1553] = {.lex_state = 5, .external_lex_state = 6}, - [1554] = {.lex_state = 5, .external_lex_state = 7}, - [1555] = {.lex_state = 5, .external_lex_state = 7}, + [1550] = {.lex_state = 5, .external_lex_state = 7}, + [1551] = {.lex_state = 5, .external_lex_state = 7}, + [1552] = {.lex_state = 5, .external_lex_state = 7}, + [1553] = {.lex_state = 5, .external_lex_state = 7}, + [1554] = {.lex_state = 5, .external_lex_state = 6}, + [1555] = {.lex_state = 5, .external_lex_state = 6}, [1556] = {.lex_state = 5, .external_lex_state = 7}, [1557] = {.lex_state = 5, .external_lex_state = 6}, - [1558] = {.lex_state = 5, .external_lex_state = 7}, - [1559] = {.lex_state = 5, .external_lex_state = 7}, + [1558] = {.lex_state = 5, .external_lex_state = 6}, + [1559] = {.lex_state = 5, .external_lex_state = 6}, [1560] = {.lex_state = 1, .external_lex_state = 4}, [1561] = {.lex_state = 1, .external_lex_state = 4}, [1562] = {.lex_state = 5, .external_lex_state = 6}, [1563] = {.lex_state = 5, .external_lex_state = 6}, [1564] = {.lex_state = 5, .external_lex_state = 6}, - [1565] = {.lex_state = 4, .external_lex_state = 5}, - [1566] = {.lex_state = 5, .external_lex_state = 7}, + [1565] = {.lex_state = 5, .external_lex_state = 6}, + [1566] = {.lex_state = 5, .external_lex_state = 6}, [1567] = {.lex_state = 5, .external_lex_state = 7}, - [1568] = {.lex_state = 5, .external_lex_state = 7}, - [1569] = {.lex_state = 5, .external_lex_state = 7}, - [1570] = {.lex_state = 5, .external_lex_state = 6}, - [1571] = {.lex_state = 5, .external_lex_state = 6}, + [1568] = {.lex_state = 1, .external_lex_state = 4}, + [1569] = {.lex_state = 1, .external_lex_state = 4}, + [1570] = {.lex_state = 1, .external_lex_state = 4}, + [1571] = {.lex_state = 1, .external_lex_state = 4}, [1572] = {.lex_state = 5, .external_lex_state = 6}, - [1573] = {.lex_state = 5, .external_lex_state = 6}, + [1573] = {.lex_state = 1, .external_lex_state = 4}, [1574] = {.lex_state = 5, .external_lex_state = 6}, - [1575] = {.lex_state = 31, .external_lex_state = 2}, - [1576] = {.lex_state = 5, .external_lex_state = 6}, - [1577] = {.lex_state = 1, .external_lex_state = 4}, + [1575] = {.lex_state = 5, .external_lex_state = 7}, + [1576] = {.lex_state = 1, .external_lex_state = 4}, + [1577] = {.lex_state = 5, .external_lex_state = 7}, [1578] = {.lex_state = 5, .external_lex_state = 6}, [1579] = {.lex_state = 5, .external_lex_state = 6}, [1580] = {.lex_state = 5, .external_lex_state = 6}, - [1581] = {.lex_state = 5, .external_lex_state = 6}, + [1581] = {.lex_state = 31, .external_lex_state = 2}, [1582] = {.lex_state = 5, .external_lex_state = 6}, [1583] = {.lex_state = 5, .external_lex_state = 6}, [1584] = {.lex_state = 5, .external_lex_state = 6}, @@ -15805,28 +15815,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1588] = {.lex_state = 5, .external_lex_state = 6}, [1589] = {.lex_state = 5, .external_lex_state = 6}, [1590] = {.lex_state = 5, .external_lex_state = 6}, - [1591] = {.lex_state = 31, .external_lex_state = 2}, - [1592] = {.lex_state = 4, .external_lex_state = 5}, - [1593] = {.lex_state = 1, .external_lex_state = 4}, + [1591] = {.lex_state = 5, .external_lex_state = 6}, + [1592] = {.lex_state = 1, .external_lex_state = 4}, + [1593] = {.lex_state = 5, .external_lex_state = 6}, [1594] = {.lex_state = 5, .external_lex_state = 6}, - [1595] = {.lex_state = 31, .external_lex_state = 2}, + [1595] = {.lex_state = 5, .external_lex_state = 6}, [1596] = {.lex_state = 5, .external_lex_state = 6}, - [1597] = {.lex_state = 5, .external_lex_state = 7}, - [1598] = {.lex_state = 5, .external_lex_state = 7}, - [1599] = {.lex_state = 5, .external_lex_state = 6}, - [1600] = {.lex_state = 5, .external_lex_state = 6}, + [1597] = {.lex_state = 5, .external_lex_state = 6}, + [1598] = {.lex_state = 5, .external_lex_state = 6}, + [1599] = {.lex_state = 4, .external_lex_state = 5}, + [1600] = {.lex_state = 4, .external_lex_state = 5}, [1601] = {.lex_state = 5, .external_lex_state = 6}, - [1602] = {.lex_state = 1, .external_lex_state = 4}, - [1603] = {.lex_state = 1, .external_lex_state = 4}, - [1604] = {.lex_state = 1, .external_lex_state = 4}, + [1602] = {.lex_state = 5, .external_lex_state = 6}, + [1603] = {.lex_state = 5, .external_lex_state = 6}, + [1604] = {.lex_state = 5, .external_lex_state = 6}, [1605] = {.lex_state = 5, .external_lex_state = 7}, - [1606] = {.lex_state = 5, .external_lex_state = 6}, - [1607] = {.lex_state = 5, .external_lex_state = 6}, - [1608] = {.lex_state = 5, .external_lex_state = 6}, - [1609] = {.lex_state = 5, .external_lex_state = 6}, + [1606] = {.lex_state = 5, .external_lex_state = 7}, + [1607] = {.lex_state = 5, .external_lex_state = 7}, + [1608] = {.lex_state = 4, .external_lex_state = 5}, + [1609] = {.lex_state = 31, .external_lex_state = 2}, [1610] = {.lex_state = 5, .external_lex_state = 6}, - [1611] = {.lex_state = 5, .external_lex_state = 6}, - [1612] = {.lex_state = 5, .external_lex_state = 7}, + [1611] = {.lex_state = 4, .external_lex_state = 5}, + [1612] = {.lex_state = 5, .external_lex_state = 6}, [1613] = {.lex_state = 31, .external_lex_state = 2}, [1614] = {.lex_state = 31, .external_lex_state = 2}, [1615] = {.lex_state = 31, .external_lex_state = 2}, @@ -15834,12 +15844,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1617] = {.lex_state = 31, .external_lex_state = 2}, [1618] = {.lex_state = 31, .external_lex_state = 2}, [1619] = {.lex_state = 31, .external_lex_state = 2}, - [1620] = {.lex_state = 5, .external_lex_state = 7}, + [1620] = {.lex_state = 31, .external_lex_state = 2}, [1621] = {.lex_state = 31, .external_lex_state = 2}, [1622] = {.lex_state = 31, .external_lex_state = 2}, [1623] = {.lex_state = 31, .external_lex_state = 2}, [1624] = {.lex_state = 31, .external_lex_state = 2}, - [1625] = {.lex_state = 31, .external_lex_state = 2}, + [1625] = {.lex_state = 5, .external_lex_state = 7}, [1626] = {.lex_state = 31, .external_lex_state = 2}, [1627] = {.lex_state = 31, .external_lex_state = 2}, [1628] = {.lex_state = 31, .external_lex_state = 2}, @@ -15864,12 +15874,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1647] = {.lex_state = 31, .external_lex_state = 2}, [1648] = {.lex_state = 31, .external_lex_state = 2}, [1649] = {.lex_state = 31, .external_lex_state = 2}, - [1650] = {.lex_state = 31, .external_lex_state = 2}, + [1650] = {.lex_state = 5, .external_lex_state = 7}, [1651] = {.lex_state = 31, .external_lex_state = 2}, [1652] = {.lex_state = 31, .external_lex_state = 2}, [1653] = {.lex_state = 31, .external_lex_state = 2}, [1654] = {.lex_state = 31, .external_lex_state = 2}, - [1655] = {.lex_state = 31, .external_lex_state = 2}, + [1655] = {.lex_state = 1, .external_lex_state = 4}, [1656] = {.lex_state = 31, .external_lex_state = 2}, [1657] = {.lex_state = 31, .external_lex_state = 2}, [1658] = {.lex_state = 31, .external_lex_state = 2}, @@ -15916,7 +15926,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1699] = {.lex_state = 31, .external_lex_state = 2}, [1700] = {.lex_state = 31, .external_lex_state = 2}, [1701] = {.lex_state = 31, .external_lex_state = 2}, - [1702] = {.lex_state = 31, .external_lex_state = 2}, + [1702] = {.lex_state = 5, .external_lex_state = 6}, [1703] = {.lex_state = 31, .external_lex_state = 2}, [1704] = {.lex_state = 31, .external_lex_state = 2}, [1705] = {.lex_state = 31, .external_lex_state = 2}, @@ -15927,7 +15937,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1710] = {.lex_state = 31, .external_lex_state = 2}, [1711] = {.lex_state = 31, .external_lex_state = 2}, [1712] = {.lex_state = 31, .external_lex_state = 2}, - [1713] = {.lex_state = 31, .external_lex_state = 2}, + [1713] = {.lex_state = 1, .external_lex_state = 4}, [1714] = {.lex_state = 31, .external_lex_state = 2}, [1715] = {.lex_state = 31, .external_lex_state = 2}, [1716] = {.lex_state = 31, .external_lex_state = 2}, @@ -15940,17 +15950,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 31, .external_lex_state = 2}, [1724] = {.lex_state = 31, .external_lex_state = 2}, [1725] = {.lex_state = 31, .external_lex_state = 2}, - [1726] = {.lex_state = 5, .external_lex_state = 7}, - [1727] = {.lex_state = 4, .external_lex_state = 5}, + [1726] = {.lex_state = 31, .external_lex_state = 2}, + [1727] = {.lex_state = 31, .external_lex_state = 2}, [1728] = {.lex_state = 31, .external_lex_state = 2}, [1729] = {.lex_state = 31, .external_lex_state = 2}, - [1730] = {.lex_state = 31, .external_lex_state = 2}, + [1730] = {.lex_state = 4, .external_lex_state = 5}, [1731] = {.lex_state = 31, .external_lex_state = 2}, [1732] = {.lex_state = 31, .external_lex_state = 2}, [1733] = {.lex_state = 31, .external_lex_state = 2}, [1734] = {.lex_state = 31, .external_lex_state = 2}, [1735] = {.lex_state = 31, .external_lex_state = 2}, - [1736] = {.lex_state = 31, .external_lex_state = 2}, + [1736] = {.lex_state = 5, .external_lex_state = 7}, [1737] = {.lex_state = 31, .external_lex_state = 2}, [1738] = {.lex_state = 31, .external_lex_state = 2}, [1739] = {.lex_state = 31, .external_lex_state = 2}, @@ -15958,7 +15968,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 31, .external_lex_state = 2}, [1742] = {.lex_state = 31, .external_lex_state = 2}, [1743] = {.lex_state = 31, .external_lex_state = 2}, - [1744] = {.lex_state = 31, .external_lex_state = 2}, + [1744] = {.lex_state = 5, .external_lex_state = 7}, [1745] = {.lex_state = 31, .external_lex_state = 2}, [1746] = {.lex_state = 31, .external_lex_state = 2}, [1747] = {.lex_state = 31, .external_lex_state = 2}, @@ -15975,34 +15985,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1758] = {.lex_state = 31, .external_lex_state = 2}, [1759] = {.lex_state = 31, .external_lex_state = 2}, [1760] = {.lex_state = 31, .external_lex_state = 2}, - [1761] = {.lex_state = 5, .external_lex_state = 7}, + [1761] = {.lex_state = 31, .external_lex_state = 2}, [1762] = {.lex_state = 31, .external_lex_state = 2}, [1763] = {.lex_state = 31, .external_lex_state = 2}, [1764] = {.lex_state = 31, .external_lex_state = 2}, - [1765] = {.lex_state = 31, .external_lex_state = 2}, - [1766] = {.lex_state = 5, .external_lex_state = 7}, + [1765] = {.lex_state = 5, .external_lex_state = 7}, + [1766] = {.lex_state = 31, .external_lex_state = 2}, [1767] = {.lex_state = 31, .external_lex_state = 2}, - [1768] = {.lex_state = 5, .external_lex_state = 7}, + [1768] = {.lex_state = 31, .external_lex_state = 2}, [1769] = {.lex_state = 31, .external_lex_state = 2}, [1770] = {.lex_state = 31, .external_lex_state = 2}, [1771] = {.lex_state = 31, .external_lex_state = 2}, - [1772] = {.lex_state = 31, .external_lex_state = 2}, + [1772] = {.lex_state = 5, .external_lex_state = 7}, [1773] = {.lex_state = 31, .external_lex_state = 2}, [1774] = {.lex_state = 31, .external_lex_state = 2}, [1775] = {.lex_state = 31, .external_lex_state = 2}, - [1776] = {.lex_state = 5, .external_lex_state = 7}, + [1776] = {.lex_state = 31, .external_lex_state = 2}, [1777] = {.lex_state = 31, .external_lex_state = 2}, [1778] = {.lex_state = 31, .external_lex_state = 2}, [1779] = {.lex_state = 31, .external_lex_state = 2}, [1780] = {.lex_state = 31, .external_lex_state = 2}, - [1781] = {.lex_state = 4, .external_lex_state = 5}, - [1782] = {.lex_state = 31, .external_lex_state = 2}, + [1781] = {.lex_state = 31, .external_lex_state = 2}, + [1782] = {.lex_state = 5, .external_lex_state = 6}, [1783] = {.lex_state = 31, .external_lex_state = 2}, - [1784] = {.lex_state = 31, .external_lex_state = 2}, + [1784] = {.lex_state = 4, .external_lex_state = 5}, [1785] = {.lex_state = 31, .external_lex_state = 2}, [1786] = {.lex_state = 31, .external_lex_state = 2}, - [1787] = {.lex_state = 31, .external_lex_state = 2}, - [1788] = {.lex_state = 31, .external_lex_state = 2}, + [1787] = {.lex_state = 5, .external_lex_state = 6}, + [1788] = {.lex_state = 5, .external_lex_state = 6}, [1789] = {.lex_state = 31, .external_lex_state = 2}, [1790] = {.lex_state = 31, .external_lex_state = 2}, [1791] = {.lex_state = 31, .external_lex_state = 2}, @@ -16014,9 +16024,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1797] = {.lex_state = 31, .external_lex_state = 2}, [1798] = {.lex_state = 31, .external_lex_state = 2}, [1799] = {.lex_state = 31, .external_lex_state = 2}, - [1800] = {.lex_state = 31, .external_lex_state = 2}, + [1800] = {.lex_state = 5, .external_lex_state = 7}, [1801] = {.lex_state = 31, .external_lex_state = 2}, - [1802] = {.lex_state = 31, .external_lex_state = 2}, + [1802] = {.lex_state = 5, .external_lex_state = 6}, [1803] = {.lex_state = 31, .external_lex_state = 2}, [1804] = {.lex_state = 31, .external_lex_state = 2}, [1805] = {.lex_state = 31, .external_lex_state = 2}, @@ -16043,7 +16053,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1826] = {.lex_state = 31, .external_lex_state = 2}, [1827] = {.lex_state = 31, .external_lex_state = 2}, [1828] = {.lex_state = 31, .external_lex_state = 2}, - [1829] = {.lex_state = 31, .external_lex_state = 2}, + [1829] = {.lex_state = 5, .external_lex_state = 7}, [1830] = {.lex_state = 31, .external_lex_state = 2}, [1831] = {.lex_state = 31, .external_lex_state = 2}, [1832] = {.lex_state = 31, .external_lex_state = 2}, @@ -16068,10 +16078,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1851] = {.lex_state = 31, .external_lex_state = 2}, [1852] = {.lex_state = 31, .external_lex_state = 2}, [1853] = {.lex_state = 31, .external_lex_state = 2}, - [1854] = {.lex_state = 4, .external_lex_state = 5}, + [1854] = {.lex_state = 31, .external_lex_state = 2}, [1855] = {.lex_state = 31, .external_lex_state = 2}, [1856] = {.lex_state = 31, .external_lex_state = 2}, - [1857] = {.lex_state = 31, .external_lex_state = 2}, + [1857] = {.lex_state = 4, .external_lex_state = 5}, [1858] = {.lex_state = 31, .external_lex_state = 2}, [1859] = {.lex_state = 31, .external_lex_state = 2}, [1860] = {.lex_state = 31, .external_lex_state = 2}, @@ -16092,7 +16102,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1875] = {.lex_state = 31, .external_lex_state = 2}, [1876] = {.lex_state = 31, .external_lex_state = 2}, [1877] = {.lex_state = 31, .external_lex_state = 2}, - [1878] = {.lex_state = 5, .external_lex_state = 7}, + [1878] = {.lex_state = 31, .external_lex_state = 2}, [1879] = {.lex_state = 31, .external_lex_state = 2}, [1880] = {.lex_state = 31, .external_lex_state = 2}, [1881] = {.lex_state = 31, .external_lex_state = 2}, @@ -16100,7 +16110,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1883] = {.lex_state = 31, .external_lex_state = 2}, [1884] = {.lex_state = 31, .external_lex_state = 2}, [1885] = {.lex_state = 31, .external_lex_state = 2}, - [1886] = {.lex_state = 5, .external_lex_state = 7}, + [1886] = {.lex_state = 31, .external_lex_state = 2}, [1887] = {.lex_state = 31, .external_lex_state = 2}, [1888] = {.lex_state = 31, .external_lex_state = 2}, [1889] = {.lex_state = 31, .external_lex_state = 2}, @@ -16108,7 +16118,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1891] = {.lex_state = 31, .external_lex_state = 2}, [1892] = {.lex_state = 31, .external_lex_state = 2}, [1893] = {.lex_state = 31, .external_lex_state = 2}, - [1894] = {.lex_state = 5, .external_lex_state = 7}, + [1894] = {.lex_state = 31, .external_lex_state = 2}, [1895] = {.lex_state = 31, .external_lex_state = 2}, [1896] = {.lex_state = 31, .external_lex_state = 2}, [1897] = {.lex_state = 31, .external_lex_state = 2}, @@ -16124,17 +16134,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1907] = {.lex_state = 31, .external_lex_state = 2}, [1908] = {.lex_state = 31, .external_lex_state = 2}, [1909] = {.lex_state = 31, .external_lex_state = 2}, - [1910] = {.lex_state = 4, .external_lex_state = 5}, + [1910] = {.lex_state = 31, .external_lex_state = 2}, [1911] = {.lex_state = 31, .external_lex_state = 2}, [1912] = {.lex_state = 31, .external_lex_state = 2}, - [1913] = {.lex_state = 31, .external_lex_state = 2}, + [1913] = {.lex_state = 4, .external_lex_state = 5}, [1914] = {.lex_state = 31, .external_lex_state = 2}, [1915] = {.lex_state = 31, .external_lex_state = 2}, - [1916] = {.lex_state = 31, .external_lex_state = 2}, + [1916] = {.lex_state = 5, .external_lex_state = 7}, [1917] = {.lex_state = 31, .external_lex_state = 2}, [1918] = {.lex_state = 31, .external_lex_state = 2}, [1919] = {.lex_state = 31, .external_lex_state = 2}, - [1920] = {.lex_state = 31, .external_lex_state = 2}, + [1920] = {.lex_state = 5, .external_lex_state = 7}, [1921] = {.lex_state = 31, .external_lex_state = 2}, [1922] = {.lex_state = 31, .external_lex_state = 2}, [1923] = {.lex_state = 31, .external_lex_state = 2}, @@ -16143,7 +16153,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1926] = {.lex_state = 31, .external_lex_state = 2}, [1927] = {.lex_state = 31, .external_lex_state = 2}, [1928] = {.lex_state = 31, .external_lex_state = 2}, - [1929] = {.lex_state = 31, .external_lex_state = 2}, + [1929] = {.lex_state = 5, .external_lex_state = 7}, [1930] = {.lex_state = 31, .external_lex_state = 2}, [1931] = {.lex_state = 31, .external_lex_state = 2}, [1932] = {.lex_state = 31, .external_lex_state = 2}, @@ -16159,8 +16169,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1942] = {.lex_state = 31, .external_lex_state = 2}, [1943] = {.lex_state = 31, .external_lex_state = 2}, [1944] = {.lex_state = 31, .external_lex_state = 2}, - [1945] = {.lex_state = 31, .external_lex_state = 2}, - [1946] = {.lex_state = 31, .external_lex_state = 2}, + [1945] = {.lex_state = 5, .external_lex_state = 7}, + [1946] = {.lex_state = 5, .external_lex_state = 7}, [1947] = {.lex_state = 31, .external_lex_state = 2}, [1948] = {.lex_state = 31, .external_lex_state = 2}, [1949] = {.lex_state = 31, .external_lex_state = 2}, @@ -16170,7 +16180,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1953] = {.lex_state = 31, .external_lex_state = 2}, [1954] = {.lex_state = 31, .external_lex_state = 2}, [1955] = {.lex_state = 31, .external_lex_state = 2}, - [1956] = {.lex_state = 31, .external_lex_state = 2}, + [1956] = {.lex_state = 5, .external_lex_state = 6}, [1957] = {.lex_state = 31, .external_lex_state = 2}, [1958] = {.lex_state = 31, .external_lex_state = 2}, [1959] = {.lex_state = 31, .external_lex_state = 2}, @@ -16178,8 +16188,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1961] = {.lex_state = 31, .external_lex_state = 2}, [1962] = {.lex_state = 31, .external_lex_state = 2}, [1963] = {.lex_state = 31, .external_lex_state = 2}, - [1964] = {.lex_state = 31, .external_lex_state = 2}, - [1965] = {.lex_state = 31, .external_lex_state = 2}, + [1964] = {.lex_state = 1, .external_lex_state = 3}, + [1965] = {.lex_state = 1, .external_lex_state = 3}, [1966] = {.lex_state = 31, .external_lex_state = 2}, [1967] = {.lex_state = 31, .external_lex_state = 2}, [1968] = {.lex_state = 31, .external_lex_state = 2}, @@ -16199,19 +16209,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1982] = {.lex_state = 31, .external_lex_state = 2}, [1983] = {.lex_state = 31, .external_lex_state = 2}, [1984] = {.lex_state = 31, .external_lex_state = 2}, - [1985] = {.lex_state = 4, .external_lex_state = 5}, + [1985] = {.lex_state = 31, .external_lex_state = 2}, [1986] = {.lex_state = 31, .external_lex_state = 2}, [1987] = {.lex_state = 31, .external_lex_state = 2}, - [1988] = {.lex_state = 31, .external_lex_state = 2}, + [1988] = {.lex_state = 4, .external_lex_state = 5}, [1989] = {.lex_state = 31, .external_lex_state = 2}, [1990] = {.lex_state = 31, .external_lex_state = 2}, [1991] = {.lex_state = 31, .external_lex_state = 2}, [1992] = {.lex_state = 31, .external_lex_state = 2}, [1993] = {.lex_state = 31, .external_lex_state = 2}, - [1994] = {.lex_state = 31, .external_lex_state = 2}, + [1994] = {.lex_state = 5, .external_lex_state = 7}, [1995] = {.lex_state = 31, .external_lex_state = 2}, [1996] = {.lex_state = 31, .external_lex_state = 2}, - [1997] = {.lex_state = 31, .external_lex_state = 2}, + [1997] = {.lex_state = 5, .external_lex_state = 7}, [1998] = {.lex_state = 31, .external_lex_state = 2}, [1999] = {.lex_state = 31, .external_lex_state = 2}, [2000] = {.lex_state = 31, .external_lex_state = 2}, @@ -16222,15 +16232,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2005] = {.lex_state = 31, .external_lex_state = 2}, [2006] = {.lex_state = 31, .external_lex_state = 2}, [2007] = {.lex_state = 31, .external_lex_state = 2}, - [2008] = {.lex_state = 31, .external_lex_state = 2}, + [2008] = {.lex_state = 5, .external_lex_state = 7}, [2009] = {.lex_state = 31, .external_lex_state = 2}, - [2010] = {.lex_state = 31, .external_lex_state = 2}, + [2010] = {.lex_state = 5, .external_lex_state = 7}, [2011] = {.lex_state = 31, .external_lex_state = 2}, [2012] = {.lex_state = 31, .external_lex_state = 2}, [2013] = {.lex_state = 31, .external_lex_state = 2}, [2014] = {.lex_state = 31, .external_lex_state = 2}, [2015] = {.lex_state = 31, .external_lex_state = 2}, - [2016] = {.lex_state = 31, .external_lex_state = 2}, + [2016] = {.lex_state = 1, .external_lex_state = 4}, [2017] = {.lex_state = 31, .external_lex_state = 2}, [2018] = {.lex_state = 31, .external_lex_state = 2}, [2019] = {.lex_state = 31, .external_lex_state = 2}, @@ -16250,20 +16260,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2033] = {.lex_state = 31, .external_lex_state = 2}, [2034] = {.lex_state = 31, .external_lex_state = 2}, [2035] = {.lex_state = 31, .external_lex_state = 2}, - [2036] = {.lex_state = 5, .external_lex_state = 7}, + [2036] = {.lex_state = 31, .external_lex_state = 2}, [2037] = {.lex_state = 31, .external_lex_state = 2}, [2038] = {.lex_state = 31, .external_lex_state = 2}, [2039] = {.lex_state = 31, .external_lex_state = 2}, [2040] = {.lex_state = 31, .external_lex_state = 2}, - [2041] = {.lex_state = 1, .external_lex_state = 3}, - [2042] = {.lex_state = 1, .external_lex_state = 3}, + [2041] = {.lex_state = 31, .external_lex_state = 2}, + [2042] = {.lex_state = 31, .external_lex_state = 2}, [2043] = {.lex_state = 31, .external_lex_state = 2}, [2044] = {.lex_state = 31, .external_lex_state = 2}, [2045] = {.lex_state = 31, .external_lex_state = 2}, [2046] = {.lex_state = 31, .external_lex_state = 2}, [2047] = {.lex_state = 31, .external_lex_state = 2}, [2048] = {.lex_state = 31, .external_lex_state = 2}, - [2049] = {.lex_state = 5, .external_lex_state = 7}, + [2049] = {.lex_state = 31, .external_lex_state = 2}, [2050] = {.lex_state = 31, .external_lex_state = 2}, [2051] = {.lex_state = 31, .external_lex_state = 2}, [2052] = {.lex_state = 31, .external_lex_state = 2}, @@ -16272,7 +16282,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2055] = {.lex_state = 31, .external_lex_state = 2}, [2056] = {.lex_state = 31, .external_lex_state = 2}, [2057] = {.lex_state = 31, .external_lex_state = 2}, - [2058] = {.lex_state = 5, .external_lex_state = 7}, + [2058] = {.lex_state = 31, .external_lex_state = 2}, [2059] = {.lex_state = 31, .external_lex_state = 2}, [2060] = {.lex_state = 31, .external_lex_state = 2}, [2061] = {.lex_state = 31, .external_lex_state = 2}, @@ -16282,32 +16292,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2065] = {.lex_state = 5, .external_lex_state = 7}, [2066] = {.lex_state = 31, .external_lex_state = 2}, [2067] = {.lex_state = 31, .external_lex_state = 2}, - [2068] = {.lex_state = 1, .external_lex_state = 4}, + [2068] = {.lex_state = 31, .external_lex_state = 2}, [2069] = {.lex_state = 31, .external_lex_state = 2}, [2070] = {.lex_state = 31, .external_lex_state = 2}, - [2071] = {.lex_state = 5, .external_lex_state = 7}, - [2072] = {.lex_state = 5, .external_lex_state = 7}, + [2071] = {.lex_state = 31, .external_lex_state = 2}, + [2072] = {.lex_state = 31, .external_lex_state = 2}, [2073] = {.lex_state = 31, .external_lex_state = 2}, [2074] = {.lex_state = 31, .external_lex_state = 2}, - [2075] = {.lex_state = 31, .external_lex_state = 2}, - [2076] = {.lex_state = 5, .external_lex_state = 7}, + [2075] = {.lex_state = 1, .external_lex_state = 4}, + [2076] = {.lex_state = 31, .external_lex_state = 2}, [2077] = {.lex_state = 31, .external_lex_state = 2}, [2078] = {.lex_state = 31, .external_lex_state = 2}, - [2079] = {.lex_state = 5, .external_lex_state = 7}, + [2079] = {.lex_state = 31, .external_lex_state = 2}, [2080] = {.lex_state = 31, .external_lex_state = 2}, [2081] = {.lex_state = 31, .external_lex_state = 2}, - [2082] = {.lex_state = 5, .external_lex_state = 6}, - [2083] = {.lex_state = 5, .external_lex_state = 7}, + [2082] = {.lex_state = 31, .external_lex_state = 2}, + [2083] = {.lex_state = 31, .external_lex_state = 2}, [2084] = {.lex_state = 31, .external_lex_state = 2}, - [2085] = {.lex_state = 31, .external_lex_state = 2}, + [2085] = {.lex_state = 5, .external_lex_state = 6}, [2086] = {.lex_state = 31, .external_lex_state = 2}, [2087] = {.lex_state = 31, .external_lex_state = 2}, [2088] = {.lex_state = 31, .external_lex_state = 2}, [2089] = {.lex_state = 1, .external_lex_state = 4}, - [2090] = {.lex_state = 1, .external_lex_state = 4}, + [2090] = {.lex_state = 31, .external_lex_state = 2}, [2091] = {.lex_state = 31, .external_lex_state = 2}, - [2092] = {.lex_state = 31, .external_lex_state = 2}, - [2093] = {.lex_state = 31, .external_lex_state = 2}, + [2092] = {.lex_state = 1, .external_lex_state = 4}, + [2093] = {.lex_state = 1, .external_lex_state = 4}, [2094] = {.lex_state = 31, .external_lex_state = 2}, [2095] = {.lex_state = 31, .external_lex_state = 2}, [2096] = {.lex_state = 31, .external_lex_state = 2}, @@ -16344,10 +16354,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2127] = {.lex_state = 31, .external_lex_state = 2}, [2128] = {.lex_state = 31, .external_lex_state = 2}, [2129] = {.lex_state = 31, .external_lex_state = 2}, - [2130] = {.lex_state = 5, .external_lex_state = 6}, + [2130] = {.lex_state = 31, .external_lex_state = 2}, [2131] = {.lex_state = 31, .external_lex_state = 2}, [2132] = {.lex_state = 31, .external_lex_state = 2}, - [2133] = {.lex_state = 31, .external_lex_state = 2}, + [2133] = {.lex_state = 5, .external_lex_state = 6}, [2134] = {.lex_state = 31, .external_lex_state = 2}, [2135] = {.lex_state = 31, .external_lex_state = 2}, [2136] = {.lex_state = 31, .external_lex_state = 2}, @@ -16358,7 +16368,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2141] = {.lex_state = 31, .external_lex_state = 2}, [2142] = {.lex_state = 31, .external_lex_state = 2}, [2143] = {.lex_state = 31, .external_lex_state = 2}, - [2144] = {.lex_state = 1, .external_lex_state = 4}, + [2144] = {.lex_state = 31, .external_lex_state = 2}, [2145] = {.lex_state = 31, .external_lex_state = 2}, [2146] = {.lex_state = 31, .external_lex_state = 2}, [2147] = {.lex_state = 31, .external_lex_state = 2}, @@ -16372,33 +16382,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2155] = {.lex_state = 31, .external_lex_state = 2}, [2156] = {.lex_state = 31, .external_lex_state = 2}, [2157] = {.lex_state = 31, .external_lex_state = 2}, - [2158] = {.lex_state = 5, .external_lex_state = 6}, + [2158] = {.lex_state = 31, .external_lex_state = 2}, [2159] = {.lex_state = 31, .external_lex_state = 2}, - [2160] = {.lex_state = 5, .external_lex_state = 6}, - [2161] = {.lex_state = 5, .external_lex_state = 6}, + [2160] = {.lex_state = 31, .external_lex_state = 2}, + [2161] = {.lex_state = 31, .external_lex_state = 2}, [2162] = {.lex_state = 31, .external_lex_state = 2}, [2163] = {.lex_state = 31, .external_lex_state = 2}, [2164] = {.lex_state = 31, .external_lex_state = 2}, - [2165] = {.lex_state = 1, .external_lex_state = 4}, - [2166] = {.lex_state = 1, .external_lex_state = 4}, - [2167] = {.lex_state = 1, .external_lex_state = 4}, + [2165] = {.lex_state = 31, .external_lex_state = 2}, + [2166] = {.lex_state = 31, .external_lex_state = 2}, + [2167] = {.lex_state = 31, .external_lex_state = 2}, [2168] = {.lex_state = 1, .external_lex_state = 4}, - [2169] = {.lex_state = 5, .external_lex_state = 6}, - [2170] = {.lex_state = 31, .external_lex_state = 2}, + [2169] = {.lex_state = 1, .external_lex_state = 4}, + [2170] = {.lex_state = 1, .external_lex_state = 4}, [2171] = {.lex_state = 1, .external_lex_state = 4}, - [2172] = {.lex_state = 1, .external_lex_state = 4}, - [2173] = {.lex_state = 1, .external_lex_state = 4}, - [2174] = {.lex_state = 31, .external_lex_state = 2}, + [2172] = {.lex_state = 31, .external_lex_state = 2}, + [2173] = {.lex_state = 31, .external_lex_state = 2}, + [2174] = {.lex_state = 1, .external_lex_state = 4}, [2175] = {.lex_state = 1, .external_lex_state = 4}, [2176] = {.lex_state = 1, .external_lex_state = 4}, [2177] = {.lex_state = 31, .external_lex_state = 2}, - [2178] = {.lex_state = 31, .external_lex_state = 2}, + [2178] = {.lex_state = 1, .external_lex_state = 4}, [2179] = {.lex_state = 1, .external_lex_state = 4}, [2180] = {.lex_state = 31, .external_lex_state = 2}, - [2181] = {.lex_state = 5, .external_lex_state = 6}, - [2182] = {.lex_state = 31, .external_lex_state = 2}, + [2181] = {.lex_state = 31, .external_lex_state = 2}, + [2182] = {.lex_state = 1, .external_lex_state = 4}, [2183] = {.lex_state = 31, .external_lex_state = 2}, - [2184] = {.lex_state = 31, .external_lex_state = 2}, + [2184] = {.lex_state = 5, .external_lex_state = 6}, [2185] = {.lex_state = 31, .external_lex_state = 2}, [2186] = {.lex_state = 31, .external_lex_state = 2}, [2187] = {.lex_state = 31, .external_lex_state = 2}, @@ -16409,14 +16419,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2192] = {.lex_state = 31, .external_lex_state = 2}, [2193] = {.lex_state = 31, .external_lex_state = 2}, [2194] = {.lex_state = 31, .external_lex_state = 2}, - [2195] = {.lex_state = 31, .external_lex_state = 2}, + [2195] = {.lex_state = 5, .external_lex_state = 7}, [2196] = {.lex_state = 31, .external_lex_state = 2}, [2197] = {.lex_state = 31, .external_lex_state = 2}, [2198] = {.lex_state = 31, .external_lex_state = 2}, [2199] = {.lex_state = 31, .external_lex_state = 2}, [2200] = {.lex_state = 31, .external_lex_state = 2}, [2201] = {.lex_state = 31, .external_lex_state = 2}, - [2202] = {.lex_state = 1, .external_lex_state = 4}, + [2202] = {.lex_state = 31, .external_lex_state = 2}, [2203] = {.lex_state = 31, .external_lex_state = 2}, [2204] = {.lex_state = 31, .external_lex_state = 2}, [2205] = {.lex_state = 31, .external_lex_state = 2}, @@ -16437,7 +16447,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2220] = {.lex_state = 31, .external_lex_state = 2}, [2221] = {.lex_state = 31, .external_lex_state = 2}, [2222] = {.lex_state = 31, .external_lex_state = 2}, - [2223] = {.lex_state = 5, .external_lex_state = 7}, + [2223] = {.lex_state = 31, .external_lex_state = 2}, [2224] = {.lex_state = 31, .external_lex_state = 2}, [2225] = {.lex_state = 31, .external_lex_state = 2}, [2226] = {.lex_state = 31, .external_lex_state = 2}, @@ -16455,10 +16465,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2238] = {.lex_state = 31, .external_lex_state = 2}, [2239] = {.lex_state = 31, .external_lex_state = 2}, [2240] = {.lex_state = 31, .external_lex_state = 2}, - [2241] = {.lex_state = 5, .external_lex_state = 6}, + [2241] = {.lex_state = 31, .external_lex_state = 2}, [2242] = {.lex_state = 31, .external_lex_state = 2}, [2243] = {.lex_state = 31, .external_lex_state = 2}, - [2244] = {.lex_state = 31, .external_lex_state = 2}, + [2244] = {.lex_state = 5, .external_lex_state = 6}, [2245] = {.lex_state = 31, .external_lex_state = 2}, [2246] = {.lex_state = 31, .external_lex_state = 2}, [2247] = {.lex_state = 31, .external_lex_state = 2}, @@ -16467,7 +16477,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2250] = {.lex_state = 31, .external_lex_state = 2}, [2251] = {.lex_state = 31, .external_lex_state = 2}, [2252] = {.lex_state = 31, .external_lex_state = 2}, - [2253] = {.lex_state = 1, .external_lex_state = 4}, + [2253] = {.lex_state = 31, .external_lex_state = 2}, [2254] = {.lex_state = 31, .external_lex_state = 2}, [2255] = {.lex_state = 31, .external_lex_state = 2}, [2256] = {.lex_state = 31, .external_lex_state = 2}, @@ -16540,7 +16550,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2323] = {.lex_state = 31, .external_lex_state = 2}, [2324] = {.lex_state = 31, .external_lex_state = 2}, [2325] = {.lex_state = 31, .external_lex_state = 2}, - [2326] = {.lex_state = 5, .external_lex_state = 7}, + [2326] = {.lex_state = 31, .external_lex_state = 2}, [2327] = {.lex_state = 31, .external_lex_state = 2}, [2328] = {.lex_state = 31, .external_lex_state = 2}, [2329] = {.lex_state = 31, .external_lex_state = 2}, @@ -16563,7 +16573,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2346] = {.lex_state = 31, .external_lex_state = 2}, [2347] = {.lex_state = 31, .external_lex_state = 2}, [2348] = {.lex_state = 31, .external_lex_state = 2}, - [2349] = {.lex_state = 31, .external_lex_state = 2}, + [2349] = {.lex_state = 5, .external_lex_state = 7}, [2350] = {.lex_state = 31, .external_lex_state = 2}, [2351] = {.lex_state = 31, .external_lex_state = 2}, [2352] = {.lex_state = 31, .external_lex_state = 2}, @@ -16578,102 +16588,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2361] = {.lex_state = 31, .external_lex_state = 2}, [2362] = {.lex_state = 31, .external_lex_state = 2}, [2363] = {.lex_state = 31, .external_lex_state = 2}, - [2364] = {.lex_state = 1, .external_lex_state = 4}, - [2365] = {.lex_state = 5, .external_lex_state = 6}, - [2366] = {.lex_state = 5, .external_lex_state = 7}, - [2367] = {.lex_state = 5, .external_lex_state = 7}, - [2368] = {.lex_state = 5, .external_lex_state = 6}, - [2369] = {.lex_state = 1, .external_lex_state = 4}, + [2364] = {.lex_state = 31, .external_lex_state = 2}, + [2365] = {.lex_state = 1, .external_lex_state = 4}, + [2366] = {.lex_state = 31, .external_lex_state = 2}, + [2367] = {.lex_state = 1, .external_lex_state = 4}, + [2368] = {.lex_state = 31, .external_lex_state = 2}, + [2369] = {.lex_state = 5, .external_lex_state = 6}, [2370] = {.lex_state = 5, .external_lex_state = 6}, - [2371] = {.lex_state = 1, .external_lex_state = 4}, - [2372] = {.lex_state = 1, .external_lex_state = 4}, - [2373] = {.lex_state = 1, .external_lex_state = 4}, + [2371] = {.lex_state = 5, .external_lex_state = 6}, + [2372] = {.lex_state = 5, .external_lex_state = 6}, + [2373] = {.lex_state = 5, .external_lex_state = 6}, [2374] = {.lex_state = 5, .external_lex_state = 6}, - [2375] = {.lex_state = 5, .external_lex_state = 7}, - [2376] = {.lex_state = 5, .external_lex_state = 7}, - [2377] = {.lex_state = 5, .external_lex_state = 6}, - [2378] = {.lex_state = 5, .external_lex_state = 7}, - [2379] = {.lex_state = 5, .external_lex_state = 7}, - [2380] = {.lex_state = 5, .external_lex_state = 7}, - [2381] = {.lex_state = 5, .external_lex_state = 7}, - [2382] = {.lex_state = 5, .external_lex_state = 7}, - [2383] = {.lex_state = 5, .external_lex_state = 7}, - [2384] = {.lex_state = 5, .external_lex_state = 7}, - [2385] = {.lex_state = 5, .external_lex_state = 6}, + [2375] = {.lex_state = 1, .external_lex_state = 4}, + [2376] = {.lex_state = 1, .external_lex_state = 4}, + [2377] = {.lex_state = 1, .external_lex_state = 4}, + [2378] = {.lex_state = 1, .external_lex_state = 4}, + [2379] = {.lex_state = 4, .external_lex_state = 5}, + [2380] = {.lex_state = 5, .external_lex_state = 6}, + [2381] = {.lex_state = 5, .external_lex_state = 6}, + [2382] = {.lex_state = 5, .external_lex_state = 6}, + [2383] = {.lex_state = 5, .external_lex_state = 6}, + [2384] = {.lex_state = 4, .external_lex_state = 5}, + [2385] = {.lex_state = 4, .external_lex_state = 5}, [2386] = {.lex_state = 5, .external_lex_state = 7}, - [2387] = {.lex_state = 5, .external_lex_state = 6}, - [2388] = {.lex_state = 4, .external_lex_state = 5}, - [2389] = {.lex_state = 4, .external_lex_state = 5}, - [2390] = {.lex_state = 5, .external_lex_state = 6}, - [2391] = {.lex_state = 5, .external_lex_state = 6}, - [2392] = {.lex_state = 5, .external_lex_state = 6}, - [2393] = {.lex_state = 5, .external_lex_state = 6}, - [2394] = {.lex_state = 5, .external_lex_state = 6}, + [2387] = {.lex_state = 5, .external_lex_state = 7}, + [2388] = {.lex_state = 5, .external_lex_state = 6}, + [2389] = {.lex_state = 5, .external_lex_state = 7}, + [2390] = {.lex_state = 5, .external_lex_state = 7}, + [2391] = {.lex_state = 5, .external_lex_state = 7}, + [2392] = {.lex_state = 4, .external_lex_state = 5}, + [2393] = {.lex_state = 1, .external_lex_state = 4}, + [2394] = {.lex_state = 1, .external_lex_state = 4}, [2395] = {.lex_state = 5, .external_lex_state = 6}, [2396] = {.lex_state = 5, .external_lex_state = 6}, - [2397] = {.lex_state = 1, .external_lex_state = 4}, + [2397] = {.lex_state = 5, .external_lex_state = 6}, [2398] = {.lex_state = 5, .external_lex_state = 6}, - [2399] = {.lex_state = 1, .external_lex_state = 4}, - [2400] = {.lex_state = 5, .external_lex_state = 6}, - [2401] = {.lex_state = 5, .external_lex_state = 6}, - [2402] = {.lex_state = 5, .external_lex_state = 6}, - [2403] = {.lex_state = 5, .external_lex_state = 6}, - [2404] = {.lex_state = 4, .external_lex_state = 5}, + [2399] = {.lex_state = 5, .external_lex_state = 6}, + [2400] = {.lex_state = 1, .external_lex_state = 4}, + [2401] = {.lex_state = 1, .external_lex_state = 4}, + [2402] = {.lex_state = 1, .external_lex_state = 4}, + [2403] = {.lex_state = 1, .external_lex_state = 4}, + [2404] = {.lex_state = 5, .external_lex_state = 6}, [2405] = {.lex_state = 5, .external_lex_state = 6}, [2406] = {.lex_state = 5, .external_lex_state = 7}, [2407] = {.lex_state = 5, .external_lex_state = 6}, [2408] = {.lex_state = 5, .external_lex_state = 6}, [2409] = {.lex_state = 5, .external_lex_state = 6}, - [2410] = {.lex_state = 5, .external_lex_state = 7}, - [2411] = {.lex_state = 5, .external_lex_state = 6}, - [2412] = {.lex_state = 4, .external_lex_state = 5}, - [2413] = {.lex_state = 5, .external_lex_state = 6}, + [2410] = {.lex_state = 5, .external_lex_state = 6}, + [2411] = {.lex_state = 5, .external_lex_state = 7}, + [2412] = {.lex_state = 5, .external_lex_state = 7}, + [2413] = {.lex_state = 5, .external_lex_state = 7}, [2414] = {.lex_state = 5, .external_lex_state = 7}, - [2415] = {.lex_state = 5, .external_lex_state = 7}, + [2415] = {.lex_state = 5, .external_lex_state = 6}, [2416] = {.lex_state = 5, .external_lex_state = 6}, - [2417] = {.lex_state = 5, .external_lex_state = 7}, + [2417] = {.lex_state = 5, .external_lex_state = 6}, [2418] = {.lex_state = 5, .external_lex_state = 7}, - [2419] = {.lex_state = 1, .external_lex_state = 4}, - [2420] = {.lex_state = 1, .external_lex_state = 4}, - [2421] = {.lex_state = 1, .external_lex_state = 4}, - [2422] = {.lex_state = 1, .external_lex_state = 4}, + [2419] = {.lex_state = 5, .external_lex_state = 7}, + [2420] = {.lex_state = 5, .external_lex_state = 7}, + [2421] = {.lex_state = 5, .external_lex_state = 6}, + [2422] = {.lex_state = 5, .external_lex_state = 7}, [2423] = {.lex_state = 5, .external_lex_state = 7}, - [2424] = {.lex_state = 5, .external_lex_state = 6}, + [2424] = {.lex_state = 5, .external_lex_state = 7}, [2425] = {.lex_state = 5, .external_lex_state = 6}, [2426] = {.lex_state = 5, .external_lex_state = 7}, [2427] = {.lex_state = 5, .external_lex_state = 7}, - [2428] = {.lex_state = 5, .external_lex_state = 7}, + [2428] = {.lex_state = 5, .external_lex_state = 6}, [2429] = {.lex_state = 5, .external_lex_state = 7}, - [2430] = {.lex_state = 4, .external_lex_state = 5}, - [2431] = {.lex_state = 5, .external_lex_state = 7}, - [2432] = {.lex_state = 5, .external_lex_state = 6}, + [2430] = {.lex_state = 5, .external_lex_state = 7}, + [2431] = {.lex_state = 5, .external_lex_state = 6}, + [2432] = {.lex_state = 5, .external_lex_state = 7}, [2433] = {.lex_state = 5, .external_lex_state = 7}, [2434] = {.lex_state = 5, .external_lex_state = 7}, [2435] = {.lex_state = 5, .external_lex_state = 7}, - [2436] = {.lex_state = 5, .external_lex_state = 6}, - [2437] = {.lex_state = 5, .external_lex_state = 7}, + [2436] = {.lex_state = 5, .external_lex_state = 7}, + [2437] = {.lex_state = 4, .external_lex_state = 5}, [2438] = {.lex_state = 5, .external_lex_state = 7}, [2439] = {.lex_state = 5, .external_lex_state = 7}, [2440] = {.lex_state = 5, .external_lex_state = 7}, [2441] = {.lex_state = 5, .external_lex_state = 7}, [2442] = {.lex_state = 5, .external_lex_state = 7}, - [2443] = {.lex_state = 5, .external_lex_state = 7}, + [2443] = {.lex_state = 5, .external_lex_state = 6}, [2444] = {.lex_state = 5, .external_lex_state = 7}, - [2445] = {.lex_state = 5, .external_lex_state = 7}, - [2446] = {.lex_state = 5, .external_lex_state = 7}, + [2445] = {.lex_state = 5, .external_lex_state = 6}, + [2446] = {.lex_state = 5, .external_lex_state = 6}, [2447] = {.lex_state = 5, .external_lex_state = 6}, [2448] = {.lex_state = 5, .external_lex_state = 7}, - [2449] = {.lex_state = 5, .external_lex_state = 6}, - [2450] = {.lex_state = 4, .external_lex_state = 5}, + [2449] = {.lex_state = 5, .external_lex_state = 7}, + [2450] = {.lex_state = 5, .external_lex_state = 6}, [2451] = {.lex_state = 5, .external_lex_state = 7}, [2452] = {.lex_state = 5, .external_lex_state = 7}, - [2453] = {.lex_state = 4, .external_lex_state = 5}, + [2453] = {.lex_state = 5, .external_lex_state = 6}, [2454] = {.lex_state = 5, .external_lex_state = 7}, [2455] = {.lex_state = 5, .external_lex_state = 7}, - [2456] = {.lex_state = 5, .external_lex_state = 7}, + [2456] = {.lex_state = 4, .external_lex_state = 5}, [2457] = {.lex_state = 5, .external_lex_state = 7}, - [2458] = {.lex_state = 5, .external_lex_state = 7}, - [2459] = {.lex_state = 5, .external_lex_state = 7}, + [2458] = {.lex_state = 5, .external_lex_state = 6}, + [2459] = {.lex_state = 5, .external_lex_state = 6}, [2460] = {.lex_state = 5, .external_lex_state = 7}, [2461] = {.lex_state = 5, .external_lex_state = 7}, [2462] = {.lex_state = 5, .external_lex_state = 7}, @@ -16681,73 +16691,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2464] = {.lex_state = 5, .external_lex_state = 7}, [2465] = {.lex_state = 5, .external_lex_state = 7}, [2466] = {.lex_state = 5, .external_lex_state = 6}, - [2467] = {.lex_state = 5, .external_lex_state = 7}, - [2468] = {.lex_state = 5, .external_lex_state = 6}, + [2467] = {.lex_state = 5, .external_lex_state = 6}, + [2468] = {.lex_state = 5, .external_lex_state = 7}, [2469] = {.lex_state = 4, .external_lex_state = 5}, [2470] = {.lex_state = 5, .external_lex_state = 6}, [2471] = {.lex_state = 5, .external_lex_state = 6}, - [2472] = {.lex_state = 5, .external_lex_state = 6}, - [2473] = {.lex_state = 5, .external_lex_state = 6}, - [2474] = {.lex_state = 5, .external_lex_state = 6}, + [2472] = {.lex_state = 4, .external_lex_state = 5}, + [2473] = {.lex_state = 5, .external_lex_state = 7}, + [2474] = {.lex_state = 5, .external_lex_state = 7}, [2475] = {.lex_state = 5, .external_lex_state = 6}, - [2476] = {.lex_state = 5, .external_lex_state = 6}, - [2477] = {.lex_state = 5, .external_lex_state = 6}, + [2476] = {.lex_state = 5, .external_lex_state = 7}, + [2477] = {.lex_state = 5, .external_lex_state = 7}, [2478] = {.lex_state = 5, .external_lex_state = 6}, - [2479] = {.lex_state = 5, .external_lex_state = 6}, + [2479] = {.lex_state = 5, .external_lex_state = 7}, [2480] = {.lex_state = 5, .external_lex_state = 6}, - [2481] = {.lex_state = 5, .external_lex_state = 6}, - [2482] = {.lex_state = 4, .external_lex_state = 5}, - [2483] = {.lex_state = 5, .external_lex_state = 7}, + [2481] = {.lex_state = 5, .external_lex_state = 7}, + [2482] = {.lex_state = 5, .external_lex_state = 6}, + [2483] = {.lex_state = 5, .external_lex_state = 6}, [2484] = {.lex_state = 5, .external_lex_state = 6}, [2485] = {.lex_state = 5, .external_lex_state = 6}, [2486] = {.lex_state = 5, .external_lex_state = 6}, [2487] = {.lex_state = 5, .external_lex_state = 6}, [2488] = {.lex_state = 5, .external_lex_state = 6}, [2489] = {.lex_state = 5, .external_lex_state = 6}, - [2490] = {.lex_state = 5, .external_lex_state = 6}, - [2491] = {.lex_state = 5, .external_lex_state = 7}, - [2492] = {.lex_state = 5, .external_lex_state = 6}, + [2490] = {.lex_state = 5, .external_lex_state = 7}, + [2491] = {.lex_state = 5, .external_lex_state = 6}, + [2492] = {.lex_state = 5, .external_lex_state = 7}, [2493] = {.lex_state = 5, .external_lex_state = 6}, - [2494] = {.lex_state = 5, .external_lex_state = 7}, + [2494] = {.lex_state = 4, .external_lex_state = 5}, [2495] = {.lex_state = 5, .external_lex_state = 7}, [2496] = {.lex_state = 5, .external_lex_state = 7}, [2497] = {.lex_state = 5, .external_lex_state = 7}, [2498] = {.lex_state = 5, .external_lex_state = 6}, - [2499] = {.lex_state = 5, .external_lex_state = 6}, + [2499] = {.lex_state = 5, .external_lex_state = 7}, [2500] = {.lex_state = 5, .external_lex_state = 7}, - [2501] = {.lex_state = 5, .external_lex_state = 6}, + [2501] = {.lex_state = 5, .external_lex_state = 7}, [2502] = {.lex_state = 5, .external_lex_state = 6}, [2503] = {.lex_state = 5, .external_lex_state = 6}, - [2504] = {.lex_state = 5, .external_lex_state = 6}, - [2505] = {.lex_state = 5, .external_lex_state = 7}, - [2506] = {.lex_state = 5, .external_lex_state = 6}, + [2504] = {.lex_state = 5, .external_lex_state = 7}, + [2505] = {.lex_state = 5, .external_lex_state = 6}, + [2506] = {.lex_state = 5, .external_lex_state = 7}, [2507] = {.lex_state = 5, .external_lex_state = 7}, - [2508] = {.lex_state = 5, .external_lex_state = 7}, - [2509] = {.lex_state = 5, .external_lex_state = 7}, - [2510] = {.lex_state = 5, .external_lex_state = 7}, - [2511] = {.lex_state = 5, .external_lex_state = 7}, + [2508] = {.lex_state = 5, .external_lex_state = 6}, + [2509] = {.lex_state = 5, .external_lex_state = 6}, + [2510] = {.lex_state = 5, .external_lex_state = 6}, + [2511] = {.lex_state = 5, .external_lex_state = 6}, [2512] = {.lex_state = 5, .external_lex_state = 6}, [2513] = {.lex_state = 5, .external_lex_state = 6}, - [2514] = {.lex_state = 5, .external_lex_state = 7}, - [2515] = {.lex_state = 5, .external_lex_state = 6}, + [2514] = {.lex_state = 5, .external_lex_state = 6}, + [2515] = {.lex_state = 5, .external_lex_state = 7}, [2516] = {.lex_state = 5, .external_lex_state = 7}, [2517] = {.lex_state = 5, .external_lex_state = 7}, - [2518] = {.lex_state = 5, .external_lex_state = 6}, + [2518] = {.lex_state = 5, .external_lex_state = 7}, [2519] = {.lex_state = 5, .external_lex_state = 7}, - [2520] = {.lex_state = 5, .external_lex_state = 6}, - [2521] = {.lex_state = 5, .external_lex_state = 6}, - [2522] = {.lex_state = 5, .external_lex_state = 6}, - [2523] = {.lex_state = 5, .external_lex_state = 6}, - [2524] = {.lex_state = 5, .external_lex_state = 6}, - [2525] = {.lex_state = 5, .external_lex_state = 6}, + [2520] = {.lex_state = 5, .external_lex_state = 7}, + [2521] = {.lex_state = 5, .external_lex_state = 7}, + [2522] = {.lex_state = 5, .external_lex_state = 7}, + [2523] = {.lex_state = 5, .external_lex_state = 7}, + [2524] = {.lex_state = 5, .external_lex_state = 7}, + [2525] = {.lex_state = 5, .external_lex_state = 7}, [2526] = {.lex_state = 5, .external_lex_state = 6}, [2527] = {.lex_state = 5, .external_lex_state = 6}, - [2528] = {.lex_state = 5, .external_lex_state = 6}, + [2528] = {.lex_state = 5, .external_lex_state = 7}, [2529] = {.lex_state = 5, .external_lex_state = 6}, - [2530] = {.lex_state = 5, .external_lex_state = 6}, + [2530] = {.lex_state = 5, .external_lex_state = 7}, [2531] = {.lex_state = 5, .external_lex_state = 6}, - [2532] = {.lex_state = 5, .external_lex_state = 7}, - [2533] = {.lex_state = 5, .external_lex_state = 7}, + [2532] = {.lex_state = 5, .external_lex_state = 6}, + [2533] = {.lex_state = 5, .external_lex_state = 6}, [2534] = {.lex_state = 5, .external_lex_state = 7}, [2535] = {.lex_state = 5, .external_lex_state = 6}, [2536] = {.lex_state = 5, .external_lex_state = 6}, @@ -16756,147 +16766,147 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2539] = {.lex_state = 5, .external_lex_state = 6}, [2540] = {.lex_state = 5, .external_lex_state = 6}, [2541] = {.lex_state = 5, .external_lex_state = 7}, - [2542] = {.lex_state = 5, .external_lex_state = 7}, - [2543] = {.lex_state = 5, .external_lex_state = 7}, - [2544] = {.lex_state = 5, .external_lex_state = 7}, - [2545] = {.lex_state = 5, .external_lex_state = 7}, + [2542] = {.lex_state = 5, .external_lex_state = 6}, + [2543] = {.lex_state = 5, .external_lex_state = 6}, + [2544] = {.lex_state = 5, .external_lex_state = 6}, + [2545] = {.lex_state = 5, .external_lex_state = 6}, [2546] = {.lex_state = 5, .external_lex_state = 6}, [2547] = {.lex_state = 5, .external_lex_state = 6}, - [2548] = {.lex_state = 5, .external_lex_state = 7}, - [2549] = {.lex_state = 5, .external_lex_state = 6}, + [2548] = {.lex_state = 5, .external_lex_state = 6}, + [2549] = {.lex_state = 5, .external_lex_state = 7}, [2550] = {.lex_state = 5, .external_lex_state = 6}, [2551] = {.lex_state = 5, .external_lex_state = 6}, [2552] = {.lex_state = 5, .external_lex_state = 6}, [2553] = {.lex_state = 5, .external_lex_state = 6}, - [2554] = {.lex_state = 5, .external_lex_state = 7}, - [2555] = {.lex_state = 5, .external_lex_state = 7}, - [2556] = {.lex_state = 5, .external_lex_state = 7}, - [2557] = {.lex_state = 5, .external_lex_state = 6}, + [2554] = {.lex_state = 5, .external_lex_state = 6}, + [2555] = {.lex_state = 5, .external_lex_state = 6}, + [2556] = {.lex_state = 5, .external_lex_state = 6}, + [2557] = {.lex_state = 5, .external_lex_state = 7}, [2558] = {.lex_state = 5, .external_lex_state = 7}, [2559] = {.lex_state = 5, .external_lex_state = 7}, [2560] = {.lex_state = 5, .external_lex_state = 7}, - [2561] = {.lex_state = 5, .external_lex_state = 6}, + [2561] = {.lex_state = 5, .external_lex_state = 7}, [2562] = {.lex_state = 5, .external_lex_state = 7}, [2563] = {.lex_state = 5, .external_lex_state = 7}, - [2564] = {.lex_state = 5, .external_lex_state = 7}, + [2564] = {.lex_state = 5, .external_lex_state = 6}, [2565] = {.lex_state = 5, .external_lex_state = 7}, [2566] = {.lex_state = 5, .external_lex_state = 7}, [2567] = {.lex_state = 5, .external_lex_state = 7}, - [2568] = {.lex_state = 5, .external_lex_state = 7}, - [2569] = {.lex_state = 5, .external_lex_state = 6}, - [2570] = {.lex_state = 5, .external_lex_state = 6}, - [2571] = {.lex_state = 5, .external_lex_state = 7}, - [2572] = {.lex_state = 5, .external_lex_state = 6}, + [2568] = {.lex_state = 5, .external_lex_state = 6}, + [2569] = {.lex_state = 5, .external_lex_state = 7}, + [2570] = {.lex_state = 5, .external_lex_state = 7}, + [2571] = {.lex_state = 5, .external_lex_state = 6}, + [2572] = {.lex_state = 5, .external_lex_state = 7}, [2573] = {.lex_state = 5, .external_lex_state = 7}, [2574] = {.lex_state = 5, .external_lex_state = 7}, - [2575] = {.lex_state = 5, .external_lex_state = 6}, + [2575] = {.lex_state = 5, .external_lex_state = 7}, [2576] = {.lex_state = 5, .external_lex_state = 6}, [2577] = {.lex_state = 5, .external_lex_state = 7}, [2578] = {.lex_state = 5, .external_lex_state = 7}, [2579] = {.lex_state = 5, .external_lex_state = 7}, [2580] = {.lex_state = 5, .external_lex_state = 7}, [2581] = {.lex_state = 5, .external_lex_state = 7}, - [2582] = {.lex_state = 5, .external_lex_state = 7}, + [2582] = {.lex_state = 5, .external_lex_state = 6}, [2583] = {.lex_state = 5, .external_lex_state = 7}, [2584] = {.lex_state = 5, .external_lex_state = 7}, [2585] = {.lex_state = 5, .external_lex_state = 7}, [2586] = {.lex_state = 5, .external_lex_state = 7}, [2587] = {.lex_state = 5, .external_lex_state = 7}, [2588] = {.lex_state = 5, .external_lex_state = 7}, - [2589] = {.lex_state = 5, .external_lex_state = 6}, + [2589] = {.lex_state = 5, .external_lex_state = 7}, [2590] = {.lex_state = 5, .external_lex_state = 7}, [2591] = {.lex_state = 5, .external_lex_state = 7}, - [2592] = {.lex_state = 5, .external_lex_state = 6}, + [2592] = {.lex_state = 5, .external_lex_state = 7}, [2593] = {.lex_state = 5, .external_lex_state = 7}, - [2594] = {.lex_state = 5, .external_lex_state = 7}, + [2594] = {.lex_state = 5, .external_lex_state = 6}, [2595] = {.lex_state = 5, .external_lex_state = 7}, [2596] = {.lex_state = 5, .external_lex_state = 7}, - [2597] = {.lex_state = 5, .external_lex_state = 6}, - [2598] = {.lex_state = 5, .external_lex_state = 7}, - [2599] = {.lex_state = 5, .external_lex_state = 7}, + [2597] = {.lex_state = 5, .external_lex_state = 7}, + [2598] = {.lex_state = 5, .external_lex_state = 6}, + [2599] = {.lex_state = 5, .external_lex_state = 6}, [2600] = {.lex_state = 5, .external_lex_state = 7}, - [2601] = {.lex_state = 5, .external_lex_state = 7}, + [2601] = {.lex_state = 5, .external_lex_state = 6}, [2602] = {.lex_state = 5, .external_lex_state = 6}, [2603] = {.lex_state = 5, .external_lex_state = 7}, - [2604] = {.lex_state = 5, .external_lex_state = 6}, - [2605] = {.lex_state = 5, .external_lex_state = 7}, - [2606] = {.lex_state = 5, .external_lex_state = 7}, + [2604] = {.lex_state = 5, .external_lex_state = 7}, + [2605] = {.lex_state = 5, .external_lex_state = 6}, + [2606] = {.lex_state = 5, .external_lex_state = 6}, [2607] = {.lex_state = 5, .external_lex_state = 7}, - [2608] = {.lex_state = 5, .external_lex_state = 6}, + [2608] = {.lex_state = 5, .external_lex_state = 7}, [2609] = {.lex_state = 5, .external_lex_state = 7}, - [2610] = {.lex_state = 5, .external_lex_state = 6}, - [2611] = {.lex_state = 5, .external_lex_state = 7}, + [2610] = {.lex_state = 5, .external_lex_state = 7}, + [2611] = {.lex_state = 5, .external_lex_state = 6}, [2612] = {.lex_state = 5, .external_lex_state = 6}, [2613] = {.lex_state = 5, .external_lex_state = 7}, [2614] = {.lex_state = 5, .external_lex_state = 6}, [2615] = {.lex_state = 5, .external_lex_state = 7}, - [2616] = {.lex_state = 5, .external_lex_state = 6}, - [2617] = {.lex_state = 5, .external_lex_state = 7}, + [2616] = {.lex_state = 5, .external_lex_state = 7}, + [2617] = {.lex_state = 5, .external_lex_state = 6}, [2618] = {.lex_state = 5, .external_lex_state = 7}, - [2619] = {.lex_state = 5, .external_lex_state = 7}, + [2619] = {.lex_state = 5, .external_lex_state = 6}, [2620] = {.lex_state = 5, .external_lex_state = 7}, [2621] = {.lex_state = 5, .external_lex_state = 7}, [2622] = {.lex_state = 5, .external_lex_state = 7}, [2623] = {.lex_state = 5, .external_lex_state = 7}, - [2624] = {.lex_state = 5, .external_lex_state = 6}, + [2624] = {.lex_state = 5, .external_lex_state = 7}, [2625] = {.lex_state = 5, .external_lex_state = 7}, [2626] = {.lex_state = 5, .external_lex_state = 7}, - [2627] = {.lex_state = 5, .external_lex_state = 7}, + [2627] = {.lex_state = 5, .external_lex_state = 6}, [2628] = {.lex_state = 5, .external_lex_state = 7}, [2629] = {.lex_state = 5, .external_lex_state = 7}, - [2630] = {.lex_state = 5, .external_lex_state = 6}, - [2631] = {.lex_state = 4, .external_lex_state = 5}, + [2630] = {.lex_state = 5, .external_lex_state = 7}, + [2631] = {.lex_state = 5, .external_lex_state = 7}, [2632] = {.lex_state = 5, .external_lex_state = 7}, - [2633] = {.lex_state = 5, .external_lex_state = 6}, - [2634] = {.lex_state = 5, .external_lex_state = 6}, - [2635] = {.lex_state = 5, .external_lex_state = 7}, - [2636] = {.lex_state = 5, .external_lex_state = 6}, - [2637] = {.lex_state = 5, .external_lex_state = 7}, + [2633] = {.lex_state = 5, .external_lex_state = 7}, + [2634] = {.lex_state = 5, .external_lex_state = 7}, + [2635] = {.lex_state = 5, .external_lex_state = 6}, + [2636] = {.lex_state = 5, .external_lex_state = 7}, + [2637] = {.lex_state = 5, .external_lex_state = 6}, [2638] = {.lex_state = 5, .external_lex_state = 7}, - [2639] = {.lex_state = 5, .external_lex_state = 6}, - [2640] = {.lex_state = 5, .external_lex_state = 7}, - [2641] = {.lex_state = 5, .external_lex_state = 6}, - [2642] = {.lex_state = 5, .external_lex_state = 7}, - [2643] = {.lex_state = 5, .external_lex_state = 6}, - [2644] = {.lex_state = 4, .external_lex_state = 5}, + [2639] = {.lex_state = 5, .external_lex_state = 7}, + [2640] = {.lex_state = 4, .external_lex_state = 5}, + [2641] = {.lex_state = 5, .external_lex_state = 7}, + [2642] = {.lex_state = 5, .external_lex_state = 6}, + [2643] = {.lex_state = 5, .external_lex_state = 7}, + [2644] = {.lex_state = 5, .external_lex_state = 7}, [2645] = {.lex_state = 5, .external_lex_state = 7}, - [2646] = {.lex_state = 5, .external_lex_state = 6}, + [2646] = {.lex_state = 4, .external_lex_state = 5}, [2647] = {.lex_state = 5, .external_lex_state = 6}, [2648] = {.lex_state = 5, .external_lex_state = 7}, - [2649] = {.lex_state = 4, .external_lex_state = 5}, - [2650] = {.lex_state = 5, .external_lex_state = 6}, - [2651] = {.lex_state = 5, .external_lex_state = 6}, - [2652] = {.lex_state = 5, .external_lex_state = 6}, - [2653] = {.lex_state = 5, .external_lex_state = 7}, + [2649] = {.lex_state = 5, .external_lex_state = 7}, + [2650] = {.lex_state = 4, .external_lex_state = 5}, + [2651] = {.lex_state = 5, .external_lex_state = 7}, + [2652] = {.lex_state = 5, .external_lex_state = 7}, + [2653] = {.lex_state = 5, .external_lex_state = 6}, [2654] = {.lex_state = 5, .external_lex_state = 7}, [2655] = {.lex_state = 5, .external_lex_state = 7}, - [2656] = {.lex_state = 5, .external_lex_state = 7}, + [2656] = {.lex_state = 5, .external_lex_state = 6}, [2657] = {.lex_state = 4, .external_lex_state = 5}, - [2658] = {.lex_state = 4, .external_lex_state = 5}, - [2659] = {.lex_state = 5, .external_lex_state = 6}, - [2660] = {.lex_state = 5, .external_lex_state = 7}, - [2661] = {.lex_state = 5, .external_lex_state = 6}, + [2658] = {.lex_state = 5, .external_lex_state = 6}, + [2659] = {.lex_state = 5, .external_lex_state = 7}, + [2660] = {.lex_state = 5, .external_lex_state = 6}, + [2661] = {.lex_state = 5, .external_lex_state = 7}, [2662] = {.lex_state = 5, .external_lex_state = 7}, [2663] = {.lex_state = 5, .external_lex_state = 6}, - [2664] = {.lex_state = 5, .external_lex_state = 7}, + [2664] = {.lex_state = 5, .external_lex_state = 6}, [2665] = {.lex_state = 5, .external_lex_state = 6}, [2666] = {.lex_state = 5, .external_lex_state = 6}, - [2667] = {.lex_state = 5, .external_lex_state = 6}, - [2668] = {.lex_state = 5, .external_lex_state = 7}, + [2667] = {.lex_state = 5, .external_lex_state = 7}, + [2668] = {.lex_state = 5, .external_lex_state = 6}, [2669] = {.lex_state = 5, .external_lex_state = 7}, [2670] = {.lex_state = 5, .external_lex_state = 6}, - [2671] = {.lex_state = 5, .external_lex_state = 7}, + [2671] = {.lex_state = 5, .external_lex_state = 6}, [2672] = {.lex_state = 5, .external_lex_state = 7}, [2673] = {.lex_state = 5, .external_lex_state = 6}, - [2674] = {.lex_state = 5, .external_lex_state = 7}, - [2675] = {.lex_state = 5, .external_lex_state = 6}, - [2676] = {.lex_state = 5, .external_lex_state = 6}, - [2677] = {.lex_state = 5, .external_lex_state = 7}, - [2678] = {.lex_state = 5, .external_lex_state = 6}, + [2674] = {.lex_state = 5, .external_lex_state = 6}, + [2675] = {.lex_state = 5, .external_lex_state = 7}, + [2676] = {.lex_state = 5, .external_lex_state = 7}, + [2677] = {.lex_state = 5, .external_lex_state = 6}, + [2678] = {.lex_state = 4, .external_lex_state = 5}, [2679] = {.lex_state = 5, .external_lex_state = 7}, - [2680] = {.lex_state = 5, .external_lex_state = 6}, - [2681] = {.lex_state = 5, .external_lex_state = 7}, - [2682] = {.lex_state = 4, .external_lex_state = 5}, + [2680] = {.lex_state = 5, .external_lex_state = 7}, + [2681] = {.lex_state = 5, .external_lex_state = 6}, + [2682] = {.lex_state = 5, .external_lex_state = 6}, [2683] = {.lex_state = 5, .external_lex_state = 6}, [2684] = {.lex_state = 5, .external_lex_state = 6}, [2685] = {.lex_state = 5, .external_lex_state = 6}, @@ -16904,81 +16914,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2687] = {.lex_state = 5, .external_lex_state = 7}, [2688] = {.lex_state = 5, .external_lex_state = 6}, [2689] = {.lex_state = 5, .external_lex_state = 7}, - [2690] = {.lex_state = 5, .external_lex_state = 6}, + [2690] = {.lex_state = 5, .external_lex_state = 7}, [2691] = {.lex_state = 5, .external_lex_state = 7}, [2692] = {.lex_state = 5, .external_lex_state = 7}, - [2693] = {.lex_state = 4, .external_lex_state = 5}, + [2693] = {.lex_state = 5, .external_lex_state = 6}, [2694] = {.lex_state = 5, .external_lex_state = 6}, - [2695] = {.lex_state = 4, .external_lex_state = 5}, - [2696] = {.lex_state = 4, .external_lex_state = 5}, - [2697] = {.lex_state = 5, .external_lex_state = 6}, - [2698] = {.lex_state = 4, .external_lex_state = 5}, + [2695] = {.lex_state = 5, .external_lex_state = 6}, + [2696] = {.lex_state = 5, .external_lex_state = 6}, + [2697] = {.lex_state = 4, .external_lex_state = 5}, + [2698] = {.lex_state = 5, .external_lex_state = 6}, [2699] = {.lex_state = 5, .external_lex_state = 6}, - [2700] = {.lex_state = 5, .external_lex_state = 6}, - [2701] = {.lex_state = 5, .external_lex_state = 6}, - [2702] = {.lex_state = 4, .external_lex_state = 5}, - [2703] = {.lex_state = 5, .external_lex_state = 6}, - [2704] = {.lex_state = 4, .external_lex_state = 5}, - [2705] = {.lex_state = 4, .external_lex_state = 5}, + [2700] = {.lex_state = 4, .external_lex_state = 5}, + [2701] = {.lex_state = 4, .external_lex_state = 5}, + [2702] = {.lex_state = 5, .external_lex_state = 6}, + [2703] = {.lex_state = 4, .external_lex_state = 5}, + [2704] = {.lex_state = 5, .external_lex_state = 6}, + [2705] = {.lex_state = 5, .external_lex_state = 6}, [2706] = {.lex_state = 5, .external_lex_state = 6}, [2707] = {.lex_state = 5, .external_lex_state = 6}, - [2708] = {.lex_state = 5, .external_lex_state = 6}, + [2708] = {.lex_state = 4, .external_lex_state = 5}, [2709] = {.lex_state = 5, .external_lex_state = 6}, [2710] = {.lex_state = 5, .external_lex_state = 6}, - [2711] = {.lex_state = 4, .external_lex_state = 5}, + [2711] = {.lex_state = 5, .external_lex_state = 6}, [2712] = {.lex_state = 5, .external_lex_state = 6}, - [2713] = {.lex_state = 5, .external_lex_state = 6}, + [2713] = {.lex_state = 4, .external_lex_state = 5}, [2714] = {.lex_state = 5, .external_lex_state = 6}, - [2715] = {.lex_state = 5, .external_lex_state = 7}, - [2716] = {.lex_state = 5, .external_lex_state = 7}, - [2717] = {.lex_state = 5, .external_lex_state = 7}, - [2718] = {.lex_state = 5, .external_lex_state = 7}, - [2719] = {.lex_state = 5, .external_lex_state = 7}, - [2720] = {.lex_state = 5, .external_lex_state = 7}, + [2715] = {.lex_state = 4, .external_lex_state = 5}, + [2716] = {.lex_state = 5, .external_lex_state = 6}, + [2717] = {.lex_state = 4, .external_lex_state = 5}, + [2718] = {.lex_state = 5, .external_lex_state = 6}, + [2719] = {.lex_state = 5, .external_lex_state = 6}, + [2720] = {.lex_state = 4, .external_lex_state = 5}, [2721] = {.lex_state = 5, .external_lex_state = 7}, [2722] = {.lex_state = 5, .external_lex_state = 7}, [2723] = {.lex_state = 5, .external_lex_state = 7}, [2724] = {.lex_state = 5, .external_lex_state = 7}, [2725] = {.lex_state = 5, .external_lex_state = 7}, [2726] = {.lex_state = 5, .external_lex_state = 7}, - [2727] = {.lex_state = 5, .external_lex_state = 6}, + [2727] = {.lex_state = 5, .external_lex_state = 7}, [2728] = {.lex_state = 5, .external_lex_state = 7}, [2729] = {.lex_state = 5, .external_lex_state = 7}, [2730] = {.lex_state = 5, .external_lex_state = 7}, - [2731] = {.lex_state = 1, .external_lex_state = 4}, + [2731] = {.lex_state = 5, .external_lex_state = 7}, [2732] = {.lex_state = 5, .external_lex_state = 7}, [2733] = {.lex_state = 5, .external_lex_state = 7}, [2734] = {.lex_state = 5, .external_lex_state = 7}, [2735] = {.lex_state = 5, .external_lex_state = 7}, - [2736] = {.lex_state = 5, .external_lex_state = 7}, + [2736] = {.lex_state = 5, .external_lex_state = 6}, [2737] = {.lex_state = 5, .external_lex_state = 7}, [2738] = {.lex_state = 5, .external_lex_state = 7}, [2739] = {.lex_state = 5, .external_lex_state = 7}, - [2740] = {.lex_state = 5, .external_lex_state = 7}, + [2740] = {.lex_state = 5, .external_lex_state = 6}, [2741] = {.lex_state = 5, .external_lex_state = 7}, - [2742] = {.lex_state = 5, .external_lex_state = 7}, - [2743] = {.lex_state = 1, .external_lex_state = 4}, + [2742] = {.lex_state = 1, .external_lex_state = 4}, + [2743] = {.lex_state = 5, .external_lex_state = 7}, [2744] = {.lex_state = 5, .external_lex_state = 7}, - [2745] = {.lex_state = 5, .external_lex_state = 6}, + [2745] = {.lex_state = 5, .external_lex_state = 7}, [2746] = {.lex_state = 5, .external_lex_state = 7}, [2747] = {.lex_state = 5, .external_lex_state = 7}, [2748] = {.lex_state = 5, .external_lex_state = 7}, - [2749] = {.lex_state = 5, .external_lex_state = 7}, + [2749] = {.lex_state = 1, .external_lex_state = 4}, [2750] = {.lex_state = 5, .external_lex_state = 7}, [2751] = {.lex_state = 5, .external_lex_state = 7}, [2752] = {.lex_state = 5, .external_lex_state = 7}, - [2753] = {.lex_state = 5, .external_lex_state = 6}, + [2753] = {.lex_state = 5, .external_lex_state = 7}, [2754] = {.lex_state = 5, .external_lex_state = 7}, [2755] = {.lex_state = 5, .external_lex_state = 7}, [2756] = {.lex_state = 5, .external_lex_state = 7}, [2757] = {.lex_state = 5, .external_lex_state = 7}, [2758] = {.lex_state = 5, .external_lex_state = 7}, [2759] = {.lex_state = 5, .external_lex_state = 7}, - [2760] = {.lex_state = 1, .external_lex_state = 4}, - [2761] = {.lex_state = 5, .external_lex_state = 6}, - [2762] = {.lex_state = 1, .external_lex_state = 4}, - [2763] = {.lex_state = 5, .external_lex_state = 6}, - [2764] = {.lex_state = 1, .external_lex_state = 4}, + [2760] = {.lex_state = 5, .external_lex_state = 7}, + [2761] = {.lex_state = 5, .external_lex_state = 7}, + [2762] = {.lex_state = 5, .external_lex_state = 7}, + [2763] = {.lex_state = 5, .external_lex_state = 7}, + [2764] = {.lex_state = 5, .external_lex_state = 7}, [2765] = {.lex_state = 5, .external_lex_state = 6}, [2766] = {.lex_state = 5, .external_lex_state = 6}, [2767] = {.lex_state = 5, .external_lex_state = 6}, @@ -16991,9 +17001,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2774] = {.lex_state = 5, .external_lex_state = 6}, [2775] = {.lex_state = 5, .external_lex_state = 6}, [2776] = {.lex_state = 5, .external_lex_state = 6}, - [2777] = {.lex_state = 5, .external_lex_state = 6}, + [2777] = {.lex_state = 5, .external_lex_state = 7}, [2778] = {.lex_state = 5, .external_lex_state = 6}, - [2779] = {.lex_state = 5, .external_lex_state = 7}, + [2779] = {.lex_state = 5, .external_lex_state = 6}, [2780] = {.lex_state = 5, .external_lex_state = 6}, [2781] = {.lex_state = 5, .external_lex_state = 6}, [2782] = {.lex_state = 5, .external_lex_state = 6}, @@ -17008,263 +17018,263 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2791] = {.lex_state = 5, .external_lex_state = 6}, [2792] = {.lex_state = 5, .external_lex_state = 6}, [2793] = {.lex_state = 5, .external_lex_state = 6}, - [2794] = {.lex_state = 5, .external_lex_state = 7}, + [2794] = {.lex_state = 5, .external_lex_state = 6}, [2795] = {.lex_state = 5, .external_lex_state = 7}, - [2796] = {.lex_state = 5, .external_lex_state = 6}, - [2797] = {.lex_state = 5, .external_lex_state = 7}, - [2798] = {.lex_state = 5, .external_lex_state = 6}, + [2796] = {.lex_state = 1, .external_lex_state = 4}, + [2797] = {.lex_state = 5, .external_lex_state = 6}, + [2798] = {.lex_state = 5, .external_lex_state = 7}, [2799] = {.lex_state = 5, .external_lex_state = 6}, [2800] = {.lex_state = 5, .external_lex_state = 7}, - [2801] = {.lex_state = 1, .external_lex_state = 4}, - [2802] = {.lex_state = 5, .external_lex_state = 6}, + [2801] = {.lex_state = 5, .external_lex_state = 7}, + [2802] = {.lex_state = 5, .external_lex_state = 7}, [2803] = {.lex_state = 5, .external_lex_state = 7}, [2804] = {.lex_state = 5, .external_lex_state = 7}, [2805] = {.lex_state = 5, .external_lex_state = 7}, - [2806] = {.lex_state = 1, .external_lex_state = 4}, + [2806] = {.lex_state = 5, .external_lex_state = 6}, [2807] = {.lex_state = 5, .external_lex_state = 7}, [2808] = {.lex_state = 5, .external_lex_state = 7}, [2809] = {.lex_state = 1, .external_lex_state = 4}, - [2810] = {.lex_state = 5, .external_lex_state = 7}, + [2810] = {.lex_state = 5, .external_lex_state = 6}, [2811] = {.lex_state = 5, .external_lex_state = 7}, - [2812] = {.lex_state = 5, .external_lex_state = 7}, - [2813] = {.lex_state = 1, .external_lex_state = 4}, + [2812] = {.lex_state = 5, .external_lex_state = 6}, + [2813] = {.lex_state = 5, .external_lex_state = 7}, [2814] = {.lex_state = 5, .external_lex_state = 7}, - [2815] = {.lex_state = 5, .external_lex_state = 7}, - [2816] = {.lex_state = 5, .external_lex_state = 7}, + [2815] = {.lex_state = 1, .external_lex_state = 4}, + [2816] = {.lex_state = 1, .external_lex_state = 4}, [2817] = {.lex_state = 5, .external_lex_state = 7}, [2818] = {.lex_state = 1, .external_lex_state = 4}, [2819] = {.lex_state = 5, .external_lex_state = 7}, [2820] = {.lex_state = 5, .external_lex_state = 7}, [2821] = {.lex_state = 5, .external_lex_state = 7}, - [2822] = {.lex_state = 5, .external_lex_state = 7}, + [2822] = {.lex_state = 5, .external_lex_state = 6}, [2823] = {.lex_state = 5, .external_lex_state = 7}, [2824] = {.lex_state = 5, .external_lex_state = 7}, - [2825] = {.lex_state = 5, .external_lex_state = 6}, + [2825] = {.lex_state = 5, .external_lex_state = 7}, [2826] = {.lex_state = 5, .external_lex_state = 6}, [2827] = {.lex_state = 5, .external_lex_state = 7}, [2828] = {.lex_state = 5, .external_lex_state = 7}, - [2829] = {.lex_state = 1, .external_lex_state = 4}, + [2829] = {.lex_state = 5, .external_lex_state = 7}, [2830] = {.lex_state = 5, .external_lex_state = 7}, - [2831] = {.lex_state = 5, .external_lex_state = 7}, - [2832] = {.lex_state = 5, .external_lex_state = 6}, + [2831] = {.lex_state = 1, .external_lex_state = 4}, + [2832] = {.lex_state = 5, .external_lex_state = 7}, [2833] = {.lex_state = 5, .external_lex_state = 7}, [2834] = {.lex_state = 5, .external_lex_state = 7}, [2835] = {.lex_state = 5, .external_lex_state = 7}, [2836] = {.lex_state = 5, .external_lex_state = 7}, [2837] = {.lex_state = 1, .external_lex_state = 4}, - [2838] = {.lex_state = 5, .external_lex_state = 7}, - [2839] = {.lex_state = 1, .external_lex_state = 4}, - [2840] = {.lex_state = 1, .external_lex_state = 4}, - [2841] = {.lex_state = 1, .external_lex_state = 4}, - [2842] = {.lex_state = 1, .external_lex_state = 4}, - [2843] = {.lex_state = 1, .external_lex_state = 4}, + [2838] = {.lex_state = 1, .external_lex_state = 3}, + [2839] = {.lex_state = 5, .external_lex_state = 6}, + [2840] = {.lex_state = 5, .external_lex_state = 6}, + [2841] = {.lex_state = 5, .external_lex_state = 6}, + [2842] = {.lex_state = 5, .external_lex_state = 6}, + [2843] = {.lex_state = 5, .external_lex_state = 6}, [2844] = {.lex_state = 5, .external_lex_state = 6}, [2845] = {.lex_state = 1, .external_lex_state = 4}, - [2846] = {.lex_state = 1, .external_lex_state = 4}, + [2846] = {.lex_state = 5, .external_lex_state = 6}, [2847] = {.lex_state = 1, .external_lex_state = 4}, - [2848] = {.lex_state = 1, .external_lex_state = 4}, + [2848] = {.lex_state = 5, .external_lex_state = 6}, [2849] = {.lex_state = 5, .external_lex_state = 6}, - [2850] = {.lex_state = 5, .external_lex_state = 6}, - [2851] = {.lex_state = 5, .external_lex_state = 6}, - [2852] = {.lex_state = 1, .external_lex_state = 3}, - [2853] = {.lex_state = 1, .external_lex_state = 3}, + [2850] = {.lex_state = 1, .external_lex_state = 4}, + [2851] = {.lex_state = 1, .external_lex_state = 4}, + [2852] = {.lex_state = 1, .external_lex_state = 4}, + [2853] = {.lex_state = 1, .external_lex_state = 4}, [2854] = {.lex_state = 1, .external_lex_state = 4}, [2855] = {.lex_state = 1, .external_lex_state = 4}, - [2856] = {.lex_state = 1, .external_lex_state = 4}, + [2856] = {.lex_state = 5, .external_lex_state = 6}, [2857] = {.lex_state = 5, .external_lex_state = 6}, [2858] = {.lex_state = 5, .external_lex_state = 6}, - [2859] = {.lex_state = 1, .external_lex_state = 4}, + [2859] = {.lex_state = 5, .external_lex_state = 6}, [2860] = {.lex_state = 1, .external_lex_state = 4}, [2861] = {.lex_state = 1, .external_lex_state = 4}, - [2862] = {.lex_state = 5, .external_lex_state = 6}, - [2863] = {.lex_state = 1, .external_lex_state = 4}, - [2864] = {.lex_state = 5, .external_lex_state = 6}, + [2862] = {.lex_state = 1, .external_lex_state = 4}, + [2863] = {.lex_state = 5, .external_lex_state = 6}, + [2864] = {.lex_state = 1, .external_lex_state = 3}, [2865] = {.lex_state = 1, .external_lex_state = 4}, [2866] = {.lex_state = 1, .external_lex_state = 4}, - [2867] = {.lex_state = 5, .external_lex_state = 6}, - [2868] = {.lex_state = 5, .external_lex_state = 6}, + [2867] = {.lex_state = 1, .external_lex_state = 4}, + [2868] = {.lex_state = 1, .external_lex_state = 4}, [2869] = {.lex_state = 5, .external_lex_state = 6}, [2870] = {.lex_state = 1, .external_lex_state = 4}, - [2871] = {.lex_state = 5, .external_lex_state = 7}, - [2872] = {.lex_state = 5, .external_lex_state = 6}, - [2873] = {.lex_state = 5, .external_lex_state = 6}, - [2874] = {.lex_state = 5, .external_lex_state = 6}, - [2875] = {.lex_state = 1, .external_lex_state = 3}, - [2876] = {.lex_state = 5, .external_lex_state = 6}, + [2871] = {.lex_state = 1, .external_lex_state = 4}, + [2872] = {.lex_state = 1, .external_lex_state = 3}, + [2873] = {.lex_state = 1, .external_lex_state = 4}, + [2874] = {.lex_state = 1, .external_lex_state = 4}, + [2875] = {.lex_state = 1, .external_lex_state = 4}, + [2876] = {.lex_state = 1, .external_lex_state = 4}, [2877] = {.lex_state = 5, .external_lex_state = 6}, [2878] = {.lex_state = 1, .external_lex_state = 4}, - [2879] = {.lex_state = 1, .external_lex_state = 4}, + [2879] = {.lex_state = 5, .external_lex_state = 6}, [2880] = {.lex_state = 1, .external_lex_state = 4}, - [2881] = {.lex_state = 1, .external_lex_state = 4}, - [2882] = {.lex_state = 1, .external_lex_state = 4}, + [2881] = {.lex_state = 5, .external_lex_state = 6}, + [2882] = {.lex_state = 5, .external_lex_state = 7}, [2883] = {.lex_state = 1, .external_lex_state = 4}, [2884] = {.lex_state = 1, .external_lex_state = 4}, - [2885] = {.lex_state = 1, .external_lex_state = 4}, + [2885] = {.lex_state = 5, .external_lex_state = 6}, [2886] = {.lex_state = 5, .external_lex_state = 6}, - [2887] = {.lex_state = 5, .external_lex_state = 6}, + [2887] = {.lex_state = 1, .external_lex_state = 4}, [2888] = {.lex_state = 5, .external_lex_state = 6}, [2889] = {.lex_state = 1, .external_lex_state = 4}, [2890] = {.lex_state = 5, .external_lex_state = 6}, [2891] = {.lex_state = 5, .external_lex_state = 6}, [2892] = {.lex_state = 5, .external_lex_state = 6}, - [2893] = {.lex_state = 5, .external_lex_state = 6}, - [2894] = {.lex_state = 5, .external_lex_state = 6}, + [2893] = {.lex_state = 1, .external_lex_state = 4}, + [2894] = {.lex_state = 1, .external_lex_state = 4}, [2895] = {.lex_state = 5, .external_lex_state = 7}, [2896] = {.lex_state = 1, .external_lex_state = 4}, [2897] = {.lex_state = 5, .external_lex_state = 6}, [2898] = {.lex_state = 1, .external_lex_state = 4}, - [2899] = {.lex_state = 1, .external_lex_state = 4}, - [2900] = {.lex_state = 5, .external_lex_state = 6}, - [2901] = {.lex_state = 4, .external_lex_state = 5}, + [2899] = {.lex_state = 4, .external_lex_state = 5}, + [2900] = {.lex_state = 1, .external_lex_state = 4}, + [2901] = {.lex_state = 5, .external_lex_state = 6}, [2902] = {.lex_state = 1, .external_lex_state = 4}, - [2903] = {.lex_state = 4, .external_lex_state = 5}, + [2903] = {.lex_state = 5, .external_lex_state = 6}, [2904] = {.lex_state = 5, .external_lex_state = 6}, - [2905] = {.lex_state = 5, .external_lex_state = 6}, + [2905] = {.lex_state = 1, .external_lex_state = 4}, [2906] = {.lex_state = 5, .external_lex_state = 6}, [2907] = {.lex_state = 1, .external_lex_state = 4}, [2908] = {.lex_state = 5, .external_lex_state = 6}, - [2909] = {.lex_state = 5, .external_lex_state = 6}, + [2909] = {.lex_state = 1, .external_lex_state = 4}, [2910] = {.lex_state = 1, .external_lex_state = 4}, - [2911] = {.lex_state = 1, .external_lex_state = 4}, - [2912] = {.lex_state = 5, .external_lex_state = 6}, - [2913] = {.lex_state = 1, .external_lex_state = 4}, + [2911] = {.lex_state = 5, .external_lex_state = 6}, + [2912] = {.lex_state = 1, .external_lex_state = 4}, + [2913] = {.lex_state = 5, .external_lex_state = 6}, [2914] = {.lex_state = 5, .external_lex_state = 6}, - [2915] = {.lex_state = 5, .external_lex_state = 6}, + [2915] = {.lex_state = 1, .external_lex_state = 4}, [2916] = {.lex_state = 5, .external_lex_state = 6}, [2917] = {.lex_state = 1, .external_lex_state = 4}, [2918] = {.lex_state = 1, .external_lex_state = 4}, [2919] = {.lex_state = 1, .external_lex_state = 4}, - [2920] = {.lex_state = 5, .external_lex_state = 6}, + [2920] = {.lex_state = 1, .external_lex_state = 4}, [2921] = {.lex_state = 1, .external_lex_state = 4}, [2922] = {.lex_state = 1, .external_lex_state = 4}, - [2923] = {.lex_state = 1, .external_lex_state = 4}, + [2923] = {.lex_state = 5, .external_lex_state = 6}, [2924] = {.lex_state = 1, .external_lex_state = 4}, [2925] = {.lex_state = 1, .external_lex_state = 4}, - [2926] = {.lex_state = 5, .external_lex_state = 6}, - [2927] = {.lex_state = 5, .external_lex_state = 7}, - [2928] = {.lex_state = 5, .external_lex_state = 6}, - [2929] = {.lex_state = 1, .external_lex_state = 4}, + [2926] = {.lex_state = 4, .external_lex_state = 5}, + [2927] = {.lex_state = 1, .external_lex_state = 4}, + [2928] = {.lex_state = 1, .external_lex_state = 4}, + [2929] = {.lex_state = 5, .external_lex_state = 7}, [2930] = {.lex_state = 1, .external_lex_state = 4}, [2931] = {.lex_state = 5, .external_lex_state = 6}, [2932] = {.lex_state = 5, .external_lex_state = 6}, [2933] = {.lex_state = 1, .external_lex_state = 4}, - [2934] = {.lex_state = 1, .external_lex_state = 4}, + [2934] = {.lex_state = 5, .external_lex_state = 6}, [2935] = {.lex_state = 1, .external_lex_state = 4}, - [2936] = {.lex_state = 1, .external_lex_state = 4}, + [2936] = {.lex_state = 5, .external_lex_state = 6}, [2937] = {.lex_state = 1, .external_lex_state = 4}, [2938] = {.lex_state = 5, .external_lex_state = 6}, [2939] = {.lex_state = 5, .external_lex_state = 6}, - [2940] = {.lex_state = 5, .external_lex_state = 6}, + [2940] = {.lex_state = 1, .external_lex_state = 4}, [2941] = {.lex_state = 5, .external_lex_state = 6}, [2942] = {.lex_state = 5, .external_lex_state = 6}, [2943] = {.lex_state = 5, .external_lex_state = 6}, [2944] = {.lex_state = 1, .external_lex_state = 4}, - [2945] = {.lex_state = 1, .external_lex_state = 4}, + [2945] = {.lex_state = 5, .external_lex_state = 6}, [2946] = {.lex_state = 1, .external_lex_state = 4}, [2947] = {.lex_state = 1, .external_lex_state = 4}, - [2948] = {.lex_state = 5, .external_lex_state = 6}, - [2949] = {.lex_state = 5, .external_lex_state = 6}, - [2950] = {.lex_state = 1, .external_lex_state = 4}, - [2951] = {.lex_state = 1, .external_lex_state = 4}, + [2948] = {.lex_state = 1, .external_lex_state = 4}, + [2949] = {.lex_state = 4, .external_lex_state = 5}, + [2950] = {.lex_state = 5, .external_lex_state = 6}, + [2951] = {.lex_state = 5, .external_lex_state = 6}, [2952] = {.lex_state = 1, .external_lex_state = 4}, - [2953] = {.lex_state = 5, .external_lex_state = 6}, - [2954] = {.lex_state = 5, .external_lex_state = 6}, + [2953] = {.lex_state = 1, .external_lex_state = 4}, + [2954] = {.lex_state = 1, .external_lex_state = 4}, [2955] = {.lex_state = 5, .external_lex_state = 6}, [2956] = {.lex_state = 5, .external_lex_state = 6}, [2957] = {.lex_state = 5, .external_lex_state = 6}, - [2958] = {.lex_state = 1, .external_lex_state = 4}, - [2959] = {.lex_state = 1, .external_lex_state = 4}, + [2958] = {.lex_state = 5, .external_lex_state = 6}, + [2959] = {.lex_state = 5, .external_lex_state = 6}, [2960] = {.lex_state = 1, .external_lex_state = 4}, - [2961] = {.lex_state = 1, .external_lex_state = 4}, + [2961] = {.lex_state = 5, .external_lex_state = 6}, [2962] = {.lex_state = 1, .external_lex_state = 4}, - [2963] = {.lex_state = 1, .external_lex_state = 4}, - [2964] = {.lex_state = 5, .external_lex_state = 6}, + [2963] = {.lex_state = 5, .external_lex_state = 6}, + [2964] = {.lex_state = 1, .external_lex_state = 4}, [2965] = {.lex_state = 1, .external_lex_state = 4}, [2966] = {.lex_state = 5, .external_lex_state = 6}, - [2967] = {.lex_state = 1, .external_lex_state = 4}, - [2968] = {.lex_state = 1, .external_lex_state = 4}, + [2967] = {.lex_state = 5, .external_lex_state = 6}, + [2968] = {.lex_state = 5, .external_lex_state = 6}, [2969] = {.lex_state = 5, .external_lex_state = 6}, - [2970] = {.lex_state = 1, .external_lex_state = 4}, - [2971] = {.lex_state = 5, .external_lex_state = 6}, + [2970] = {.lex_state = 5, .external_lex_state = 6}, + [2971] = {.lex_state = 1, .external_lex_state = 4}, [2972] = {.lex_state = 5, .external_lex_state = 6}, [2973] = {.lex_state = 5, .external_lex_state = 6}, - [2974] = {.lex_state = 4, .external_lex_state = 5}, - [2975] = {.lex_state = 1, .external_lex_state = 4}, - [2976] = {.lex_state = 5, .external_lex_state = 6}, - [2977] = {.lex_state = 5, .external_lex_state = 6}, + [2974] = {.lex_state = 5, .external_lex_state = 6}, + [2975] = {.lex_state = 5, .external_lex_state = 6}, + [2976] = {.lex_state = 1, .external_lex_state = 4}, + [2977] = {.lex_state = 1, .external_lex_state = 4}, [2978] = {.lex_state = 1, .external_lex_state = 4}, - [2979] = {.lex_state = 1, .external_lex_state = 4}, + [2979] = {.lex_state = 5, .external_lex_state = 6}, [2980] = {.lex_state = 5, .external_lex_state = 6}, [2981] = {.lex_state = 1, .external_lex_state = 4}, [2982] = {.lex_state = 1, .external_lex_state = 4}, [2983] = {.lex_state = 1, .external_lex_state = 4}, - [2984] = {.lex_state = 5, .external_lex_state = 6}, + [2984] = {.lex_state = 1, .external_lex_state = 4}, [2985] = {.lex_state = 5, .external_lex_state = 6}, - [2986] = {.lex_state = 5, .external_lex_state = 6}, + [2986] = {.lex_state = 1, .external_lex_state = 4}, [2987] = {.lex_state = 1, .external_lex_state = 4}, [2988] = {.lex_state = 1, .external_lex_state = 4}, - [2989] = {.lex_state = 5, .external_lex_state = 6}, - [2990] = {.lex_state = 5, .external_lex_state = 6}, - [2991] = {.lex_state = 1, .external_lex_state = 4}, - [2992] = {.lex_state = 1, .external_lex_state = 4}, - [2993] = {.lex_state = 1, .external_lex_state = 4}, - [2994] = {.lex_state = 1, .external_lex_state = 4}, + [2989] = {.lex_state = 1, .external_lex_state = 4}, + [2990] = {.lex_state = 1, .external_lex_state = 4}, + [2991] = {.lex_state = 5, .external_lex_state = 6}, + [2992] = {.lex_state = 5, .external_lex_state = 7}, + [2993] = {.lex_state = 5, .external_lex_state = 6}, + [2994] = {.lex_state = 5, .external_lex_state = 7}, [2995] = {.lex_state = 5, .external_lex_state = 6}, - [2996] = {.lex_state = 5, .external_lex_state = 7}, - [2997] = {.lex_state = 5, .external_lex_state = 6}, - [2998] = {.lex_state = 5, .external_lex_state = 6}, - [2999] = {.lex_state = 5, .external_lex_state = 6}, + [2996] = {.lex_state = 5, .external_lex_state = 6}, + [2997] = {.lex_state = 1, .external_lex_state = 4}, + [2998] = {.lex_state = 1, .external_lex_state = 4}, + [2999] = {.lex_state = 1, .external_lex_state = 4}, [3000] = {.lex_state = 1, .external_lex_state = 4}, - [3001] = {.lex_state = 5, .external_lex_state = 6}, - [3002] = {.lex_state = 5, .external_lex_state = 6}, - [3003] = {.lex_state = 5, .external_lex_state = 6}, + [3001] = {.lex_state = 1, .external_lex_state = 4}, + [3002] = {.lex_state = 4, .external_lex_state = 5}, + [3003] = {.lex_state = 1, .external_lex_state = 4}, [3004] = {.lex_state = 5, .external_lex_state = 6}, [3005] = {.lex_state = 5, .external_lex_state = 6}, - [3006] = {.lex_state = 5, .external_lex_state = 6}, + [3006] = {.lex_state = 1, .external_lex_state = 4}, [3007] = {.lex_state = 5, .external_lex_state = 6}, - [3008] = {.lex_state = 4, .external_lex_state = 5}, + [3008] = {.lex_state = 5, .external_lex_state = 6}, [3009] = {.lex_state = 5, .external_lex_state = 6}, - [3010] = {.lex_state = 5, .external_lex_state = 6}, + [3010] = {.lex_state = 1, .external_lex_state = 4}, [3011] = {.lex_state = 5, .external_lex_state = 6}, - [3012] = {.lex_state = 1, .external_lex_state = 4}, - [3013] = {.lex_state = 1, .external_lex_state = 4}, + [3012] = {.lex_state = 5, .external_lex_state = 6}, + [3013] = {.lex_state = 4, .external_lex_state = 5}, [3014] = {.lex_state = 5, .external_lex_state = 7}, - [3015] = {.lex_state = 4, .external_lex_state = 5}, + [3015] = {.lex_state = 1, .external_lex_state = 4}, [3016] = {.lex_state = 1, .external_lex_state = 4}, - [3017] = {.lex_state = 5, .external_lex_state = 6}, - [3018] = {.lex_state = 5, .external_lex_state = 6}, - [3019] = {.lex_state = 5, .external_lex_state = 6}, + [3017] = {.lex_state = 1, .external_lex_state = 4}, + [3018] = {.lex_state = 1, .external_lex_state = 4}, + [3019] = {.lex_state = 1, .external_lex_state = 4}, [3020] = {.lex_state = 5, .external_lex_state = 6}, [3021] = {.lex_state = 5, .external_lex_state = 6}, - [3022] = {.lex_state = 5, .external_lex_state = 6}, - [3023] = {.lex_state = 5, .external_lex_state = 6}, + [3022] = {.lex_state = 1, .external_lex_state = 4}, + [3023] = {.lex_state = 1, .external_lex_state = 4}, [3024] = {.lex_state = 5, .external_lex_state = 6}, [3025] = {.lex_state = 5, .external_lex_state = 6}, - [3026] = {.lex_state = 5, .external_lex_state = 6}, - [3027] = {.lex_state = 1, .external_lex_state = 4}, + [3026] = {.lex_state = 5, .external_lex_state = 7}, + [3027] = {.lex_state = 5, .external_lex_state = 7}, [3028] = {.lex_state = 5, .external_lex_state = 6}, - [3029] = {.lex_state = 5, .external_lex_state = 6}, - [3030] = {.lex_state = 5, .external_lex_state = 6}, - [3031] = {.lex_state = 1, .external_lex_state = 4}, - [3032] = {.lex_state = 1, .external_lex_state = 4}, - [3033] = {.lex_state = 5, .external_lex_state = 6}, + [3029] = {.lex_state = 1, .external_lex_state = 4}, + [3030] = {.lex_state = 5, .external_lex_state = 7}, + [3031] = {.lex_state = 31, .external_lex_state = 2}, + [3032] = {.lex_state = 5, .external_lex_state = 6}, + [3033] = {.lex_state = 5, .external_lex_state = 7}, [3034] = {.lex_state = 5, .external_lex_state = 6}, - [3035] = {.lex_state = 5, .external_lex_state = 6}, + [3035] = {.lex_state = 1, .external_lex_state = 4}, [3036] = {.lex_state = 5, .external_lex_state = 6}, - [3037] = {.lex_state = 5, .external_lex_state = 7}, + [3037] = {.lex_state = 5, .external_lex_state = 6}, [3038] = {.lex_state = 5, .external_lex_state = 6}, [3039] = {.lex_state = 5, .external_lex_state = 6}, - [3040] = {.lex_state = 5, .external_lex_state = 6}, - [3041] = {.lex_state = 5, .external_lex_state = 7}, - [3042] = {.lex_state = 1, .external_lex_state = 4}, + [3040] = {.lex_state = 1, .external_lex_state = 4}, + [3041] = {.lex_state = 5, .external_lex_state = 6}, + [3042] = {.lex_state = 5, .external_lex_state = 6}, [3043] = {.lex_state = 1, .external_lex_state = 4}, - [3044] = {.lex_state = 1, .external_lex_state = 4}, - [3045] = {.lex_state = 5, .external_lex_state = 7}, - [3046] = {.lex_state = 5, .external_lex_state = 6}, + [3044] = {.lex_state = 5, .external_lex_state = 6}, + [3045] = {.lex_state = 5, .external_lex_state = 6}, + [3046] = {.lex_state = 1, .external_lex_state = 4}, [3047] = {.lex_state = 1, .external_lex_state = 4}, - [3048] = {.lex_state = 1, .external_lex_state = 4}, + [3048] = {.lex_state = 5, .external_lex_state = 6}, [3049] = {.lex_state = 5, .external_lex_state = 6}, - [3050] = {.lex_state = 5, .external_lex_state = 7}, + [3050] = {.lex_state = 1, .external_lex_state = 4}, [3051] = {.lex_state = 1, .external_lex_state = 4}, [3052] = {.lex_state = 5, .external_lex_state = 6}, [3053] = {.lex_state = 5, .external_lex_state = 6}, @@ -17273,131 +17283,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3056] = {.lex_state = 5, .external_lex_state = 6}, [3057] = {.lex_state = 1, .external_lex_state = 4}, [3058] = {.lex_state = 5, .external_lex_state = 6}, - [3059] = {.lex_state = 1, .external_lex_state = 4}, - [3060] = {.lex_state = 5, .external_lex_state = 6}, - [3061] = {.lex_state = 1, .external_lex_state = 4}, - [3062] = {.lex_state = 5, .external_lex_state = 7}, + [3059] = {.lex_state = 5, .external_lex_state = 6}, + [3060] = {.lex_state = 1, .external_lex_state = 4}, + [3061] = {.lex_state = 5, .external_lex_state = 6}, + [3062] = {.lex_state = 5, .external_lex_state = 6}, [3063] = {.lex_state = 5, .external_lex_state = 6}, - [3064] = {.lex_state = 1, .external_lex_state = 4}, - [3065] = {.lex_state = 1, .external_lex_state = 4}, + [3064] = {.lex_state = 5, .external_lex_state = 6}, + [3065] = {.lex_state = 5, .external_lex_state = 6}, [3066] = {.lex_state = 5, .external_lex_state = 6}, [3067] = {.lex_state = 5, .external_lex_state = 6}, - [3068] = {.lex_state = 5, .external_lex_state = 6}, + [3068] = {.lex_state = 1, .external_lex_state = 4}, [3069] = {.lex_state = 5, .external_lex_state = 6}, [3070] = {.lex_state = 5, .external_lex_state = 6}, [3071] = {.lex_state = 5, .external_lex_state = 6}, - [3072] = {.lex_state = 1, .external_lex_state = 4}, + [3072] = {.lex_state = 5, .external_lex_state = 6}, [3073] = {.lex_state = 1, .external_lex_state = 4}, - [3074] = {.lex_state = 1, .external_lex_state = 4}, - [3075] = {.lex_state = 1, .external_lex_state = 4}, - [3076] = {.lex_state = 5, .external_lex_state = 6}, + [3074] = {.lex_state = 5, .external_lex_state = 6}, + [3075] = {.lex_state = 5, .external_lex_state = 6}, + [3076] = {.lex_state = 4, .external_lex_state = 5}, [3077] = {.lex_state = 5, .external_lex_state = 6}, - [3078] = {.lex_state = 1, .external_lex_state = 4}, - [3079] = {.lex_state = 1, .external_lex_state = 4}, - [3080] = {.lex_state = 1, .external_lex_state = 4}, + [3078] = {.lex_state = 5, .external_lex_state = 6}, + [3079] = {.lex_state = 5, .external_lex_state = 6}, + [3080] = {.lex_state = 5, .external_lex_state = 6}, [3081] = {.lex_state = 1, .external_lex_state = 4}, - [3082] = {.lex_state = 31, .external_lex_state = 2}, + [3082] = {.lex_state = 5, .external_lex_state = 6}, [3083] = {.lex_state = 1, .external_lex_state = 4}, - [3084] = {.lex_state = 5, .external_lex_state = 6}, + [3084] = {.lex_state = 1, .external_lex_state = 4}, [3085] = {.lex_state = 5, .external_lex_state = 6}, [3086] = {.lex_state = 1, .external_lex_state = 4}, - [3087] = {.lex_state = 5, .external_lex_state = 6}, - [3088] = {.lex_state = 5, .external_lex_state = 6}, + [3087] = {.lex_state = 1, .external_lex_state = 4}, + [3088] = {.lex_state = 1, .external_lex_state = 4}, [3089] = {.lex_state = 5, .external_lex_state = 6}, - [3090] = {.lex_state = 1, .external_lex_state = 4}, + [3090] = {.lex_state = 5, .external_lex_state = 6}, [3091] = {.lex_state = 5, .external_lex_state = 6}, - [3092] = {.lex_state = 1, .external_lex_state = 4}, - [3093] = {.lex_state = 5, .external_lex_state = 6}, - [3094] = {.lex_state = 1, .external_lex_state = 4}, - [3095] = {.lex_state = 5, .external_lex_state = 6}, + [3092] = {.lex_state = 5, .external_lex_state = 6}, + [3093] = {.lex_state = 1, .external_lex_state = 4}, + [3094] = {.lex_state = 5, .external_lex_state = 6}, + [3095] = {.lex_state = 1, .external_lex_state = 4}, [3096] = {.lex_state = 1, .external_lex_state = 4}, - [3097] = {.lex_state = 4, .external_lex_state = 5}, + [3097] = {.lex_state = 1, .external_lex_state = 4}, [3098] = {.lex_state = 5, .external_lex_state = 6}, - [3099] = {.lex_state = 5, .external_lex_state = 6}, + [3099] = {.lex_state = 1, .external_lex_state = 4}, [3100] = {.lex_state = 5, .external_lex_state = 6}, - [3101] = {.lex_state = 5, .external_lex_state = 6}, - [3102] = {.lex_state = 5, .external_lex_state = 6}, - [3103] = {.lex_state = 1, .external_lex_state = 4}, + [3101] = {.lex_state = 1, .external_lex_state = 4}, + [3102] = {.lex_state = 1, .external_lex_state = 4}, + [3103] = {.lex_state = 5, .external_lex_state = 6}, [3104] = {.lex_state = 5, .external_lex_state = 6}, - [3105] = {.lex_state = 1, .external_lex_state = 4}, + [3105] = {.lex_state = 5, .external_lex_state = 6}, [3106] = {.lex_state = 1, .external_lex_state = 4}, - [3107] = {.lex_state = 1, .external_lex_state = 4}, + [3107] = {.lex_state = 5, .external_lex_state = 6}, [3108] = {.lex_state = 5, .external_lex_state = 6}, - [3109] = {.lex_state = 1, .external_lex_state = 4}, + [3109] = {.lex_state = 5, .external_lex_state = 6}, [3110] = {.lex_state = 1, .external_lex_state = 4}, [3111] = {.lex_state = 1, .external_lex_state = 4}, - [3112] = {.lex_state = 1, .external_lex_state = 4}, + [3112] = {.lex_state = 5, .external_lex_state = 6}, [3113] = {.lex_state = 1, .external_lex_state = 4}, [3114] = {.lex_state = 1, .external_lex_state = 4}, [3115] = {.lex_state = 5, .external_lex_state = 6}, - [3116] = {.lex_state = 1, .external_lex_state = 4}, - [3117] = {.lex_state = 5, .external_lex_state = 6}, - [3118] = {.lex_state = 1, .external_lex_state = 4}, - [3119] = {.lex_state = 5, .external_lex_state = 6}, + [3116] = {.lex_state = 5, .external_lex_state = 6}, + [3117] = {.lex_state = 1, .external_lex_state = 4}, + [3118] = {.lex_state = 5, .external_lex_state = 6}, + [3119] = {.lex_state = 1, .external_lex_state = 4}, [3120] = {.lex_state = 1, .external_lex_state = 4}, [3121] = {.lex_state = 1, .external_lex_state = 4}, [3122] = {.lex_state = 1, .external_lex_state = 4}, - [3123] = {.lex_state = 5, .external_lex_state = 6}, + [3123] = {.lex_state = 1, .external_lex_state = 4}, [3124] = {.lex_state = 1, .external_lex_state = 4}, [3125] = {.lex_state = 1, .external_lex_state = 4}, - [3126] = {.lex_state = 1, .external_lex_state = 4}, - [3127] = {.lex_state = 5, .external_lex_state = 6}, + [3126] = {.lex_state = 5, .external_lex_state = 6}, + [3127] = {.lex_state = 1, .external_lex_state = 4}, [3128] = {.lex_state = 1, .external_lex_state = 4}, [3129] = {.lex_state = 1, .external_lex_state = 4}, - [3130] = {.lex_state = 5, .external_lex_state = 6}, - [3131] = {.lex_state = 1, .external_lex_state = 4}, + [3130] = {.lex_state = 1, .external_lex_state = 4}, + [3131] = {.lex_state = 5, .external_lex_state = 7}, [3132] = {.lex_state = 1, .external_lex_state = 4}, [3133] = {.lex_state = 1, .external_lex_state = 4}, - [3134] = {.lex_state = 5, .external_lex_state = 6}, + [3134] = {.lex_state = 1, .external_lex_state = 4}, [3135] = {.lex_state = 1, .external_lex_state = 4}, [3136] = {.lex_state = 1, .external_lex_state = 4}, [3137] = {.lex_state = 5, .external_lex_state = 6}, - [3138] = {.lex_state = 5, .external_lex_state = 6}, - [3139] = {.lex_state = 5, .external_lex_state = 6}, - [3140] = {.lex_state = 5, .external_lex_state = 6}, + [3138] = {.lex_state = 1, .external_lex_state = 4}, + [3139] = {.lex_state = 5, .external_lex_state = 7}, + [3140] = {.lex_state = 1, .external_lex_state = 4}, [3141] = {.lex_state = 1, .external_lex_state = 4}, - [3142] = {.lex_state = 5, .external_lex_state = 6}, + [3142] = {.lex_state = 1, .external_lex_state = 4}, [3143] = {.lex_state = 1, .external_lex_state = 4}, - [3144] = {.lex_state = 5, .external_lex_state = 6}, - [3145] = {.lex_state = 1, .external_lex_state = 4}, + [3144] = {.lex_state = 1, .external_lex_state = 4}, + [3145] = {.lex_state = 5, .external_lex_state = 6}, [3146] = {.lex_state = 1, .external_lex_state = 4}, - [3147] = {.lex_state = 1, .external_lex_state = 4}, + [3147] = {.lex_state = 5, .external_lex_state = 6}, [3148] = {.lex_state = 1, .external_lex_state = 4}, [3149] = {.lex_state = 1, .external_lex_state = 4}, - [3150] = {.lex_state = 5, .external_lex_state = 6}, + [3150] = {.lex_state = 1, .external_lex_state = 4}, [3151] = {.lex_state = 1, .external_lex_state = 4}, - [3152] = {.lex_state = 5, .external_lex_state = 6}, - [3153] = {.lex_state = 1, .external_lex_state = 4}, + [3152] = {.lex_state = 1, .external_lex_state = 4}, + [3153] = {.lex_state = 5, .external_lex_state = 6}, [3154] = {.lex_state = 1, .external_lex_state = 4}, - [3155] = {.lex_state = 1, .external_lex_state = 4}, + [3155] = {.lex_state = 5, .external_lex_state = 6}, [3156] = {.lex_state = 1, .external_lex_state = 4}, [3157] = {.lex_state = 1, .external_lex_state = 4}, [3158] = {.lex_state = 1, .external_lex_state = 4}, [3159] = {.lex_state = 5, .external_lex_state = 6}, - [3160] = {.lex_state = 5, .external_lex_state = 6}, + [3160] = {.lex_state = 1, .external_lex_state = 4}, [3161] = {.lex_state = 1, .external_lex_state = 4}, [3162] = {.lex_state = 1, .external_lex_state = 4}, - [3163] = {.lex_state = 1, .external_lex_state = 4}, - [3164] = {.lex_state = 5, .external_lex_state = 6}, + [3163] = {.lex_state = 5, .external_lex_state = 7}, + [3164] = {.lex_state = 1, .external_lex_state = 4}, [3165] = {.lex_state = 1, .external_lex_state = 4}, [3166] = {.lex_state = 1, .external_lex_state = 4}, [3167] = {.lex_state = 1, .external_lex_state = 4}, [3168] = {.lex_state = 1, .external_lex_state = 4}, [3169] = {.lex_state = 5, .external_lex_state = 6}, [3170] = {.lex_state = 1, .external_lex_state = 4}, - [3171] = {.lex_state = 1, .external_lex_state = 4}, + [3171] = {.lex_state = 5, .external_lex_state = 6}, [3172] = {.lex_state = 1, .external_lex_state = 4}, [3173] = {.lex_state = 1, .external_lex_state = 4}, [3174] = {.lex_state = 1, .external_lex_state = 4}, [3175] = {.lex_state = 1, .external_lex_state = 4}, [3176] = {.lex_state = 1, .external_lex_state = 4}, - [3177] = {.lex_state = 5, .external_lex_state = 6}, - [3178] = {.lex_state = 5, .external_lex_state = 6}, - [3179] = {.lex_state = 5, .external_lex_state = 6}, + [3177] = {.lex_state = 1, .external_lex_state = 4}, + [3178] = {.lex_state = 1, .external_lex_state = 4}, + [3179] = {.lex_state = 1, .external_lex_state = 4}, [3180] = {.lex_state = 5, .external_lex_state = 6}, [3181] = {.lex_state = 5, .external_lex_state = 6}, [3182] = {.lex_state = 5, .external_lex_state = 6}, - [3183] = {.lex_state = 5, .external_lex_state = 6}, + [3183] = {.lex_state = 1, .external_lex_state = 4}, [3184] = {.lex_state = 1, .external_lex_state = 4}, [3185] = {.lex_state = 1, .external_lex_state = 4}, [3186] = {.lex_state = 5, .external_lex_state = 6}, @@ -17405,74 +17415,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3188] = {.lex_state = 5, .external_lex_state = 7}, [3189] = {.lex_state = 5, .external_lex_state = 6}, [3190] = {.lex_state = 5, .external_lex_state = 6}, - [3191] = {.lex_state = 5, .external_lex_state = 6}, - [3192] = {.lex_state = 5, .external_lex_state = 6}, + [3191] = {.lex_state = 5, .external_lex_state = 7}, + [3192] = {.lex_state = 1, .external_lex_state = 4}, [3193] = {.lex_state = 5, .external_lex_state = 6}, - [3194] = {.lex_state = 4, .external_lex_state = 5}, + [3194] = {.lex_state = 5, .external_lex_state = 6}, [3195] = {.lex_state = 5, .external_lex_state = 6}, - [3196] = {.lex_state = 5, .external_lex_state = 6}, - [3197] = {.lex_state = 5, .external_lex_state = 6}, - [3198] = {.lex_state = 5, .external_lex_state = 6}, - [3199] = {.lex_state = 1, .external_lex_state = 4}, - [3200] = {.lex_state = 5, .external_lex_state = 6}, - [3201] = {.lex_state = 5, .external_lex_state = 7}, + [3196] = {.lex_state = 5, .external_lex_state = 7}, + [3197] = {.lex_state = 4, .external_lex_state = 5}, + [3198] = {.lex_state = 1, .external_lex_state = 4}, + [3199] = {.lex_state = 5, .external_lex_state = 7}, + [3200] = {.lex_state = 5, .external_lex_state = 7}, + [3201] = {.lex_state = 5, .external_lex_state = 6}, [3202] = {.lex_state = 5, .external_lex_state = 6}, [3203] = {.lex_state = 5, .external_lex_state = 6}, [3204] = {.lex_state = 5, .external_lex_state = 6}, [3205] = {.lex_state = 1, .external_lex_state = 4}, [3206] = {.lex_state = 1, .external_lex_state = 4}, - [3207] = {.lex_state = 5, .external_lex_state = 6}, - [3208] = {.lex_state = 1, .external_lex_state = 4}, + [3207] = {.lex_state = 1, .external_lex_state = 4}, + [3208] = {.lex_state = 5, .external_lex_state = 6}, [3209] = {.lex_state = 5, .external_lex_state = 6}, [3210] = {.lex_state = 5, .external_lex_state = 6}, [3211] = {.lex_state = 1, .external_lex_state = 4}, - [3212] = {.lex_state = 5, .external_lex_state = 6}, - [3213] = {.lex_state = 5, .external_lex_state = 6}, + [3212] = {.lex_state = 1, .external_lex_state = 4}, + [3213] = {.lex_state = 1, .external_lex_state = 4}, [3214] = {.lex_state = 5, .external_lex_state = 6}, - [3215] = {.lex_state = 1, .external_lex_state = 4}, - [3216] = {.lex_state = 1, .external_lex_state = 4}, - [3217] = {.lex_state = 5, .external_lex_state = 6}, + [3215] = {.lex_state = 5, .external_lex_state = 6}, + [3216] = {.lex_state = 5, .external_lex_state = 6}, + [3217] = {.lex_state = 1, .external_lex_state = 4}, [3218] = {.lex_state = 5, .external_lex_state = 6}, - [3219] = {.lex_state = 5, .external_lex_state = 6}, + [3219] = {.lex_state = 1, .external_lex_state = 4}, [3220] = {.lex_state = 1, .external_lex_state = 4}, - [3221] = {.lex_state = 31, .external_lex_state = 2}, - [3222] = {.lex_state = 1, .external_lex_state = 4}, - [3223] = {.lex_state = 1, .external_lex_state = 4}, - [3224] = {.lex_state = 1, .external_lex_state = 4}, - [3225] = {.lex_state = 1, .external_lex_state = 4}, + [3221] = {.lex_state = 5, .external_lex_state = 6}, + [3222] = {.lex_state = 5, .external_lex_state = 6}, + [3223] = {.lex_state = 5, .external_lex_state = 6}, + [3224] = {.lex_state = 5, .external_lex_state = 6}, + [3225] = {.lex_state = 5, .external_lex_state = 6}, [3226] = {.lex_state = 5, .external_lex_state = 6}, - [3227] = {.lex_state = 1, .external_lex_state = 4}, + [3227] = {.lex_state = 5, .external_lex_state = 6}, [3228] = {.lex_state = 5, .external_lex_state = 6}, [3229] = {.lex_state = 5, .external_lex_state = 6}, - [3230] = {.lex_state = 5, .external_lex_state = 7}, - [3231] = {.lex_state = 5, .external_lex_state = 6}, - [3232] = {.lex_state = 5, .external_lex_state = 6}, + [3230] = {.lex_state = 1, .external_lex_state = 4}, + [3231] = {.lex_state = 1, .external_lex_state = 4}, + [3232] = {.lex_state = 1, .external_lex_state = 4}, [3233] = {.lex_state = 5, .external_lex_state = 6}, [3234] = {.lex_state = 5, .external_lex_state = 6}, [3235] = {.lex_state = 1, .external_lex_state = 4}, - [3236] = {.lex_state = 5, .external_lex_state = 6}, - [3237] = {.lex_state = 5, .external_lex_state = 6}, - [3238] = {.lex_state = 5, .external_lex_state = 7}, + [3236] = {.lex_state = 1, .external_lex_state = 4}, + [3237] = {.lex_state = 1, .external_lex_state = 4}, + [3238] = {.lex_state = 5, .external_lex_state = 6}, [3239] = {.lex_state = 5, .external_lex_state = 6}, - [3240] = {.lex_state = 5, .external_lex_state = 6}, + [3240] = {.lex_state = 1, .external_lex_state = 4}, [3241] = {.lex_state = 5, .external_lex_state = 6}, - [3242] = {.lex_state = 5, .external_lex_state = 7}, + [3242] = {.lex_state = 1, .external_lex_state = 4}, [3243] = {.lex_state = 5, .external_lex_state = 6}, - [3244] = {.lex_state = 5, .external_lex_state = 6}, + [3244] = {.lex_state = 1, .external_lex_state = 4}, [3245] = {.lex_state = 5, .external_lex_state = 6}, [3246] = {.lex_state = 5, .external_lex_state = 6}, - [3247] = {.lex_state = 5, .external_lex_state = 6}, + [3247] = {.lex_state = 1, .external_lex_state = 4}, [3248] = {.lex_state = 5, .external_lex_state = 6}, - [3249] = {.lex_state = 1, .external_lex_state = 4}, - [3250] = {.lex_state = 1, .external_lex_state = 4}, + [3249] = {.lex_state = 5, .external_lex_state = 6}, + [3250] = {.lex_state = 5, .external_lex_state = 6}, [3251] = {.lex_state = 1, .external_lex_state = 4}, - [3252] = {.lex_state = 5, .external_lex_state = 7}, - [3253] = {.lex_state = 5, .external_lex_state = 6}, + [3252] = {.lex_state = 1, .external_lex_state = 4}, + [3253] = {.lex_state = 1, .external_lex_state = 4}, [3254] = {.lex_state = 5, .external_lex_state = 6}, [3255] = {.lex_state = 5, .external_lex_state = 6}, [3256] = {.lex_state = 5, .external_lex_state = 6}, [3257] = {.lex_state = 5, .external_lex_state = 6}, - [3258] = {.lex_state = 1, .external_lex_state = 4}, + [3258] = {.lex_state = 5, .external_lex_state = 6}, [3259] = {.lex_state = 1, .external_lex_state = 4}, [3260] = {.lex_state = 5, .external_lex_state = 6}, [3261] = {.lex_state = 5, .external_lex_state = 6}, @@ -17480,228 +17490,228 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3263] = {.lex_state = 1, .external_lex_state = 4}, [3264] = {.lex_state = 5, .external_lex_state = 7}, [3265] = {.lex_state = 5, .external_lex_state = 6}, - [3266] = {.lex_state = 4, .external_lex_state = 5}, - [3267] = {.lex_state = 5, .external_lex_state = 6}, - [3268] = {.lex_state = 1, .external_lex_state = 4}, - [3269] = {.lex_state = 1, .external_lex_state = 4}, + [3266] = {.lex_state = 1, .external_lex_state = 4}, + [3267] = {.lex_state = 1, .external_lex_state = 4}, + [3268] = {.lex_state = 31, .external_lex_state = 2}, + [3269] = {.lex_state = 4, .external_lex_state = 5}, [3270] = {.lex_state = 5, .external_lex_state = 6}, [3271] = {.lex_state = 5, .external_lex_state = 6}, - [3272] = {.lex_state = 5, .external_lex_state = 6}, - [3273] = {.lex_state = 5, .external_lex_state = 6}, + [3272] = {.lex_state = 1, .external_lex_state = 4}, + [3273] = {.lex_state = 5, .external_lex_state = 7}, [3274] = {.lex_state = 5, .external_lex_state = 7}, [3275] = {.lex_state = 1, .external_lex_state = 4}, - [3276] = {.lex_state = 1, .external_lex_state = 4}, - [3277] = {.lex_state = 5, .external_lex_state = 7}, - [3278] = {.lex_state = 5, .external_lex_state = 7}, - [3279] = {.lex_state = 1, .external_lex_state = 4}, - [3280] = {.lex_state = 5, .external_lex_state = 6}, - [3281] = {.lex_state = 5, .external_lex_state = 6}, - [3282] = {.lex_state = 5, .external_lex_state = 6}, - [3283] = {.lex_state = 1, .external_lex_state = 4}, - [3284] = {.lex_state = 5, .external_lex_state = 7}, - [3285] = {.lex_state = 1, .external_lex_state = 4}, - [3286] = {.lex_state = 1, .external_lex_state = 4}, - [3287] = {.lex_state = 5, .external_lex_state = 6}, + [3276] = {.lex_state = 5, .external_lex_state = 7}, + [3277] = {.lex_state = 1, .external_lex_state = 4}, + [3278] = {.lex_state = 5, .external_lex_state = 6}, + [3279] = {.lex_state = 5, .external_lex_state = 7}, + [3280] = {.lex_state = 5, .external_lex_state = 7}, + [3281] = {.lex_state = 5, .external_lex_state = 7}, + [3282] = {.lex_state = 5, .external_lex_state = 7}, + [3283] = {.lex_state = 5, .external_lex_state = 7}, + [3284] = {.lex_state = 5, .external_lex_state = 6}, + [3285] = {.lex_state = 5, .external_lex_state = 7}, + [3286] = {.lex_state = 5, .external_lex_state = 6}, + [3287] = {.lex_state = 5, .external_lex_state = 7}, [3288] = {.lex_state = 1, .external_lex_state = 4}, - [3289] = {.lex_state = 1, .external_lex_state = 4}, + [3289] = {.lex_state = 5, .external_lex_state = 7}, [3290] = {.lex_state = 1, .external_lex_state = 4}, - [3291] = {.lex_state = 5, .external_lex_state = 6}, + [3291] = {.lex_state = 5, .external_lex_state = 7}, [3292] = {.lex_state = 5, .external_lex_state = 6}, [3293] = {.lex_state = 1, .external_lex_state = 4}, - [3294] = {.lex_state = 5, .external_lex_state = 6}, - [3295] = {.lex_state = 1, .external_lex_state = 4}, - [3296] = {.lex_state = 1, .external_lex_state = 4}, + [3294] = {.lex_state = 1, .external_lex_state = 4}, + [3295] = {.lex_state = 5, .external_lex_state = 7}, + [3296] = {.lex_state = 5, .external_lex_state = 6}, [3297] = {.lex_state = 1, .external_lex_state = 4}, [3298] = {.lex_state = 1, .external_lex_state = 4}, [3299] = {.lex_state = 1, .external_lex_state = 4}, [3300] = {.lex_state = 5, .external_lex_state = 6}, - [3301] = {.lex_state = 5, .external_lex_state = 7}, - [3302] = {.lex_state = 5, .external_lex_state = 6}, - [3303] = {.lex_state = 1, .external_lex_state = 4}, - [3304] = {.lex_state = 1, .external_lex_state = 4}, - [3305] = {.lex_state = 5, .external_lex_state = 6}, + [3301] = {.lex_state = 1, .external_lex_state = 4}, + [3302] = {.lex_state = 1, .external_lex_state = 4}, + [3303] = {.lex_state = 5, .external_lex_state = 6}, + [3304] = {.lex_state = 5, .external_lex_state = 6}, + [3305] = {.lex_state = 1, .external_lex_state = 4}, [3306] = {.lex_state = 5, .external_lex_state = 6}, [3307] = {.lex_state = 1, .external_lex_state = 4}, [3308] = {.lex_state = 1, .external_lex_state = 4}, [3309] = {.lex_state = 5, .external_lex_state = 6}, - [3310] = {.lex_state = 5, .external_lex_state = 7}, - [3311] = {.lex_state = 5, .external_lex_state = 6}, + [3310] = {.lex_state = 5, .external_lex_state = 6}, + [3311] = {.lex_state = 1, .external_lex_state = 4}, [3312] = {.lex_state = 5, .external_lex_state = 6}, - [3313] = {.lex_state = 1, .external_lex_state = 4}, + [3313] = {.lex_state = 5, .external_lex_state = 6}, [3314] = {.lex_state = 1, .external_lex_state = 4}, - [3315] = {.lex_state = 5, .external_lex_state = 7}, - [3316] = {.lex_state = 5, .external_lex_state = 6}, + [3315] = {.lex_state = 1, .external_lex_state = 4}, + [3316] = {.lex_state = 1, .external_lex_state = 4}, [3317] = {.lex_state = 5, .external_lex_state = 6}, - [3318] = {.lex_state = 1, .external_lex_state = 4}, - [3319] = {.lex_state = 5, .external_lex_state = 6}, + [3318] = {.lex_state = 5, .external_lex_state = 6}, + [3319] = {.lex_state = 1, .external_lex_state = 4}, [3320] = {.lex_state = 1, .external_lex_state = 4}, - [3321] = {.lex_state = 5, .external_lex_state = 6}, - [3322] = {.lex_state = 1, .external_lex_state = 4}, + [3321] = {.lex_state = 1, .external_lex_state = 4}, + [3322] = {.lex_state = 5, .external_lex_state = 6}, [3323] = {.lex_state = 1, .external_lex_state = 4}, - [3324] = {.lex_state = 5, .external_lex_state = 6}, - [3325] = {.lex_state = 5, .external_lex_state = 6}, + [3324] = {.lex_state = 1, .external_lex_state = 4}, + [3325] = {.lex_state = 1, .external_lex_state = 4}, [3326] = {.lex_state = 5, .external_lex_state = 6}, - [3327] = {.lex_state = 5, .external_lex_state = 7}, - [3328] = {.lex_state = 1, .external_lex_state = 4}, + [3327] = {.lex_state = 5, .external_lex_state = 6}, + [3328] = {.lex_state = 5, .external_lex_state = 6}, [3329] = {.lex_state = 5, .external_lex_state = 6}, [3330] = {.lex_state = 1, .external_lex_state = 4}, [3331] = {.lex_state = 1, .external_lex_state = 4}, - [3332] = {.lex_state = 5, .external_lex_state = 6}, - [3333] = {.lex_state = 1, .external_lex_state = 4}, + [3332] = {.lex_state = 1, .external_lex_state = 4}, + [3333] = {.lex_state = 5, .external_lex_state = 6}, [3334] = {.lex_state = 1, .external_lex_state = 4}, - [3335] = {.lex_state = 1, .external_lex_state = 4}, - [3336] = {.lex_state = 1, .external_lex_state = 4}, - [3337] = {.lex_state = 5, .external_lex_state = 6}, + [3335] = {.lex_state = 5, .external_lex_state = 7}, + [3336] = {.lex_state = 5, .external_lex_state = 6}, + [3337] = {.lex_state = 1, .external_lex_state = 4}, [3338] = {.lex_state = 5, .external_lex_state = 6}, - [3339] = {.lex_state = 1, .external_lex_state = 4}, - [3340] = {.lex_state = 1, .external_lex_state = 4}, - [3341] = {.lex_state = 5, .external_lex_state = 6}, - [3342] = {.lex_state = 5, .external_lex_state = 6}, - [3343] = {.lex_state = 5, .external_lex_state = 6}, - [3344] = {.lex_state = 1, .external_lex_state = 4}, - [3345] = {.lex_state = 1, .external_lex_state = 4}, + [3339] = {.lex_state = 5, .external_lex_state = 6}, + [3340] = {.lex_state = 5, .external_lex_state = 6}, + [3341] = {.lex_state = 1, .external_lex_state = 4}, + [3342] = {.lex_state = 1, .external_lex_state = 4}, + [3343] = {.lex_state = 1, .external_lex_state = 4}, + [3344] = {.lex_state = 5, .external_lex_state = 6}, + [3345] = {.lex_state = 5, .external_lex_state = 6}, [3346] = {.lex_state = 5, .external_lex_state = 6}, [3347] = {.lex_state = 1, .external_lex_state = 4}, [3348] = {.lex_state = 1, .external_lex_state = 4}, [3349] = {.lex_state = 1, .external_lex_state = 4}, - [3350] = {.lex_state = 1, .external_lex_state = 4}, - [3351] = {.lex_state = 5, .external_lex_state = 6}, + [3350] = {.lex_state = 5, .external_lex_state = 6}, + [3351] = {.lex_state = 1, .external_lex_state = 4}, [3352] = {.lex_state = 1, .external_lex_state = 4}, [3353] = {.lex_state = 1, .external_lex_state = 4}, [3354] = {.lex_state = 5, .external_lex_state = 6}, [3355] = {.lex_state = 1, .external_lex_state = 4}, [3356] = {.lex_state = 1, .external_lex_state = 4}, - [3357] = {.lex_state = 5, .external_lex_state = 6}, + [3357] = {.lex_state = 1, .external_lex_state = 4}, [3358] = {.lex_state = 1, .external_lex_state = 4}, - [3359] = {.lex_state = 5, .external_lex_state = 6}, - [3360] = {.lex_state = 1, .external_lex_state = 4}, + [3359] = {.lex_state = 5, .external_lex_state = 7}, + [3360] = {.lex_state = 5, .external_lex_state = 7}, [3361] = {.lex_state = 5, .external_lex_state = 6}, - [3362] = {.lex_state = 5, .external_lex_state = 6}, - [3363] = {.lex_state = 5, .external_lex_state = 6}, + [3362] = {.lex_state = 1, .external_lex_state = 4}, + [3363] = {.lex_state = 1, .external_lex_state = 4}, [3364] = {.lex_state = 1, .external_lex_state = 4}, - [3365] = {.lex_state = 5, .external_lex_state = 6}, - [3366] = {.lex_state = 5, .external_lex_state = 6}, - [3367] = {.lex_state = 5, .external_lex_state = 6}, + [3365] = {.lex_state = 1, .external_lex_state = 4}, + [3366] = {.lex_state = 1, .external_lex_state = 4}, + [3367] = {.lex_state = 1, .external_lex_state = 4}, [3368] = {.lex_state = 5, .external_lex_state = 6}, [3369] = {.lex_state = 5, .external_lex_state = 6}, - [3370] = {.lex_state = 5, .external_lex_state = 6}, - [3371] = {.lex_state = 5, .external_lex_state = 6}, - [3372] = {.lex_state = 5, .external_lex_state = 6}, - [3373] = {.lex_state = 5, .external_lex_state = 6}, + [3370] = {.lex_state = 1, .external_lex_state = 4}, + [3371] = {.lex_state = 1, .external_lex_state = 4}, + [3372] = {.lex_state = 1, .external_lex_state = 4}, + [3373] = {.lex_state = 1, .external_lex_state = 4}, [3374] = {.lex_state = 5, .external_lex_state = 6}, [3375] = {.lex_state = 5, .external_lex_state = 6}, [3376] = {.lex_state = 1, .external_lex_state = 4}, - [3377] = {.lex_state = 5, .external_lex_state = 7}, - [3378] = {.lex_state = 5, .external_lex_state = 7}, - [3379] = {.lex_state = 1, .external_lex_state = 4}, + [3377] = {.lex_state = 5, .external_lex_state = 6}, + [3378] = {.lex_state = 5, .external_lex_state = 6}, + [3379] = {.lex_state = 5, .external_lex_state = 6}, [3380] = {.lex_state = 1, .external_lex_state = 4}, - [3381] = {.lex_state = 5, .external_lex_state = 6}, - [3382] = {.lex_state = 5, .external_lex_state = 7}, - [3383] = {.lex_state = 1, .external_lex_state = 4}, + [3381] = {.lex_state = 1, .external_lex_state = 4}, + [3382] = {.lex_state = 5, .external_lex_state = 6}, + [3383] = {.lex_state = 5, .external_lex_state = 6}, [3384] = {.lex_state = 1, .external_lex_state = 4}, [3385] = {.lex_state = 1, .external_lex_state = 4}, [3386] = {.lex_state = 5, .external_lex_state = 6}, - [3387] = {.lex_state = 5, .external_lex_state = 6}, + [3387] = {.lex_state = 1, .external_lex_state = 4}, [3388] = {.lex_state = 1, .external_lex_state = 4}, [3389] = {.lex_state = 1, .external_lex_state = 4}, [3390] = {.lex_state = 5, .external_lex_state = 6}, - [3391] = {.lex_state = 1, .external_lex_state = 4}, + [3391] = {.lex_state = 5, .external_lex_state = 6}, [3392] = {.lex_state = 5, .external_lex_state = 6}, [3393] = {.lex_state = 5, .external_lex_state = 6}, - [3394] = {.lex_state = 5, .external_lex_state = 6}, - [3395] = {.lex_state = 1, .external_lex_state = 4}, - [3396] = {.lex_state = 1, .external_lex_state = 4}, - [3397] = {.lex_state = 4, .external_lex_state = 5}, - [3398] = {.lex_state = 1, .external_lex_state = 4}, - [3399] = {.lex_state = 1, .external_lex_state = 4}, - [3400] = {.lex_state = 5, .external_lex_state = 6}, - [3401] = {.lex_state = 5, .external_lex_state = 6}, + [3394] = {.lex_state = 1, .external_lex_state = 4}, + [3395] = {.lex_state = 5, .external_lex_state = 6}, + [3396] = {.lex_state = 5, .external_lex_state = 6}, + [3397] = {.lex_state = 5, .external_lex_state = 6}, + [3398] = {.lex_state = 5, .external_lex_state = 6}, + [3399] = {.lex_state = 5, .external_lex_state = 6}, + [3400] = {.lex_state = 4, .external_lex_state = 5}, + [3401] = {.lex_state = 1, .external_lex_state = 4}, [3402] = {.lex_state = 5, .external_lex_state = 6}, - [3403] = {.lex_state = 5, .external_lex_state = 6}, + [3403] = {.lex_state = 1, .external_lex_state = 4}, [3404] = {.lex_state = 5, .external_lex_state = 6}, - [3405] = {.lex_state = 4, .external_lex_state = 5}, - [3406] = {.lex_state = 5, .external_lex_state = 6}, - [3407] = {.lex_state = 4, .external_lex_state = 5}, - [3408] = {.lex_state = 5, .external_lex_state = 6}, - [3409] = {.lex_state = 1, .external_lex_state = 4}, - [3410] = {.lex_state = 5, .external_lex_state = 6}, - [3411] = {.lex_state = 5, .external_lex_state = 6}, - [3412] = {.lex_state = 5, .external_lex_state = 7}, - [3413] = {.lex_state = 5, .external_lex_state = 6}, + [3405] = {.lex_state = 5, .external_lex_state = 6}, + [3406] = {.lex_state = 5, .external_lex_state = 7}, + [3407] = {.lex_state = 5, .external_lex_state = 6}, + [3408] = {.lex_state = 4, .external_lex_state = 5}, + [3409] = {.lex_state = 5, .external_lex_state = 7}, + [3410] = {.lex_state = 4, .external_lex_state = 5}, + [3411] = {.lex_state = 1, .external_lex_state = 4}, + [3412] = {.lex_state = 1, .external_lex_state = 4}, + [3413] = {.lex_state = 5, .external_lex_state = 7}, [3414] = {.lex_state = 1, .external_lex_state = 4}, - [3415] = {.lex_state = 1, .external_lex_state = 4}, - [3416] = {.lex_state = 1, .external_lex_state = 4}, - [3417] = {.lex_state = 1, .external_lex_state = 4}, + [3415] = {.lex_state = 5, .external_lex_state = 6}, + [3416] = {.lex_state = 5, .external_lex_state = 6}, + [3417] = {.lex_state = 5, .external_lex_state = 6}, [3418] = {.lex_state = 5, .external_lex_state = 6}, [3419] = {.lex_state = 1, .external_lex_state = 4}, - [3420] = {.lex_state = 1, .external_lex_state = 4}, - [3421] = {.lex_state = 1, .external_lex_state = 4}, - [3422] = {.lex_state = 5, .external_lex_state = 7}, - [3423] = {.lex_state = 1, .external_lex_state = 4}, - [3424] = {.lex_state = 1, .external_lex_state = 4}, - [3425] = {.lex_state = 1, .external_lex_state = 4}, + [3420] = {.lex_state = 5, .external_lex_state = 6}, + [3421] = {.lex_state = 5, .external_lex_state = 6}, + [3422] = {.lex_state = 5, .external_lex_state = 6}, + [3423] = {.lex_state = 5, .external_lex_state = 6}, + [3424] = {.lex_state = 5, .external_lex_state = 6}, + [3425] = {.lex_state = 4, .external_lex_state = 5}, [3426] = {.lex_state = 1, .external_lex_state = 4}, - [3427] = {.lex_state = 5, .external_lex_state = 7}, - [3428] = {.lex_state = 1, .external_lex_state = 4}, + [3427] = {.lex_state = 5, .external_lex_state = 6}, + [3428] = {.lex_state = 5, .external_lex_state = 7}, [3429] = {.lex_state = 5, .external_lex_state = 6}, - [3430] = {.lex_state = 1, .external_lex_state = 4}, - [3431] = {.lex_state = 4, .external_lex_state = 5}, - [3432] = {.lex_state = 5, .external_lex_state = 7}, - [3433] = {.lex_state = 1, .external_lex_state = 4}, - [3434] = {.lex_state = 5, .external_lex_state = 7}, - [3435] = {.lex_state = 5, .external_lex_state = 7}, + [3430] = {.lex_state = 5, .external_lex_state = 6}, + [3431] = {.lex_state = 5, .external_lex_state = 6}, + [3432] = {.lex_state = 5, .external_lex_state = 6}, + [3433] = {.lex_state = 5, .external_lex_state = 6}, + [3434] = {.lex_state = 5, .external_lex_state = 6}, + [3435] = {.lex_state = 5, .external_lex_state = 6}, [3436] = {.lex_state = 5, .external_lex_state = 6}, - [3437] = {.lex_state = 1, .external_lex_state = 4}, + [3437] = {.lex_state = 5, .external_lex_state = 6}, [3438] = {.lex_state = 1, .external_lex_state = 4}, - [3439] = {.lex_state = 5, .external_lex_state = 7}, - [3440] = {.lex_state = 1, .external_lex_state = 4}, - [3441] = {.lex_state = 5, .external_lex_state = 6}, - [3442] = {.lex_state = 4, .external_lex_state = 5}, - [3443] = {.lex_state = 5, .external_lex_state = 7}, - [3444] = {.lex_state = 1, .external_lex_state = 4}, - [3445] = {.lex_state = 5, .external_lex_state = 6}, - [3446] = {.lex_state = 5, .external_lex_state = 7}, - [3447] = {.lex_state = 1, .external_lex_state = 4}, - [3448] = {.lex_state = 1, .external_lex_state = 4}, - [3449] = {.lex_state = 1, .external_lex_state = 4}, + [3439] = {.lex_state = 1, .external_lex_state = 4}, + [3440] = {.lex_state = 5, .external_lex_state = 6}, + [3441] = {.lex_state = 1, .external_lex_state = 4}, + [3442] = {.lex_state = 5, .external_lex_state = 6}, + [3443] = {.lex_state = 5, .external_lex_state = 6}, + [3444] = {.lex_state = 5, .external_lex_state = 6}, + [3445] = {.lex_state = 1, .external_lex_state = 4}, + [3446] = {.lex_state = 5, .external_lex_state = 6}, + [3447] = {.lex_state = 5, .external_lex_state = 6}, + [3448] = {.lex_state = 5, .external_lex_state = 6}, + [3449] = {.lex_state = 5, .external_lex_state = 6}, [3450] = {.lex_state = 1, .external_lex_state = 4}, [3451] = {.lex_state = 1, .external_lex_state = 4}, - [3452] = {.lex_state = 1, .external_lex_state = 4}, + [3452] = {.lex_state = 5, .external_lex_state = 6}, [3453] = {.lex_state = 5, .external_lex_state = 6}, - [3454] = {.lex_state = 1, .external_lex_state = 4}, + [3454] = {.lex_state = 5, .external_lex_state = 6}, [3455] = {.lex_state = 5, .external_lex_state = 6}, - [3456] = {.lex_state = 1, .external_lex_state = 4}, - [3457] = {.lex_state = 1, .external_lex_state = 4}, - [3458] = {.lex_state = 5, .external_lex_state = 7}, - [3459] = {.lex_state = 1, .external_lex_state = 4}, - [3460] = {.lex_state = 1, .external_lex_state = 4}, - [3461] = {.lex_state = 1, .external_lex_state = 4}, - [3462] = {.lex_state = 5, .external_lex_state = 7}, - [3463] = {.lex_state = 5, .external_lex_state = 7}, - [3464] = {.lex_state = 5, .external_lex_state = 6}, - [3465] = {.lex_state = 1, .external_lex_state = 4}, - [3466] = {.lex_state = 4, .external_lex_state = 5}, - [3467] = {.lex_state = 5, .external_lex_state = 7}, + [3456] = {.lex_state = 5, .external_lex_state = 6}, + [3457] = {.lex_state = 5, .external_lex_state = 6}, + [3458] = {.lex_state = 1, .external_lex_state = 4}, + [3459] = {.lex_state = 5, .external_lex_state = 7}, + [3460] = {.lex_state = 5, .external_lex_state = 6}, + [3461] = {.lex_state = 4, .external_lex_state = 5}, + [3462] = {.lex_state = 5, .external_lex_state = 6}, + [3463] = {.lex_state = 1, .external_lex_state = 4}, + [3464] = {.lex_state = 1, .external_lex_state = 4}, + [3465] = {.lex_state = 5, .external_lex_state = 6}, + [3466] = {.lex_state = 5, .external_lex_state = 6}, + [3467] = {.lex_state = 1, .external_lex_state = 4}, [3468] = {.lex_state = 5, .external_lex_state = 6}, - [3469] = {.lex_state = 1, .external_lex_state = 4}, - [3470] = {.lex_state = 5, .external_lex_state = 6}, + [3469] = {.lex_state = 4, .external_lex_state = 5}, + [3470] = {.lex_state = 5, .external_lex_state = 7}, [3471] = {.lex_state = 4, .external_lex_state = 5}, - [3472] = {.lex_state = 1, .external_lex_state = 4}, - [3473] = {.lex_state = 5, .external_lex_state = 6}, + [3472] = {.lex_state = 5, .external_lex_state = 6}, + [3473] = {.lex_state = 1, .external_lex_state = 4}, [3474] = {.lex_state = 5, .external_lex_state = 7}, [3475] = {.lex_state = 5, .external_lex_state = 6}, [3476] = {.lex_state = 5, .external_lex_state = 7}, [3477] = {.lex_state = 5, .external_lex_state = 7}, - [3478] = {.lex_state = 5, .external_lex_state = 7}, + [3478] = {.lex_state = 1, .external_lex_state = 3}, [3479] = {.lex_state = 5, .external_lex_state = 7}, - [3480] = {.lex_state = 5, .external_lex_state = 7}, + [3480] = {.lex_state = 1, .external_lex_state = 3}, [3481] = {.lex_state = 5, .external_lex_state = 7}, [3482] = {.lex_state = 5, .external_lex_state = 7}, - [3483] = {.lex_state = 5, .external_lex_state = 7}, + [3483] = {.lex_state = 5, .external_lex_state = 6}, [3484] = {.lex_state = 5, .external_lex_state = 7}, - [3485] = {.lex_state = 5, .external_lex_state = 6}, + [3485] = {.lex_state = 5, .external_lex_state = 7}, [3486] = {.lex_state = 5, .external_lex_state = 7}, - [3487] = {.lex_state = 5, .external_lex_state = 6}, + [3487] = {.lex_state = 5, .external_lex_state = 7}, [3488] = {.lex_state = 5, .external_lex_state = 7}, [3489] = {.lex_state = 5, .external_lex_state = 7}, [3490] = {.lex_state = 5, .external_lex_state = 7}, @@ -17710,650 +17720,650 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3493] = {.lex_state = 5, .external_lex_state = 7}, [3494] = {.lex_state = 5, .external_lex_state = 7}, [3495] = {.lex_state = 5, .external_lex_state = 7}, - [3496] = {.lex_state = 5, .external_lex_state = 7}, + [3496] = {.lex_state = 5, .external_lex_state = 6}, [3497] = {.lex_state = 5, .external_lex_state = 7}, [3498] = {.lex_state = 5, .external_lex_state = 7}, [3499] = {.lex_state = 5, .external_lex_state = 7}, - [3500] = {.lex_state = 5, .external_lex_state = 6}, - [3501] = {.lex_state = 5, .external_lex_state = 7}, + [3500] = {.lex_state = 5, .external_lex_state = 7}, + [3501] = {.lex_state = 5, .external_lex_state = 6}, [3502] = {.lex_state = 5, .external_lex_state = 7}, [3503] = {.lex_state = 5, .external_lex_state = 7}, [3504] = {.lex_state = 5, .external_lex_state = 7}, - [3505] = {.lex_state = 5, .external_lex_state = 7}, - [3506] = {.lex_state = 5, .external_lex_state = 7}, + [3505] = {.lex_state = 5, .external_lex_state = 6}, + [3506] = {.lex_state = 5, .external_lex_state = 6}, [3507] = {.lex_state = 5, .external_lex_state = 7}, [3508] = {.lex_state = 5, .external_lex_state = 7}, [3509] = {.lex_state = 5, .external_lex_state = 7}, [3510] = {.lex_state = 5, .external_lex_state = 7}, - [3511] = {.lex_state = 5, .external_lex_state = 6}, - [3512] = {.lex_state = 5, .external_lex_state = 6}, + [3511] = {.lex_state = 5, .external_lex_state = 7}, + [3512] = {.lex_state = 5, .external_lex_state = 7}, [3513] = {.lex_state = 5, .external_lex_state = 7}, [3514] = {.lex_state = 5, .external_lex_state = 7}, [3515] = {.lex_state = 5, .external_lex_state = 7}, - [3516] = {.lex_state = 5, .external_lex_state = 6}, + [3516] = {.lex_state = 5, .external_lex_state = 7}, [3517] = {.lex_state = 1, .external_lex_state = 4}, [3518] = {.lex_state = 1, .external_lex_state = 4}, - [3519] = {.lex_state = 5, .external_lex_state = 7}, + [3519] = {.lex_state = 1, .external_lex_state = 4}, [3520] = {.lex_state = 5, .external_lex_state = 7}, [3521] = {.lex_state = 1, .external_lex_state = 4}, - [3522] = {.lex_state = 5, .external_lex_state = 7}, - [3523] = {.lex_state = 1, .external_lex_state = 4}, + [3522] = {.lex_state = 5, .external_lex_state = 6}, + [3523] = {.lex_state = 5, .external_lex_state = 7}, [3524] = {.lex_state = 1, .external_lex_state = 4}, [3525] = {.lex_state = 5, .external_lex_state = 7}, [3526] = {.lex_state = 5, .external_lex_state = 7}, [3527] = {.lex_state = 5, .external_lex_state = 7}, [3528] = {.lex_state = 5, .external_lex_state = 7}, - [3529] = {.lex_state = 1, .external_lex_state = 3}, + [3529] = {.lex_state = 5, .external_lex_state = 7}, [3530] = {.lex_state = 5, .external_lex_state = 7}, - [3531] = {.lex_state = 1, .external_lex_state = 3}, + [3531] = {.lex_state = 5, .external_lex_state = 7}, [3532] = {.lex_state = 5, .external_lex_state = 7}, - [3533] = {.lex_state = 5, .external_lex_state = 7}, + [3533] = {.lex_state = 5, .external_lex_state = 6}, [3534] = {.lex_state = 5, .external_lex_state = 7}, [3535] = {.lex_state = 5, .external_lex_state = 7}, [3536] = {.lex_state = 5, .external_lex_state = 7}, [3537] = {.lex_state = 5, .external_lex_state = 7}, [3538] = {.lex_state = 5, .external_lex_state = 7}, - [3539] = {.lex_state = 5, .external_lex_state = 7}, - [3540] = {.lex_state = 5, .external_lex_state = 7}, - [3541] = {.lex_state = 5, .external_lex_state = 6}, + [3539] = {.lex_state = 5, .external_lex_state = 6}, + [3540] = {.lex_state = 5, .external_lex_state = 6}, + [3541] = {.lex_state = 5, .external_lex_state = 7}, [3542] = {.lex_state = 5, .external_lex_state = 7}, - [3543] = {.lex_state = 5, .external_lex_state = 6}, - [3544] = {.lex_state = 5, .external_lex_state = 6}, - [3545] = {.lex_state = 1, .external_lex_state = 4}, + [3543] = {.lex_state = 5, .external_lex_state = 7}, + [3544] = {.lex_state = 5, .external_lex_state = 7}, + [3545] = {.lex_state = 5, .external_lex_state = 7}, [3546] = {.lex_state = 5, .external_lex_state = 7}, - [3547] = {.lex_state = 1, .external_lex_state = 4}, - [3548] = {.lex_state = 5, .external_lex_state = 6}, - [3549] = {.lex_state = 1, .external_lex_state = 4}, - [3550] = {.lex_state = 5, .external_lex_state = 6}, + [3547] = {.lex_state = 5, .external_lex_state = 7}, + [3548] = {.lex_state = 5, .external_lex_state = 7}, + [3549] = {.lex_state = 5, .external_lex_state = 7}, + [3550] = {.lex_state = 5, .external_lex_state = 7}, [3551] = {.lex_state = 5, .external_lex_state = 7}, - [3552] = {.lex_state = 5, .external_lex_state = 7}, + [3552] = {.lex_state = 4, .external_lex_state = 5}, [3553] = {.lex_state = 5, .external_lex_state = 7}, [3554] = {.lex_state = 5, .external_lex_state = 7}, - [3555] = {.lex_state = 5, .external_lex_state = 7}, - [3556] = {.lex_state = 5, .external_lex_state = 7}, + [3555] = {.lex_state = 1, .external_lex_state = 4}, + [3556] = {.lex_state = 1, .external_lex_state = 4}, [3557] = {.lex_state = 5, .external_lex_state = 7}, [3558] = {.lex_state = 5, .external_lex_state = 7}, - [3559] = {.lex_state = 5, .external_lex_state = 7}, + [3559] = {.lex_state = 4, .external_lex_state = 5}, [3560] = {.lex_state = 5, .external_lex_state = 7}, [3561] = {.lex_state = 5, .external_lex_state = 7}, [3562] = {.lex_state = 5, .external_lex_state = 7}, [3563] = {.lex_state = 5, .external_lex_state = 7}, [3564] = {.lex_state = 5, .external_lex_state = 7}, [3565] = {.lex_state = 5, .external_lex_state = 7}, - [3566] = {.lex_state = 5, .external_lex_state = 6}, - [3567] = {.lex_state = 5, .external_lex_state = 7}, - [3568] = {.lex_state = 5, .external_lex_state = 6}, + [3566] = {.lex_state = 5, .external_lex_state = 7}, + [3567] = {.lex_state = 4, .external_lex_state = 5}, + [3568] = {.lex_state = 5, .external_lex_state = 7}, [3569] = {.lex_state = 5, .external_lex_state = 7}, [3570] = {.lex_state = 5, .external_lex_state = 7}, [3571] = {.lex_state = 5, .external_lex_state = 7}, - [3572] = {.lex_state = 1, .external_lex_state = 4}, - [3573] = {.lex_state = 5, .external_lex_state = 7}, - [3574] = {.lex_state = 5, .external_lex_state = 6}, - [3575] = {.lex_state = 1, .external_lex_state = 4}, - [3576] = {.lex_state = 1, .external_lex_state = 4}, + [3572] = {.lex_state = 5, .external_lex_state = 7}, + [3573] = {.lex_state = 5, .external_lex_state = 6}, + [3574] = {.lex_state = 5, .external_lex_state = 7}, + [3575] = {.lex_state = 5, .external_lex_state = 7}, + [3576] = {.lex_state = 5, .external_lex_state = 7}, [3577] = {.lex_state = 5, .external_lex_state = 7}, [3578] = {.lex_state = 5, .external_lex_state = 7}, [3579] = {.lex_state = 1, .external_lex_state = 4}, - [3580] = {.lex_state = 1, .external_lex_state = 4}, + [3580] = {.lex_state = 5, .external_lex_state = 7}, [3581] = {.lex_state = 1, .external_lex_state = 4}, - [3582] = {.lex_state = 1, .external_lex_state = 4}, - [3583] = {.lex_state = 1, .external_lex_state = 4}, - [3584] = {.lex_state = 5, .external_lex_state = 6}, - [3585] = {.lex_state = 31, .external_lex_state = 2}, - [3586] = {.lex_state = 5, .external_lex_state = 7}, - [3587] = {.lex_state = 1, .external_lex_state = 4}, - [3588] = {.lex_state = 1, .external_lex_state = 4}, - [3589] = {.lex_state = 31, .external_lex_state = 2}, - [3590] = {.lex_state = 4, .external_lex_state = 5}, - [3591] = {.lex_state = 1, .external_lex_state = 4}, - [3592] = {.lex_state = 1, .external_lex_state = 4}, - [3593] = {.lex_state = 31, .external_lex_state = 2}, - [3594] = {.lex_state = 31, .external_lex_state = 2}, + [3582] = {.lex_state = 31, .external_lex_state = 2}, + [3583] = {.lex_state = 5, .external_lex_state = 7}, + [3584] = {.lex_state = 5, .external_lex_state = 7}, + [3585] = {.lex_state = 4, .external_lex_state = 5}, + [3586] = {.lex_state = 5, .external_lex_state = 6}, + [3587] = {.lex_state = 5, .external_lex_state = 6}, + [3588] = {.lex_state = 5, .external_lex_state = 7}, + [3589] = {.lex_state = 5, .external_lex_state = 7}, + [3590] = {.lex_state = 1, .external_lex_state = 4}, + [3591] = {.lex_state = 5, .external_lex_state = 6}, + [3592] = {.lex_state = 5, .external_lex_state = 7}, + [3593] = {.lex_state = 5, .external_lex_state = 6}, + [3594] = {.lex_state = 5, .external_lex_state = 6}, [3595] = {.lex_state = 1, .external_lex_state = 4}, - [3596] = {.lex_state = 5, .external_lex_state = 7}, - [3597] = {.lex_state = 1, .external_lex_state = 4}, - [3598] = {.lex_state = 5, .external_lex_state = 6}, + [3596] = {.lex_state = 1, .external_lex_state = 4}, + [3597] = {.lex_state = 5, .external_lex_state = 7}, + [3598] = {.lex_state = 5, .external_lex_state = 7}, [3599] = {.lex_state = 1, .external_lex_state = 4}, - [3600] = {.lex_state = 5, .external_lex_state = 6}, - [3601] = {.lex_state = 1, .external_lex_state = 4}, - [3602] = {.lex_state = 5, .external_lex_state = 6}, - [3603] = {.lex_state = 1, .external_lex_state = 4}, - [3604] = {.lex_state = 5, .external_lex_state = 6}, - [3605] = {.lex_state = 1, .external_lex_state = 4}, - [3606] = {.lex_state = 5, .external_lex_state = 6}, - [3607] = {.lex_state = 5, .external_lex_state = 7}, + [3600] = {.lex_state = 5, .external_lex_state = 7}, + [3601] = {.lex_state = 5, .external_lex_state = 7}, + [3602] = {.lex_state = 1, .external_lex_state = 4}, + [3603] = {.lex_state = 5, .external_lex_state = 7}, + [3604] = {.lex_state = 5, .external_lex_state = 7}, + [3605] = {.lex_state = 5, .external_lex_state = 7}, + [3606] = {.lex_state = 5, .external_lex_state = 7}, + [3607] = {.lex_state = 4, .external_lex_state = 5}, [3608] = {.lex_state = 5, .external_lex_state = 7}, [3609] = {.lex_state = 5, .external_lex_state = 7}, [3610] = {.lex_state = 5, .external_lex_state = 7}, - [3611] = {.lex_state = 5, .external_lex_state = 6}, + [3611] = {.lex_state = 5, .external_lex_state = 7}, [3612] = {.lex_state = 5, .external_lex_state = 6}, [3613] = {.lex_state = 5, .external_lex_state = 7}, - [3614] = {.lex_state = 5, .external_lex_state = 6}, - [3615] = {.lex_state = 5, .external_lex_state = 7}, - [3616] = {.lex_state = 5, .external_lex_state = 7}, + [3614] = {.lex_state = 5, .external_lex_state = 7}, + [3615] = {.lex_state = 4, .external_lex_state = 5}, + [3616] = {.lex_state = 5, .external_lex_state = 6}, [3617] = {.lex_state = 5, .external_lex_state = 6}, - [3618] = {.lex_state = 4, .external_lex_state = 5}, + [3618] = {.lex_state = 5, .external_lex_state = 6}, [3619] = {.lex_state = 5, .external_lex_state = 6}, - [3620] = {.lex_state = 5, .external_lex_state = 7}, - [3621] = {.lex_state = 1, .external_lex_state = 4}, - [3622] = {.lex_state = 1, .external_lex_state = 4}, - [3623] = {.lex_state = 5, .external_lex_state = 7}, - [3624] = {.lex_state = 5, .external_lex_state = 7}, - [3625] = {.lex_state = 5, .external_lex_state = 7}, + [3620] = {.lex_state = 5, .external_lex_state = 6}, + [3621] = {.lex_state = 5, .external_lex_state = 6}, + [3622] = {.lex_state = 5, .external_lex_state = 6}, + [3623] = {.lex_state = 5, .external_lex_state = 6}, + [3624] = {.lex_state = 1, .external_lex_state = 4}, + [3625] = {.lex_state = 1, .external_lex_state = 4}, [3626] = {.lex_state = 5, .external_lex_state = 7}, - [3627] = {.lex_state = 5, .external_lex_state = 6}, - [3628] = {.lex_state = 4, .external_lex_state = 5}, - [3629] = {.lex_state = 5, .external_lex_state = 7}, + [3627] = {.lex_state = 1, .external_lex_state = 4}, + [3628] = {.lex_state = 5, .external_lex_state = 7}, + [3629] = {.lex_state = 5, .external_lex_state = 6}, [3630] = {.lex_state = 5, .external_lex_state = 7}, - [3631] = {.lex_state = 5, .external_lex_state = 7}, - [3632] = {.lex_state = 1, .external_lex_state = 4}, + [3631] = {.lex_state = 1, .external_lex_state = 4}, + [3632] = {.lex_state = 31, .external_lex_state = 2}, [3633] = {.lex_state = 1, .external_lex_state = 4}, - [3634] = {.lex_state = 5, .external_lex_state = 6}, + [3634] = {.lex_state = 1, .external_lex_state = 4}, [3635] = {.lex_state = 1, .external_lex_state = 4}, [3636] = {.lex_state = 5, .external_lex_state = 7}, - [3637] = {.lex_state = 5, .external_lex_state = 7}, + [3637] = {.lex_state = 1, .external_lex_state = 4}, [3638] = {.lex_state = 1, .external_lex_state = 4}, [3639] = {.lex_state = 5, .external_lex_state = 7}, - [3640] = {.lex_state = 4, .external_lex_state = 5}, - [3641] = {.lex_state = 5, .external_lex_state = 6}, + [3640] = {.lex_state = 5, .external_lex_state = 7}, + [3641] = {.lex_state = 1, .external_lex_state = 4}, [3642] = {.lex_state = 5, .external_lex_state = 7}, [3643] = {.lex_state = 5, .external_lex_state = 7}, - [3644] = {.lex_state = 5, .external_lex_state = 6}, - [3645] = {.lex_state = 5, .external_lex_state = 7}, - [3646] = {.lex_state = 5, .external_lex_state = 7}, - [3647] = {.lex_state = 31, .external_lex_state = 2}, - [3648] = {.lex_state = 5, .external_lex_state = 7}, + [3644] = {.lex_state = 1, .external_lex_state = 4}, + [3645] = {.lex_state = 1, .external_lex_state = 4}, + [3646] = {.lex_state = 1, .external_lex_state = 4}, + [3647] = {.lex_state = 5, .external_lex_state = 7}, + [3648] = {.lex_state = 31, .external_lex_state = 2}, [3649] = {.lex_state = 5, .external_lex_state = 7}, - [3650] = {.lex_state = 4, .external_lex_state = 5}, - [3651] = {.lex_state = 4, .external_lex_state = 5}, - [3652] = {.lex_state = 5, .external_lex_state = 7}, - [3653] = {.lex_state = 5, .external_lex_state = 7}, + [3650] = {.lex_state = 1, .external_lex_state = 4}, + [3651] = {.lex_state = 5, .external_lex_state = 7}, + [3652] = {.lex_state = 1, .external_lex_state = 4}, + [3653] = {.lex_state = 1, .external_lex_state = 4}, [3654] = {.lex_state = 5, .external_lex_state = 7}, [3655] = {.lex_state = 5, .external_lex_state = 7}, [3656] = {.lex_state = 5, .external_lex_state = 7}, - [3657] = {.lex_state = 5, .external_lex_state = 7}, - [3658] = {.lex_state = 5, .external_lex_state = 7}, - [3659] = {.lex_state = 5, .external_lex_state = 7}, - [3660] = {.lex_state = 5, .external_lex_state = 7}, - [3661] = {.lex_state = 5, .external_lex_state = 7}, - [3662] = {.lex_state = 5, .external_lex_state = 7}, + [3657] = {.lex_state = 5, .external_lex_state = 6}, + [3658] = {.lex_state = 31, .external_lex_state = 2}, + [3659] = {.lex_state = 1, .external_lex_state = 4}, + [3660] = {.lex_state = 5, .external_lex_state = 6}, + [3661] = {.lex_state = 4, .external_lex_state = 5}, + [3662] = {.lex_state = 1, .external_lex_state = 4}, [3663] = {.lex_state = 5, .external_lex_state = 7}, [3664] = {.lex_state = 5, .external_lex_state = 7}, [3665] = {.lex_state = 5, .external_lex_state = 7}, [3666] = {.lex_state = 5, .external_lex_state = 7}, - [3667] = {.lex_state = 4, .external_lex_state = 5}, - [3668] = {.lex_state = 5, .external_lex_state = 7}, + [3667] = {.lex_state = 5, .external_lex_state = 7}, + [3668] = {.lex_state = 31, .external_lex_state = 2}, [3669] = {.lex_state = 5, .external_lex_state = 7}, - [3670] = {.lex_state = 5, .external_lex_state = 7}, - [3671] = {.lex_state = 5, .external_lex_state = 7}, + [3670] = {.lex_state = 5, .external_lex_state = 6}, + [3671] = {.lex_state = 5, .external_lex_state = 6}, [3672] = {.lex_state = 5, .external_lex_state = 7}, [3673] = {.lex_state = 5, .external_lex_state = 7}, [3674] = {.lex_state = 5, .external_lex_state = 7}, - [3675] = {.lex_state = 5, .external_lex_state = 7}, - [3676] = {.lex_state = 4, .external_lex_state = 5}, - [3677] = {.lex_state = 5, .external_lex_state = 7}, + [3675] = {.lex_state = 5, .external_lex_state = 6}, + [3676] = {.lex_state = 5, .external_lex_state = 7}, + [3677] = {.lex_state = 5, .external_lex_state = 6}, [3678] = {.lex_state = 5, .external_lex_state = 7}, - [3679] = {.lex_state = 5, .external_lex_state = 7}, - [3680] = {.lex_state = 5, .external_lex_state = 7}, - [3681] = {.lex_state = 4, .external_lex_state = 5}, + [3679] = {.lex_state = 5, .external_lex_state = 6}, + [3680] = {.lex_state = 5, .external_lex_state = 6}, + [3681] = {.lex_state = 5, .external_lex_state = 6}, [3682] = {.lex_state = 5, .external_lex_state = 7}, - [3683] = {.lex_state = 5, .external_lex_state = 7}, - [3684] = {.lex_state = 5, .external_lex_state = 7}, - [3685] = {.lex_state = 1, .external_lex_state = 4}, + [3683] = {.lex_state = 1, .external_lex_state = 4}, + [3684] = {.lex_state = 5, .external_lex_state = 6}, + [3685] = {.lex_state = 5, .external_lex_state = 6}, [3686] = {.lex_state = 5, .external_lex_state = 7}, - [3687] = {.lex_state = 5, .external_lex_state = 7}, - [3688] = {.lex_state = 5, .external_lex_state = 7}, - [3689] = {.lex_state = 5, .external_lex_state = 7}, - [3690] = {.lex_state = 5, .external_lex_state = 7}, - [3691] = {.lex_state = 5, .external_lex_state = 6}, - [3692] = {.lex_state = 5, .external_lex_state = 6}, - [3693] = {.lex_state = 5, .external_lex_state = 7}, - [3694] = {.lex_state = 5, .external_lex_state = 7}, - [3695] = {.lex_state = 5, .external_lex_state = 6}, - [3696] = {.lex_state = 5, .external_lex_state = 6}, + [3687] = {.lex_state = 5, .external_lex_state = 6}, + [3688] = {.lex_state = 1, .external_lex_state = 4}, + [3689] = {.lex_state = 1, .external_lex_state = 4}, + [3690] = {.lex_state = 1, .external_lex_state = 4}, + [3691] = {.lex_state = 5, .external_lex_state = 7}, + [3692] = {.lex_state = 5, .external_lex_state = 7}, + [3693] = {.lex_state = 1, .external_lex_state = 4}, + [3694] = {.lex_state = 1, .external_lex_state = 4}, + [3695] = {.lex_state = 1, .external_lex_state = 4}, + [3696] = {.lex_state = 5, .external_lex_state = 7}, [3697] = {.lex_state = 5, .external_lex_state = 7}, - [3698] = {.lex_state = 5, .external_lex_state = 6}, + [3698] = {.lex_state = 1, .external_lex_state = 4}, [3699] = {.lex_state = 1, .external_lex_state = 4}, - [3700] = {.lex_state = 5, .external_lex_state = 6}, + [3700] = {.lex_state = 5, .external_lex_state = 7}, [3701] = {.lex_state = 5, .external_lex_state = 7}, - [3702] = {.lex_state = 5, .external_lex_state = 7}, + [3702] = {.lex_state = 5, .external_lex_state = 6}, [3703] = {.lex_state = 5, .external_lex_state = 6}, [3704] = {.lex_state = 5, .external_lex_state = 7}, [3705] = {.lex_state = 5, .external_lex_state = 7}, [3706] = {.lex_state = 5, .external_lex_state = 7}, - [3707] = {.lex_state = 5, .external_lex_state = 7}, - [3708] = {.lex_state = 5, .external_lex_state = 7}, + [3707] = {.lex_state = 5, .external_lex_state = 6}, + [3708] = {.lex_state = 5, .external_lex_state = 6}, [3709] = {.lex_state = 5, .external_lex_state = 7}, - [3710] = {.lex_state = 5, .external_lex_state = 7}, - [3711] = {.lex_state = 5, .external_lex_state = 6}, + [3710] = {.lex_state = 31, .external_lex_state = 2}, + [3711] = {.lex_state = 5, .external_lex_state = 7}, [3712] = {.lex_state = 5, .external_lex_state = 7}, [3713] = {.lex_state = 5, .external_lex_state = 7}, [3714] = {.lex_state = 5, .external_lex_state = 7}, [3715] = {.lex_state = 5, .external_lex_state = 7}, - [3716] = {.lex_state = 1, .external_lex_state = 4}, + [3716] = {.lex_state = 5, .external_lex_state = 7}, [3717] = {.lex_state = 5, .external_lex_state = 7}, [3718] = {.lex_state = 5, .external_lex_state = 7}, [3719] = {.lex_state = 1, .external_lex_state = 4}, [3720] = {.lex_state = 5, .external_lex_state = 7}, - [3721] = {.lex_state = 1, .external_lex_state = 4}, + [3721] = {.lex_state = 5, .external_lex_state = 7}, [3722] = {.lex_state = 5, .external_lex_state = 7}, - [3723] = {.lex_state = 5, .external_lex_state = 6}, + [3723] = {.lex_state = 5, .external_lex_state = 7}, [3724] = {.lex_state = 5, .external_lex_state = 7}, [3725] = {.lex_state = 5, .external_lex_state = 7}, - [3726] = {.lex_state = 1, .external_lex_state = 4}, - [3727] = {.lex_state = 5, .external_lex_state = 7}, + [3726] = {.lex_state = 5, .external_lex_state = 6}, + [3727] = {.lex_state = 1, .external_lex_state = 4}, [3728] = {.lex_state = 5, .external_lex_state = 7}, [3729] = {.lex_state = 1, .external_lex_state = 4}, [3730] = {.lex_state = 5, .external_lex_state = 7}, - [3731] = {.lex_state = 5, .external_lex_state = 6}, + [3731] = {.lex_state = 5, .external_lex_state = 7}, [3732] = {.lex_state = 5, .external_lex_state = 7}, - [3733] = {.lex_state = 5, .external_lex_state = 7}, + [3733] = {.lex_state = 5, .external_lex_state = 6}, [3734] = {.lex_state = 5, .external_lex_state = 7}, - [3735] = {.lex_state = 5, .external_lex_state = 7}, + [3735] = {.lex_state = 1, .external_lex_state = 4}, [3736] = {.lex_state = 5, .external_lex_state = 7}, [3737] = {.lex_state = 5, .external_lex_state = 7}, [3738] = {.lex_state = 5, .external_lex_state = 7}, [3739] = {.lex_state = 5, .external_lex_state = 7}, - [3740] = {.lex_state = 5, .external_lex_state = 6}, - [3741] = {.lex_state = 5, .external_lex_state = 6}, + [3740] = {.lex_state = 5, .external_lex_state = 7}, + [3741] = {.lex_state = 5, .external_lex_state = 7}, [3742] = {.lex_state = 5, .external_lex_state = 7}, [3743] = {.lex_state = 5, .external_lex_state = 7}, [3744] = {.lex_state = 5, .external_lex_state = 7}, [3745] = {.lex_state = 5, .external_lex_state = 7}, [3746] = {.lex_state = 5, .external_lex_state = 7}, [3747] = {.lex_state = 5, .external_lex_state = 7}, - [3748] = {.lex_state = 5, .external_lex_state = 7}, - [3749] = {.lex_state = 5, .external_lex_state = 6}, + [3748] = {.lex_state = 5, .external_lex_state = 6}, + [3749] = {.lex_state = 5, .external_lex_state = 7}, [3750] = {.lex_state = 5, .external_lex_state = 7}, - [3751] = {.lex_state = 5, .external_lex_state = 7}, + [3751] = {.lex_state = 31, .external_lex_state = 2}, [3752] = {.lex_state = 5, .external_lex_state = 7}, [3753] = {.lex_state = 5, .external_lex_state = 7}, - [3754] = {.lex_state = 5, .external_lex_state = 7}, - [3755] = {.lex_state = 5, .external_lex_state = 7}, + [3754] = {.lex_state = 1, .external_lex_state = 4}, + [3755] = {.lex_state = 5, .external_lex_state = 6}, [3756] = {.lex_state = 5, .external_lex_state = 6}, [3757] = {.lex_state = 5, .external_lex_state = 7}, - [3758] = {.lex_state = 5, .external_lex_state = 6}, - [3759] = {.lex_state = 31, .external_lex_state = 2}, - [3760] = {.lex_state = 5, .external_lex_state = 7}, + [3758] = {.lex_state = 5, .external_lex_state = 7}, + [3759] = {.lex_state = 4, .external_lex_state = 5}, + [3760] = {.lex_state = 4, .external_lex_state = 5}, [3761] = {.lex_state = 5, .external_lex_state = 7}, - [3762] = {.lex_state = 5, .external_lex_state = 7}, - [3763] = {.lex_state = 5, .external_lex_state = 7}, + [3762] = {.lex_state = 1, .external_lex_state = 4}, + [3763] = {.lex_state = 5, .external_lex_state = 6}, [3764] = {.lex_state = 5, .external_lex_state = 7}, - [3765] = {.lex_state = 1, .external_lex_state = 4}, - [3766] = {.lex_state = 5, .external_lex_state = 7}, + [3765] = {.lex_state = 5, .external_lex_state = 7}, + [3766] = {.lex_state = 1, .external_lex_state = 4}, [3767] = {.lex_state = 5, .external_lex_state = 7}, - [3768] = {.lex_state = 5, .external_lex_state = 7}, + [3768] = {.lex_state = 1, .external_lex_state = 4}, [3769] = {.lex_state = 5, .external_lex_state = 7}, [3770] = {.lex_state = 5, .external_lex_state = 7}, - [3771] = {.lex_state = 1, .external_lex_state = 4}, + [3771] = {.lex_state = 5, .external_lex_state = 7}, [3772] = {.lex_state = 5, .external_lex_state = 7}, [3773] = {.lex_state = 5, .external_lex_state = 6}, - [3774] = {.lex_state = 4, .external_lex_state = 5}, - [3775] = {.lex_state = 5, .external_lex_state = 7}, + [3774] = {.lex_state = 5, .external_lex_state = 7}, + [3775] = {.lex_state = 4, .external_lex_state = 5}, [3776] = {.lex_state = 5, .external_lex_state = 7}, [3777] = {.lex_state = 5, .external_lex_state = 7}, [3778] = {.lex_state = 5, .external_lex_state = 7}, [3779] = {.lex_state = 5, .external_lex_state = 7}, - [3780] = {.lex_state = 5, .external_lex_state = 7}, + [3780] = {.lex_state = 5, .external_lex_state = 6}, [3781] = {.lex_state = 5, .external_lex_state = 7}, - [3782] = {.lex_state = 5, .external_lex_state = 7}, - [3783] = {.lex_state = 5, .external_lex_state = 7}, + [3782] = {.lex_state = 1, .external_lex_state = 3}, + [3783] = {.lex_state = 1, .external_lex_state = 4}, [3784] = {.lex_state = 5, .external_lex_state = 7}, - [3785] = {.lex_state = 5, .external_lex_state = 7}, + [3785] = {.lex_state = 1, .external_lex_state = 4}, [3786] = {.lex_state = 5, .external_lex_state = 7}, - [3787] = {.lex_state = 4, .external_lex_state = 5}, - [3788] = {.lex_state = 5, .external_lex_state = 7}, - [3789] = {.lex_state = 31, .external_lex_state = 2}, - [3790] = {.lex_state = 5, .external_lex_state = 7}, - [3791] = {.lex_state = 5, .external_lex_state = 6}, + [3787] = {.lex_state = 1, .external_lex_state = 3}, + [3788] = {.lex_state = 1, .external_lex_state = 4}, + [3789] = {.lex_state = 5, .external_lex_state = 6}, + [3790] = {.lex_state = 1, .external_lex_state = 4}, + [3791] = {.lex_state = 1, .external_lex_state = 4}, [3792] = {.lex_state = 5, .external_lex_state = 7}, [3793] = {.lex_state = 5, .external_lex_state = 7}, [3794] = {.lex_state = 5, .external_lex_state = 7}, [3795] = {.lex_state = 5, .external_lex_state = 7}, [3796] = {.lex_state = 5, .external_lex_state = 7}, - [3797] = {.lex_state = 5, .external_lex_state = 6}, + [3797] = {.lex_state = 5, .external_lex_state = 7}, [3798] = {.lex_state = 5, .external_lex_state = 7}, - [3799] = {.lex_state = 5, .external_lex_state = 7}, + [3799] = {.lex_state = 5, .external_lex_state = 6}, [3800] = {.lex_state = 5, .external_lex_state = 7}, [3801] = {.lex_state = 5, .external_lex_state = 7}, - [3802] = {.lex_state = 1, .external_lex_state = 4}, + [3802] = {.lex_state = 5, .external_lex_state = 7}, [3803] = {.lex_state = 5, .external_lex_state = 7}, - [3804] = {.lex_state = 1, .external_lex_state = 4}, - [3805] = {.lex_state = 5, .external_lex_state = 7}, + [3804] = {.lex_state = 5, .external_lex_state = 7}, + [3805] = {.lex_state = 4, .external_lex_state = 5}, [3806] = {.lex_state = 5, .external_lex_state = 7}, [3807] = {.lex_state = 5, .external_lex_state = 7}, [3808] = {.lex_state = 5, .external_lex_state = 7}, [3809] = {.lex_state = 5, .external_lex_state = 7}, - [3810] = {.lex_state = 5, .external_lex_state = 7}, + [3810] = {.lex_state = 4, .external_lex_state = 5}, [3811] = {.lex_state = 5, .external_lex_state = 7}, - [3812] = {.lex_state = 5, .external_lex_state = 6}, + [3812] = {.lex_state = 5, .external_lex_state = 7}, [3813] = {.lex_state = 5, .external_lex_state = 7}, - [3814] = {.lex_state = 4, .external_lex_state = 5}, + [3814] = {.lex_state = 5, .external_lex_state = 7}, [3815] = {.lex_state = 5, .external_lex_state = 7}, - [3816] = {.lex_state = 1, .external_lex_state = 4}, + [3816] = {.lex_state = 5, .external_lex_state = 7}, [3817] = {.lex_state = 5, .external_lex_state = 7}, [3818] = {.lex_state = 5, .external_lex_state = 7}, [3819] = {.lex_state = 5, .external_lex_state = 7}, [3820] = {.lex_state = 5, .external_lex_state = 7}, [3821] = {.lex_state = 5, .external_lex_state = 7}, - [3822] = {.lex_state = 31, .external_lex_state = 2}, - [3823] = {.lex_state = 1, .external_lex_state = 4}, + [3822] = {.lex_state = 5, .external_lex_state = 7}, + [3823] = {.lex_state = 5, .external_lex_state = 7}, [3824] = {.lex_state = 5, .external_lex_state = 7}, - [3825] = {.lex_state = 1, .external_lex_state = 4}, + [3825] = {.lex_state = 5, .external_lex_state = 7}, [3826] = {.lex_state = 5, .external_lex_state = 7}, [3827] = {.lex_state = 5, .external_lex_state = 7}, - [3828] = {.lex_state = 31, .external_lex_state = 2}, + [3828] = {.lex_state = 4, .external_lex_state = 5}, [3829] = {.lex_state = 5, .external_lex_state = 7}, [3830] = {.lex_state = 5, .external_lex_state = 7}, [3831] = {.lex_state = 5, .external_lex_state = 7}, - [3832] = {.lex_state = 5, .external_lex_state = 7}, + [3832] = {.lex_state = 1, .external_lex_state = 4}, [3833] = {.lex_state = 5, .external_lex_state = 7}, [3834] = {.lex_state = 5, .external_lex_state = 7}, [3835] = {.lex_state = 5, .external_lex_state = 7}, [3836] = {.lex_state = 5, .external_lex_state = 7}, [3837] = {.lex_state = 5, .external_lex_state = 7}, [3838] = {.lex_state = 5, .external_lex_state = 7}, - [3839] = {.lex_state = 5, .external_lex_state = 7}, - [3840] = {.lex_state = 1, .external_lex_state = 4}, - [3841] = {.lex_state = 31, .external_lex_state = 2}, + [3839] = {.lex_state = 1, .external_lex_state = 4}, + [3840] = {.lex_state = 5, .external_lex_state = 7}, + [3841] = {.lex_state = 5, .external_lex_state = 7}, [3842] = {.lex_state = 5, .external_lex_state = 7}, [3843] = {.lex_state = 5, .external_lex_state = 7}, [3844] = {.lex_state = 5, .external_lex_state = 7}, [3845] = {.lex_state = 5, .external_lex_state = 6}, - [3846] = {.lex_state = 1, .external_lex_state = 4}, - [3847] = {.lex_state = 5, .external_lex_state = 7}, + [3846] = {.lex_state = 5, .external_lex_state = 6}, + [3847] = {.lex_state = 5, .external_lex_state = 6}, [3848] = {.lex_state = 5, .external_lex_state = 7}, [3849] = {.lex_state = 5, .external_lex_state = 7}, [3850] = {.lex_state = 5, .external_lex_state = 7}, [3851] = {.lex_state = 5, .external_lex_state = 7}, - [3852] = {.lex_state = 1, .external_lex_state = 4}, + [3852] = {.lex_state = 5, .external_lex_state = 7}, [3853] = {.lex_state = 5, .external_lex_state = 7}, - [3854] = {.lex_state = 1, .external_lex_state = 4}, - [3855] = {.lex_state = 5, .external_lex_state = 7}, - [3856] = {.lex_state = 5, .external_lex_state = 7}, - [3857] = {.lex_state = 1, .external_lex_state = 4}, - [3858] = {.lex_state = 1, .external_lex_state = 4}, - [3859] = {.lex_state = 5, .external_lex_state = 6}, - [3860] = {.lex_state = 5, .external_lex_state = 7}, - [3861] = {.lex_state = 5, .external_lex_state = 6}, + [3854] = {.lex_state = 5, .external_lex_state = 6}, + [3855] = {.lex_state = 5, .external_lex_state = 6}, + [3856] = {.lex_state = 4, .external_lex_state = 5}, + [3857] = {.lex_state = 5, .external_lex_state = 6}, + [3858] = {.lex_state = 5, .external_lex_state = 7}, + [3859] = {.lex_state = 5, .external_lex_state = 7}, + [3860] = {.lex_state = 5, .external_lex_state = 6}, + [3861] = {.lex_state = 5, .external_lex_state = 7}, [3862] = {.lex_state = 5, .external_lex_state = 7}, - [3863] = {.lex_state = 5, .external_lex_state = 6}, + [3863] = {.lex_state = 5, .external_lex_state = 7}, [3864] = {.lex_state = 5, .external_lex_state = 7}, - [3865] = {.lex_state = 5, .external_lex_state = 7}, - [3866] = {.lex_state = 31, .external_lex_state = 2}, + [3865] = {.lex_state = 5, .external_lex_state = 6}, + [3866] = {.lex_state = 5, .external_lex_state = 7}, [3867] = {.lex_state = 5, .external_lex_state = 6}, - [3868] = {.lex_state = 5, .external_lex_state = 6}, - [3869] = {.lex_state = 5, .external_lex_state = 7}, + [3868] = {.lex_state = 5, .external_lex_state = 7}, + [3869] = {.lex_state = 1, .external_lex_state = 4}, [3870] = {.lex_state = 5, .external_lex_state = 7}, - [3871] = {.lex_state = 1, .external_lex_state = 4}, + [3871] = {.lex_state = 5, .external_lex_state = 7}, [3872] = {.lex_state = 5, .external_lex_state = 7}, - [3873] = {.lex_state = 5, .external_lex_state = 7}, - [3874] = {.lex_state = 5, .external_lex_state = 6}, - [3875] = {.lex_state = 5, .external_lex_state = 7}, - [3876] = {.lex_state = 1, .external_lex_state = 4}, + [3873] = {.lex_state = 31, .external_lex_state = 2}, + [3874] = {.lex_state = 5, .external_lex_state = 7}, + [3875] = {.lex_state = 5, .external_lex_state = 6}, + [3876] = {.lex_state = 5, .external_lex_state = 7}, [3877] = {.lex_state = 5, .external_lex_state = 7}, - [3878] = {.lex_state = 4, .external_lex_state = 5}, - [3879] = {.lex_state = 5, .external_lex_state = 6}, - [3880] = {.lex_state = 4, .external_lex_state = 5}, + [3878] = {.lex_state = 5, .external_lex_state = 7}, + [3879] = {.lex_state = 5, .external_lex_state = 7}, + [3880] = {.lex_state = 31, .external_lex_state = 2}, [3881] = {.lex_state = 5, .external_lex_state = 6}, [3882] = {.lex_state = 5, .external_lex_state = 7}, [3883] = {.lex_state = 1, .external_lex_state = 4}, [3884] = {.lex_state = 5, .external_lex_state = 6}, - [3885] = {.lex_state = 5, .external_lex_state = 6}, - [3886] = {.lex_state = 1, .external_lex_state = 4}, - [3887] = {.lex_state = 5, .external_lex_state = 6}, - [3888] = {.lex_state = 1, .external_lex_state = 3}, - [3889] = {.lex_state = 1, .external_lex_state = 4}, - [3890] = {.lex_state = 5, .external_lex_state = 7}, + [3885] = {.lex_state = 31, .external_lex_state = 2}, + [3886] = {.lex_state = 5, .external_lex_state = 7}, + [3887] = {.lex_state = 5, .external_lex_state = 7}, + [3888] = {.lex_state = 5, .external_lex_state = 6}, + [3889] = {.lex_state = 5, .external_lex_state = 7}, + [3890] = {.lex_state = 31, .external_lex_state = 2}, [3891] = {.lex_state = 5, .external_lex_state = 7}, - [3892] = {.lex_state = 5, .external_lex_state = 6}, + [3892] = {.lex_state = 5, .external_lex_state = 7}, [3893] = {.lex_state = 5, .external_lex_state = 7}, - [3894] = {.lex_state = 1, .external_lex_state = 4}, - [3895] = {.lex_state = 5, .external_lex_state = 6}, + [3894] = {.lex_state = 5, .external_lex_state = 7}, + [3895] = {.lex_state = 5, .external_lex_state = 7}, [3896] = {.lex_state = 5, .external_lex_state = 7}, - [3897] = {.lex_state = 5, .external_lex_state = 6}, - [3898] = {.lex_state = 5, .external_lex_state = 6}, - [3899] = {.lex_state = 1, .external_lex_state = 4}, - [3900] = {.lex_state = 1, .external_lex_state = 3}, - [3901] = {.lex_state = 5, .external_lex_state = 7}, + [3897] = {.lex_state = 5, .external_lex_state = 7}, + [3898] = {.lex_state = 5, .external_lex_state = 7}, + [3899] = {.lex_state = 5, .external_lex_state = 7}, + [3900] = {.lex_state = 5, .external_lex_state = 7}, + [3901] = {.lex_state = 1, .external_lex_state = 4}, [3902] = {.lex_state = 5, .external_lex_state = 7}, [3903] = {.lex_state = 5, .external_lex_state = 7}, - [3904] = {.lex_state = 5, .external_lex_state = 7}, - [3905] = {.lex_state = 1, .external_lex_state = 4}, - [3906] = {.lex_state = 1, .external_lex_state = 4}, - [3907] = {.lex_state = 1, .external_lex_state = 4}, - [3908] = {.lex_state = 1, .external_lex_state = 4}, - [3909] = {.lex_state = 1, .external_lex_state = 4}, - [3910] = {.lex_state = 4, .external_lex_state = 5}, - [3911] = {.lex_state = 1, .external_lex_state = 4}, - [3912] = {.lex_state = 1, .external_lex_state = 4}, - [3913] = {.lex_state = 31, .external_lex_state = 2}, - [3914] = {.lex_state = 5, .external_lex_state = 7}, - [3915] = {.lex_state = 1, .external_lex_state = 4}, - [3916] = {.lex_state = 5, .external_lex_state = 7}, + [3904] = {.lex_state = 4, .external_lex_state = 5}, + [3905] = {.lex_state = 31, .external_lex_state = 2}, + [3906] = {.lex_state = 5, .external_lex_state = 6}, + [3907] = {.lex_state = 5, .external_lex_state = 7}, + [3908] = {.lex_state = 5, .external_lex_state = 6}, + [3909] = {.lex_state = 5, .external_lex_state = 6}, + [3910] = {.lex_state = 5, .external_lex_state = 6}, + [3911] = {.lex_state = 5, .external_lex_state = 7}, + [3912] = {.lex_state = 5, .external_lex_state = 6}, + [3913] = {.lex_state = 5, .external_lex_state = 7}, + [3914] = {.lex_state = 5, .external_lex_state = 6}, + [3915] = {.lex_state = 5, .external_lex_state = 7}, + [3916] = {.lex_state = 5, .external_lex_state = 6}, [3917] = {.lex_state = 31, .external_lex_state = 2}, - [3918] = {.lex_state = 31, .external_lex_state = 2}, + [3918] = {.lex_state = 5, .external_lex_state = 7}, [3919] = {.lex_state = 5, .external_lex_state = 7}, - [3920] = {.lex_state = 1, .external_lex_state = 4}, - [3921] = {.lex_state = 5, .external_lex_state = 6}, - [3922] = {.lex_state = 5, .external_lex_state = 6}, - [3923] = {.lex_state = 31, .external_lex_state = 2}, - [3924] = {.lex_state = 5, .external_lex_state = 6}, - [3925] = {.lex_state = 5, .external_lex_state = 6}, - [3926] = {.lex_state = 5, .external_lex_state = 6}, - [3927] = {.lex_state = 5, .external_lex_state = 6}, - [3928] = {.lex_state = 5, .external_lex_state = 6}, - [3929] = {.lex_state = 1, .external_lex_state = 4}, - [3930] = {.lex_state = 1, .external_lex_state = 4}, - [3931] = {.lex_state = 5, .external_lex_state = 6}, - [3932] = {.lex_state = 4, .external_lex_state = 5}, - [3933] = {.lex_state = 5, .external_lex_state = 6}, - [3934] = {.lex_state = 5, .external_lex_state = 7}, - [3935] = {.lex_state = 31, .external_lex_state = 2}, - [3936] = {.lex_state = 5, .external_lex_state = 6}, - [3937] = {.lex_state = 5, .external_lex_state = 7}, - [3938] = {.lex_state = 5, .external_lex_state = 7}, - [3939] = {.lex_state = 5, .external_lex_state = 7}, - [3940] = {.lex_state = 5, .external_lex_state = 7}, - [3941] = {.lex_state = 5, .external_lex_state = 7}, + [3920] = {.lex_state = 5, .external_lex_state = 7}, + [3921] = {.lex_state = 5, .external_lex_state = 7}, + [3922] = {.lex_state = 5, .external_lex_state = 7}, + [3923] = {.lex_state = 5, .external_lex_state = 7}, + [3924] = {.lex_state = 5, .external_lex_state = 7}, + [3925] = {.lex_state = 5, .external_lex_state = 7}, + [3926] = {.lex_state = 5, .external_lex_state = 7}, + [3927] = {.lex_state = 5, .external_lex_state = 7}, + [3928] = {.lex_state = 5, .external_lex_state = 7}, + [3929] = {.lex_state = 5, .external_lex_state = 7}, + [3930] = {.lex_state = 5, .external_lex_state = 7}, + [3931] = {.lex_state = 5, .external_lex_state = 7}, + [3932] = {.lex_state = 5, .external_lex_state = 7}, + [3933] = {.lex_state = 1, .external_lex_state = 4}, + [3934] = {.lex_state = 5, .external_lex_state = 6}, + [3935] = {.lex_state = 1, .external_lex_state = 4}, + [3936] = {.lex_state = 31, .external_lex_state = 2}, + [3937] = {.lex_state = 1, .external_lex_state = 4}, + [3938] = {.lex_state = 5, .external_lex_state = 6}, + [3939] = {.lex_state = 5, .external_lex_state = 6}, + [3940] = {.lex_state = 1, .external_lex_state = 4}, + [3941] = {.lex_state = 1, .external_lex_state = 4}, [3942] = {.lex_state = 5, .external_lex_state = 7}, - [3943] = {.lex_state = 5, .external_lex_state = 7}, - [3944] = {.lex_state = 5, .external_lex_state = 7}, + [3943] = {.lex_state = 1, .external_lex_state = 4}, + [3944] = {.lex_state = 5, .external_lex_state = 6}, [3945] = {.lex_state = 5, .external_lex_state = 6}, - [3946] = {.lex_state = 5, .external_lex_state = 7}, - [3947] = {.lex_state = 5, .external_lex_state = 7}, - [3948] = {.lex_state = 5, .external_lex_state = 6}, - [3949] = {.lex_state = 5, .external_lex_state = 6}, - [3950] = {.lex_state = 5, .external_lex_state = 6}, - [3951] = {.lex_state = 5, .external_lex_state = 6}, - [3952] = {.lex_state = 31, .external_lex_state = 2}, - [3953] = {.lex_state = 5, .external_lex_state = 7}, - [3954] = {.lex_state = 5, .external_lex_state = 7}, - [3955] = {.lex_state = 5, .external_lex_state = 6}, + [3946] = {.lex_state = 4, .external_lex_state = 5}, + [3947] = {.lex_state = 1, .external_lex_state = 4}, + [3948] = {.lex_state = 1, .external_lex_state = 4}, + [3949] = {.lex_state = 31, .external_lex_state = 2}, + [3950] = {.lex_state = 1, .external_lex_state = 4}, + [3951] = {.lex_state = 5, .external_lex_state = 7}, + [3952] = {.lex_state = 1, .external_lex_state = 4}, + [3953] = {.lex_state = 5, .external_lex_state = 6}, + [3954] = {.lex_state = 5, .external_lex_state = 6}, + [3955] = {.lex_state = 31, .external_lex_state = 2}, [3956] = {.lex_state = 5, .external_lex_state = 6}, - [3957] = {.lex_state = 5, .external_lex_state = 7}, - [3958] = {.lex_state = 5, .external_lex_state = 7}, - [3959] = {.lex_state = 5, .external_lex_state = 7}, - [3960] = {.lex_state = 1, .external_lex_state = 4}, - [3961] = {.lex_state = 5, .external_lex_state = 7}, - [3962] = {.lex_state = 1, .external_lex_state = 4}, + [3957] = {.lex_state = 1, .external_lex_state = 4}, + [3958] = {.lex_state = 5, .external_lex_state = 6}, + [3959] = {.lex_state = 1, .external_lex_state = 4}, + [3960] = {.lex_state = 31, .external_lex_state = 2}, + [3961] = {.lex_state = 1, .external_lex_state = 4}, + [3962] = {.lex_state = 5, .external_lex_state = 6}, [3963] = {.lex_state = 1, .external_lex_state = 4}, [3964] = {.lex_state = 5, .external_lex_state = 6}, [3965] = {.lex_state = 5, .external_lex_state = 7}, - [3966] = {.lex_state = 1, .external_lex_state = 4}, - [3967] = {.lex_state = 5, .external_lex_state = 6}, + [3966] = {.lex_state = 5, .external_lex_state = 7}, + [3967] = {.lex_state = 31, .external_lex_state = 2}, [3968] = {.lex_state = 31, .external_lex_state = 2}, [3969] = {.lex_state = 5, .external_lex_state = 6}, [3970] = {.lex_state = 1, .external_lex_state = 4}, - [3971] = {.lex_state = 1, .external_lex_state = 4}, - [3972] = {.lex_state = 5, .external_lex_state = 6}, - [3973] = {.lex_state = 5, .external_lex_state = 6}, - [3974] = {.lex_state = 31, .external_lex_state = 2}, - [3975] = {.lex_state = 5, .external_lex_state = 7}, - [3976] = {.lex_state = 1, .external_lex_state = 4}, - [3977] = {.lex_state = 1, .external_lex_state = 4}, - [3978] = {.lex_state = 5, .external_lex_state = 6}, - [3979] = {.lex_state = 1, .external_lex_state = 4}, + [3971] = {.lex_state = 5, .external_lex_state = 6}, + [3972] = {.lex_state = 1, .external_lex_state = 4}, + [3973] = {.lex_state = 31, .external_lex_state = 2}, + [3974] = {.lex_state = 5, .external_lex_state = 7}, + [3975] = {.lex_state = 5, .external_lex_state = 6}, + [3976] = {.lex_state = 5, .external_lex_state = 7}, + [3977] = {.lex_state = 5, .external_lex_state = 6}, + [3978] = {.lex_state = 5, .external_lex_state = 7}, + [3979] = {.lex_state = 5, .external_lex_state = 6}, [3980] = {.lex_state = 31, .external_lex_state = 2}, - [3981] = {.lex_state = 5, .external_lex_state = 6}, - [3982] = {.lex_state = 5, .external_lex_state = 7}, - [3983] = {.lex_state = 1, .external_lex_state = 4}, - [3984] = {.lex_state = 1, .external_lex_state = 4}, - [3985] = {.lex_state = 1, .external_lex_state = 4}, + [3981] = {.lex_state = 5, .external_lex_state = 7}, + [3982] = {.lex_state = 5, .external_lex_state = 6}, + [3983] = {.lex_state = 31, .external_lex_state = 2}, + [3984] = {.lex_state = 5, .external_lex_state = 6}, + [3985] = {.lex_state = 31, .external_lex_state = 2}, [3986] = {.lex_state = 5, .external_lex_state = 6}, - [3987] = {.lex_state = 1, .external_lex_state = 4}, - [3988] = {.lex_state = 1, .external_lex_state = 4}, - [3989] = {.lex_state = 1, .external_lex_state = 4}, - [3990] = {.lex_state = 5, .external_lex_state = 6}, - [3991] = {.lex_state = 1, .external_lex_state = 4}, - [3992] = {.lex_state = 1, .external_lex_state = 4}, - [3993] = {.lex_state = 5, .external_lex_state = 7}, - [3994] = {.lex_state = 5, .external_lex_state = 7}, - [3995] = {.lex_state = 5, .external_lex_state = 7}, + [3987] = {.lex_state = 5, .external_lex_state = 6}, + [3988] = {.lex_state = 31, .external_lex_state = 2}, + [3989] = {.lex_state = 5, .external_lex_state = 7}, + [3990] = {.lex_state = 1, .external_lex_state = 4}, + [3991] = {.lex_state = 5, .external_lex_state = 7}, + [3992] = {.lex_state = 5, .external_lex_state = 7}, + [3993] = {.lex_state = 1, .external_lex_state = 4}, + [3994] = {.lex_state = 5, .external_lex_state = 6}, + [3995] = {.lex_state = 5, .external_lex_state = 6}, [3996] = {.lex_state = 5, .external_lex_state = 6}, - [3997] = {.lex_state = 5, .external_lex_state = 7}, - [3998] = {.lex_state = 5, .external_lex_state = 7}, + [3997] = {.lex_state = 31, .external_lex_state = 2}, + [3998] = {.lex_state = 5, .external_lex_state = 6}, [3999] = {.lex_state = 5, .external_lex_state = 7}, - [4000] = {.lex_state = 5, .external_lex_state = 6}, - [4001] = {.lex_state = 31, .external_lex_state = 2}, - [4002] = {.lex_state = 31, .external_lex_state = 2}, - [4003] = {.lex_state = 31, .external_lex_state = 2}, - [4004] = {.lex_state = 5, .external_lex_state = 7}, + [4000] = {.lex_state = 5, .external_lex_state = 7}, + [4001] = {.lex_state = 1, .external_lex_state = 4}, + [4002] = {.lex_state = 1, .external_lex_state = 4}, + [4003] = {.lex_state = 1, .external_lex_state = 4}, + [4004] = {.lex_state = 5, .external_lex_state = 6}, [4005] = {.lex_state = 5, .external_lex_state = 7}, - [4006] = {.lex_state = 5, .external_lex_state = 6}, - [4007] = {.lex_state = 31, .external_lex_state = 2}, + [4006] = {.lex_state = 1, .external_lex_state = 4}, + [4007] = {.lex_state = 5, .external_lex_state = 7}, [4008] = {.lex_state = 31, .external_lex_state = 2}, - [4009] = {.lex_state = 1, .external_lex_state = 4}, + [4009] = {.lex_state = 5, .external_lex_state = 7}, [4010] = {.lex_state = 5, .external_lex_state = 7}, - [4011] = {.lex_state = 5, .external_lex_state = 7}, - [4012] = {.lex_state = 5, .external_lex_state = 7}, - [4013] = {.lex_state = 5, .external_lex_state = 6}, - [4014] = {.lex_state = 31, .external_lex_state = 2}, - [4015] = {.lex_state = 31, .external_lex_state = 2}, + [4011] = {.lex_state = 5, .external_lex_state = 6}, + [4012] = {.lex_state = 1, .external_lex_state = 4}, + [4013] = {.lex_state = 5, .external_lex_state = 7}, + [4014] = {.lex_state = 1, .external_lex_state = 4}, + [4015] = {.lex_state = 5, .external_lex_state = 6}, [4016] = {.lex_state = 5, .external_lex_state = 6}, [4017] = {.lex_state = 5, .external_lex_state = 6}, - [4018] = {.lex_state = 5, .external_lex_state = 6}, - [4019] = {.lex_state = 5, .external_lex_state = 6}, + [4018] = {.lex_state = 1, .external_lex_state = 4}, + [4019] = {.lex_state = 1, .external_lex_state = 4}, [4020] = {.lex_state = 5, .external_lex_state = 6}, [4021] = {.lex_state = 5, .external_lex_state = 6}, [4022] = {.lex_state = 5, .external_lex_state = 7}, - [4023] = {.lex_state = 5, .external_lex_state = 6}, - [4024] = {.lex_state = 5, .external_lex_state = 6}, + [4023] = {.lex_state = 1, .external_lex_state = 4}, + [4024] = {.lex_state = 5, .external_lex_state = 7}, [4025] = {.lex_state = 5, .external_lex_state = 6}, [4026] = {.lex_state = 5, .external_lex_state = 7}, - [4027] = {.lex_state = 5, .external_lex_state = 6}, - [4028] = {.lex_state = 5, .external_lex_state = 7}, + [4027] = {.lex_state = 5, .external_lex_state = 7}, + [4028] = {.lex_state = 5, .external_lex_state = 6}, [4029] = {.lex_state = 5, .external_lex_state = 6}, - [4030] = {.lex_state = 5, .external_lex_state = 7}, - [4031] = {.lex_state = 5, .external_lex_state = 6}, - [4032] = {.lex_state = 5, .external_lex_state = 6}, - [4033] = {.lex_state = 5, .external_lex_state = 7}, - [4034] = {.lex_state = 5, .external_lex_state = 7}, - [4035] = {.lex_state = 5, .external_lex_state = 7}, - [4036] = {.lex_state = 5, .external_lex_state = 7}, - [4037] = {.lex_state = 5, .external_lex_state = 7}, - [4038] = {.lex_state = 5, .external_lex_state = 6}, - [4039] = {.lex_state = 5, .external_lex_state = 7}, - [4040] = {.lex_state = 5, .external_lex_state = 7}, - [4041] = {.lex_state = 5, .external_lex_state = 6}, - [4042] = {.lex_state = 5, .external_lex_state = 6}, - [4043] = {.lex_state = 5, .external_lex_state = 6}, + [4030] = {.lex_state = 31, .external_lex_state = 2}, + [4031] = {.lex_state = 5, .external_lex_state = 7}, + [4032] = {.lex_state = 5, .external_lex_state = 7}, + [4033] = {.lex_state = 1, .external_lex_state = 4}, + [4034] = {.lex_state = 5, .external_lex_state = 6}, + [4035] = {.lex_state = 5, .external_lex_state = 6}, + [4036] = {.lex_state = 1, .external_lex_state = 4}, + [4037] = {.lex_state = 5, .external_lex_state = 6}, + [4038] = {.lex_state = 5, .external_lex_state = 7}, + [4039] = {.lex_state = 1, .external_lex_state = 4}, + [4040] = {.lex_state = 1, .external_lex_state = 4}, + [4041] = {.lex_state = 1, .external_lex_state = 4}, + [4042] = {.lex_state = 5, .external_lex_state = 7}, + [4043] = {.lex_state = 5, .external_lex_state = 7}, [4044] = {.lex_state = 5, .external_lex_state = 7}, - [4045] = {.lex_state = 5, .external_lex_state = 6}, - [4046] = {.lex_state = 1, .external_lex_state = 4}, + [4045] = {.lex_state = 5, .external_lex_state = 7}, + [4046] = {.lex_state = 5, .external_lex_state = 7}, [4047] = {.lex_state = 5, .external_lex_state = 6}, [4048] = {.lex_state = 1, .external_lex_state = 4}, - [4049] = {.lex_state = 1, .external_lex_state = 4}, - [4050] = {.lex_state = 1, .external_lex_state = 4}, - [4051] = {.lex_state = 1, .external_lex_state = 4}, - [4052] = {.lex_state = 5, .external_lex_state = 7}, + [4049] = {.lex_state = 5, .external_lex_state = 6}, + [4050] = {.lex_state = 5, .external_lex_state = 7}, + [4051] = {.lex_state = 5, .external_lex_state = 7}, + [4052] = {.lex_state = 1, .external_lex_state = 4}, [4053] = {.lex_state = 5, .external_lex_state = 6}, [4054] = {.lex_state = 1, .external_lex_state = 4}, - [4055] = {.lex_state = 1, .external_lex_state = 4}, - [4056] = {.lex_state = 5, .external_lex_state = 6}, + [4055] = {.lex_state = 5, .external_lex_state = 6}, + [4056] = {.lex_state = 5, .external_lex_state = 7}, [4057] = {.lex_state = 5, .external_lex_state = 6}, [4058] = {.lex_state = 5, .external_lex_state = 6}, - [4059] = {.lex_state = 5, .external_lex_state = 7}, - [4060] = {.lex_state = 5, .external_lex_state = 7}, - [4061] = {.lex_state = 5, .external_lex_state = 7}, - [4062] = {.lex_state = 1, .external_lex_state = 4}, - [4063] = {.lex_state = 5, .external_lex_state = 7}, - [4064] = {.lex_state = 5, .external_lex_state = 7}, + [4059] = {.lex_state = 5, .external_lex_state = 6}, + [4060] = {.lex_state = 5, .external_lex_state = 6}, + [4061] = {.lex_state = 5, .external_lex_state = 6}, + [4062] = {.lex_state = 5, .external_lex_state = 6}, + [4063] = {.lex_state = 5, .external_lex_state = 6}, + [4064] = {.lex_state = 1, .external_lex_state = 4}, [4065] = {.lex_state = 5, .external_lex_state = 7}, - [4066] = {.lex_state = 1, .external_lex_state = 4}, - [4067] = {.lex_state = 5, .external_lex_state = 6}, - [4068] = {.lex_state = 5, .external_lex_state = 7}, + [4066] = {.lex_state = 5, .external_lex_state = 6}, + [4067] = {.lex_state = 5, .external_lex_state = 7}, + [4068] = {.lex_state = 5, .external_lex_state = 6}, [4069] = {.lex_state = 1, .external_lex_state = 4}, - [4070] = {.lex_state = 5, .external_lex_state = 7}, - [4071] = {.lex_state = 5, .external_lex_state = 7}, - [4072] = {.lex_state = 5, .external_lex_state = 6}, - [4073] = {.lex_state = 5, .external_lex_state = 6}, + [4070] = {.lex_state = 5, .external_lex_state = 6}, + [4071] = {.lex_state = 1, .external_lex_state = 4}, + [4072] = {.lex_state = 5, .external_lex_state = 7}, + [4073] = {.lex_state = 5, .external_lex_state = 7}, [4074] = {.lex_state = 5, .external_lex_state = 7}, [4075] = {.lex_state = 5, .external_lex_state = 6}, [4076] = {.lex_state = 5, .external_lex_state = 7}, [4077] = {.lex_state = 5, .external_lex_state = 7}, - [4078] = {.lex_state = 5, .external_lex_state = 7}, - [4079] = {.lex_state = 5, .external_lex_state = 7}, + [4078] = {.lex_state = 5, .external_lex_state = 6}, + [4079] = {.lex_state = 1, .external_lex_state = 4}, [4080] = {.lex_state = 5, .external_lex_state = 6}, - [4081] = {.lex_state = 5, .external_lex_state = 7}, + [4081] = {.lex_state = 1, .external_lex_state = 4}, [4082] = {.lex_state = 5, .external_lex_state = 7}, - [4083] = {.lex_state = 5, .external_lex_state = 6}, - [4084] = {.lex_state = 1, .external_lex_state = 4}, + [4083] = {.lex_state = 5, .external_lex_state = 7}, + [4084] = {.lex_state = 5, .external_lex_state = 7}, [4085] = {.lex_state = 5, .external_lex_state = 7}, - [4086] = {.lex_state = 1, .external_lex_state = 4}, + [4086] = {.lex_state = 5, .external_lex_state = 7}, [4087] = {.lex_state = 5, .external_lex_state = 7}, - [4088] = {.lex_state = 5, .external_lex_state = 6}, - [4089] = {.lex_state = 5, .external_lex_state = 6}, + [4088] = {.lex_state = 1, .external_lex_state = 4}, + [4089] = {.lex_state = 5, .external_lex_state = 7}, [4090] = {.lex_state = 5, .external_lex_state = 7}, - [4091] = {.lex_state = 5, .external_lex_state = 7}, + [4091] = {.lex_state = 5, .external_lex_state = 6}, [4092] = {.lex_state = 5, .external_lex_state = 6}, - [4093] = {.lex_state = 1, .external_lex_state = 3}, - [4094] = {.lex_state = 1, .external_lex_state = 3}, - [4095] = {.lex_state = 5, .external_lex_state = 6}, + [4093] = {.lex_state = 5, .external_lex_state = 7}, + [4094] = {.lex_state = 5, .external_lex_state = 6}, + [4095] = {.lex_state = 5, .external_lex_state = 7}, [4096] = {.lex_state = 5, .external_lex_state = 6}, [4097] = {.lex_state = 5, .external_lex_state = 6}, [4098] = {.lex_state = 5, .external_lex_state = 7}, - [4099] = {.lex_state = 5, .external_lex_state = 6}, - [4100] = {.lex_state = 5, .external_lex_state = 7}, - [4101] = {.lex_state = 5, .external_lex_state = 6}, - [4102] = {.lex_state = 5, .external_lex_state = 7}, - [4103] = {.lex_state = 5, .external_lex_state = 7}, - [4104] = {.lex_state = 5, .external_lex_state = 7}, + [4099] = {.lex_state = 5, .external_lex_state = 7}, + [4100] = {.lex_state = 5, .external_lex_state = 6}, + [4101] = {.lex_state = 5, .external_lex_state = 7}, + [4102] = {.lex_state = 5, .external_lex_state = 6}, + [4103] = {.lex_state = 1, .external_lex_state = 3}, + [4104] = {.lex_state = 1, .external_lex_state = 3}, [4105] = {.lex_state = 5, .external_lex_state = 6}, [4106] = {.lex_state = 5, .external_lex_state = 7}, - [4107] = {.lex_state = 5, .external_lex_state = 6}, - [4108] = {.lex_state = 5, .external_lex_state = 6}, + [4107] = {.lex_state = 5, .external_lex_state = 7}, + [4108] = {.lex_state = 5, .external_lex_state = 7}, [4109] = {.lex_state = 5, .external_lex_state = 7}, - [4110] = {.lex_state = 5, .external_lex_state = 6}, + [4110] = {.lex_state = 5, .external_lex_state = 7}, [4111] = {.lex_state = 5, .external_lex_state = 7}, [4112] = {.lex_state = 5, .external_lex_state = 7}, [4113] = {.lex_state = 5, .external_lex_state = 7}, - [4114] = {.lex_state = 5, .external_lex_state = 6}, - [4115] = {.lex_state = 5, .external_lex_state = 7}, - [4116] = {.lex_state = 5, .external_lex_state = 7}, - [4117] = {.lex_state = 5, .external_lex_state = 7}, + [4114] = {.lex_state = 5, .external_lex_state = 7}, + [4115] = {.lex_state = 5, .external_lex_state = 6}, + [4116] = {.lex_state = 5, .external_lex_state = 6}, + [4117] = {.lex_state = 5, .external_lex_state = 6}, [4118] = {.lex_state = 5, .external_lex_state = 6}, - [4119] = {.lex_state = 5, .external_lex_state = 7}, - [4120] = {.lex_state = 5, .external_lex_state = 7}, - [4121] = {.lex_state = 5, .external_lex_state = 6}, - [4122] = {.lex_state = 1, .external_lex_state = 4}, - [4123] = {.lex_state = 5, .external_lex_state = 6}, + [4119] = {.lex_state = 5, .external_lex_state = 6}, + [4120] = {.lex_state = 5, .external_lex_state = 6}, + [4121] = {.lex_state = 5, .external_lex_state = 7}, + [4122] = {.lex_state = 5, .external_lex_state = 7}, + [4123] = {.lex_state = 5, .external_lex_state = 7}, [4124] = {.lex_state = 1, .external_lex_state = 4}, - [4125] = {.lex_state = 5, .external_lex_state = 7}, - [4126] = {.lex_state = 5, .external_lex_state = 7}, + [4125] = {.lex_state = 1, .external_lex_state = 4}, + [4126] = {.lex_state = 1, .external_lex_state = 4}, [4127] = {.lex_state = 1, .external_lex_state = 4}, [4128] = {.lex_state = 5, .external_lex_state = 7}, - [4129] = {.lex_state = 1, .external_lex_state = 4}, - [4130] = {.lex_state = 5, .external_lex_state = 7}, + [4129] = {.lex_state = 5, .external_lex_state = 7}, + [4130] = {.lex_state = 5, .external_lex_state = 6}, [4131] = {.lex_state = 5, .external_lex_state = 7}, [4132] = {.lex_state = 5, .external_lex_state = 7}, - [4133] = {.lex_state = 1, .external_lex_state = 4}, - [4134] = {.lex_state = 5, .external_lex_state = 7}, + [4133] = {.lex_state = 5, .external_lex_state = 7}, + [4134] = {.lex_state = 1, .external_lex_state = 4}, [4135] = {.lex_state = 5, .external_lex_state = 7}, - [4136] = {.lex_state = 5, .external_lex_state = 7}, + [4136] = {.lex_state = 1, .external_lex_state = 4}, [4137] = {.lex_state = 5, .external_lex_state = 7}, - [4138] = {.lex_state = 1, .external_lex_state = 4}, - [4139] = {.lex_state = 1, .external_lex_state = 4}, + [4138] = {.lex_state = 5, .external_lex_state = 7}, + [4139] = {.lex_state = 5, .external_lex_state = 7}, [4140] = {.lex_state = 5, .external_lex_state = 7}, [4141] = {.lex_state = 5, .external_lex_state = 7}, [4142] = {.lex_state = 5, .external_lex_state = 7}, @@ -18368,111 +18378,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4151] = {.lex_state = 5, .external_lex_state = 7}, [4152] = {.lex_state = 5, .external_lex_state = 7}, [4153] = {.lex_state = 5, .external_lex_state = 7}, - [4154] = {.lex_state = 1, .external_lex_state = 4}, - [4155] = {.lex_state = 5, .external_lex_state = 7}, + [4154] = {.lex_state = 5, .external_lex_state = 7}, + [4155] = {.lex_state = 1, .external_lex_state = 4}, [4156] = {.lex_state = 1, .external_lex_state = 4}, - [4157] = {.lex_state = 1, .external_lex_state = 4}, + [4157] = {.lex_state = 5, .external_lex_state = 7}, [4158] = {.lex_state = 5, .external_lex_state = 7}, [4159] = {.lex_state = 5, .external_lex_state = 7}, - [4160] = {.lex_state = 5, .external_lex_state = 7}, + [4160] = {.lex_state = 5, .external_lex_state = 6}, [4161] = {.lex_state = 5, .external_lex_state = 7}, [4162] = {.lex_state = 5, .external_lex_state = 7}, - [4163] = {.lex_state = 5, .external_lex_state = 7}, - [4164] = {.lex_state = 5, .external_lex_state = 6}, + [4163] = {.lex_state = 1, .external_lex_state = 4}, + [4164] = {.lex_state = 1, .external_lex_state = 4}, [4165] = {.lex_state = 5, .external_lex_state = 7}, [4166] = {.lex_state = 5, .external_lex_state = 6}, - [4167] = {.lex_state = 5, .external_lex_state = 7}, + [4167] = {.lex_state = 5, .external_lex_state = 6}, [4168] = {.lex_state = 5, .external_lex_state = 6}, [4169] = {.lex_state = 5, .external_lex_state = 6}, [4170] = {.lex_state = 5, .external_lex_state = 6}, [4171] = {.lex_state = 5, .external_lex_state = 7}, - [4172] = {.lex_state = 5, .external_lex_state = 7}, + [4172] = {.lex_state = 5, .external_lex_state = 6}, [4173] = {.lex_state = 5, .external_lex_state = 6}, - [4174] = {.lex_state = 5, .external_lex_state = 7}, + [4174] = {.lex_state = 5, .external_lex_state = 6}, [4175] = {.lex_state = 5, .external_lex_state = 6}, - [4176] = {.lex_state = 5, .external_lex_state = 6}, - [4177] = {.lex_state = 5, .external_lex_state = 6}, - [4178] = {.lex_state = 5, .external_lex_state = 7}, + [4176] = {.lex_state = 5, .external_lex_state = 7}, + [4177] = {.lex_state = 5, .external_lex_state = 7}, + [4178] = {.lex_state = 5, .external_lex_state = 6}, [4179] = {.lex_state = 5, .external_lex_state = 7}, [4180] = {.lex_state = 5, .external_lex_state = 6}, [4181] = {.lex_state = 5, .external_lex_state = 6}, [4182] = {.lex_state = 5, .external_lex_state = 6}, - [4183] = {.lex_state = 5, .external_lex_state = 6}, + [4183] = {.lex_state = 5, .external_lex_state = 7}, [4184] = {.lex_state = 5, .external_lex_state = 6}, - [4185] = {.lex_state = 5, .external_lex_state = 7}, - [4186] = {.lex_state = 5, .external_lex_state = 6}, + [4185] = {.lex_state = 5, .external_lex_state = 6}, + [4186] = {.lex_state = 5, .external_lex_state = 7}, [4187] = {.lex_state = 5, .external_lex_state = 6}, [4188] = {.lex_state = 5, .external_lex_state = 6}, [4189] = {.lex_state = 5, .external_lex_state = 7}, - [4190] = {.lex_state = 5, .external_lex_state = 6}, - [4191] = {.lex_state = 5, .external_lex_state = 7}, + [4190] = {.lex_state = 5, .external_lex_state = 7}, + [4191] = {.lex_state = 5, .external_lex_state = 6}, [4192] = {.lex_state = 5, .external_lex_state = 7}, - [4193] = {.lex_state = 5, .external_lex_state = 7}, + [4193] = {.lex_state = 5, .external_lex_state = 6}, [4194] = {.lex_state = 5, .external_lex_state = 7}, [4195] = {.lex_state = 5, .external_lex_state = 6}, [4196] = {.lex_state = 5, .external_lex_state = 7}, [4197] = {.lex_state = 5, .external_lex_state = 7}, - [4198] = {.lex_state = 5, .external_lex_state = 6}, - [4199] = {.lex_state = 31, .external_lex_state = 2}, + [4198] = {.lex_state = 5, .external_lex_state = 7}, + [4199] = {.lex_state = 5, .external_lex_state = 7}, [4200] = {.lex_state = 5, .external_lex_state = 7}, - [4201] = {.lex_state = 5, .external_lex_state = 7}, + [4201] = {.lex_state = 31, .external_lex_state = 2}, [4202] = {.lex_state = 5, .external_lex_state = 7}, - [4203] = {.lex_state = 5, .external_lex_state = 6}, - [4204] = {.lex_state = 5, .external_lex_state = 7}, - [4205] = {.lex_state = 5, .external_lex_state = 6}, + [4203] = {.lex_state = 5, .external_lex_state = 7}, + [4204] = {.lex_state = 5, .external_lex_state = 6}, + [4205] = {.lex_state = 5, .external_lex_state = 7}, [4206] = {.lex_state = 5, .external_lex_state = 7}, [4207] = {.lex_state = 5, .external_lex_state = 7}, [4208] = {.lex_state = 5, .external_lex_state = 7}, - [4209] = {.lex_state = 5, .external_lex_state = 6}, + [4209] = {.lex_state = 5, .external_lex_state = 7}, [4210] = {.lex_state = 5, .external_lex_state = 7}, [4211] = {.lex_state = 5, .external_lex_state = 7}, [4212] = {.lex_state = 5, .external_lex_state = 7}, [4213] = {.lex_state = 5, .external_lex_state = 6}, [4214] = {.lex_state = 5, .external_lex_state = 7}, [4215] = {.lex_state = 5, .external_lex_state = 6}, - [4216] = {.lex_state = 5, .external_lex_state = 6}, - [4217] = {.lex_state = 5, .external_lex_state = 7}, - [4218] = {.lex_state = 5, .external_lex_state = 6}, + [4216] = {.lex_state = 5, .external_lex_state = 7}, + [4217] = {.lex_state = 5, .external_lex_state = 6}, + [4218] = {.lex_state = 5, .external_lex_state = 7}, [4219] = {.lex_state = 5, .external_lex_state = 6}, [4220] = {.lex_state = 5, .external_lex_state = 6}, [4221] = {.lex_state = 5, .external_lex_state = 6}, [4222] = {.lex_state = 5, .external_lex_state = 6}, [4223] = {.lex_state = 5, .external_lex_state = 6}, - [4224] = {.lex_state = 5, .external_lex_state = 6}, - [4225] = {.lex_state = 5, .external_lex_state = 7}, + [4224] = {.lex_state = 5, .external_lex_state = 7}, + [4225] = {.lex_state = 5, .external_lex_state = 6}, [4226] = {.lex_state = 5, .external_lex_state = 6}, - [4227] = {.lex_state = 5, .external_lex_state = 6}, + [4227] = {.lex_state = 5, .external_lex_state = 7}, [4228] = {.lex_state = 5, .external_lex_state = 7}, [4229] = {.lex_state = 5, .external_lex_state = 7}, - [4230] = {.lex_state = 5, .external_lex_state = 7}, - [4231] = {.lex_state = 7, .external_lex_state = 8}, - [4232] = {.lex_state = 7, .external_lex_state = 8}, + [4230] = {.lex_state = 5, .external_lex_state = 6}, + [4231] = {.lex_state = 5, .external_lex_state = 7}, + [4232] = {.lex_state = 5, .external_lex_state = 6}, [4233] = {.lex_state = 5, .external_lex_state = 6}, - [4234] = {.lex_state = 7, .external_lex_state = 8}, + [4234] = {.lex_state = 5, .external_lex_state = 6}, [4235] = {.lex_state = 5, .external_lex_state = 6}, - [4236] = {.lex_state = 7, .external_lex_state = 8}, + [4236] = {.lex_state = 5, .external_lex_state = 6}, [4237] = {.lex_state = 7, .external_lex_state = 8}, [4238] = {.lex_state = 7, .external_lex_state = 8}, [4239] = {.lex_state = 7, .external_lex_state = 8}, [4240] = {.lex_state = 5, .external_lex_state = 6}, - [4241] = {.lex_state = 7, .external_lex_state = 8}, - [4242] = {.lex_state = 5, .external_lex_state = 6}, + [4241] = {.lex_state = 5, .external_lex_state = 6}, + [4242] = {.lex_state = 7, .external_lex_state = 8}, [4243] = {.lex_state = 7, .external_lex_state = 8}, [4244] = {.lex_state = 7, .external_lex_state = 8}, - [4245] = {.lex_state = 5, .external_lex_state = 6}, + [4245] = {.lex_state = 7, .external_lex_state = 8}, [4246] = {.lex_state = 7, .external_lex_state = 8}, [4247] = {.lex_state = 7, .external_lex_state = 8}, [4248] = {.lex_state = 7, .external_lex_state = 8}, [4249] = {.lex_state = 7, .external_lex_state = 8}, - [4250] = {.lex_state = 5, .external_lex_state = 6}, - [4251] = {.lex_state = 5, .external_lex_state = 6}, - [4252] = {.lex_state = 5, .external_lex_state = 6}, - [4253] = {.lex_state = 7, .external_lex_state = 8}, - [4254] = {.lex_state = 5, .external_lex_state = 6}, + [4250] = {.lex_state = 7, .external_lex_state = 8}, + [4251] = {.lex_state = 7, .external_lex_state = 8}, + [4252] = {.lex_state = 7, .external_lex_state = 8}, + [4253] = {.lex_state = 5, .external_lex_state = 6}, + [4254] = {.lex_state = 7, .external_lex_state = 8}, [4255] = {.lex_state = 7, .external_lex_state = 8}, - [4256] = {.lex_state = 5, .external_lex_state = 6}, + [4256] = {.lex_state = 7, .external_lex_state = 8}, [4257] = {.lex_state = 7, .external_lex_state = 8}, - [4258] = {.lex_state = 7, .external_lex_state = 8}, + [4258] = {.lex_state = 5, .external_lex_state = 6}, [4259] = {.lex_state = 7, .external_lex_state = 8}, [4260] = {.lex_state = 7, .external_lex_state = 8}, [4261] = {.lex_state = 7, .external_lex_state = 8}, @@ -18481,20 +18491,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4264] = {.lex_state = 7, .external_lex_state = 8}, [4265] = {.lex_state = 7, .external_lex_state = 8}, [4266] = {.lex_state = 7, .external_lex_state = 8}, - [4267] = {.lex_state = 5, .external_lex_state = 6}, - [4268] = {.lex_state = 5, .external_lex_state = 6}, + [4267] = {.lex_state = 7, .external_lex_state = 8}, + [4268] = {.lex_state = 7, .external_lex_state = 8}, [4269] = {.lex_state = 7, .external_lex_state = 8}, - [4270] = {.lex_state = 5, .external_lex_state = 6}, + [4270] = {.lex_state = 7, .external_lex_state = 8}, [4271] = {.lex_state = 7, .external_lex_state = 8}, - [4272] = {.lex_state = 7, .external_lex_state = 8}, - [4273] = {.lex_state = 7, .external_lex_state = 8}, + [4272] = {.lex_state = 5, .external_lex_state = 6}, + [4273] = {.lex_state = 5, .external_lex_state = 6}, [4274] = {.lex_state = 7, .external_lex_state = 8}, [4275] = {.lex_state = 7, .external_lex_state = 8}, - [4276] = {.lex_state = 7, .external_lex_state = 8}, + [4276] = {.lex_state = 5, .external_lex_state = 6}, [4277] = {.lex_state = 7, .external_lex_state = 8}, - [4278] = {.lex_state = 7, .external_lex_state = 8}, + [4278] = {.lex_state = 5, .external_lex_state = 6}, [4279] = {.lex_state = 7, .external_lex_state = 8}, - [4280] = {.lex_state = 5, .external_lex_state = 6}, + [4280] = {.lex_state = 7, .external_lex_state = 8}, [4281] = {.lex_state = 7, .external_lex_state = 8}, [4282] = {.lex_state = 7, .external_lex_state = 8}, [4283] = {.lex_state = 7, .external_lex_state = 8}, @@ -18503,22 +18513,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4286] = {.lex_state = 7, .external_lex_state = 8}, [4287] = {.lex_state = 7, .external_lex_state = 8}, [4288] = {.lex_state = 7, .external_lex_state = 8}, - [4289] = {.lex_state = 7, .external_lex_state = 8}, + [4289] = {.lex_state = 5, .external_lex_state = 6}, [4290] = {.lex_state = 7, .external_lex_state = 8}, [4291] = {.lex_state = 7, .external_lex_state = 8}, [4292] = {.lex_state = 7, .external_lex_state = 8}, [4293] = {.lex_state = 7, .external_lex_state = 8}, [4294] = {.lex_state = 7, .external_lex_state = 8}, [4295] = {.lex_state = 7, .external_lex_state = 8}, - [4296] = {.lex_state = 7, .external_lex_state = 8}, + [4296] = {.lex_state = 5, .external_lex_state = 6}, [4297] = {.lex_state = 7, .external_lex_state = 8}, [4298] = {.lex_state = 7, .external_lex_state = 8}, [4299] = {.lex_state = 7, .external_lex_state = 8}, - [4300] = {.lex_state = 5, .external_lex_state = 6}, - [4301] = {.lex_state = 7, .external_lex_state = 8}, + [4300] = {.lex_state = 7, .external_lex_state = 8}, + [4301] = {.lex_state = 5, .external_lex_state = 6}, [4302] = {.lex_state = 5, .external_lex_state = 6}, - [4303] = {.lex_state = 5, .external_lex_state = 6}, - [4304] = {.lex_state = 5, .external_lex_state = 6}, + [4303] = {.lex_state = 7, .external_lex_state = 8}, + [4304] = {.lex_state = 7, .external_lex_state = 8}, [4305] = {.lex_state = 5, .external_lex_state = 6}, [4306] = {.lex_state = 5, .external_lex_state = 6}, [4307] = {.lex_state = 5, .external_lex_state = 6}, @@ -18645,12 +18655,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4428] = {.lex_state = 5, .external_lex_state = 6}, [4429] = {.lex_state = 5, .external_lex_state = 6}, [4430] = {.lex_state = 5, .external_lex_state = 6}, - [4431] = {.lex_state = 31, .external_lex_state = 2}, - [4432] = {.lex_state = 31, .external_lex_state = 2}, + [4431] = {.lex_state = 5, .external_lex_state = 6}, + [4432] = {.lex_state = 5, .external_lex_state = 6}, [4433] = {.lex_state = 5, .external_lex_state = 6}, [4434] = {.lex_state = 5, .external_lex_state = 6}, - [4435] = {.lex_state = 5, .external_lex_state = 6}, - [4436] = {.lex_state = 5, .external_lex_state = 6}, + [4435] = {.lex_state = 31, .external_lex_state = 2}, + [4436] = {.lex_state = 31, .external_lex_state = 2}, [4437] = {.lex_state = 5, .external_lex_state = 6}, [4438] = {.lex_state = 5, .external_lex_state = 6}, [4439] = {.lex_state = 5, .external_lex_state = 6}, @@ -18664,8 +18674,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4447] = {.lex_state = 5, .external_lex_state = 6}, [4448] = {.lex_state = 5, .external_lex_state = 6}, [4449] = {.lex_state = 5, .external_lex_state = 6}, - [4450] = {.lex_state = 5, .external_lex_state = 6}, - [4451] = {.lex_state = 5, .external_lex_state = 7}, + [4450] = {.lex_state = 5, .external_lex_state = 7}, + [4451] = {.lex_state = 5, .external_lex_state = 6}, [4452] = {.lex_state = 5, .external_lex_state = 6}, [4453] = {.lex_state = 5, .external_lex_state = 6}, [4454] = {.lex_state = 5, .external_lex_state = 6}, @@ -18681,10 +18691,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4464] = {.lex_state = 5, .external_lex_state = 6}, [4465] = {.lex_state = 5, .external_lex_state = 6}, [4466] = {.lex_state = 5, .external_lex_state = 6}, - [4467] = {.lex_state = 5, .external_lex_state = 7}, + [4467] = {.lex_state = 5, .external_lex_state = 6}, [4468] = {.lex_state = 5, .external_lex_state = 6}, [4469] = {.lex_state = 5, .external_lex_state = 6}, - [4470] = {.lex_state = 5, .external_lex_state = 7}, + [4470] = {.lex_state = 5, .external_lex_state = 6}, [4471] = {.lex_state = 5, .external_lex_state = 6}, [4472] = {.lex_state = 5, .external_lex_state = 6}, [4473] = {.lex_state = 5, .external_lex_state = 6}, @@ -18707,12 +18717,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4490] = {.lex_state = 5, .external_lex_state = 6}, [4491] = {.lex_state = 5, .external_lex_state = 6}, [4492] = {.lex_state = 5, .external_lex_state = 6}, - [4493] = {.lex_state = 5, .external_lex_state = 7}, + [4493] = {.lex_state = 5, .external_lex_state = 6}, [4494] = {.lex_state = 5, .external_lex_state = 6}, [4495] = {.lex_state = 5, .external_lex_state = 6}, [4496] = {.lex_state = 5, .external_lex_state = 6}, [4497] = {.lex_state = 5, .external_lex_state = 6}, - [4498] = {.lex_state = 5, .external_lex_state = 6}, + [4498] = {.lex_state = 5, .external_lex_state = 7}, [4499] = {.lex_state = 5, .external_lex_state = 6}, [4500] = {.lex_state = 5, .external_lex_state = 6}, [4501] = {.lex_state = 5, .external_lex_state = 6}, @@ -18729,17 +18739,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4512] = {.lex_state = 5, .external_lex_state = 6}, [4513] = {.lex_state = 5, .external_lex_state = 6}, [4514] = {.lex_state = 5, .external_lex_state = 6}, - [4515] = {.lex_state = 5, .external_lex_state = 7}, - [4516] = {.lex_state = 5, .external_lex_state = 7}, + [4515] = {.lex_state = 5, .external_lex_state = 6}, + [4516] = {.lex_state = 5, .external_lex_state = 6}, [4517] = {.lex_state = 5, .external_lex_state = 6}, - [4518] = {.lex_state = 5, .external_lex_state = 7}, - [4519] = {.lex_state = 5, .external_lex_state = 7}, + [4518] = {.lex_state = 5, .external_lex_state = 6}, + [4519] = {.lex_state = 5, .external_lex_state = 6}, [4520] = {.lex_state = 5, .external_lex_state = 6}, - [4521] = {.lex_state = 5, .external_lex_state = 6}, - [4522] = {.lex_state = 5, .external_lex_state = 6}, - [4523] = {.lex_state = 5, .external_lex_state = 7}, + [4521] = {.lex_state = 5, .external_lex_state = 7}, + [4522] = {.lex_state = 7, .external_lex_state = 8}, + [4523] = {.lex_state = 5, .external_lex_state = 6}, [4524] = {.lex_state = 5, .external_lex_state = 6}, - [4525] = {.lex_state = 5, .external_lex_state = 6}, + [4525] = {.lex_state = 5, .external_lex_state = 7}, [4526] = {.lex_state = 5, .external_lex_state = 6}, [4527] = {.lex_state = 5, .external_lex_state = 6}, [4528] = {.lex_state = 5, .external_lex_state = 6}, @@ -18747,11 +18757,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4530] = {.lex_state = 5, .external_lex_state = 6}, [4531] = {.lex_state = 5, .external_lex_state = 6}, [4532] = {.lex_state = 5, .external_lex_state = 6}, - [4533] = {.lex_state = 7, .external_lex_state = 8}, + [4533] = {.lex_state = 5, .external_lex_state = 7}, [4534] = {.lex_state = 5, .external_lex_state = 6}, [4535] = {.lex_state = 5, .external_lex_state = 6}, - [4536] = {.lex_state = 5, .external_lex_state = 7}, - [4537] = {.lex_state = 4, .external_lex_state = 5}, + [4536] = {.lex_state = 5, .external_lex_state = 6}, + [4537] = {.lex_state = 5, .external_lex_state = 6}, [4538] = {.lex_state = 5, .external_lex_state = 6}, [4539] = {.lex_state = 5, .external_lex_state = 6}, [4540] = {.lex_state = 5, .external_lex_state = 6}, @@ -18766,36 +18776,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4549] = {.lex_state = 5, .external_lex_state = 6}, [4550] = {.lex_state = 5, .external_lex_state = 6}, [4551] = {.lex_state = 5, .external_lex_state = 6}, - [4552] = {.lex_state = 5, .external_lex_state = 6}, + [4552] = {.lex_state = 5, .external_lex_state = 7}, [4553] = {.lex_state = 5, .external_lex_state = 6}, - [4554] = {.lex_state = 4, .external_lex_state = 5}, - [4555] = {.lex_state = 5, .external_lex_state = 6}, - [4556] = {.lex_state = 5, .external_lex_state = 6}, + [4554] = {.lex_state = 5, .external_lex_state = 6}, + [4555] = {.lex_state = 5, .external_lex_state = 7}, + [4556] = {.lex_state = 5, .external_lex_state = 7}, [4557] = {.lex_state = 5, .external_lex_state = 6}, - [4558] = {.lex_state = 5, .external_lex_state = 6}, - [4559] = {.lex_state = 5, .external_lex_state = 6}, + [4558] = {.lex_state = 5, .external_lex_state = 7}, + [4559] = {.lex_state = 4, .external_lex_state = 5}, [4560] = {.lex_state = 5, .external_lex_state = 6}, [4561] = {.lex_state = 5, .external_lex_state = 6}, [4562] = {.lex_state = 5, .external_lex_state = 6}, [4563] = {.lex_state = 5, .external_lex_state = 6}, [4564] = {.lex_state = 5, .external_lex_state = 6}, [4565] = {.lex_state = 5, .external_lex_state = 6}, - [4566] = {.lex_state = 5, .external_lex_state = 7}, + [4566] = {.lex_state = 4, .external_lex_state = 5}, [4567] = {.lex_state = 5, .external_lex_state = 6}, [4568] = {.lex_state = 5, .external_lex_state = 6}, [4569] = {.lex_state = 5, .external_lex_state = 6}, [4570] = {.lex_state = 5, .external_lex_state = 6}, - [4571] = {.lex_state = 5, .external_lex_state = 6}, + [4571] = {.lex_state = 4, .external_lex_state = 5}, [4572] = {.lex_state = 4, .external_lex_state = 5}, - [4573] = {.lex_state = 5, .external_lex_state = 6}, - [4574] = {.lex_state = 5, .external_lex_state = 6}, - [4575] = {.lex_state = 5, .external_lex_state = 6}, + [4573] = {.lex_state = 5, .external_lex_state = 7}, + [4574] = {.lex_state = 5, .external_lex_state = 7}, + [4575] = {.lex_state = 5, .external_lex_state = 7}, [4576] = {.lex_state = 5, .external_lex_state = 7}, [4577] = {.lex_state = 5, .external_lex_state = 7}, - [4578] = {.lex_state = 5, .external_lex_state = 6}, - [4579] = {.lex_state = 5, .external_lex_state = 6}, - [4580] = {.lex_state = 5, .external_lex_state = 6}, - [4581] = {.lex_state = 5, .external_lex_state = 6}, + [4578] = {.lex_state = 5, .external_lex_state = 7}, + [4579] = {.lex_state = 5, .external_lex_state = 7}, + [4580] = {.lex_state = 5, .external_lex_state = 7}, + [4581] = {.lex_state = 4, .external_lex_state = 5}, [4582] = {.lex_state = 5, .external_lex_state = 6}, [4583] = {.lex_state = 5, .external_lex_state = 6}, [4584] = {.lex_state = 5, .external_lex_state = 6}, @@ -18824,34 +18834,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4607] = {.lex_state = 5, .external_lex_state = 6}, [4608] = {.lex_state = 5, .external_lex_state = 6}, [4609] = {.lex_state = 5, .external_lex_state = 6}, - [4610] = {.lex_state = 5, .external_lex_state = 7}, - [4611] = {.lex_state = 5, .external_lex_state = 7}, - [4612] = {.lex_state = 5, .external_lex_state = 7}, + [4610] = {.lex_state = 5, .external_lex_state = 6}, + [4611] = {.lex_state = 5, .external_lex_state = 6}, + [4612] = {.lex_state = 5, .external_lex_state = 6}, [4613] = {.lex_state = 5, .external_lex_state = 6}, [4614] = {.lex_state = 5, .external_lex_state = 7}, - [4615] = {.lex_state = 5, .external_lex_state = 7}, + [4615] = {.lex_state = 5, .external_lex_state = 6}, [4616] = {.lex_state = 5, .external_lex_state = 6}, [4617] = {.lex_state = 5, .external_lex_state = 6}, [4618] = {.lex_state = 5, .external_lex_state = 6}, [4619] = {.lex_state = 5, .external_lex_state = 6}, - [4620] = {.lex_state = 5, .external_lex_state = 7}, + [4620] = {.lex_state = 5, .external_lex_state = 6}, [4621] = {.lex_state = 5, .external_lex_state = 6}, [4622] = {.lex_state = 5, .external_lex_state = 6}, [4623] = {.lex_state = 5, .external_lex_state = 6}, [4624] = {.lex_state = 5, .external_lex_state = 6}, [4625] = {.lex_state = 5, .external_lex_state = 6}, - [4626] = {.lex_state = 5, .external_lex_state = 7}, - [4627] = {.lex_state = 5, .external_lex_state = 7}, + [4626] = {.lex_state = 5, .external_lex_state = 6}, + [4627] = {.lex_state = 5, .external_lex_state = 6}, [4628] = {.lex_state = 5, .external_lex_state = 6}, - [4629] = {.lex_state = 5, .external_lex_state = 7}, + [4629] = {.lex_state = 5, .external_lex_state = 6}, [4630] = {.lex_state = 5, .external_lex_state = 6}, [4631] = {.lex_state = 5, .external_lex_state = 6}, - [4632] = {.lex_state = 5, .external_lex_state = 7}, + [4632] = {.lex_state = 5, .external_lex_state = 6}, [4633] = {.lex_state = 5, .external_lex_state = 6}, [4634] = {.lex_state = 5, .external_lex_state = 6}, [4635] = {.lex_state = 5, .external_lex_state = 6}, [4636] = {.lex_state = 5, .external_lex_state = 6}, - [4637] = {.lex_state = 4, .external_lex_state = 5}, + [4637] = {.lex_state = 5, .external_lex_state = 6}, [4638] = {.lex_state = 5, .external_lex_state = 6}, [4639] = {.lex_state = 5, .external_lex_state = 6}, [4640] = {.lex_state = 5, .external_lex_state = 6}, @@ -18874,38 +18884,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4657] = {.lex_state = 5, .external_lex_state = 6}, [4658] = {.lex_state = 5, .external_lex_state = 6}, [4659] = {.lex_state = 5, .external_lex_state = 6}, - [4660] = {.lex_state = 4, .external_lex_state = 5}, + [4660] = {.lex_state = 5, .external_lex_state = 6}, [4661] = {.lex_state = 5, .external_lex_state = 6}, [4662] = {.lex_state = 5, .external_lex_state = 6}, [4663] = {.lex_state = 5, .external_lex_state = 6}, [4664] = {.lex_state = 5, .external_lex_state = 6}, - [4665] = {.lex_state = 5, .external_lex_state = 6}, + [4665] = {.lex_state = 5, .external_lex_state = 7}, [4666] = {.lex_state = 5, .external_lex_state = 6}, [4667] = {.lex_state = 5, .external_lex_state = 6}, [4668] = {.lex_state = 5, .external_lex_state = 6}, [4669] = {.lex_state = 5, .external_lex_state = 6}, [4670] = {.lex_state = 5, .external_lex_state = 6}, [4671] = {.lex_state = 5, .external_lex_state = 6}, - [4672] = {.lex_state = 5, .external_lex_state = 7}, + [4672] = {.lex_state = 5, .external_lex_state = 6}, [4673] = {.lex_state = 5, .external_lex_state = 7}, - [4674] = {.lex_state = 5, .external_lex_state = 6}, - [4675] = {.lex_state = 5, .external_lex_state = 6}, - [4676] = {.lex_state = 5, .external_lex_state = 6}, + [4674] = {.lex_state = 5, .external_lex_state = 7}, + [4675] = {.lex_state = 5, .external_lex_state = 7}, + [4676] = {.lex_state = 5, .external_lex_state = 7}, [4677] = {.lex_state = 5, .external_lex_state = 7}, [4678] = {.lex_state = 5, .external_lex_state = 7}, - [4679] = {.lex_state = 5, .external_lex_state = 6}, - [4680] = {.lex_state = 5, .external_lex_state = 7}, + [4679] = {.lex_state = 5, .external_lex_state = 7}, + [4680] = {.lex_state = 5, .external_lex_state = 6}, [4681] = {.lex_state = 5, .external_lex_state = 6}, [4682] = {.lex_state = 5, .external_lex_state = 6}, [4683] = {.lex_state = 5, .external_lex_state = 6}, - [4684] = {.lex_state = 5, .external_lex_state = 7}, + [4684] = {.lex_state = 5, .external_lex_state = 6}, [4685] = {.lex_state = 5, .external_lex_state = 6}, - [4686] = {.lex_state = 5, .external_lex_state = 7}, + [4686] = {.lex_state = 5, .external_lex_state = 6}, [4687] = {.lex_state = 5, .external_lex_state = 6}, [4688] = {.lex_state = 5, .external_lex_state = 6}, [4689] = {.lex_state = 5, .external_lex_state = 6}, [4690] = {.lex_state = 5, .external_lex_state = 6}, - [4691] = {.lex_state = 5, .external_lex_state = 6}, + [4691] = {.lex_state = 5, .external_lex_state = 7}, [4692] = {.lex_state = 5, .external_lex_state = 6}, [4693] = {.lex_state = 5, .external_lex_state = 6}, [4694] = {.lex_state = 5, .external_lex_state = 6}, @@ -18914,25 +18924,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4697] = {.lex_state = 5, .external_lex_state = 6}, [4698] = {.lex_state = 5, .external_lex_state = 6}, [4699] = {.lex_state = 5, .external_lex_state = 6}, - [4700] = {.lex_state = 5, .external_lex_state = 6}, - [4701] = {.lex_state = 5, .external_lex_state = 6}, + [4700] = {.lex_state = 5, .external_lex_state = 7}, + [4701] = {.lex_state = 5, .external_lex_state = 7}, [4702] = {.lex_state = 5, .external_lex_state = 6}, [4703] = {.lex_state = 5, .external_lex_state = 6}, [4704] = {.lex_state = 5, .external_lex_state = 7}, - [4705] = {.lex_state = 5, .external_lex_state = 6}, + [4705] = {.lex_state = 5, .external_lex_state = 7}, [4706] = {.lex_state = 5, .external_lex_state = 6}, [4707] = {.lex_state = 5, .external_lex_state = 6}, - [4708] = {.lex_state = 5, .external_lex_state = 6}, + [4708] = {.lex_state = 5, .external_lex_state = 7}, [4709] = {.lex_state = 5, .external_lex_state = 6}, [4710] = {.lex_state = 5, .external_lex_state = 7}, - [4711] = {.lex_state = 5, .external_lex_state = 7}, + [4711] = {.lex_state = 5, .external_lex_state = 6}, [4712] = {.lex_state = 5, .external_lex_state = 6}, - [4713] = {.lex_state = 5, .external_lex_state = 7}, - [4714] = {.lex_state = 5, .external_lex_state = 6}, + [4713] = {.lex_state = 5, .external_lex_state = 6}, + [4714] = {.lex_state = 5, .external_lex_state = 7}, [4715] = {.lex_state = 5, .external_lex_state = 6}, [4716] = {.lex_state = 5, .external_lex_state = 6}, [4717] = {.lex_state = 5, .external_lex_state = 6}, - [4718] = {.lex_state = 5, .external_lex_state = 6}, + [4718] = {.lex_state = 5, .external_lex_state = 7}, [4719] = {.lex_state = 5, .external_lex_state = 6}, [4720] = {.lex_state = 5, .external_lex_state = 6}, [4721] = {.lex_state = 5, .external_lex_state = 7}, @@ -18942,27 +18952,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4725] = {.lex_state = 5, .external_lex_state = 6}, [4726] = {.lex_state = 5, .external_lex_state = 6}, [4727] = {.lex_state = 5, .external_lex_state = 6}, - [4728] = {.lex_state = 5, .external_lex_state = 6}, - [4729] = {.lex_state = 5, .external_lex_state = 6}, - [4730] = {.lex_state = 5, .external_lex_state = 6}, - [4731] = {.lex_state = 5, .external_lex_state = 7}, + [4728] = {.lex_state = 5, .external_lex_state = 7}, + [4729] = {.lex_state = 5, .external_lex_state = 7}, + [4730] = {.lex_state = 5, .external_lex_state = 7}, + [4731] = {.lex_state = 5, .external_lex_state = 6}, [4732] = {.lex_state = 5, .external_lex_state = 6}, [4733] = {.lex_state = 5, .external_lex_state = 6}, [4734] = {.lex_state = 5, .external_lex_state = 6}, [4735] = {.lex_state = 5, .external_lex_state = 6}, [4736] = {.lex_state = 5, .external_lex_state = 6}, - [4737] = {.lex_state = 5, .external_lex_state = 7}, + [4737] = {.lex_state = 5, .external_lex_state = 6}, [4738] = {.lex_state = 5, .external_lex_state = 6}, [4739] = {.lex_state = 5, .external_lex_state = 6}, [4740] = {.lex_state = 5, .external_lex_state = 6}, - [4741] = {.lex_state = 5, .external_lex_state = 7}, + [4741] = {.lex_state = 5, .external_lex_state = 6}, [4742] = {.lex_state = 5, .external_lex_state = 6}, [4743] = {.lex_state = 5, .external_lex_state = 6}, - [4744] = {.lex_state = 5, .external_lex_state = 7}, + [4744] = {.lex_state = 5, .external_lex_state = 6}, [4745] = {.lex_state = 5, .external_lex_state = 6}, - [4746] = {.lex_state = 5, .external_lex_state = 7}, + [4746] = {.lex_state = 5, .external_lex_state = 6}, [4747] = {.lex_state = 5, .external_lex_state = 6}, - [4748] = {.lex_state = 5, .external_lex_state = 7}, + [4748] = {.lex_state = 5, .external_lex_state = 6}, [4749] = {.lex_state = 5, .external_lex_state = 6}, [4750] = {.lex_state = 5, .external_lex_state = 6}, [4751] = {.lex_state = 5, .external_lex_state = 6}, @@ -18972,46 +18982,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4755] = {.lex_state = 5, .external_lex_state = 6}, [4756] = {.lex_state = 4, .external_lex_state = 5}, [4757] = {.lex_state = 4, .external_lex_state = 5}, - [4758] = {.lex_state = 5, .external_lex_state = 7}, - [4759] = {.lex_state = 5, .external_lex_state = 7}, + [4758] = {.lex_state = 4, .external_lex_state = 5}, + [4759] = {.lex_state = 4, .external_lex_state = 5}, [4760] = {.lex_state = 4, .external_lex_state = 5}, - [4761] = {.lex_state = 5, .external_lex_state = 7}, - [4762] = {.lex_state = 5, .external_lex_state = 6}, - [4763] = {.lex_state = 4, .external_lex_state = 5}, - [4764] = {.lex_state = 5, .external_lex_state = 7}, + [4761] = {.lex_state = 4, .external_lex_state = 5}, + [4762] = {.lex_state = 4, .external_lex_state = 5}, + [4763] = {.lex_state = 5, .external_lex_state = 7}, + [4764] = {.lex_state = 4, .external_lex_state = 5}, [4765] = {.lex_state = 5, .external_lex_state = 7}, [4766] = {.lex_state = 5, .external_lex_state = 7}, [4767] = {.lex_state = 4, .external_lex_state = 5}, - [4768] = {.lex_state = 5, .external_lex_state = 7}, - [4769] = {.lex_state = 4, .external_lex_state = 5}, + [4768] = {.lex_state = 5, .external_lex_state = 6}, + [4769] = {.lex_state = 5, .external_lex_state = 6}, [4770] = {.lex_state = 5, .external_lex_state = 6}, - [4771] = {.lex_state = 5, .external_lex_state = 7}, - [4772] = {.lex_state = 5, .external_lex_state = 7}, - [4773] = {.lex_state = 5, .external_lex_state = 7}, - [4774] = {.lex_state = 5, .external_lex_state = 7}, - [4775] = {.lex_state = 5, .external_lex_state = 7}, - [4776] = {.lex_state = 5, .external_lex_state = 7}, + [4771] = {.lex_state = 5, .external_lex_state = 6}, + [4772] = {.lex_state = 5, .external_lex_state = 6}, + [4773] = {.lex_state = 5, .external_lex_state = 6}, + [4774] = {.lex_state = 5, .external_lex_state = 6}, + [4775] = {.lex_state = 4, .external_lex_state = 5}, + [4776] = {.lex_state = 4, .external_lex_state = 5}, [4777] = {.lex_state = 5, .external_lex_state = 7}, - [4778] = {.lex_state = 5, .external_lex_state = 7}, + [4778] = {.lex_state = 5, .external_lex_state = 6}, [4779] = {.lex_state = 5, .external_lex_state = 7}, [4780] = {.lex_state = 4, .external_lex_state = 5}, [4781] = {.lex_state = 5, .external_lex_state = 7}, - [4782] = {.lex_state = 5, .external_lex_state = 7}, + [4782] = {.lex_state = 5, .external_lex_state = 6}, [4783] = {.lex_state = 5, .external_lex_state = 7}, [4784] = {.lex_state = 4, .external_lex_state = 5}, [4785] = {.lex_state = 5, .external_lex_state = 7}, [4786] = {.lex_state = 4, .external_lex_state = 5}, - [4787] = {.lex_state = 4, .external_lex_state = 5}, - [4788] = {.lex_state = 4, .external_lex_state = 5}, + [4787] = {.lex_state = 5, .external_lex_state = 7}, + [4788] = {.lex_state = 5, .external_lex_state = 7}, [4789] = {.lex_state = 5, .external_lex_state = 7}, - [4790] = {.lex_state = 5, .external_lex_state = 6}, - [4791] = {.lex_state = 4, .external_lex_state = 5}, + [4790] = {.lex_state = 5, .external_lex_state = 7}, + [4791] = {.lex_state = 5, .external_lex_state = 7}, [4792] = {.lex_state = 5, .external_lex_state = 7}, [4793] = {.lex_state = 5, .external_lex_state = 7}, [4794] = {.lex_state = 5, .external_lex_state = 7}, [4795] = {.lex_state = 5, .external_lex_state = 7}, [4796] = {.lex_state = 5, .external_lex_state = 7}, - [4797] = {.lex_state = 5, .external_lex_state = 6}, + [4797] = {.lex_state = 5, .external_lex_state = 7}, [4798] = {.lex_state = 5, .external_lex_state = 7}, [4799] = {.lex_state = 5, .external_lex_state = 7}, [4800] = {.lex_state = 5, .external_lex_state = 7}, @@ -19023,97 +19033,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4806] = {.lex_state = 5, .external_lex_state = 7}, [4807] = {.lex_state = 5, .external_lex_state = 7}, [4808] = {.lex_state = 5, .external_lex_state = 7}, - [4809] = {.lex_state = 5, .external_lex_state = 6}, - [4810] = {.lex_state = 5, .external_lex_state = 6}, - [4811] = {.lex_state = 5, .external_lex_state = 6}, - [4812] = {.lex_state = 4, .external_lex_state = 5}, + [4809] = {.lex_state = 5, .external_lex_state = 7}, + [4810] = {.lex_state = 5, .external_lex_state = 7}, + [4811] = {.lex_state = 5, .external_lex_state = 7}, + [4812] = {.lex_state = 5, .external_lex_state = 7}, [4813] = {.lex_state = 5, .external_lex_state = 7}, - [4814] = {.lex_state = 4, .external_lex_state = 5}, + [4814] = {.lex_state = 5, .external_lex_state = 7}, [4815] = {.lex_state = 5, .external_lex_state = 7}, - [4816] = {.lex_state = 5, .external_lex_state = 6}, + [4816] = {.lex_state = 5, .external_lex_state = 7}, [4817] = {.lex_state = 5, .external_lex_state = 7}, [4818] = {.lex_state = 5, .external_lex_state = 7}, [4819] = {.lex_state = 5, .external_lex_state = 7}, [4820] = {.lex_state = 5, .external_lex_state = 7}, - [4821] = {.lex_state = 5, .external_lex_state = 6}, + [4821] = {.lex_state = 5, .external_lex_state = 7}, [4822] = {.lex_state = 5, .external_lex_state = 7}, [4823] = {.lex_state = 5, .external_lex_state = 7}, [4824] = {.lex_state = 5, .external_lex_state = 7}, [4825] = {.lex_state = 5, .external_lex_state = 7}, - [4826] = {.lex_state = 5, .external_lex_state = 6}, - [4827] = {.lex_state = 5, .external_lex_state = 7}, - [4828] = {.lex_state = 5, .external_lex_state = 7}, - [4829] = {.lex_state = 4, .external_lex_state = 5}, - [4830] = {.lex_state = 5, .external_lex_state = 6}, - [4831] = {.lex_state = 4, .external_lex_state = 5}, - [4832] = {.lex_state = 4, .external_lex_state = 5}, + [4826] = {.lex_state = 5, .external_lex_state = 7}, + [4827] = {.lex_state = 5, .external_lex_state = 6}, + [4828] = {.lex_state = 4, .external_lex_state = 5}, + [4829] = {.lex_state = 5, .external_lex_state = 6}, + [4830] = {.lex_state = 4, .external_lex_state = 5}, + [4831] = {.lex_state = 5, .external_lex_state = 6}, + [4832] = {.lex_state = 5, .external_lex_state = 7}, [4833] = {.lex_state = 5, .external_lex_state = 6}, [4834] = {.lex_state = 5, .external_lex_state = 6}, - [4835] = {.lex_state = 5, .external_lex_state = 6}, - [4836] = {.lex_state = 5, .external_lex_state = 7}, + [4835] = {.lex_state = 5, .external_lex_state = 7}, + [4836] = {.lex_state = 5, .external_lex_state = 6}, [4837] = {.lex_state = 5, .external_lex_state = 7}, - [4838] = {.lex_state = 4, .external_lex_state = 5}, - [4839] = {.lex_state = 5, .external_lex_state = 7}, - [4840] = {.lex_state = 5, .external_lex_state = 7}, - [4841] = {.lex_state = 5, .external_lex_state = 7}, - [4842] = {.lex_state = 5, .external_lex_state = 7}, + [4838] = {.lex_state = 5, .external_lex_state = 6}, + [4839] = {.lex_state = 5, .external_lex_state = 6}, + [4840] = {.lex_state = 5, .external_lex_state = 6}, + [4841] = {.lex_state = 4, .external_lex_state = 5}, + [4842] = {.lex_state = 4, .external_lex_state = 5}, [4843] = {.lex_state = 5, .external_lex_state = 7}, [4844] = {.lex_state = 5, .external_lex_state = 7}, [4845] = {.lex_state = 5, .external_lex_state = 7}, - [4846] = {.lex_state = 4, .external_lex_state = 5}, - [4847] = {.lex_state = 5, .external_lex_state = 6}, - [4848] = {.lex_state = 5, .external_lex_state = 6}, - [4849] = {.lex_state = 5, .external_lex_state = 6}, + [4846] = {.lex_state = 5, .external_lex_state = 7}, + [4847] = {.lex_state = 5, .external_lex_state = 7}, + [4848] = {.lex_state = 5, .external_lex_state = 7}, + [4849] = {.lex_state = 5, .external_lex_state = 7}, [4850] = {.lex_state = 5, .external_lex_state = 7}, - [4851] = {.lex_state = 5, .external_lex_state = 6}, - [4852] = {.lex_state = 5, .external_lex_state = 6}, + [4851] = {.lex_state = 5, .external_lex_state = 7}, + [4852] = {.lex_state = 5, .external_lex_state = 7}, [4853] = {.lex_state = 5, .external_lex_state = 7}, - [4854] = {.lex_state = 5, .external_lex_state = 7}, + [4854] = {.lex_state = 4, .external_lex_state = 5}, [4855] = {.lex_state = 5, .external_lex_state = 7}, [4856] = {.lex_state = 5, .external_lex_state = 7}, - [4857] = {.lex_state = 5, .external_lex_state = 6}, + [4857] = {.lex_state = 5, .external_lex_state = 7}, [4858] = {.lex_state = 5, .external_lex_state = 7}, - [4859] = {.lex_state = 5, .external_lex_state = 6}, + [4859] = {.lex_state = 5, .external_lex_state = 7}, [4860] = {.lex_state = 5, .external_lex_state = 7}, [4861] = {.lex_state = 5, .external_lex_state = 7}, - [4862] = {.lex_state = 5, .external_lex_state = 6}, - [4863] = {.lex_state = 5, .external_lex_state = 6}, + [4862] = {.lex_state = 5, .external_lex_state = 7}, + [4863] = {.lex_state = 5, .external_lex_state = 7}, [4864] = {.lex_state = 5, .external_lex_state = 7}, [4865] = {.lex_state = 5, .external_lex_state = 7}, [4866] = {.lex_state = 5, .external_lex_state = 7}, [4867] = {.lex_state = 5, .external_lex_state = 7}, [4868] = {.lex_state = 5, .external_lex_state = 7}, [4869] = {.lex_state = 5, .external_lex_state = 7}, - [4870] = {.lex_state = 5, .external_lex_state = 6}, - [4871] = {.lex_state = 5, .external_lex_state = 7}, + [4870] = {.lex_state = 5, .external_lex_state = 7}, + [4871] = {.lex_state = 5, .external_lex_state = 6}, [4872] = {.lex_state = 5, .external_lex_state = 7}, [4873] = {.lex_state = 5, .external_lex_state = 7}, - [4874] = {.lex_state = 5, .external_lex_state = 6}, + [4874] = {.lex_state = 5, .external_lex_state = 7}, [4875] = {.lex_state = 5, .external_lex_state = 7}, [4876] = {.lex_state = 5, .external_lex_state = 7}, [4877] = {.lex_state = 5, .external_lex_state = 7}, - [4878] = {.lex_state = 5, .external_lex_state = 6}, + [4878] = {.lex_state = 5, .external_lex_state = 7}, [4879] = {.lex_state = 5, .external_lex_state = 7}, [4880] = {.lex_state = 5, .external_lex_state = 7}, [4881] = {.lex_state = 5, .external_lex_state = 7}, [4882] = {.lex_state = 5, .external_lex_state = 7}, [4883] = {.lex_state = 5, .external_lex_state = 7}, - [4884] = {.lex_state = 5, .external_lex_state = 7}, + [4884] = {.lex_state = 5, .external_lex_state = 6}, [4885] = {.lex_state = 5, .external_lex_state = 7}, - [4886] = {.lex_state = 5, .external_lex_state = 7}, - [4887] = {.lex_state = 5, .external_lex_state = 7}, - [4888] = {.lex_state = 5, .external_lex_state = 7}, + [4886] = {.lex_state = 5, .external_lex_state = 6}, + [4887] = {.lex_state = 5, .external_lex_state = 6}, + [4888] = {.lex_state = 5, .external_lex_state = 6}, [4889] = {.lex_state = 5, .external_lex_state = 6}, - [4890] = {.lex_state = 5, .external_lex_state = 7}, - [4891] = {.lex_state = 5, .external_lex_state = 7}, - [4892] = {.lex_state = 5, .external_lex_state = 7}, - [4893] = {.lex_state = 5, .external_lex_state = 6}, + [4890] = {.lex_state = 5, .external_lex_state = 6}, + [4891] = {.lex_state = 5, .external_lex_state = 6}, + [4892] = {.lex_state = 5, .external_lex_state = 6}, + [4893] = {.lex_state = 5, .external_lex_state = 7}, [4894] = {.lex_state = 5, .external_lex_state = 7}, [4895] = {.lex_state = 5, .external_lex_state = 7}, - [4896] = {.lex_state = 5, .external_lex_state = 7}, + [4896] = {.lex_state = 5, .external_lex_state = 6}, [4897] = {.lex_state = 5, .external_lex_state = 6}, [4898] = {.lex_state = 5, .external_lex_state = 7}, - [4899] = {.lex_state = 4, .external_lex_state = 5}, + [4899] = {.lex_state = 5, .external_lex_state = 7}, [4900] = {.lex_state = 5, .external_lex_state = 7}, [4901] = {.lex_state = 5, .external_lex_state = 7}, [4902] = {.lex_state = 5, .external_lex_state = 7}, @@ -19122,62 +19132,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4905] = {.lex_state = 5, .external_lex_state = 7}, [4906] = {.lex_state = 5, .external_lex_state = 7}, [4907] = {.lex_state = 5, .external_lex_state = 7}, - [4908] = {.lex_state = 5, .external_lex_state = 6}, + [4908] = {.lex_state = 5, .external_lex_state = 7}, [4909] = {.lex_state = 5, .external_lex_state = 7}, [4910] = {.lex_state = 5, .external_lex_state = 7}, - [4911] = {.lex_state = 5, .external_lex_state = 6}, - [4912] = {.lex_state = 5, .external_lex_state = 7}, + [4911] = {.lex_state = 5, .external_lex_state = 7}, + [4912] = {.lex_state = 5, .external_lex_state = 6}, [4913] = {.lex_state = 5, .external_lex_state = 7}, [4914] = {.lex_state = 5, .external_lex_state = 7}, [4915] = {.lex_state = 5, .external_lex_state = 7}, - [4916] = {.lex_state = 5, .external_lex_state = 7}, + [4916] = {.lex_state = 5, .external_lex_state = 6}, [4917] = {.lex_state = 5, .external_lex_state = 7}, [4918] = {.lex_state = 5, .external_lex_state = 7}, - [4919] = {.lex_state = 5, .external_lex_state = 7}, - [4920] = {.lex_state = 5, .external_lex_state = 7}, - [4921] = {.lex_state = 5, .external_lex_state = 7}, + [4919] = {.lex_state = 5, .external_lex_state = 6}, + [4920] = {.lex_state = 4, .external_lex_state = 5}, + [4921] = {.lex_state = 4, .external_lex_state = 5}, [4922] = {.lex_state = 5, .external_lex_state = 7}, [4923] = {.lex_state = 5, .external_lex_state = 7}, - [4924] = {.lex_state = 5, .external_lex_state = 7}, + [4924] = {.lex_state = 4, .external_lex_state = 5}, [4925] = {.lex_state = 5, .external_lex_state = 7}, [4926] = {.lex_state = 5, .external_lex_state = 7}, [4927] = {.lex_state = 5, .external_lex_state = 6}, - [4928] = {.lex_state = 5, .external_lex_state = 7}, - [4929] = {.lex_state = 5, .external_lex_state = 6}, - [4930] = {.lex_state = 5, .external_lex_state = 7}, - [4931] = {.lex_state = 5, .external_lex_state = 7}, + [4928] = {.lex_state = 4, .external_lex_state = 5}, + [4929] = {.lex_state = 5, .external_lex_state = 7}, + [4930] = {.lex_state = 5, .external_lex_state = 6}, + [4931] = {.lex_state = 5, .external_lex_state = 6}, [4932] = {.lex_state = 5, .external_lex_state = 7}, - [4933] = {.lex_state = 4, .external_lex_state = 5}, + [4933] = {.lex_state = 5, .external_lex_state = 7}, [4934] = {.lex_state = 5, .external_lex_state = 7}, - [4935] = {.lex_state = 5, .external_lex_state = 7}, - [4936] = {.lex_state = 5, .external_lex_state = 7}, - [4937] = {.lex_state = 4, .external_lex_state = 5}, + [4935] = {.lex_state = 5, .external_lex_state = 6}, + [4936] = {.lex_state = 5, .external_lex_state = 6}, + [4937] = {.lex_state = 5, .external_lex_state = 7}, [4938] = {.lex_state = 5, .external_lex_state = 7}, [4939] = {.lex_state = 5, .external_lex_state = 7}, [4940] = {.lex_state = 5, .external_lex_state = 7}, [4941] = {.lex_state = 5, .external_lex_state = 7}, - [4942] = {.lex_state = 5, .external_lex_state = 7}, + [4942] = {.lex_state = 5, .external_lex_state = 6}, [4943] = {.lex_state = 5, .external_lex_state = 7}, [4944] = {.lex_state = 5, .external_lex_state = 7}, - [4945] = {.lex_state = 5, .external_lex_state = 7}, + [4945] = {.lex_state = 4, .external_lex_state = 5}, [4946] = {.lex_state = 5, .external_lex_state = 7}, [4947] = {.lex_state = 5, .external_lex_state = 7}, [4948] = {.lex_state = 5, .external_lex_state = 7}, [4949] = {.lex_state = 5, .external_lex_state = 7}, - [4950] = {.lex_state = 5, .external_lex_state = 7}, + [4950] = {.lex_state = 5, .external_lex_state = 6}, [4951] = {.lex_state = 5, .external_lex_state = 7}, [4952] = {.lex_state = 5, .external_lex_state = 7}, [4953] = {.lex_state = 5, .external_lex_state = 7}, - [4954] = {.lex_state = 5, .external_lex_state = 7}, + [4954] = {.lex_state = 5, .external_lex_state = 6}, [4955] = {.lex_state = 5, .external_lex_state = 7}, [4956] = {.lex_state = 5, .external_lex_state = 7}, - [4957] = {.lex_state = 5, .external_lex_state = 6}, - [4958] = {.lex_state = 5, .external_lex_state = 7}, - [4959] = {.lex_state = 5, .external_lex_state = 6}, + [4957] = {.lex_state = 5, .external_lex_state = 7}, + [4958] = {.lex_state = 4, .external_lex_state = 5}, + [4959] = {.lex_state = 5, .external_lex_state = 7}, [4960] = {.lex_state = 5, .external_lex_state = 7}, [4961] = {.lex_state = 5, .external_lex_state = 7}, [4962] = {.lex_state = 5, .external_lex_state = 7}, - [4963] = {.lex_state = 5, .external_lex_state = 6}, + [4963] = {.lex_state = 5, .external_lex_state = 7}, [4964] = {.lex_state = 5, .external_lex_state = 7}, [4965] = {.lex_state = 5, .external_lex_state = 6}, [4966] = {.lex_state = 5, .external_lex_state = 7}, @@ -19185,26 +19195,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4968] = {.lex_state = 5, .external_lex_state = 7}, [4969] = {.lex_state = 5, .external_lex_state = 7}, [4970] = {.lex_state = 5, .external_lex_state = 7}, - [4971] = {.lex_state = 5, .external_lex_state = 7}, + [4971] = {.lex_state = 5, .external_lex_state = 6}, [4972] = {.lex_state = 5, .external_lex_state = 7}, [4973] = {.lex_state = 5, .external_lex_state = 7}, [4974] = {.lex_state = 5, .external_lex_state = 7}, [4975] = {.lex_state = 5, .external_lex_state = 7}, [4976] = {.lex_state = 5, .external_lex_state = 7}, - [4977] = {.lex_state = 5, .external_lex_state = 7}, + [4977] = {.lex_state = 5, .external_lex_state = 6}, [4978] = {.lex_state = 5, .external_lex_state = 7}, - [4979] = {.lex_state = 5, .external_lex_state = 6}, + [4979] = {.lex_state = 5, .external_lex_state = 7}, [4980] = {.lex_state = 5, .external_lex_state = 7}, [4981] = {.lex_state = 5, .external_lex_state = 7}, [4982] = {.lex_state = 5, .external_lex_state = 7}, - [4983] = {.lex_state = 5, .external_lex_state = 6}, - [4984] = {.lex_state = 5, .external_lex_state = 7}, + [4983] = {.lex_state = 4, .external_lex_state = 5}, + [4984] = {.lex_state = 4, .external_lex_state = 5}, [4985] = {.lex_state = 5, .external_lex_state = 7}, [4986] = {.lex_state = 5, .external_lex_state = 7}, [4987] = {.lex_state = 5, .external_lex_state = 7}, [4988] = {.lex_state = 5, .external_lex_state = 7}, [4989] = {.lex_state = 5, .external_lex_state = 7}, - [4990] = {.lex_state = 5, .external_lex_state = 7}, + [4990] = {.lex_state = 5, .external_lex_state = 6}, [4991] = {.lex_state = 5, .external_lex_state = 7}, [4992] = {.lex_state = 5, .external_lex_state = 7}, [4993] = {.lex_state = 5, .external_lex_state = 7}, @@ -19213,13 +19223,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4996] = {.lex_state = 5, .external_lex_state = 7}, [4997] = {.lex_state = 5, .external_lex_state = 7}, [4998] = {.lex_state = 5, .external_lex_state = 7}, - [4999] = {.lex_state = 5, .external_lex_state = 7}, - [5000] = {.lex_state = 5, .external_lex_state = 7}, + [4999] = {.lex_state = 5, .external_lex_state = 6}, + [5000] = {.lex_state = 5, .external_lex_state = 6}, [5001] = {.lex_state = 5, .external_lex_state = 7}, - [5002] = {.lex_state = 5, .external_lex_state = 6}, - [5003] = {.lex_state = 5, .external_lex_state = 6}, + [5002] = {.lex_state = 5, .external_lex_state = 7}, + [5003] = {.lex_state = 5, .external_lex_state = 7}, [5004] = {.lex_state = 5, .external_lex_state = 7}, - [5005] = {.lex_state = 4, .external_lex_state = 5}, + [5005] = {.lex_state = 5, .external_lex_state = 7}, [5006] = {.lex_state = 5, .external_lex_state = 7}, [5007] = {.lex_state = 5, .external_lex_state = 7}, [5008] = {.lex_state = 5, .external_lex_state = 7}, @@ -19234,15 +19244,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5017] = {.lex_state = 5, .external_lex_state = 7}, [5018] = {.lex_state = 5, .external_lex_state = 7}, [5019] = {.lex_state = 5, .external_lex_state = 7}, - [5020] = {.lex_state = 5, .external_lex_state = 7}, + [5020] = {.lex_state = 5, .external_lex_state = 6}, [5021] = {.lex_state = 5, .external_lex_state = 7}, [5022] = {.lex_state = 5, .external_lex_state = 7}, [5023] = {.lex_state = 5, .external_lex_state = 7}, [5024] = {.lex_state = 5, .external_lex_state = 7}, [5025] = {.lex_state = 5, .external_lex_state = 7}, [5026] = {.lex_state = 5, .external_lex_state = 7}, - [5027] = {.lex_state = 4, .external_lex_state = 5}, - [5028] = {.lex_state = 4, .external_lex_state = 5}, + [5027] = {.lex_state = 5, .external_lex_state = 7}, + [5028] = {.lex_state = 5, .external_lex_state = 7}, [5029] = {.lex_state = 5, .external_lex_state = 7}, [5030] = {.lex_state = 5, .external_lex_state = 7}, [5031] = {.lex_state = 5, .external_lex_state = 7}, @@ -19253,28 +19263,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5036] = {.lex_state = 5, .external_lex_state = 7}, [5037] = {.lex_state = 5, .external_lex_state = 7}, [5038] = {.lex_state = 5, .external_lex_state = 7}, - [5039] = {.lex_state = 5, .external_lex_state = 7}, + [5039] = {.lex_state = 4, .external_lex_state = 5}, [5040] = {.lex_state = 5, .external_lex_state = 7}, - [5041] = {.lex_state = 5, .external_lex_state = 6}, - [5042] = {.lex_state = 5, .external_lex_state = 6}, - [5043] = {.lex_state = 5, .external_lex_state = 6}, - [5044] = {.lex_state = 5, .external_lex_state = 6}, + [5041] = {.lex_state = 5, .external_lex_state = 7}, + [5042] = {.lex_state = 5, .external_lex_state = 7}, + [5043] = {.lex_state = 5, .external_lex_state = 7}, + [5044] = {.lex_state = 5, .external_lex_state = 7}, [5045] = {.lex_state = 5, .external_lex_state = 7}, - [5046] = {.lex_state = 4, .external_lex_state = 5}, - [5047] = {.lex_state = 5, .external_lex_state = 7}, + [5046] = {.lex_state = 5, .external_lex_state = 7}, + [5047] = {.lex_state = 4, .external_lex_state = 5}, [5048] = {.lex_state = 5, .external_lex_state = 7}, [5049] = {.lex_state = 5, .external_lex_state = 7}, [5050] = {.lex_state = 5, .external_lex_state = 7}, [5051] = {.lex_state = 5, .external_lex_state = 7}, [5052] = {.lex_state = 5, .external_lex_state = 7}, - [5053] = {.lex_state = 5, .external_lex_state = 6}, + [5053] = {.lex_state = 5, .external_lex_state = 7}, [5054] = {.lex_state = 5, .external_lex_state = 7}, [5055] = {.lex_state = 5, .external_lex_state = 7}, [5056] = {.lex_state = 5, .external_lex_state = 7}, [5057] = {.lex_state = 5, .external_lex_state = 7}, [5058] = {.lex_state = 5, .external_lex_state = 7}, [5059] = {.lex_state = 5, .external_lex_state = 7}, - [5060] = {.lex_state = 5, .external_lex_state = 7}, + [5060] = {.lex_state = 4, .external_lex_state = 5}, [5061] = {.lex_state = 5, .external_lex_state = 7}, [5062] = {.lex_state = 5, .external_lex_state = 7}, [5063] = {.lex_state = 5, .external_lex_state = 7}, @@ -19282,477 +19292,477 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5065] = {.lex_state = 5, .external_lex_state = 7}, [5066] = {.lex_state = 5, .external_lex_state = 7}, [5067] = {.lex_state = 5, .external_lex_state = 7}, - [5068] = {.lex_state = 4, .external_lex_state = 5}, + [5068] = {.lex_state = 5, .external_lex_state = 7}, [5069] = {.lex_state = 5, .external_lex_state = 7}, [5070] = {.lex_state = 5, .external_lex_state = 7}, [5071] = {.lex_state = 4, .external_lex_state = 5}, - [5072] = {.lex_state = 4, .external_lex_state = 5}, + [5072] = {.lex_state = 5, .external_lex_state = 7}, [5073] = {.lex_state = 5, .external_lex_state = 7}, - [5074] = {.lex_state = 5, .external_lex_state = 6}, - [5075] = {.lex_state = 4, .external_lex_state = 5}, - [5076] = {.lex_state = 4, .external_lex_state = 5}, + [5074] = {.lex_state = 5, .external_lex_state = 7}, + [5075] = {.lex_state = 5, .external_lex_state = 7}, + [5076] = {.lex_state = 5, .external_lex_state = 7}, [5077] = {.lex_state = 5, .external_lex_state = 7}, [5078] = {.lex_state = 5, .external_lex_state = 7}, [5079] = {.lex_state = 5, .external_lex_state = 7}, [5080] = {.lex_state = 5, .external_lex_state = 7}, [5081] = {.lex_state = 5, .external_lex_state = 7}, [5082] = {.lex_state = 5, .external_lex_state = 7}, - [5083] = {.lex_state = 7, .external_lex_state = 8}, - [5084] = {.lex_state = 4, .external_lex_state = 5}, - [5085] = {.lex_state = 4, .external_lex_state = 5}, + [5083] = {.lex_state = 5, .external_lex_state = 7}, + [5084] = {.lex_state = 5, .external_lex_state = 6}, + [5085] = {.lex_state = 5, .external_lex_state = 7}, [5086] = {.lex_state = 4, .external_lex_state = 5}, - [5087] = {.lex_state = 5, .external_lex_state = 7}, + [5087] = {.lex_state = 4, .external_lex_state = 5}, [5088] = {.lex_state = 4, .external_lex_state = 5}, - [5089] = {.lex_state = 4, .external_lex_state = 5}, - [5090] = {.lex_state = 5, .external_lex_state = 7}, + [5089] = {.lex_state = 5, .external_lex_state = 6}, + [5090] = {.lex_state = 4, .external_lex_state = 5}, [5091] = {.lex_state = 4, .external_lex_state = 5}, [5092] = {.lex_state = 4, .external_lex_state = 5}, - [5093] = {.lex_state = 5, .external_lex_state = 7}, - [5094] = {.lex_state = 4, .external_lex_state = 5}, + [5093] = {.lex_state = 4, .external_lex_state = 5}, + [5094] = {.lex_state = 7, .external_lex_state = 8}, [5095] = {.lex_state = 4, .external_lex_state = 5}, - [5096] = {.lex_state = 5, .external_lex_state = 6}, - [5097] = {.lex_state = 5, .external_lex_state = 7}, - [5098] = {.lex_state = 5, .external_lex_state = 6}, + [5096] = {.lex_state = 4, .external_lex_state = 5}, + [5097] = {.lex_state = 4, .external_lex_state = 5}, + [5098] = {.lex_state = 7, .external_lex_state = 8}, [5099] = {.lex_state = 5, .external_lex_state = 6}, [5100] = {.lex_state = 5, .external_lex_state = 6}, - [5101] = {.lex_state = 5, .external_lex_state = 6}, - [5102] = {.lex_state = 5, .external_lex_state = 6}, - [5103] = {.lex_state = 5, .external_lex_state = 7}, - [5104] = {.lex_state = 5, .external_lex_state = 7}, + [5101] = {.lex_state = 4, .external_lex_state = 5}, + [5102] = {.lex_state = 4, .external_lex_state = 5}, + [5103] = {.lex_state = 5, .external_lex_state = 6}, + [5104] = {.lex_state = 5, .external_lex_state = 6}, [5105] = {.lex_state = 5, .external_lex_state = 6}, - [5106] = {.lex_state = 4, .external_lex_state = 5}, + [5106] = {.lex_state = 5, .external_lex_state = 7}, [5107] = {.lex_state = 4, .external_lex_state = 5}, - [5108] = {.lex_state = 4, .external_lex_state = 5}, - [5109] = {.lex_state = 4, .external_lex_state = 5}, - [5110] = {.lex_state = 4, .external_lex_state = 5}, - [5111] = {.lex_state = 4, .external_lex_state = 5}, - [5112] = {.lex_state = 7, .external_lex_state = 8}, - [5113] = {.lex_state = 4, .external_lex_state = 5}, - [5114] = {.lex_state = 5, .external_lex_state = 6}, + [5108] = {.lex_state = 5, .external_lex_state = 7}, + [5109] = {.lex_state = 5, .external_lex_state = 6}, + [5110] = {.lex_state = 5, .external_lex_state = 7}, + [5111] = {.lex_state = 5, .external_lex_state = 6}, + [5112] = {.lex_state = 5, .external_lex_state = 6}, + [5113] = {.lex_state = 5, .external_lex_state = 6}, + [5114] = {.lex_state = 4, .external_lex_state = 5}, [5115] = {.lex_state = 4, .external_lex_state = 5}, [5116] = {.lex_state = 4, .external_lex_state = 5}, - [5117] = {.lex_state = 5, .external_lex_state = 6}, + [5117] = {.lex_state = 5, .external_lex_state = 7}, [5118] = {.lex_state = 4, .external_lex_state = 5}, - [5119] = {.lex_state = 4, .external_lex_state = 5}, + [5119] = {.lex_state = 5, .external_lex_state = 7}, [5120] = {.lex_state = 5, .external_lex_state = 6}, [5121] = {.lex_state = 5, .external_lex_state = 6}, - [5122] = {.lex_state = 5, .external_lex_state = 6}, - [5123] = {.lex_state = 5, .external_lex_state = 7}, - [5124] = {.lex_state = 4, .external_lex_state = 5}, - [5125] = {.lex_state = 5, .external_lex_state = 6}, + [5122] = {.lex_state = 4, .external_lex_state = 5}, + [5123] = {.lex_state = 4, .external_lex_state = 5}, + [5124] = {.lex_state = 5, .external_lex_state = 7}, + [5125] = {.lex_state = 4, .external_lex_state = 5}, [5126] = {.lex_state = 4, .external_lex_state = 5}, - [5127] = {.lex_state = 4, .external_lex_state = 5}, - [5128] = {.lex_state = 5, .external_lex_state = 6}, - [5129] = {.lex_state = 5, .external_lex_state = 6}, - [5130] = {.lex_state = 5, .external_lex_state = 6}, + [5127] = {.lex_state = 5, .external_lex_state = 6}, + [5128] = {.lex_state = 4, .external_lex_state = 5}, + [5129] = {.lex_state = 4, .external_lex_state = 5}, + [5130] = {.lex_state = 4, .external_lex_state = 5}, [5131] = {.lex_state = 4, .external_lex_state = 5}, - [5132] = {.lex_state = 5, .external_lex_state = 7}, + [5132] = {.lex_state = 5, .external_lex_state = 6}, [5133] = {.lex_state = 4, .external_lex_state = 5}, - [5134] = {.lex_state = 4, .external_lex_state = 5}, - [5135] = {.lex_state = 5, .external_lex_state = 6}, + [5134] = {.lex_state = 5, .external_lex_state = 6}, + [5135] = {.lex_state = 4, .external_lex_state = 5}, [5136] = {.lex_state = 4, .external_lex_state = 5}, [5137] = {.lex_state = 4, .external_lex_state = 5}, - [5138] = {.lex_state = 5, .external_lex_state = 6}, - [5139] = {.lex_state = 4, .external_lex_state = 5}, - [5140] = {.lex_state = 4, .external_lex_state = 5}, - [5141] = {.lex_state = 4, .external_lex_state = 5}, - [5142] = {.lex_state = 4, .external_lex_state = 5}, + [5138] = {.lex_state = 4, .external_lex_state = 5}, + [5139] = {.lex_state = 5, .external_lex_state = 6}, + [5140] = {.lex_state = 5, .external_lex_state = 6}, + [5141] = {.lex_state = 7, .external_lex_state = 9}, + [5142] = {.lex_state = 7, .external_lex_state = 9}, [5143] = {.lex_state = 5, .external_lex_state = 7}, [5144] = {.lex_state = 5, .external_lex_state = 6}, - [5145] = {.lex_state = 5, .external_lex_state = 6}, - [5146] = {.lex_state = 5, .external_lex_state = 7}, - [5147] = {.lex_state = 5, .external_lex_state = 7}, + [5145] = {.lex_state = 4, .external_lex_state = 5}, + [5146] = {.lex_state = 5, .external_lex_state = 6}, + [5147] = {.lex_state = 5, .external_lex_state = 6}, [5148] = {.lex_state = 5, .external_lex_state = 7}, [5149] = {.lex_state = 5, .external_lex_state = 7}, [5150] = {.lex_state = 5, .external_lex_state = 6}, - [5151] = {.lex_state = 7, .external_lex_state = 9}, - [5152] = {.lex_state = 7, .external_lex_state = 9}, + [5151] = {.lex_state = 5, .external_lex_state = 6}, + [5152] = {.lex_state = 4, .external_lex_state = 5}, [5153] = {.lex_state = 4, .external_lex_state = 5}, - [5154] = {.lex_state = 7, .external_lex_state = 9}, - [5155] = {.lex_state = 5, .external_lex_state = 7}, - [5156] = {.lex_state = 5, .external_lex_state = 7}, - [5157] = {.lex_state = 5, .external_lex_state = 7}, - [5158] = {.lex_state = 7, .external_lex_state = 9}, - [5159] = {.lex_state = 5, .external_lex_state = 6}, - [5160] = {.lex_state = 4, .external_lex_state = 5}, - [5161] = {.lex_state = 5, .external_lex_state = 6}, + [5154] = {.lex_state = 4, .external_lex_state = 5}, + [5155] = {.lex_state = 4, .external_lex_state = 5}, + [5156] = {.lex_state = 4, .external_lex_state = 5}, + [5157] = {.lex_state = 4, .external_lex_state = 5}, + [5158] = {.lex_state = 4, .external_lex_state = 5}, + [5159] = {.lex_state = 4, .external_lex_state = 5}, + [5160] = {.lex_state = 5, .external_lex_state = 6}, + [5161] = {.lex_state = 4, .external_lex_state = 5}, [5162] = {.lex_state = 4, .external_lex_state = 5}, - [5163] = {.lex_state = 5, .external_lex_state = 6}, + [5163] = {.lex_state = 4, .external_lex_state = 5}, [5164] = {.lex_state = 4, .external_lex_state = 5}, - [5165] = {.lex_state = 5, .external_lex_state = 6}, + [5165] = {.lex_state = 5, .external_lex_state = 7}, [5166] = {.lex_state = 5, .external_lex_state = 7}, - [5167] = {.lex_state = 5, .external_lex_state = 7}, - [5168] = {.lex_state = 4, .external_lex_state = 5}, - [5169] = {.lex_state = 4, .external_lex_state = 5}, - [5170] = {.lex_state = 5, .external_lex_state = 6}, + [5167] = {.lex_state = 4, .external_lex_state = 5}, + [5168] = {.lex_state = 5, .external_lex_state = 7}, + [5169] = {.lex_state = 5, .external_lex_state = 7}, + [5170] = {.lex_state = 5, .external_lex_state = 7}, [5171] = {.lex_state = 5, .external_lex_state = 7}, - [5172] = {.lex_state = 4, .external_lex_state = 5}, + [5172] = {.lex_state = 7, .external_lex_state = 9}, [5173] = {.lex_state = 5, .external_lex_state = 7}, [5174] = {.lex_state = 5, .external_lex_state = 7}, [5175] = {.lex_state = 5, .external_lex_state = 7}, - [5176] = {.lex_state = 4, .external_lex_state = 5}, - [5177] = {.lex_state = 4, .external_lex_state = 5}, + [5176] = {.lex_state = 5, .external_lex_state = 7}, + [5177] = {.lex_state = 5, .external_lex_state = 7}, [5178] = {.lex_state = 5, .external_lex_state = 7}, [5179] = {.lex_state = 4, .external_lex_state = 5}, - [5180] = {.lex_state = 4, .external_lex_state = 5}, - [5181] = {.lex_state = 5, .external_lex_state = 7}, + [5180] = {.lex_state = 5, .external_lex_state = 6}, + [5181] = {.lex_state = 7, .external_lex_state = 8}, [5182] = {.lex_state = 4, .external_lex_state = 5}, - [5183] = {.lex_state = 4, .external_lex_state = 5}, + [5183] = {.lex_state = 5, .external_lex_state = 7}, [5184] = {.lex_state = 5, .external_lex_state = 7}, [5185] = {.lex_state = 5, .external_lex_state = 7}, - [5186] = {.lex_state = 4, .external_lex_state = 5}, - [5187] = {.lex_state = 7, .external_lex_state = 8}, - [5188] = {.lex_state = 5, .external_lex_state = 7}, - [5189] = {.lex_state = 5, .external_lex_state = 7}, + [5186] = {.lex_state = 5, .external_lex_state = 6}, + [5187] = {.lex_state = 5, .external_lex_state = 7}, + [5188] = {.lex_state = 7, .external_lex_state = 9}, + [5189] = {.lex_state = 4, .external_lex_state = 5}, [5190] = {.lex_state = 4, .external_lex_state = 5}, - [5191] = {.lex_state = 5, .external_lex_state = 7}, + [5191] = {.lex_state = 4, .external_lex_state = 5}, [5192] = {.lex_state = 5, .external_lex_state = 7}, [5193] = {.lex_state = 5, .external_lex_state = 7}, - [5194] = {.lex_state = 4, .external_lex_state = 5}, - [5195] = {.lex_state = 4, .external_lex_state = 5}, - [5196] = {.lex_state = 5, .external_lex_state = 7}, - [5197] = {.lex_state = 5, .external_lex_state = 6}, + [5194] = {.lex_state = 5, .external_lex_state = 7}, + [5195] = {.lex_state = 5, .external_lex_state = 7}, + [5196] = {.lex_state = 7, .external_lex_state = 8}, + [5197] = {.lex_state = 5, .external_lex_state = 7}, [5198] = {.lex_state = 4, .external_lex_state = 5}, [5199] = {.lex_state = 5, .external_lex_state = 7}, - [5200] = {.lex_state = 5, .external_lex_state = 7}, - [5201] = {.lex_state = 4, .external_lex_state = 5}, - [5202] = {.lex_state = 5, .external_lex_state = 7}, + [5200] = {.lex_state = 4, .external_lex_state = 5}, + [5201] = {.lex_state = 5, .external_lex_state = 7}, + [5202] = {.lex_state = 4, .external_lex_state = 5}, [5203] = {.lex_state = 5, .external_lex_state = 7}, - [5204] = {.lex_state = 4, .external_lex_state = 5}, - [5205] = {.lex_state = 5, .external_lex_state = 7}, - [5206] = {.lex_state = 5, .external_lex_state = 7}, - [5207] = {.lex_state = 5, .external_lex_state = 7}, - [5208] = {.lex_state = 5, .external_lex_state = 7}, + [5204] = {.lex_state = 7, .external_lex_state = 8}, + [5205] = {.lex_state = 4, .external_lex_state = 5}, + [5206] = {.lex_state = 4, .external_lex_state = 5}, + [5207] = {.lex_state = 7, .external_lex_state = 9}, + [5208] = {.lex_state = 4, .external_lex_state = 5}, [5209] = {.lex_state = 4, .external_lex_state = 5}, [5210] = {.lex_state = 5, .external_lex_state = 7}, - [5211] = {.lex_state = 5, .external_lex_state = 7}, - [5212] = {.lex_state = 5, .external_lex_state = 7}, - [5213] = {.lex_state = 5, .external_lex_state = 7}, - [5214] = {.lex_state = 5, .external_lex_state = 7}, - [5215] = {.lex_state = 4, .external_lex_state = 5}, - [5216] = {.lex_state = 5, .external_lex_state = 7}, - [5217] = {.lex_state = 4, .external_lex_state = 5}, - [5218] = {.lex_state = 5, .external_lex_state = 6}, + [5211] = {.lex_state = 5, .external_lex_state = 6}, + [5212] = {.lex_state = 5, .external_lex_state = 6}, + [5213] = {.lex_state = 7, .external_lex_state = 8}, + [5214] = {.lex_state = 5, .external_lex_state = 6}, + [5215] = {.lex_state = 5, .external_lex_state = 7}, + [5216] = {.lex_state = 4, .external_lex_state = 5}, + [5217] = {.lex_state = 5, .external_lex_state = 6}, + [5218] = {.lex_state = 5, .external_lex_state = 7}, [5219] = {.lex_state = 7, .external_lex_state = 9}, - [5220] = {.lex_state = 7, .external_lex_state = 9}, - [5221] = {.lex_state = 5, .external_lex_state = 6}, - [5222] = {.lex_state = 5, .external_lex_state = 6}, - [5223] = {.lex_state = 4, .external_lex_state = 5}, - [5224] = {.lex_state = 4, .external_lex_state = 5}, + [5220] = {.lex_state = 5, .external_lex_state = 7}, + [5221] = {.lex_state = 5, .external_lex_state = 7}, + [5222] = {.lex_state = 4, .external_lex_state = 5}, + [5223] = {.lex_state = 5, .external_lex_state = 7}, + [5224] = {.lex_state = 5, .external_lex_state = 7}, [5225] = {.lex_state = 5, .external_lex_state = 7}, [5226] = {.lex_state = 4, .external_lex_state = 5}, - [5227] = {.lex_state = 4, .external_lex_state = 5}, + [5227] = {.lex_state = 5, .external_lex_state = 7}, [5228] = {.lex_state = 4, .external_lex_state = 5}, - [5229] = {.lex_state = 5, .external_lex_state = 6}, + [5229] = {.lex_state = 5, .external_lex_state = 7}, [5230] = {.lex_state = 5, .external_lex_state = 6}, - [5231] = {.lex_state = 7, .external_lex_state = 8}, - [5232] = {.lex_state = 5, .external_lex_state = 6}, - [5233] = {.lex_state = 5, .external_lex_state = 6}, - [5234] = {.lex_state = 4, .external_lex_state = 5}, - [5235] = {.lex_state = 5, .external_lex_state = 6}, + [5231] = {.lex_state = 4, .external_lex_state = 5}, + [5232] = {.lex_state = 5, .external_lex_state = 7}, + [5233] = {.lex_state = 7, .external_lex_state = 9}, + [5234] = {.lex_state = 7, .external_lex_state = 9}, + [5235] = {.lex_state = 4, .external_lex_state = 5}, [5236] = {.lex_state = 5, .external_lex_state = 6}, - [5237] = {.lex_state = 4, .external_lex_state = 5}, - [5238] = {.lex_state = 4, .external_lex_state = 5}, - [5239] = {.lex_state = 5, .external_lex_state = 6}, + [5237] = {.lex_state = 5, .external_lex_state = 6}, + [5238] = {.lex_state = 7, .external_lex_state = 8}, + [5239] = {.lex_state = 4, .external_lex_state = 5}, [5240] = {.lex_state = 5, .external_lex_state = 6}, - [5241] = {.lex_state = 7, .external_lex_state = 8}, - [5242] = {.lex_state = 7, .external_lex_state = 9}, + [5241] = {.lex_state = 5, .external_lex_state = 6}, + [5242] = {.lex_state = 4, .external_lex_state = 5}, [5243] = {.lex_state = 5, .external_lex_state = 7}, - [5244] = {.lex_state = 4, .external_lex_state = 5}, - [5245] = {.lex_state = 5, .external_lex_state = 6}, - [5246] = {.lex_state = 7, .external_lex_state = 8}, - [5247] = {.lex_state = 5, .external_lex_state = 7}, - [5248] = {.lex_state = 4, .external_lex_state = 5}, - [5249] = {.lex_state = 5, .external_lex_state = 7}, - [5250] = {.lex_state = 5, .external_lex_state = 7}, - [5251] = {.lex_state = 5, .external_lex_state = 6}, - [5252] = {.lex_state = 4, .external_lex_state = 5}, + [5244] = {.lex_state = 5, .external_lex_state = 6}, + [5245] = {.lex_state = 5, .external_lex_state = 7}, + [5246] = {.lex_state = 5, .external_lex_state = 7}, + [5247] = {.lex_state = 4, .external_lex_state = 5}, + [5248] = {.lex_state = 5, .external_lex_state = 6}, + [5249] = {.lex_state = 5, .external_lex_state = 6}, + [5250] = {.lex_state = 5, .external_lex_state = 6}, + [5251] = {.lex_state = 5, .external_lex_state = 7}, + [5252] = {.lex_state = 5, .external_lex_state = 6}, [5253] = {.lex_state = 5, .external_lex_state = 6}, - [5254] = {.lex_state = 5, .external_lex_state = 6}, - [5255] = {.lex_state = 4, .external_lex_state = 5}, + [5254] = {.lex_state = 5, .external_lex_state = 7}, + [5255] = {.lex_state = 7, .external_lex_state = 9}, [5256] = {.lex_state = 4, .external_lex_state = 5}, [5257] = {.lex_state = 4, .external_lex_state = 5}, [5258] = {.lex_state = 4, .external_lex_state = 5}, [5259] = {.lex_state = 5, .external_lex_state = 7}, [5260] = {.lex_state = 5, .external_lex_state = 6}, - [5261] = {.lex_state = 7, .external_lex_state = 9}, - [5262] = {.lex_state = 7, .external_lex_state = 8}, + [5261] = {.lex_state = 4, .external_lex_state = 5}, + [5262] = {.lex_state = 4, .external_lex_state = 5}, [5263] = {.lex_state = 4, .external_lex_state = 5}, - [5264] = {.lex_state = 7, .external_lex_state = 9}, + [5264] = {.lex_state = 4, .external_lex_state = 5}, [5265] = {.lex_state = 5, .external_lex_state = 7}, - [5266] = {.lex_state = 5, .external_lex_state = 7}, - [5267] = {.lex_state = 4, .external_lex_state = 5}, + [5266] = {.lex_state = 5, .external_lex_state = 6}, + [5267] = {.lex_state = 5, .external_lex_state = 7}, [5268] = {.lex_state = 4, .external_lex_state = 5}, [5269] = {.lex_state = 4, .external_lex_state = 5}, [5270] = {.lex_state = 4, .external_lex_state = 5}, - [5271] = {.lex_state = 5, .external_lex_state = 6}, + [5271] = {.lex_state = 4, .external_lex_state = 5}, [5272] = {.lex_state = 4, .external_lex_state = 5}, - [5273] = {.lex_state = 5, .external_lex_state = 6}, - [5274] = {.lex_state = 5, .external_lex_state = 6}, + [5273] = {.lex_state = 4, .external_lex_state = 5}, + [5274] = {.lex_state = 4, .external_lex_state = 5}, [5275] = {.lex_state = 4, .external_lex_state = 5}, - [5276] = {.lex_state = 7, .external_lex_state = 8}, + [5276] = {.lex_state = 4, .external_lex_state = 5}, [5277] = {.lex_state = 4, .external_lex_state = 5}, [5278] = {.lex_state = 7, .external_lex_state = 8}, - [5279] = {.lex_state = 5, .external_lex_state = 7}, + [5279] = {.lex_state = 4, .external_lex_state = 5}, [5280] = {.lex_state = 5, .external_lex_state = 6}, [5281] = {.lex_state = 4, .external_lex_state = 5}, - [5282] = {.lex_state = 5, .external_lex_state = 7}, - [5283] = {.lex_state = 7, .external_lex_state = 9}, - [5284] = {.lex_state = 7, .external_lex_state = 9}, - [5285] = {.lex_state = 4, .external_lex_state = 5}, - [5286] = {.lex_state = 7, .external_lex_state = 8}, + [5282] = {.lex_state = 4, .external_lex_state = 5}, + [5283] = {.lex_state = 5, .external_lex_state = 6}, + [5284] = {.lex_state = 4, .external_lex_state = 5}, + [5285] = {.lex_state = 5, .external_lex_state = 6}, + [5286] = {.lex_state = 4, .external_lex_state = 5}, [5287] = {.lex_state = 4, .external_lex_state = 5}, - [5288] = {.lex_state = 5, .external_lex_state = 6}, - [5289] = {.lex_state = 4, .external_lex_state = 5}, - [5290] = {.lex_state = 4, .external_lex_state = 5}, + [5288] = {.lex_state = 4, .external_lex_state = 5}, + [5289] = {.lex_state = 7, .external_lex_state = 8}, + [5290] = {.lex_state = 5, .external_lex_state = 6}, [5291] = {.lex_state = 4, .external_lex_state = 5}, - [5292] = {.lex_state = 5, .external_lex_state = 7}, + [5292] = {.lex_state = 4, .external_lex_state = 5}, [5293] = {.lex_state = 4, .external_lex_state = 5}, [5294] = {.lex_state = 4, .external_lex_state = 5}, - [5295] = {.lex_state = 5, .external_lex_state = 6}, - [5296] = {.lex_state = 4, .external_lex_state = 5}, - [5297] = {.lex_state = 5, .external_lex_state = 6}, + [5295] = {.lex_state = 4, .external_lex_state = 5}, + [5296] = {.lex_state = 5, .external_lex_state = 6}, + [5297] = {.lex_state = 7, .external_lex_state = 8}, [5298] = {.lex_state = 4, .external_lex_state = 5}, - [5299] = {.lex_state = 7, .external_lex_state = 8}, + [5299] = {.lex_state = 5, .external_lex_state = 6}, [5300] = {.lex_state = 4, .external_lex_state = 5}, - [5301] = {.lex_state = 5, .external_lex_state = 7}, - [5302] = {.lex_state = 5, .external_lex_state = 6}, - [5303] = {.lex_state = 7, .external_lex_state = 8}, + [5301] = {.lex_state = 4, .external_lex_state = 5}, + [5302] = {.lex_state = 7, .external_lex_state = 8}, + [5303] = {.lex_state = 7, .external_lex_state = 9}, [5304] = {.lex_state = 4, .external_lex_state = 5}, - [5305] = {.lex_state = 7, .external_lex_state = 8}, + [5305] = {.lex_state = 5, .external_lex_state = 6}, [5306] = {.lex_state = 4, .external_lex_state = 5}, - [5307] = {.lex_state = 5, .external_lex_state = 7}, - [5308] = {.lex_state = 7, .external_lex_state = 8}, + [5307] = {.lex_state = 4, .external_lex_state = 5}, + [5308] = {.lex_state = 4, .external_lex_state = 5}, [5309] = {.lex_state = 4, .external_lex_state = 5}, - [5310] = {.lex_state = 7, .external_lex_state = 8}, + [5310] = {.lex_state = 5, .external_lex_state = 7}, [5311] = {.lex_state = 4, .external_lex_state = 5}, - [5312] = {.lex_state = 5, .external_lex_state = 7}, - [5313] = {.lex_state = 5, .external_lex_state = 7}, - [5314] = {.lex_state = 5, .external_lex_state = 7}, - [5315] = {.lex_state = 7, .external_lex_state = 8}, - [5316] = {.lex_state = 5, .external_lex_state = 7}, - [5317] = {.lex_state = 31, .external_lex_state = 2}, - [5318] = {.lex_state = 7, .external_lex_state = 8}, + [5312] = {.lex_state = 4, .external_lex_state = 5}, + [5313] = {.lex_state = 4, .external_lex_state = 5}, + [5314] = {.lex_state = 4, .external_lex_state = 5}, + [5315] = {.lex_state = 4, .external_lex_state = 5}, + [5316] = {.lex_state = 4, .external_lex_state = 5}, + [5317] = {.lex_state = 4, .external_lex_state = 5}, + [5318] = {.lex_state = 4, .external_lex_state = 5}, [5319] = {.lex_state = 4, .external_lex_state = 5}, [5320] = {.lex_state = 4, .external_lex_state = 5}, [5321] = {.lex_state = 4, .external_lex_state = 5}, - [5322] = {.lex_state = 4, .external_lex_state = 5}, + [5322] = {.lex_state = 5, .external_lex_state = 7}, [5323] = {.lex_state = 4, .external_lex_state = 5}, [5324] = {.lex_state = 4, .external_lex_state = 5}, - [5325] = {.lex_state = 5, .external_lex_state = 7}, + [5325] = {.lex_state = 4, .external_lex_state = 5}, [5326] = {.lex_state = 4, .external_lex_state = 5}, - [5327] = {.lex_state = 4, .external_lex_state = 5}, - [5328] = {.lex_state = 4, .external_lex_state = 5}, - [5329] = {.lex_state = 4, .external_lex_state = 5}, + [5327] = {.lex_state = 7, .external_lex_state = 8}, + [5328] = {.lex_state = 7, .external_lex_state = 8}, + [5329] = {.lex_state = 7, .external_lex_state = 8}, [5330] = {.lex_state = 4, .external_lex_state = 5}, - [5331] = {.lex_state = 7, .external_lex_state = 8}, - [5332] = {.lex_state = 7, .external_lex_state = 8}, - [5333] = {.lex_state = 7, .external_lex_state = 8}, - [5334] = {.lex_state = 5, .external_lex_state = 6}, + [5331] = {.lex_state = 4, .external_lex_state = 5}, + [5332] = {.lex_state = 4, .external_lex_state = 5}, + [5333] = {.lex_state = 5, .external_lex_state = 7}, + [5334] = {.lex_state = 4, .external_lex_state = 5}, [5335] = {.lex_state = 4, .external_lex_state = 5}, [5336] = {.lex_state = 4, .external_lex_state = 5}, - [5337] = {.lex_state = 5, .external_lex_state = 7}, - [5338] = {.lex_state = 5, .external_lex_state = 7}, + [5337] = {.lex_state = 7, .external_lex_state = 8}, + [5338] = {.lex_state = 4, .external_lex_state = 5}, [5339] = {.lex_state = 4, .external_lex_state = 5}, - [5340] = {.lex_state = 5, .external_lex_state = 6}, - [5341] = {.lex_state = 4, .external_lex_state = 5}, - [5342] = {.lex_state = 4, .external_lex_state = 5}, - [5343] = {.lex_state = 5, .external_lex_state = 6}, + [5340] = {.lex_state = 4, .external_lex_state = 5}, + [5341] = {.lex_state = 5, .external_lex_state = 7}, + [5342] = {.lex_state = 5, .external_lex_state = 7}, + [5343] = {.lex_state = 4, .external_lex_state = 5}, [5344] = {.lex_state = 4, .external_lex_state = 5}, - [5345] = {.lex_state = 7, .external_lex_state = 8}, - [5346] = {.lex_state = 4, .external_lex_state = 5}, - [5347] = {.lex_state = 4, .external_lex_state = 5}, - [5348] = {.lex_state = 4, .external_lex_state = 5}, + [5345] = {.lex_state = 5, .external_lex_state = 7}, + [5346] = {.lex_state = 5, .external_lex_state = 7}, + [5347] = {.lex_state = 7, .external_lex_state = 9}, + [5348] = {.lex_state = 5, .external_lex_state = 7}, [5349] = {.lex_state = 4, .external_lex_state = 5}, - [5350] = {.lex_state = 7, .external_lex_state = 9}, + [5350] = {.lex_state = 5, .external_lex_state = 7}, [5351] = {.lex_state = 4, .external_lex_state = 5}, [5352] = {.lex_state = 4, .external_lex_state = 5}, [5353] = {.lex_state = 4, .external_lex_state = 5}, [5354] = {.lex_state = 4, .external_lex_state = 5}, - [5355] = {.lex_state = 4, .external_lex_state = 5}, - [5356] = {.lex_state = 4, .external_lex_state = 5}, - [5357] = {.lex_state = 4, .external_lex_state = 5}, - [5358] = {.lex_state = 5, .external_lex_state = 7}, + [5355] = {.lex_state = 5, .external_lex_state = 7}, + [5356] = {.lex_state = 5, .external_lex_state = 6}, + [5357] = {.lex_state = 5, .external_lex_state = 6}, + [5358] = {.lex_state = 4, .external_lex_state = 5}, [5359] = {.lex_state = 4, .external_lex_state = 5}, - [5360] = {.lex_state = 7, .external_lex_state = 8}, - [5361] = {.lex_state = 5, .external_lex_state = 7}, - [5362] = {.lex_state = 7, .external_lex_state = 9}, + [5360] = {.lex_state = 5, .external_lex_state = 7}, + [5361] = {.lex_state = 4, .external_lex_state = 5}, + [5362] = {.lex_state = 4, .external_lex_state = 5}, [5363] = {.lex_state = 4, .external_lex_state = 5}, - [5364] = {.lex_state = 4, .external_lex_state = 5}, - [5365] = {.lex_state = 7, .external_lex_state = 8}, - [5366] = {.lex_state = 4, .external_lex_state = 5}, + [5364] = {.lex_state = 7, .external_lex_state = 8}, + [5365] = {.lex_state = 5, .external_lex_state = 6}, + [5366] = {.lex_state = 5, .external_lex_state = 6}, [5367] = {.lex_state = 4, .external_lex_state = 5}, - [5368] = {.lex_state = 4, .external_lex_state = 5}, - [5369] = {.lex_state = 7, .external_lex_state = 8}, - [5370] = {.lex_state = 7, .external_lex_state = 8}, - [5371] = {.lex_state = 4, .external_lex_state = 5}, - [5372] = {.lex_state = 4, .external_lex_state = 5}, + [5368] = {.lex_state = 5, .external_lex_state = 7}, + [5369] = {.lex_state = 4, .external_lex_state = 5}, + [5370] = {.lex_state = 7, .external_lex_state = 9}, + [5371] = {.lex_state = 7, .external_lex_state = 8}, + [5372] = {.lex_state = 31, .external_lex_state = 2}, [5373] = {.lex_state = 4, .external_lex_state = 5}, [5374] = {.lex_state = 7, .external_lex_state = 8}, - [5375] = {.lex_state = 4, .external_lex_state = 5}, - [5376] = {.lex_state = 4, .external_lex_state = 5}, - [5377] = {.lex_state = 5, .external_lex_state = 6}, - [5378] = {.lex_state = 4, .external_lex_state = 5}, - [5379] = {.lex_state = 4, .external_lex_state = 5}, - [5380] = {.lex_state = 4, .external_lex_state = 5}, + [5375] = {.lex_state = 5, .external_lex_state = 7}, + [5376] = {.lex_state = 7, .external_lex_state = 8}, + [5377] = {.lex_state = 7, .external_lex_state = 8}, + [5378] = {.lex_state = 5, .external_lex_state = 6}, + [5379] = {.lex_state = 7, .external_lex_state = 8}, + [5380] = {.lex_state = 7, .external_lex_state = 9}, [5381] = {.lex_state = 4, .external_lex_state = 5}, - [5382] = {.lex_state = 4, .external_lex_state = 5}, + [5382] = {.lex_state = 7, .external_lex_state = 8}, [5383] = {.lex_state = 4, .external_lex_state = 5}, - [5384] = {.lex_state = 5, .external_lex_state = 7}, + [5384] = {.lex_state = 7, .external_lex_state = 8}, [5385] = {.lex_state = 4, .external_lex_state = 5}, - [5386] = {.lex_state = 4, .external_lex_state = 5}, + [5386] = {.lex_state = 5, .external_lex_state = 7}, [5387] = {.lex_state = 5, .external_lex_state = 7}, - [5388] = {.lex_state = 4, .external_lex_state = 5}, - [5389] = {.lex_state = 4, .external_lex_state = 5}, - [5390] = {.lex_state = 4, .external_lex_state = 5}, - [5391] = {.lex_state = 4, .external_lex_state = 5}, + [5388] = {.lex_state = 7, .external_lex_state = 8}, + [5389] = {.lex_state = 5, .external_lex_state = 7}, + [5390] = {.lex_state = 7, .external_lex_state = 8}, + [5391] = {.lex_state = 7, .external_lex_state = 8}, [5392] = {.lex_state = 4, .external_lex_state = 5}, - [5393] = {.lex_state = 7, .external_lex_state = 9}, - [5394] = {.lex_state = 7, .external_lex_state = 8}, + [5393] = {.lex_state = 7, .external_lex_state = 8}, + [5394] = {.lex_state = 5, .external_lex_state = 7}, [5395] = {.lex_state = 7, .external_lex_state = 8}, - [5396] = {.lex_state = 5, .external_lex_state = 7}, - [5397] = {.lex_state = 4, .external_lex_state = 2}, - [5398] = {.lex_state = 5, .external_lex_state = 7}, - [5399] = {.lex_state = 7, .external_lex_state = 8}, - [5400] = {.lex_state = 7, .external_lex_state = 8}, - [5401] = {.lex_state = 5, .external_lex_state = 7}, - [5402] = {.lex_state = 7, .external_lex_state = 9}, + [5396] = {.lex_state = 7, .external_lex_state = 8}, + [5397] = {.lex_state = 7, .external_lex_state = 8}, + [5398] = {.lex_state = 5, .external_lex_state = 6}, + [5399] = {.lex_state = 7, .external_lex_state = 9}, + [5400] = {.lex_state = 4, .external_lex_state = 2}, + [5401] = {.lex_state = 7, .external_lex_state = 8}, + [5402] = {.lex_state = 7, .external_lex_state = 8}, [5403] = {.lex_state = 7, .external_lex_state = 8}, [5404] = {.lex_state = 5, .external_lex_state = 7}, - [5405] = {.lex_state = 5, .external_lex_state = 7}, - [5406] = {.lex_state = 5, .external_lex_state = 7}, - [5407] = {.lex_state = 7, .external_lex_state = 8}, + [5405] = {.lex_state = 7, .external_lex_state = 8}, + [5406] = {.lex_state = 5, .external_lex_state = 6}, + [5407] = {.lex_state = 5, .external_lex_state = 7}, [5408] = {.lex_state = 5, .external_lex_state = 7}, [5409] = {.lex_state = 7, .external_lex_state = 8}, - [5410] = {.lex_state = 5, .external_lex_state = 7}, - [5411] = {.lex_state = 7, .external_lex_state = 9}, - [5412] = {.lex_state = 5, .external_lex_state = 7}, - [5413] = {.lex_state = 5, .external_lex_state = 7}, - [5414] = {.lex_state = 5, .external_lex_state = 7}, + [5410] = {.lex_state = 5, .external_lex_state = 6}, + [5411] = {.lex_state = 7, .external_lex_state = 8}, + [5412] = {.lex_state = 5, .external_lex_state = 6}, + [5413] = {.lex_state = 7, .external_lex_state = 8}, + [5414] = {.lex_state = 7, .external_lex_state = 8}, [5415] = {.lex_state = 7, .external_lex_state = 8}, - [5416] = {.lex_state = 5, .external_lex_state = 6}, + [5416] = {.lex_state = 5, .external_lex_state = 7}, [5417] = {.lex_state = 7, .external_lex_state = 8}, - [5418] = {.lex_state = 5, .external_lex_state = 6}, + [5418] = {.lex_state = 7, .external_lex_state = 9}, [5419] = {.lex_state = 7, .external_lex_state = 8}, - [5420] = {.lex_state = 7, .external_lex_state = 8}, - [5421] = {.lex_state = 7, .external_lex_state = 8}, - [5422] = {.lex_state = 7, .external_lex_state = 8}, - [5423] = {.lex_state = 7, .external_lex_state = 9}, - [5424] = {.lex_state = 5, .external_lex_state = 6}, + [5420] = {.lex_state = 5, .external_lex_state = 7}, + [5421] = {.lex_state = 7, .external_lex_state = 9}, + [5422] = {.lex_state = 5, .external_lex_state = 7}, + [5423] = {.lex_state = 7, .external_lex_state = 8}, + [5424] = {.lex_state = 5, .external_lex_state = 7}, [5425] = {.lex_state = 5, .external_lex_state = 7}, - [5426] = {.lex_state = 5, .external_lex_state = 6}, - [5427] = {.lex_state = 7, .external_lex_state = 8}, - [5428] = {.lex_state = 5, .external_lex_state = 6}, + [5426] = {.lex_state = 5, .external_lex_state = 7}, + [5427] = {.lex_state = 5, .external_lex_state = 7}, + [5428] = {.lex_state = 7, .external_lex_state = 8}, [5429] = {.lex_state = 7, .external_lex_state = 8}, - [5430] = {.lex_state = 7, .external_lex_state = 8}, + [5430] = {.lex_state = 7, .external_lex_state = 9}, [5431] = {.lex_state = 7, .external_lex_state = 8}, - [5432] = {.lex_state = 7, .external_lex_state = 8}, - [5433] = {.lex_state = 5, .external_lex_state = 6}, - [5434] = {.lex_state = 5, .external_lex_state = 7}, - [5435] = {.lex_state = 4, .external_lex_state = 2}, - [5436] = {.lex_state = 7, .external_lex_state = 8}, - [5437] = {.lex_state = 7, .external_lex_state = 8}, + [5432] = {.lex_state = 4, .external_lex_state = 2}, + [5433] = {.lex_state = 7, .external_lex_state = 8}, + [5434] = {.lex_state = 7, .external_lex_state = 8}, + [5435] = {.lex_state = 7, .external_lex_state = 8}, + [5436] = {.lex_state = 5, .external_lex_state = 7}, + [5437] = {.lex_state = 7, .external_lex_state = 9}, [5438] = {.lex_state = 7, .external_lex_state = 8}, - [5439] = {.lex_state = 5, .external_lex_state = 7}, + [5439] = {.lex_state = 7, .external_lex_state = 8}, [5440] = {.lex_state = 7, .external_lex_state = 8}, - [5441] = {.lex_state = 7, .external_lex_state = 9}, + [5441] = {.lex_state = 5, .external_lex_state = 6}, [5442] = {.lex_state = 7, .external_lex_state = 8}, - [5443] = {.lex_state = 7, .external_lex_state = 8}, - [5444] = {.lex_state = 7, .external_lex_state = 8}, + [5443] = {.lex_state = 5, .external_lex_state = 6}, + [5444] = {.lex_state = 5, .external_lex_state = 7}, [5445] = {.lex_state = 7, .external_lex_state = 8}, [5446] = {.lex_state = 7, .external_lex_state = 8}, [5447] = {.lex_state = 7, .external_lex_state = 8}, - [5448] = {.lex_state = 5, .external_lex_state = 7}, - [5449] = {.lex_state = 7, .external_lex_state = 8}, + [5448] = {.lex_state = 7, .external_lex_state = 8}, + [5449] = {.lex_state = 5, .external_lex_state = 7}, [5450] = {.lex_state = 7, .external_lex_state = 8}, - [5451] = {.lex_state = 7, .external_lex_state = 8}, + [5451] = {.lex_state = 5, .external_lex_state = 7}, [5452] = {.lex_state = 7, .external_lex_state = 8}, [5453] = {.lex_state = 5, .external_lex_state = 7}, - [5454] = {.lex_state = 5, .external_lex_state = 7}, - [5455] = {.lex_state = 5, .external_lex_state = 7}, - [5456] = {.lex_state = 7, .external_lex_state = 8}, + [5454] = {.lex_state = 7, .external_lex_state = 8}, + [5455] = {.lex_state = 7, .external_lex_state = 8}, + [5456] = {.lex_state = 5, .external_lex_state = 7}, [5457] = {.lex_state = 5, .external_lex_state = 7}, [5458] = {.lex_state = 7, .external_lex_state = 8}, [5459] = {.lex_state = 7, .external_lex_state = 8}, - [5460] = {.lex_state = 5, .external_lex_state = 7}, - [5461] = {.lex_state = 5, .external_lex_state = 7}, - [5462] = {.lex_state = 7, .external_lex_state = 8}, + [5460] = {.lex_state = 7, .external_lex_state = 8}, + [5461] = {.lex_state = 7, .external_lex_state = 8}, + [5462] = {.lex_state = 5, .external_lex_state = 7}, [5463] = {.lex_state = 7, .external_lex_state = 8}, - [5464] = {.lex_state = 7, .external_lex_state = 8}, + [5464] = {.lex_state = 5, .external_lex_state = 7}, [5465] = {.lex_state = 7, .external_lex_state = 8}, - [5466] = {.lex_state = 7, .external_lex_state = 8}, + [5466] = {.lex_state = 5, .external_lex_state = 7}, [5467] = {.lex_state = 7, .external_lex_state = 8}, - [5468] = {.lex_state = 7, .external_lex_state = 8}, - [5469] = {.lex_state = 7, .external_lex_state = 8}, - [5470] = {.lex_state = 5, .external_lex_state = 7}, - [5471] = {.lex_state = 5, .external_lex_state = 7}, + [5468] = {.lex_state = 5, .external_lex_state = 7}, + [5469] = {.lex_state = 5, .external_lex_state = 7}, + [5470] = {.lex_state = 7, .external_lex_state = 8}, + [5471] = {.lex_state = 7, .external_lex_state = 8}, [5472] = {.lex_state = 5, .external_lex_state = 6}, - [5473] = {.lex_state = 5, .external_lex_state = 6}, + [5473] = {.lex_state = 7, .external_lex_state = 8}, [5474] = {.lex_state = 5, .external_lex_state = 6}, [5475] = {.lex_state = 7, .external_lex_state = 8}, [5476] = {.lex_state = 5, .external_lex_state = 6}, [5477] = {.lex_state = 5, .external_lex_state = 6}, [5478] = {.lex_state = 7, .external_lex_state = 8}, - [5479] = {.lex_state = 7, .external_lex_state = 8}, + [5479] = {.lex_state = 5, .external_lex_state = 6}, [5480] = {.lex_state = 5, .external_lex_state = 6}, [5481] = {.lex_state = 7, .external_lex_state = 8}, - [5482] = {.lex_state = 7, .external_lex_state = 9}, + [5482] = {.lex_state = 5, .external_lex_state = 7}, [5483] = {.lex_state = 5, .external_lex_state = 7}, - [5484] = {.lex_state = 7, .external_lex_state = 9}, + [5484] = {.lex_state = 5, .external_lex_state = 7}, [5485] = {.lex_state = 5, .external_lex_state = 7}, [5486] = {.lex_state = 5, .external_lex_state = 7}, - [5487] = {.lex_state = 7, .external_lex_state = 8}, - [5488] = {.lex_state = 5, .external_lex_state = 7}, - [5489] = {.lex_state = 7, .external_lex_state = 9}, - [5490] = {.lex_state = 5, .external_lex_state = 7}, + [5487] = {.lex_state = 7, .external_lex_state = 9}, + [5488] = {.lex_state = 7, .external_lex_state = 8}, + [5489] = {.lex_state = 5, .external_lex_state = 7}, + [5490] = {.lex_state = 7, .external_lex_state = 9}, [5491] = {.lex_state = 7, .external_lex_state = 9}, - [5492] = {.lex_state = 5, .external_lex_state = 7}, + [5492] = {.lex_state = 7, .external_lex_state = 9}, [5493] = {.lex_state = 7, .external_lex_state = 9}, [5494] = {.lex_state = 7, .external_lex_state = 9}, - [5495] = {.lex_state = 7, .external_lex_state = 9}, - [5496] = {.lex_state = 7, .external_lex_state = 8}, - [5497] = {.lex_state = 7, .external_lex_state = 8}, - [5498] = {.lex_state = 7, .external_lex_state = 8}, - [5499] = {.lex_state = 5, .external_lex_state = 6}, - [5500] = {.lex_state = 7, .external_lex_state = 8}, + [5495] = {.lex_state = 5, .external_lex_state = 6}, + [5496] = {.lex_state = 7, .external_lex_state = 9}, + [5497] = {.lex_state = 7, .external_lex_state = 9}, + [5498] = {.lex_state = 7, .external_lex_state = 9}, + [5499] = {.lex_state = 7, .external_lex_state = 8}, + [5500] = {.lex_state = 7, .external_lex_state = 9}, [5501] = {.lex_state = 5, .external_lex_state = 6}, - [5502] = {.lex_state = 7, .external_lex_state = 9}, - [5503] = {.lex_state = 7, .external_lex_state = 8}, - [5504] = {.lex_state = 7, .external_lex_state = 8}, - [5505] = {.lex_state = 7, .external_lex_state = 9}, + [5502] = {.lex_state = 5, .external_lex_state = 6}, + [5503] = {.lex_state = 31, .external_lex_state = 5}, + [5504] = {.lex_state = 7, .external_lex_state = 9}, + [5505] = {.lex_state = 7, .external_lex_state = 8}, [5506] = {.lex_state = 7, .external_lex_state = 9}, - [5507] = {.lex_state = 5, .external_lex_state = 6}, + [5507] = {.lex_state = 7, .external_lex_state = 9}, [5508] = {.lex_state = 7, .external_lex_state = 9}, - [5509] = {.lex_state = 7, .external_lex_state = 9}, - [5510] = {.lex_state = 31, .external_lex_state = 5}, - [5511] = {.lex_state = 7, .external_lex_state = 9}, - [5512] = {.lex_state = 7, .external_lex_state = 9}, + [5509] = {.lex_state = 7, .external_lex_state = 8}, + [5510] = {.lex_state = 7, .external_lex_state = 8}, + [5511] = {.lex_state = 31, .external_lex_state = 5}, + [5512] = {.lex_state = 7, .external_lex_state = 8}, [5513] = {.lex_state = 7, .external_lex_state = 8}, - [5514] = {.lex_state = 31, .external_lex_state = 5}, + [5514] = {.lex_state = 7, .external_lex_state = 8}, [5515] = {.lex_state = 7, .external_lex_state = 8}, [5516] = {.lex_state = 7, .external_lex_state = 8}, [5517] = {.lex_state = 7, .external_lex_state = 8}, [5518] = {.lex_state = 7, .external_lex_state = 8}, [5519] = {.lex_state = 7, .external_lex_state = 8}, [5520] = {.lex_state = 7, .external_lex_state = 8}, - [5521] = {.lex_state = 7, .external_lex_state = 8}, + [5521] = {.lex_state = 31, .external_lex_state = 2}, [5522] = {.lex_state = 7, .external_lex_state = 8}, - [5523] = {.lex_state = 7, .external_lex_state = 8}, - [5524] = {.lex_state = 31, .external_lex_state = 2}, - [5525] = {.lex_state = 31, .external_lex_state = 2}, + [5523] = {.lex_state = 31, .external_lex_state = 2}, + [5524] = {.lex_state = 7, .external_lex_state = 8}, + [5525] = {.lex_state = 7, .external_lex_state = 8}, [5526] = {.lex_state = 7, .external_lex_state = 8}, [5527] = {.lex_state = 7, .external_lex_state = 8}, [5528] = {.lex_state = 7, .external_lex_state = 8}, [5529] = {.lex_state = 7, .external_lex_state = 8}, - [5530] = {.lex_state = 7, .external_lex_state = 8}, + [5530] = {.lex_state = 7, .external_lex_state = 9}, [5531] = {.lex_state = 7, .external_lex_state = 9}, - [5532] = {.lex_state = 7, .external_lex_state = 9}, + [5532] = {.lex_state = 7, .external_lex_state = 8}, [5533] = {.lex_state = 7, .external_lex_state = 8}, - [5534] = {.lex_state = 7, .external_lex_state = 8}, + [5534] = {.lex_state = 7, .external_lex_state = 9}, [5535] = {.lex_state = 7, .external_lex_state = 8}, - [5536] = {.lex_state = 7, .external_lex_state = 9}, - [5537] = {.lex_state = 7, .external_lex_state = 9}, - [5538] = {.lex_state = 7, .external_lex_state = 8}, + [5536] = {.lex_state = 7, .external_lex_state = 8}, + [5537] = {.lex_state = 7, .external_lex_state = 8}, + [5538] = {.lex_state = 7, .external_lex_state = 9}, [5539] = {.lex_state = 7, .external_lex_state = 8}, [5540] = {.lex_state = 7, .external_lex_state = 8}, [5541] = {.lex_state = 7, .external_lex_state = 8}, @@ -19773,39 +19783,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5556] = {.lex_state = 8, .external_lex_state = 8}, [5557] = {.lex_state = 7, .external_lex_state = 9}, [5558] = {.lex_state = 7, .external_lex_state = 9}, - [5559] = {.lex_state = 7, .external_lex_state = 8}, + [5559] = {.lex_state = 7, .external_lex_state = 9}, [5560] = {.lex_state = 7, .external_lex_state = 8}, [5561] = {.lex_state = 7, .external_lex_state = 8}, [5562] = {.lex_state = 7, .external_lex_state = 8}, [5563] = {.lex_state = 7, .external_lex_state = 8}, - [5564] = {.lex_state = 7, .external_lex_state = 9}, - [5565] = {.lex_state = 7, .external_lex_state = 9}, + [5564] = {.lex_state = 7, .external_lex_state = 8}, + [5565] = {.lex_state = 7, .external_lex_state = 8}, [5566] = {.lex_state = 7, .external_lex_state = 9}, - [5567] = {.lex_state = 7, .external_lex_state = 9}, + [5567] = {.lex_state = 7, .external_lex_state = 8}, [5568] = {.lex_state = 7, .external_lex_state = 8}, - [5569] = {.lex_state = 7, .external_lex_state = 8}, + [5569] = {.lex_state = 7, .external_lex_state = 9}, [5570] = {.lex_state = 7, .external_lex_state = 8}, [5571] = {.lex_state = 7, .external_lex_state = 8}, [5572] = {.lex_state = 7, .external_lex_state = 8}, [5573] = {.lex_state = 7, .external_lex_state = 8}, [5574] = {.lex_state = 7, .external_lex_state = 8}, - [5575] = {.lex_state = 7, .external_lex_state = 8}, + [5575] = {.lex_state = 7, .external_lex_state = 9}, [5576] = {.lex_state = 7, .external_lex_state = 8}, [5577] = {.lex_state = 7, .external_lex_state = 8}, [5578] = {.lex_state = 7, .external_lex_state = 8}, - [5579] = {.lex_state = 7, .external_lex_state = 8}, + [5579] = {.lex_state = 7, .external_lex_state = 9}, [5580] = {.lex_state = 7, .external_lex_state = 8}, - [5581] = {.lex_state = 7, .external_lex_state = 8}, + [5581] = {.lex_state = 7, .external_lex_state = 9}, [5582] = {.lex_state = 7, .external_lex_state = 9}, - [5583] = {.lex_state = 7, .external_lex_state = 9}, - [5584] = {.lex_state = 7, .external_lex_state = 8}, + [5583] = {.lex_state = 7, .external_lex_state = 8}, + [5584] = {.lex_state = 7, .external_lex_state = 9}, [5585] = {.lex_state = 7, .external_lex_state = 8}, [5586] = {.lex_state = 7, .external_lex_state = 8}, - [5587] = {.lex_state = 7, .external_lex_state = 9}, + [5587] = {.lex_state = 7, .external_lex_state = 8}, [5588] = {.lex_state = 7, .external_lex_state = 8}, [5589] = {.lex_state = 7, .external_lex_state = 8}, [5590] = {.lex_state = 7, .external_lex_state = 8}, - [5591] = {.lex_state = 7, .external_lex_state = 9}, + [5591] = {.lex_state = 7, .external_lex_state = 8}, [5592] = {.lex_state = 7, .external_lex_state = 8}, [5593] = {.lex_state = 7, .external_lex_state = 8}, [5594] = {.lex_state = 7, .external_lex_state = 8}, @@ -19816,26 +19826,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5599] = {.lex_state = 7, .external_lex_state = 8}, [5600] = {.lex_state = 7, .external_lex_state = 8}, [5601] = {.lex_state = 7, .external_lex_state = 8}, - [5602] = {.lex_state = 7, .external_lex_state = 8}, + [5602] = {.lex_state = 7, .external_lex_state = 9}, [5603] = {.lex_state = 7, .external_lex_state = 8}, [5604] = {.lex_state = 7, .external_lex_state = 8}, [5605] = {.lex_state = 7, .external_lex_state = 8}, [5606] = {.lex_state = 7, .external_lex_state = 8}, [5607] = {.lex_state = 7, .external_lex_state = 8}, - [5608] = {.lex_state = 7, .external_lex_state = 8}, + [5608] = {.lex_state = 7, .external_lex_state = 9}, [5609] = {.lex_state = 7, .external_lex_state = 8}, - [5610] = {.lex_state = 7, .external_lex_state = 9}, + [5610] = {.lex_state = 7, .external_lex_state = 8}, [5611] = {.lex_state = 7, .external_lex_state = 8}, [5612] = {.lex_state = 7, .external_lex_state = 8}, [5613] = {.lex_state = 7, .external_lex_state = 8}, [5614] = {.lex_state = 7, .external_lex_state = 8}, [5615] = {.lex_state = 7, .external_lex_state = 8}, - [5616] = {.lex_state = 7, .external_lex_state = 9}, + [5616] = {.lex_state = 7, .external_lex_state = 8}, [5617] = {.lex_state = 7, .external_lex_state = 8}, [5618] = {.lex_state = 7, .external_lex_state = 8}, - [5619] = {.lex_state = 7, .external_lex_state = 9}, + [5619] = {.lex_state = 7, .external_lex_state = 8}, [5620] = {.lex_state = 7, .external_lex_state = 8}, - [5621] = {.lex_state = 7, .external_lex_state = 8}, + [5621] = {.lex_state = 7, .external_lex_state = 9}, [5622] = {.lex_state = 7, .external_lex_state = 8}, [5623] = {.lex_state = 7, .external_lex_state = 9}, [5624] = {.lex_state = 7, .external_lex_state = 9}, @@ -19844,45 +19854,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5627] = {.lex_state = 7, .external_lex_state = 9}, [5628] = {.lex_state = 7, .external_lex_state = 9}, [5629] = {.lex_state = 7, .external_lex_state = 9}, - [5630] = {.lex_state = 7, .external_lex_state = 9}, + [5630] = {.lex_state = 7, .external_lex_state = 8}, [5631] = {.lex_state = 7, .external_lex_state = 8}, - [5632] = {.lex_state = 8, .external_lex_state = 8}, + [5632] = {.lex_state = 7, .external_lex_state = 9}, [5633] = {.lex_state = 7, .external_lex_state = 9}, - [5634] = {.lex_state = 8, .external_lex_state = 8}, - [5635] = {.lex_state = 7, .external_lex_state = 8}, + [5634] = {.lex_state = 7, .external_lex_state = 8}, + [5635] = {.lex_state = 7, .external_lex_state = 9}, [5636] = {.lex_state = 7, .external_lex_state = 8}, [5637] = {.lex_state = 7, .external_lex_state = 8}, - [5638] = {.lex_state = 7, .external_lex_state = 8}, - [5639] = {.lex_state = 7, .external_lex_state = 8}, + [5638] = {.lex_state = 8, .external_lex_state = 8}, + [5639] = {.lex_state = 8, .external_lex_state = 8}, [5640] = {.lex_state = 7, .external_lex_state = 8}, - [5641] = {.lex_state = 7, .external_lex_state = 9}, + [5641] = {.lex_state = 7, .external_lex_state = 8}, [5642] = {.lex_state = 7, .external_lex_state = 8}, [5643] = {.lex_state = 7, .external_lex_state = 8}, [5644] = {.lex_state = 7, .external_lex_state = 8}, - [5645] = {.lex_state = 7, .external_lex_state = 8}, - [5646] = {.lex_state = 7, .external_lex_state = 8}, - [5647] = {.lex_state = 7, .external_lex_state = 8}, + [5645] = {.lex_state = 7, .external_lex_state = 9}, + [5646] = {.lex_state = 8, .external_lex_state = 8}, + [5647] = {.lex_state = 7, .external_lex_state = 9}, [5648] = {.lex_state = 8, .external_lex_state = 8}, - [5649] = {.lex_state = 7, .external_lex_state = 9}, - [5650] = {.lex_state = 8, .external_lex_state = 8}, + [5649] = {.lex_state = 8, .external_lex_state = 8}, + [5650] = {.lex_state = 7, .external_lex_state = 8}, [5651] = {.lex_state = 8, .external_lex_state = 8}, - [5652] = {.lex_state = 8, .external_lex_state = 8}, - [5653] = {.lex_state = 7, .external_lex_state = 9}, + [5652] = {.lex_state = 7, .external_lex_state = 8}, + [5653] = {.lex_state = 7, .external_lex_state = 8}, [5654] = {.lex_state = 8, .external_lex_state = 8}, [5655] = {.lex_state = 8, .external_lex_state = 8}, [5656] = {.lex_state = 8, .external_lex_state = 8}, - [5657] = {.lex_state = 8, .external_lex_state = 8}, - [5658] = {.lex_state = 7, .external_lex_state = 8}, - [5659] = {.lex_state = 8, .external_lex_state = 8}, + [5657] = {.lex_state = 5, .external_lex_state = 6}, + [5658] = {.lex_state = 5, .external_lex_state = 6}, + [5659] = {.lex_state = 7, .external_lex_state = 8}, [5660] = {.lex_state = 7, .external_lex_state = 8}, - [5661] = {.lex_state = 7, .external_lex_state = 8}, + [5661] = {.lex_state = 8, .external_lex_state = 8}, [5662] = {.lex_state = 7, .external_lex_state = 8}, [5663] = {.lex_state = 7, .external_lex_state = 8}, [5664] = {.lex_state = 7, .external_lex_state = 8}, [5665] = {.lex_state = 7, .external_lex_state = 8}, - [5666] = {.lex_state = 8, .external_lex_state = 8}, + [5666] = {.lex_state = 7, .external_lex_state = 8}, [5667] = {.lex_state = 7, .external_lex_state = 8}, - [5668] = {.lex_state = 7, .external_lex_state = 8}, + [5668] = {.lex_state = 8, .external_lex_state = 8}, [5669] = {.lex_state = 7, .external_lex_state = 8}, [5670] = {.lex_state = 7, .external_lex_state = 8}, [5671] = {.lex_state = 7, .external_lex_state = 8}, @@ -19900,15 +19910,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5683] = {.lex_state = 7, .external_lex_state = 8}, [5684] = {.lex_state = 7, .external_lex_state = 8}, [5685] = {.lex_state = 7, .external_lex_state = 8}, - [5686] = {.lex_state = 8, .external_lex_state = 8}, + [5686] = {.lex_state = 7, .external_lex_state = 8}, [5687] = {.lex_state = 7, .external_lex_state = 8}, [5688] = {.lex_state = 7, .external_lex_state = 8}, - [5689] = {.lex_state = 8, .external_lex_state = 8}, + [5689] = {.lex_state = 7, .external_lex_state = 8}, [5690] = {.lex_state = 7, .external_lex_state = 8}, - [5691] = {.lex_state = 8, .external_lex_state = 8}, + [5691] = {.lex_state = 7, .external_lex_state = 8}, [5692] = {.lex_state = 7, .external_lex_state = 8}, [5693] = {.lex_state = 7, .external_lex_state = 8}, - [5694] = {.lex_state = 7, .external_lex_state = 8}, + [5694] = {.lex_state = 8, .external_lex_state = 8}, [5695] = {.lex_state = 7, .external_lex_state = 8}, [5696] = {.lex_state = 7, .external_lex_state = 8}, [5697] = {.lex_state = 7, .external_lex_state = 8}, @@ -19926,28 +19936,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5709] = {.lex_state = 8, .external_lex_state = 8}, [5710] = {.lex_state = 7, .external_lex_state = 8}, [5711] = {.lex_state = 7, .external_lex_state = 8}, - [5712] = {.lex_state = 7, .external_lex_state = 8}, - [5713] = {.lex_state = 8, .external_lex_state = 8}, + [5712] = {.lex_state = 8, .external_lex_state = 8}, + [5713] = {.lex_state = 7, .external_lex_state = 8}, [5714] = {.lex_state = 7, .external_lex_state = 8}, [5715] = {.lex_state = 7, .external_lex_state = 8}, - [5716] = {.lex_state = 7, .external_lex_state = 8}, + [5716] = {.lex_state = 8, .external_lex_state = 8}, [5717] = {.lex_state = 7, .external_lex_state = 8}, [5718] = {.lex_state = 7, .external_lex_state = 8}, [5719] = {.lex_state = 7, .external_lex_state = 8}, [5720] = {.lex_state = 7, .external_lex_state = 8}, - [5721] = {.lex_state = 7, .external_lex_state = 8}, - [5722] = {.lex_state = 7, .external_lex_state = 8}, - [5723] = {.lex_state = 7, .external_lex_state = 8}, - [5724] = {.lex_state = 8, .external_lex_state = 8}, + [5721] = {.lex_state = 8, .external_lex_state = 8}, + [5722] = {.lex_state = 8, .external_lex_state = 8}, + [5723] = {.lex_state = 8, .external_lex_state = 8}, + [5724] = {.lex_state = 7, .external_lex_state = 8}, [5725] = {.lex_state = 7, .external_lex_state = 8}, [5726] = {.lex_state = 7, .external_lex_state = 8}, - [5727] = {.lex_state = 7, .external_lex_state = 8}, + [5727] = {.lex_state = 8, .external_lex_state = 8}, [5728] = {.lex_state = 7, .external_lex_state = 8}, - [5729] = {.lex_state = 7, .external_lex_state = 8}, - [5730] = {.lex_state = 8, .external_lex_state = 8}, + [5729] = {.lex_state = 8, .external_lex_state = 8}, + [5730] = {.lex_state = 7, .external_lex_state = 8}, [5731] = {.lex_state = 7, .external_lex_state = 8}, [5732] = {.lex_state = 7, .external_lex_state = 8}, - [5733] = {.lex_state = 8, .external_lex_state = 8}, + [5733] = {.lex_state = 7, .external_lex_state = 8}, [5734] = {.lex_state = 7, .external_lex_state = 8}, [5735] = {.lex_state = 7, .external_lex_state = 8}, [5736] = {.lex_state = 7, .external_lex_state = 8}, @@ -20592,7 +20602,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6375] = {.lex_state = 7, .external_lex_state = 8}, [6376] = {.lex_state = 7, .external_lex_state = 8}, [6377] = {.lex_state = 7, .external_lex_state = 8}, - [6378] = {.lex_state = 7, .external_lex_state = 8}, + [6378] = {.lex_state = 5, .external_lex_state = 6}, [6379] = {.lex_state = 7, .external_lex_state = 8}, [6380] = {.lex_state = 7, .external_lex_state = 8}, [6381] = {.lex_state = 7, .external_lex_state = 8}, @@ -20748,7 +20758,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6531] = {.lex_state = 7, .external_lex_state = 8}, [6532] = {.lex_state = 7, .external_lex_state = 8}, [6533] = {.lex_state = 7, .external_lex_state = 8}, - [6534] = {.lex_state = 0, .external_lex_state = 6}, + [6534] = {.lex_state = 7, .external_lex_state = 8}, [6535] = {.lex_state = 7, .external_lex_state = 8}, [6536] = {.lex_state = 7, .external_lex_state = 8}, [6537] = {.lex_state = 7, .external_lex_state = 8}, @@ -20823,7 +20833,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6606] = {.lex_state = 7, .external_lex_state = 8}, [6607] = {.lex_state = 7, .external_lex_state = 8}, [6608] = {.lex_state = 7, .external_lex_state = 8}, - [6609] = {.lex_state = 0, .external_lex_state = 6}, + [6609] = {.lex_state = 7, .external_lex_state = 8}, [6610] = {.lex_state = 7, .external_lex_state = 8}, [6611] = {.lex_state = 7, .external_lex_state = 8}, [6612] = {.lex_state = 7, .external_lex_state = 8}, @@ -21141,13 +21151,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6924] = {.lex_state = 7, .external_lex_state = 8}, [6925] = {.lex_state = 7, .external_lex_state = 8}, [6926] = {.lex_state = 7, .external_lex_state = 8}, - [6927] = {.lex_state = 7, .external_lex_state = 8}, + [6927] = {.lex_state = 5, .external_lex_state = 6}, [6928] = {.lex_state = 7, .external_lex_state = 8}, [6929] = {.lex_state = 7, .external_lex_state = 8}, [6930] = {.lex_state = 7, .external_lex_state = 8}, [6931] = {.lex_state = 7, .external_lex_state = 8}, [6932] = {.lex_state = 7, .external_lex_state = 8}, - [6933] = {.lex_state = 7, .external_lex_state = 8}, + [6933] = {.lex_state = 5, .external_lex_state = 6}, [6934] = {.lex_state = 7, .external_lex_state = 8}, [6935] = {.lex_state = 7, .external_lex_state = 8}, [6936] = {.lex_state = 7, .external_lex_state = 8}, @@ -21270,7 +21280,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7053] = {.lex_state = 7, .external_lex_state = 8}, [7054] = {.lex_state = 7, .external_lex_state = 8}, [7055] = {.lex_state = 7, .external_lex_state = 8}, - [7056] = {.lex_state = 7, .external_lex_state = 8}, + [7056] = {.lex_state = 7, .external_lex_state = 9}, [7057] = {.lex_state = 7, .external_lex_state = 8}, [7058] = {.lex_state = 7, .external_lex_state = 8}, [7059] = {.lex_state = 7, .external_lex_state = 8}, @@ -21319,7 +21329,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7102] = {.lex_state = 7, .external_lex_state = 8}, [7103] = {.lex_state = 7, .external_lex_state = 8}, [7104] = {.lex_state = 7, .external_lex_state = 8}, - [7105] = {.lex_state = 7, .external_lex_state = 8}, + [7105] = {.lex_state = 7, .external_lex_state = 9}, [7106] = {.lex_state = 7, .external_lex_state = 8}, [7107] = {.lex_state = 7, .external_lex_state = 8}, [7108] = {.lex_state = 7, .external_lex_state = 8}, @@ -21336,10 +21346,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7119] = {.lex_state = 7, .external_lex_state = 8}, [7120] = {.lex_state = 7, .external_lex_state = 8}, [7121] = {.lex_state = 7, .external_lex_state = 8}, - [7122] = {.lex_state = 7, .external_lex_state = 9}, + [7122] = {.lex_state = 7, .external_lex_state = 8}, [7123] = {.lex_state = 7, .external_lex_state = 8}, [7124] = {.lex_state = 7, .external_lex_state = 8}, - [7125] = {.lex_state = 7, .external_lex_state = 9}, + [7125] = {.lex_state = 7, .external_lex_state = 8}, [7126] = {.lex_state = 7, .external_lex_state = 8}, [7127] = {.lex_state = 7, .external_lex_state = 8}, [7128] = {.lex_state = 7, .external_lex_state = 8}, @@ -21671,7 +21681,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7454] = {.lex_state = 7, .external_lex_state = 8}, [7455] = {.lex_state = 7, .external_lex_state = 8}, [7456] = {.lex_state = 7, .external_lex_state = 8}, - [7457] = {.lex_state = 7, .external_lex_state = 9}, + [7457] = {.lex_state = 7, .external_lex_state = 8}, [7458] = {.lex_state = 7, .external_lex_state = 8}, [7459] = {.lex_state = 7, .external_lex_state = 8}, [7460] = {.lex_state = 7, .external_lex_state = 8}, @@ -21679,7 +21689,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7462] = {.lex_state = 7, .external_lex_state = 8}, [7463] = {.lex_state = 7, .external_lex_state = 8}, [7464] = {.lex_state = 7, .external_lex_state = 8}, - [7465] = {.lex_state = 7, .external_lex_state = 8}, + [7465] = {.lex_state = 5, .external_lex_state = 8}, [7466] = {.lex_state = 7, .external_lex_state = 8}, [7467] = {.lex_state = 7, .external_lex_state = 8}, [7468] = {.lex_state = 7, .external_lex_state = 8}, @@ -21697,7 +21707,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7480] = {.lex_state = 7, .external_lex_state = 8}, [7481] = {.lex_state = 7, .external_lex_state = 8}, [7482] = {.lex_state = 7, .external_lex_state = 8}, - [7483] = {.lex_state = 7, .external_lex_state = 9}, + [7483] = {.lex_state = 7, .external_lex_state = 8}, [7484] = {.lex_state = 7, .external_lex_state = 8}, [7485] = {.lex_state = 7, .external_lex_state = 8}, [7486] = {.lex_state = 7, .external_lex_state = 8}, @@ -21706,7 +21716,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7489] = {.lex_state = 7, .external_lex_state = 8}, [7490] = {.lex_state = 7, .external_lex_state = 8}, [7491] = {.lex_state = 7, .external_lex_state = 8}, - [7492] = {.lex_state = 5, .external_lex_state = 8}, + [7492] = {.lex_state = 7, .external_lex_state = 8}, [7493] = {.lex_state = 7, .external_lex_state = 8}, [7494] = {.lex_state = 7, .external_lex_state = 8}, [7495] = {.lex_state = 7, .external_lex_state = 8}, @@ -21715,8 +21725,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7498] = {.lex_state = 7, .external_lex_state = 8}, [7499] = {.lex_state = 7, .external_lex_state = 8}, [7500] = {.lex_state = 7, .external_lex_state = 8}, - [7501] = {.lex_state = 5, .external_lex_state = 8}, - [7502] = {.lex_state = 7, .external_lex_state = 8}, + [7501] = {.lex_state = 7, .external_lex_state = 8}, + [7502] = {.lex_state = 5, .external_lex_state = 8}, [7503] = {.lex_state = 7, .external_lex_state = 8}, [7504] = {.lex_state = 7, .external_lex_state = 8}, [7505] = {.lex_state = 7, .external_lex_state = 8}, @@ -21724,14 +21734,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7507] = {.lex_state = 7, .external_lex_state = 8}, [7508] = {.lex_state = 7, .external_lex_state = 8}, [7509] = {.lex_state = 7, .external_lex_state = 8}, - [7510] = {.lex_state = 5, .external_lex_state = 8}, + [7510] = {.lex_state = 7, .external_lex_state = 8}, [7511] = {.lex_state = 7, .external_lex_state = 8}, [7512] = {.lex_state = 7, .external_lex_state = 8}, [7513] = {.lex_state = 7, .external_lex_state = 8}, [7514] = {.lex_state = 7, .external_lex_state = 8}, [7515] = {.lex_state = 7, .external_lex_state = 8}, [7516] = {.lex_state = 7, .external_lex_state = 8}, - [7517] = {.lex_state = 7, .external_lex_state = 9}, + [7517] = {.lex_state = 7, .external_lex_state = 8}, [7518] = {.lex_state = 7, .external_lex_state = 8}, [7519] = {.lex_state = 7, .external_lex_state = 8}, [7520] = {.lex_state = 7, .external_lex_state = 8}, @@ -21765,8 +21775,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7548] = {.lex_state = 7, .external_lex_state = 8}, [7549] = {.lex_state = 7, .external_lex_state = 8}, [7550] = {.lex_state = 7, .external_lex_state = 8}, - [7551] = {.lex_state = 5, .external_lex_state = 8}, - [7552] = {.lex_state = 7, .external_lex_state = 8}, + [7551] = {.lex_state = 7, .external_lex_state = 8}, + [7552] = {.lex_state = 5, .external_lex_state = 8}, [7553] = {.lex_state = 7, .external_lex_state = 8}, [7554] = {.lex_state = 7, .external_lex_state = 8}, [7555] = {.lex_state = 7, .external_lex_state = 8}, @@ -21777,9 +21787,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7560] = {.lex_state = 7, .external_lex_state = 8}, [7561] = {.lex_state = 7, .external_lex_state = 8}, [7562] = {.lex_state = 5, .external_lex_state = 8}, - [7563] = {.lex_state = 5, .external_lex_state = 8}, - [7564] = {.lex_state = 7, .external_lex_state = 8}, - [7565] = {.lex_state = 7, .external_lex_state = 8}, + [7563] = {.lex_state = 7, .external_lex_state = 8}, + [7564] = {.lex_state = 5, .external_lex_state = 8}, + [7565] = {.lex_state = 7, .external_lex_state = 9}, [7566] = {.lex_state = 7, .external_lex_state = 8}, [7567] = {.lex_state = 7, .external_lex_state = 8}, [7568] = {.lex_state = 7, .external_lex_state = 8}, @@ -21788,13 +21798,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7571] = {.lex_state = 7, .external_lex_state = 8}, [7572] = {.lex_state = 7, .external_lex_state = 8}, [7573] = {.lex_state = 7, .external_lex_state = 8}, - [7574] = {.lex_state = 7, .external_lex_state = 8}, + [7574] = {.lex_state = 7, .external_lex_state = 9}, [7575] = {.lex_state = 7, .external_lex_state = 8}, [7576] = {.lex_state = 7, .external_lex_state = 8}, [7577] = {.lex_state = 7, .external_lex_state = 8}, [7578] = {.lex_state = 7, .external_lex_state = 8}, [7579] = {.lex_state = 7, .external_lex_state = 8}, - [7580] = {.lex_state = 7, .external_lex_state = 8}, + [7580] = {.lex_state = 7, .external_lex_state = 9}, [7581] = {.lex_state = 7, .external_lex_state = 8}, [7582] = {.lex_state = 7, .external_lex_state = 8}, [7583] = {.lex_state = 7, .external_lex_state = 8}, @@ -21802,7 +21812,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7585] = {.lex_state = 7, .external_lex_state = 8}, [7586] = {.lex_state = 7, .external_lex_state = 8}, [7587] = {.lex_state = 7, .external_lex_state = 8}, - [7588] = {.lex_state = 7, .external_lex_state = 8}, + [7588] = {.lex_state = 5, .external_lex_state = 8}, [7589] = {.lex_state = 7, .external_lex_state = 8}, [7590] = {.lex_state = 7, .external_lex_state = 8}, [7591] = {.lex_state = 7, .external_lex_state = 8}, @@ -22085,259 +22095,259 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7868] = {.lex_state = 7, .external_lex_state = 8}, [7869] = {.lex_state = 7, .external_lex_state = 8}, [7870] = {.lex_state = 7, .external_lex_state = 8}, - [7871] = {.lex_state = 7, .external_lex_state = 9}, - [7872] = {.lex_state = 7, .external_lex_state = 9}, - [7873] = {.lex_state = 7, .external_lex_state = 9}, - [7874] = {.lex_state = 7, .external_lex_state = 8}, + [7871] = {.lex_state = 7, .external_lex_state = 8}, + [7872] = {.lex_state = 7, .external_lex_state = 8}, + [7873] = {.lex_state = 7, .external_lex_state = 8}, + [7874] = {.lex_state = 7, .external_lex_state = 9}, [7875] = {.lex_state = 7, .external_lex_state = 9}, [7876] = {.lex_state = 7, .external_lex_state = 9}, [7877] = {.lex_state = 7, .external_lex_state = 8}, - [7878] = {.lex_state = 7, .external_lex_state = 8}, + [7878] = {.lex_state = 7, .external_lex_state = 9}, [7879] = {.lex_state = 7, .external_lex_state = 9}, - [7880] = {.lex_state = 5, .external_lex_state = 8}, + [7880] = {.lex_state = 7, .external_lex_state = 9}, [7881] = {.lex_state = 7, .external_lex_state = 8}, [7882] = {.lex_state = 7, .external_lex_state = 9}, [7883] = {.lex_state = 5, .external_lex_state = 8}, - [7884] = {.lex_state = 7, .external_lex_state = 8}, - [7885] = {.lex_state = 7, .external_lex_state = 9}, + [7884] = {.lex_state = 5, .external_lex_state = 8}, + [7885] = {.lex_state = 7, .external_lex_state = 8}, [7886] = {.lex_state = 7, .external_lex_state = 9}, - [7887] = {.lex_state = 5, .external_lex_state = 8}, - [7888] = {.lex_state = 7, .external_lex_state = 9}, + [7887] = {.lex_state = 7, .external_lex_state = 9}, + [7888] = {.lex_state = 7, .external_lex_state = 8}, [7889] = {.lex_state = 5, .external_lex_state = 8}, - [7890] = {.lex_state = 5, .external_lex_state = 8}, - [7891] = {.lex_state = 7, .external_lex_state = 8}, + [7890] = {.lex_state = 7, .external_lex_state = 8}, + [7891] = {.lex_state = 7, .external_lex_state = 9}, [7892] = {.lex_state = 7, .external_lex_state = 9}, [7893] = {.lex_state = 5, .external_lex_state = 8}, - [7894] = {.lex_state = 0, .external_lex_state = 8}, - [7895] = {.lex_state = 0, .external_lex_state = 8}, - [7896] = {.lex_state = 0, .external_lex_state = 8}, - [7897] = {.lex_state = 0, .external_lex_state = 8}, + [7894] = {.lex_state = 5, .external_lex_state = 8}, + [7895] = {.lex_state = 7, .external_lex_state = 8}, + [7896] = {.lex_state = 5, .external_lex_state = 8}, + [7897] = {.lex_state = 7, .external_lex_state = 9}, [7898] = {.lex_state = 0, .external_lex_state = 8}, - [7899] = {.lex_state = 7, .external_lex_state = 8}, - [7900] = {.lex_state = 0, .external_lex_state = 8}, + [7899] = {.lex_state = 0, .external_lex_state = 8}, + [7900] = {.lex_state = 7, .external_lex_state = 8}, [7901] = {.lex_state = 7, .external_lex_state = 8}, - [7902] = {.lex_state = 7, .external_lex_state = 8}, + [7902] = {.lex_state = 0, .external_lex_state = 8}, [7903] = {.lex_state = 0, .external_lex_state = 8}, - [7904] = {.lex_state = 31, .external_lex_state = 8}, - [7905] = {.lex_state = 7, .external_lex_state = 9}, - [7906] = {.lex_state = 0, .external_lex_state = 8}, - [7907] = {.lex_state = 0, .external_lex_state = 8}, - [7908] = {.lex_state = 7, .external_lex_state = 8}, + [7904] = {.lex_state = 7, .external_lex_state = 9}, + [7905] = {.lex_state = 0, .external_lex_state = 8}, + [7906] = {.lex_state = 7, .external_lex_state = 8}, + [7907] = {.lex_state = 31, .external_lex_state = 8}, + [7908] = {.lex_state = 7, .external_lex_state = 9}, [7909] = {.lex_state = 0, .external_lex_state = 8}, - [7910] = {.lex_state = 7, .external_lex_state = 9}, + [7910] = {.lex_state = 0, .external_lex_state = 8}, [7911] = {.lex_state = 0, .external_lex_state = 8}, - [7912] = {.lex_state = 7, .external_lex_state = 9}, - [7913] = {.lex_state = 7, .external_lex_state = 9}, - [7914] = {.lex_state = 7, .external_lex_state = 9}, - [7915] = {.lex_state = 0, .external_lex_state = 8}, - [7916] = {.lex_state = 7, .external_lex_state = 9}, + [7912] = {.lex_state = 5, .external_lex_state = 8}, + [7913] = {.lex_state = 0, .external_lex_state = 8}, + [7914] = {.lex_state = 0, .external_lex_state = 8}, + [7915] = {.lex_state = 7, .external_lex_state = 9}, + [7916] = {.lex_state = 0, .external_lex_state = 8}, [7917] = {.lex_state = 0, .external_lex_state = 8}, - [7918] = {.lex_state = 31, .external_lex_state = 8}, - [7919] = {.lex_state = 0, .external_lex_state = 8}, + [7918] = {.lex_state = 0, .external_lex_state = 8}, + [7919] = {.lex_state = 7, .external_lex_state = 9}, [7920] = {.lex_state = 0, .external_lex_state = 8}, [7921] = {.lex_state = 0, .external_lex_state = 8}, [7922] = {.lex_state = 0, .external_lex_state = 8}, - [7923] = {.lex_state = 0, .external_lex_state = 8}, - [7924] = {.lex_state = 7, .external_lex_state = 8}, - [7925] = {.lex_state = 7, .external_lex_state = 9}, + [7923] = {.lex_state = 31, .external_lex_state = 8}, + [7924] = {.lex_state = 0, .external_lex_state = 8}, + [7925] = {.lex_state = 0, .external_lex_state = 8}, [7926] = {.lex_state = 0, .external_lex_state = 8}, - [7927] = {.lex_state = 7, .external_lex_state = 8}, + [7927] = {.lex_state = 0, .external_lex_state = 8}, [7928] = {.lex_state = 0, .external_lex_state = 8}, [7929] = {.lex_state = 0, .external_lex_state = 8}, [7930] = {.lex_state = 0, .external_lex_state = 8}, - [7931] = {.lex_state = 0, .external_lex_state = 8}, - [7932] = {.lex_state = 5, .external_lex_state = 8}, + [7931] = {.lex_state = 7, .external_lex_state = 8}, + [7932] = {.lex_state = 7, .external_lex_state = 9}, [7933] = {.lex_state = 0, .external_lex_state = 8}, - [7934] = {.lex_state = 7, .external_lex_state = 9}, + [7934] = {.lex_state = 7, .external_lex_state = 8}, [7935] = {.lex_state = 0, .external_lex_state = 8}, - [7936] = {.lex_state = 0, .external_lex_state = 8}, + [7936] = {.lex_state = 7, .external_lex_state = 8}, [7937] = {.lex_state = 7, .external_lex_state = 9}, - [7938] = {.lex_state = 7, .external_lex_state = 8}, - [7939] = {.lex_state = 7, .external_lex_state = 8}, - [7940] = {.lex_state = 0, .external_lex_state = 10}, - [7941] = {.lex_state = 0, .external_lex_state = 10}, + [7938] = {.lex_state = 0, .external_lex_state = 8}, + [7939] = {.lex_state = 7, .external_lex_state = 9}, + [7940] = {.lex_state = 7, .external_lex_state = 8}, + [7941] = {.lex_state = 0, .external_lex_state = 9}, [7942] = {.lex_state = 7, .external_lex_state = 9}, [7943] = {.lex_state = 0, .external_lex_state = 9}, - [7944] = {.lex_state = 7, .external_lex_state = 8}, - [7945] = {.lex_state = 0, .external_lex_state = 9}, - [7946] = {.lex_state = 7, .external_lex_state = 8}, + [7944] = {.lex_state = 0, .external_lex_state = 10}, + [7945] = {.lex_state = 7, .external_lex_state = 9}, + [7946] = {.lex_state = 7, .external_lex_state = 9}, [7947] = {.lex_state = 0, .external_lex_state = 10}, - [7948] = {.lex_state = 0, .external_lex_state = 8}, - [7949] = {.lex_state = 7, .external_lex_state = 9}, + [7948] = {.lex_state = 7, .external_lex_state = 8}, + [7949] = {.lex_state = 0, .external_lex_state = 10}, [7950] = {.lex_state = 7, .external_lex_state = 9}, - [7951] = {.lex_state = 7, .external_lex_state = 9}, - [7952] = {.lex_state = 0, .external_lex_state = 10}, - [7953] = {.lex_state = 0, .external_lex_state = 10}, - [7954] = {.lex_state = 7, .external_lex_state = 8}, + [7951] = {.lex_state = 7, .external_lex_state = 8}, + [7952] = {.lex_state = 7, .external_lex_state = 8}, + [7953] = {.lex_state = 0, .external_lex_state = 9}, + [7954] = {.lex_state = 0, .external_lex_state = 10}, [7955] = {.lex_state = 7, .external_lex_state = 9}, - [7956] = {.lex_state = 7, .external_lex_state = 8}, - [7957] = {.lex_state = 7, .external_lex_state = 9}, - [7958] = {.lex_state = 0, .external_lex_state = 9}, - [7959] = {.lex_state = 7, .external_lex_state = 8}, - [7960] = {.lex_state = 0, .external_lex_state = 10}, + [7956] = {.lex_state = 7, .external_lex_state = 9}, + [7957] = {.lex_state = 0, .external_lex_state = 10}, + [7958] = {.lex_state = 7, .external_lex_state = 9}, + [7959] = {.lex_state = 0, .external_lex_state = 8}, + [7960] = {.lex_state = 7, .external_lex_state = 9}, [7961] = {.lex_state = 7, .external_lex_state = 9}, - [7962] = {.lex_state = 0, .external_lex_state = 9}, - [7963] = {.lex_state = 0, .external_lex_state = 10}, - [7964] = {.lex_state = 0, .external_lex_state = 10}, + [7962] = {.lex_state = 7, .external_lex_state = 8}, + [7963] = {.lex_state = 0, .external_lex_state = 9}, + [7964] = {.lex_state = 0, .external_lex_state = 9}, [7965] = {.lex_state = 7, .external_lex_state = 8}, [7966] = {.lex_state = 0, .external_lex_state = 9}, [7967] = {.lex_state = 0, .external_lex_state = 9}, [7968] = {.lex_state = 0, .external_lex_state = 10}, - [7969] = {.lex_state = 0, .external_lex_state = 10}, - [7970] = {.lex_state = 0, .external_lex_state = 10}, + [7969] = {.lex_state = 7, .external_lex_state = 9}, + [7970] = {.lex_state = 7, .external_lex_state = 9}, [7971] = {.lex_state = 0, .external_lex_state = 9}, - [7972] = {.lex_state = 7, .external_lex_state = 9}, + [7972] = {.lex_state = 7, .external_lex_state = 8}, [7973] = {.lex_state = 7, .external_lex_state = 9}, - [7974] = {.lex_state = 7, .external_lex_state = 9}, - [7975] = {.lex_state = 0, .external_lex_state = 10}, - [7976] = {.lex_state = 0, .external_lex_state = 9}, - [7977] = {.lex_state = 7, .external_lex_state = 9}, - [7978] = {.lex_state = 7, .external_lex_state = 9}, - [7979] = {.lex_state = 7, .external_lex_state = 9}, - [7980] = {.lex_state = 7, .external_lex_state = 9}, + [7974] = {.lex_state = 0, .external_lex_state = 10}, + [7975] = {.lex_state = 7, .external_lex_state = 8}, + [7976] = {.lex_state = 0, .external_lex_state = 10}, + [7977] = {.lex_state = 0, .external_lex_state = 10}, + [7978] = {.lex_state = 0, .external_lex_state = 10}, + [7979] = {.lex_state = 0, .external_lex_state = 10}, + [7980] = {.lex_state = 0, .external_lex_state = 9}, [7981] = {.lex_state = 7, .external_lex_state = 9}, [7982] = {.lex_state = 7, .external_lex_state = 9}, - [7983] = {.lex_state = 0, .external_lex_state = 9}, + [7983] = {.lex_state = 7, .external_lex_state = 9}, [7984] = {.lex_state = 7, .external_lex_state = 9}, - [7985] = {.lex_state = 7, .external_lex_state = 8}, + [7985] = {.lex_state = 7, .external_lex_state = 9}, [7986] = {.lex_state = 7, .external_lex_state = 9}, - [7987] = {.lex_state = 0, .external_lex_state = 9}, - [7988] = {.lex_state = 7, .external_lex_state = 9}, - [7989] = {.lex_state = 0, .external_lex_state = 10}, - [7990] = {.lex_state = 7, .external_lex_state = 8}, - [7991] = {.lex_state = 0, .external_lex_state = 8}, - [7992] = {.lex_state = 0, .external_lex_state = 8}, + [7987] = {.lex_state = 7, .external_lex_state = 8}, + [7988] = {.lex_state = 0, .external_lex_state = 10}, + [7989] = {.lex_state = 7, .external_lex_state = 9}, + [7990] = {.lex_state = 0, .external_lex_state = 9}, + [7991] = {.lex_state = 0, .external_lex_state = 10}, + [7992] = {.lex_state = 7, .external_lex_state = 9}, [7993] = {.lex_state = 0, .external_lex_state = 8}, - [7994] = {.lex_state = 7, .external_lex_state = 8}, - [7995] = {.lex_state = 0, .external_lex_state = 9}, + [7994] = {.lex_state = 0, .external_lex_state = 8}, + [7995] = {.lex_state = 0, .external_lex_state = 8}, [7996] = {.lex_state = 0, .external_lex_state = 8}, [7997] = {.lex_state = 0, .external_lex_state = 8}, [7998] = {.lex_state = 0, .external_lex_state = 8}, - [7999] = {.lex_state = 0, .external_lex_state = 8}, - [8000] = {.lex_state = 0, .external_lex_state = 8}, + [7999] = {.lex_state = 7, .external_lex_state = 8}, + [8000] = {.lex_state = 7, .external_lex_state = 8}, [8001] = {.lex_state = 0, .external_lex_state = 8}, - [8002] = {.lex_state = 7, .external_lex_state = 8}, + [8002] = {.lex_state = 7, .external_lex_state = 9}, [8003] = {.lex_state = 0, .external_lex_state = 8}, - [8004] = {.lex_state = 7, .external_lex_state = 9}, - [8005] = {.lex_state = 0, .external_lex_state = 8}, - [8006] = {.lex_state = 7, .external_lex_state = 9}, + [8004] = {.lex_state = 0, .external_lex_state = 8}, + [8005] = {.lex_state = 11, .external_lex_state = 8}, + [8006] = {.lex_state = 0, .external_lex_state = 8}, [8007] = {.lex_state = 0, .external_lex_state = 8}, [8008] = {.lex_state = 0, .external_lex_state = 8}, [8009] = {.lex_state = 7, .external_lex_state = 8}, [8010] = {.lex_state = 0, .external_lex_state = 8}, [8011] = {.lex_state = 0, .external_lex_state = 8}, - [8012] = {.lex_state = 7, .external_lex_state = 9}, - [8013] = {.lex_state = 7, .external_lex_state = 8}, - [8014] = {.lex_state = 0, .external_lex_state = 8}, - [8015] = {.lex_state = 0, .external_lex_state = 8}, + [8012] = {.lex_state = 0, .external_lex_state = 8}, + [8013] = {.lex_state = 7, .external_lex_state = 9}, + [8014] = {.lex_state = 7, .external_lex_state = 8}, + [8015] = {.lex_state = 7, .external_lex_state = 8}, [8016] = {.lex_state = 7, .external_lex_state = 8}, - [8017] = {.lex_state = 0, .external_lex_state = 8}, - [8018] = {.lex_state = 7, .external_lex_state = 9}, + [8017] = {.lex_state = 7, .external_lex_state = 8}, + [8018] = {.lex_state = 0, .external_lex_state = 8}, [8019] = {.lex_state = 0, .external_lex_state = 8}, [8020] = {.lex_state = 0, .external_lex_state = 8}, - [8021] = {.lex_state = 7, .external_lex_state = 8}, + [8021] = {.lex_state = 0, .external_lex_state = 8}, [8022] = {.lex_state = 0, .external_lex_state = 8}, [8023] = {.lex_state = 0, .external_lex_state = 8}, - [8024] = {.lex_state = 7, .external_lex_state = 9}, - [8025] = {.lex_state = 7, .external_lex_state = 8}, + [8024] = {.lex_state = 0, .external_lex_state = 8}, + [8025] = {.lex_state = 7, .external_lex_state = 9}, [8026] = {.lex_state = 0, .external_lex_state = 8}, [8027] = {.lex_state = 7, .external_lex_state = 8}, [8028] = {.lex_state = 7, .external_lex_state = 8}, - [8029] = {.lex_state = 0, .external_lex_state = 8}, - [8030] = {.lex_state = 7, .external_lex_state = 9}, - [8031] = {.lex_state = 7, .external_lex_state = 8}, + [8029] = {.lex_state = 7, .external_lex_state = 9}, + [8030] = {.lex_state = 0, .external_lex_state = 8}, + [8031] = {.lex_state = 0, .external_lex_state = 8}, [8032] = {.lex_state = 0, .external_lex_state = 8}, [8033] = {.lex_state = 0, .external_lex_state = 8}, [8034] = {.lex_state = 0, .external_lex_state = 8}, - [8035] = {.lex_state = 7, .external_lex_state = 8}, - [8036] = {.lex_state = 0, .external_lex_state = 8}, - [8037] = {.lex_state = 7, .external_lex_state = 9}, + [8035] = {.lex_state = 0, .external_lex_state = 8}, + [8036] = {.lex_state = 7, .external_lex_state = 9}, + [8037] = {.lex_state = 7, .external_lex_state = 8}, [8038] = {.lex_state = 7, .external_lex_state = 8}, - [8039] = {.lex_state = 7, .external_lex_state = 8}, - [8040] = {.lex_state = 7, .external_lex_state = 9}, - [8041] = {.lex_state = 7, .external_lex_state = 8}, + [8039] = {.lex_state = 0, .external_lex_state = 8}, + [8040] = {.lex_state = 7, .external_lex_state = 8}, + [8041] = {.lex_state = 0, .external_lex_state = 8}, [8042] = {.lex_state = 0, .external_lex_state = 8}, - [8043] = {.lex_state = 7, .external_lex_state = 9}, + [8043] = {.lex_state = 7, .external_lex_state = 8}, [8044] = {.lex_state = 0, .external_lex_state = 8}, - [8045] = {.lex_state = 7, .external_lex_state = 9}, - [8046] = {.lex_state = 7, .external_lex_state = 9}, + [8045] = {.lex_state = 7, .external_lex_state = 8}, + [8046] = {.lex_state = 0, .external_lex_state = 8}, [8047] = {.lex_state = 0, .external_lex_state = 8}, - [8048] = {.lex_state = 0, .external_lex_state = 8}, + [8048] = {.lex_state = 7, .external_lex_state = 8}, [8049] = {.lex_state = 0, .external_lex_state = 8}, [8050] = {.lex_state = 0, .external_lex_state = 8}, - [8051] = {.lex_state = 0, .external_lex_state = 8}, + [8051] = {.lex_state = 7, .external_lex_state = 8}, [8052] = {.lex_state = 0, .external_lex_state = 8}, - [8053] = {.lex_state = 7, .external_lex_state = 9}, + [8053] = {.lex_state = 0, .external_lex_state = 8}, [8054] = {.lex_state = 11, .external_lex_state = 8}, - [8055] = {.lex_state = 7, .external_lex_state = 9}, - [8056] = {.lex_state = 7, .external_lex_state = 9}, - [8057] = {.lex_state = 7, .external_lex_state = 9}, - [8058] = {.lex_state = 7, .external_lex_state = 8}, - [8059] = {.lex_state = 7, .external_lex_state = 8}, - [8060] = {.lex_state = 0, .external_lex_state = 8}, + [8055] = {.lex_state = 0, .external_lex_state = 8}, + [8056] = {.lex_state = 7, .external_lex_state = 8}, + [8057] = {.lex_state = 7, .external_lex_state = 8}, + [8058] = {.lex_state = 7, .external_lex_state = 9}, + [8059] = {.lex_state = 0, .external_lex_state = 9}, + [8060] = {.lex_state = 7, .external_lex_state = 8}, [8061] = {.lex_state = 0, .external_lex_state = 8}, [8062] = {.lex_state = 0, .external_lex_state = 8}, - [8063] = {.lex_state = 0, .external_lex_state = 8}, + [8063] = {.lex_state = 7, .external_lex_state = 8}, [8064] = {.lex_state = 0, .external_lex_state = 8}, - [8065] = {.lex_state = 0, .external_lex_state = 8}, + [8065] = {.lex_state = 0, .external_lex_state = 9}, [8066] = {.lex_state = 0, .external_lex_state = 8}, [8067] = {.lex_state = 7, .external_lex_state = 8}, - [8068] = {.lex_state = 0, .external_lex_state = 8}, - [8069] = {.lex_state = 11, .external_lex_state = 8}, + [8068] = {.lex_state = 7, .external_lex_state = 9}, + [8069] = {.lex_state = 7, .external_lex_state = 8}, [8070] = {.lex_state = 0, .external_lex_state = 8}, [8071] = {.lex_state = 0, .external_lex_state = 8}, - [8072] = {.lex_state = 0, .external_lex_state = 8}, - [8073] = {.lex_state = 0, .external_lex_state = 8}, - [8074] = {.lex_state = 7, .external_lex_state = 8}, + [8072] = {.lex_state = 7, .external_lex_state = 8}, + [8073] = {.lex_state = 7, .external_lex_state = 8}, + [8074] = {.lex_state = 0, .external_lex_state = 8}, [8075] = {.lex_state = 7, .external_lex_state = 8}, [8076] = {.lex_state = 7, .external_lex_state = 8}, - [8077] = {.lex_state = 7, .external_lex_state = 8}, + [8077] = {.lex_state = 0, .external_lex_state = 8}, [8078] = {.lex_state = 0, .external_lex_state = 8}, [8079] = {.lex_state = 0, .external_lex_state = 8}, - [8080] = {.lex_state = 11, .external_lex_state = 8}, + [8080] = {.lex_state = 0, .external_lex_state = 8}, [8081] = {.lex_state = 7, .external_lex_state = 8}, - [8082] = {.lex_state = 7, .external_lex_state = 9}, - [8083] = {.lex_state = 7, .external_lex_state = 9}, - [8084] = {.lex_state = 0, .external_lex_state = 8}, + [8082] = {.lex_state = 0, .external_lex_state = 8}, + [8083] = {.lex_state = 0, .external_lex_state = 8}, + [8084] = {.lex_state = 7, .external_lex_state = 8}, [8085] = {.lex_state = 0, .external_lex_state = 8}, [8086] = {.lex_state = 0, .external_lex_state = 8}, - [8087] = {.lex_state = 7, .external_lex_state = 8}, + [8087] = {.lex_state = 11, .external_lex_state = 8}, [8088] = {.lex_state = 0, .external_lex_state = 8}, [8089] = {.lex_state = 0, .external_lex_state = 8}, - [8090] = {.lex_state = 7, .external_lex_state = 8}, - [8091] = {.lex_state = 7, .external_lex_state = 8}, + [8090] = {.lex_state = 0, .external_lex_state = 8}, + [8091] = {.lex_state = 0, .external_lex_state = 8}, [8092] = {.lex_state = 0, .external_lex_state = 8}, [8093] = {.lex_state = 0, .external_lex_state = 8}, [8094] = {.lex_state = 0, .external_lex_state = 8}, [8095] = {.lex_state = 0, .external_lex_state = 8}, [8096] = {.lex_state = 0, .external_lex_state = 8}, - [8097] = {.lex_state = 7, .external_lex_state = 8}, - [8098] = {.lex_state = 0, .external_lex_state = 8}, - [8099] = {.lex_state = 7, .external_lex_state = 8}, - [8100] = {.lex_state = 7, .external_lex_state = 8}, - [8101] = {.lex_state = 0, .external_lex_state = 8}, - [8102] = {.lex_state = 0, .external_lex_state = 8}, + [8097] = {.lex_state = 0, .external_lex_state = 8}, + [8098] = {.lex_state = 7, .external_lex_state = 8}, + [8099] = {.lex_state = 0, .external_lex_state = 8}, + [8100] = {.lex_state = 0, .external_lex_state = 8}, + [8101] = {.lex_state = 7, .external_lex_state = 8}, + [8102] = {.lex_state = 7, .external_lex_state = 8}, [8103] = {.lex_state = 0, .external_lex_state = 8}, - [8104] = {.lex_state = 0, .external_lex_state = 8}, - [8105] = {.lex_state = 7, .external_lex_state = 8}, - [8106] = {.lex_state = 7, .external_lex_state = 8}, - [8107] = {.lex_state = 7, .external_lex_state = 8}, + [8104] = {.lex_state = 7, .external_lex_state = 8}, + [8105] = {.lex_state = 11, .external_lex_state = 8}, + [8106] = {.lex_state = 0, .external_lex_state = 8}, + [8107] = {.lex_state = 7, .external_lex_state = 9}, [8108] = {.lex_state = 0, .external_lex_state = 8}, [8109] = {.lex_state = 0, .external_lex_state = 8}, - [8110] = {.lex_state = 7, .external_lex_state = 8}, + [8110] = {.lex_state = 0, .external_lex_state = 8}, [8111] = {.lex_state = 0, .external_lex_state = 8}, - [8112] = {.lex_state = 7, .external_lex_state = 8}, + [8112] = {.lex_state = 0, .external_lex_state = 8}, [8113] = {.lex_state = 0, .external_lex_state = 8}, [8114] = {.lex_state = 7, .external_lex_state = 9}, [8115] = {.lex_state = 7, .external_lex_state = 8}, [8116] = {.lex_state = 0, .external_lex_state = 8}, [8117] = {.lex_state = 7, .external_lex_state = 8}, - [8118] = {.lex_state = 11, .external_lex_state = 8}, + [8118] = {.lex_state = 7, .external_lex_state = 9}, [8119] = {.lex_state = 0, .external_lex_state = 8}, - [8120] = {.lex_state = 0, .external_lex_state = 8}, - [8121] = {.lex_state = 0, .external_lex_state = 8}, - [8122] = {.lex_state = 0, .external_lex_state = 9}, - [8123] = {.lex_state = 0, .external_lex_state = 8}, + [8120] = {.lex_state = 11, .external_lex_state = 8}, + [8121] = {.lex_state = 7, .external_lex_state = 8}, + [8122] = {.lex_state = 0, .external_lex_state = 8}, + [8123] = {.lex_state = 7, .external_lex_state = 8}, [8124] = {.lex_state = 0, .external_lex_state = 8}, [8125] = {.lex_state = 0, .external_lex_state = 8}, [8126] = {.lex_state = 0, .external_lex_state = 8}, @@ -22348,123 +22358,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8131] = {.lex_state = 0, .external_lex_state = 8}, [8132] = {.lex_state = 0, .external_lex_state = 8}, [8133] = {.lex_state = 0, .external_lex_state = 8}, - [8134] = {.lex_state = 0, .external_lex_state = 8}, - [8135] = {.lex_state = 0, .external_lex_state = 8}, - [8136] = {.lex_state = 0, .external_lex_state = 8}, + [8134] = {.lex_state = 7, .external_lex_state = 9}, + [8135] = {.lex_state = 7, .external_lex_state = 8}, + [8136] = {.lex_state = 7, .external_lex_state = 9}, [8137] = {.lex_state = 0, .external_lex_state = 8}, [8138] = {.lex_state = 0, .external_lex_state = 8}, [8139] = {.lex_state = 0, .external_lex_state = 8}, [8140] = {.lex_state = 0, .external_lex_state = 8}, - [8141] = {.lex_state = 0, .external_lex_state = 8}, - [8142] = {.lex_state = 7, .external_lex_state = 8}, - [8143] = {.lex_state = 11, .external_lex_state = 8}, + [8141] = {.lex_state = 7, .external_lex_state = 9}, + [8142] = {.lex_state = 7, .external_lex_state = 9}, + [8143] = {.lex_state = 0, .external_lex_state = 8}, [8144] = {.lex_state = 0, .external_lex_state = 8}, - [8145] = {.lex_state = 0, .external_lex_state = 8}, - [8146] = {.lex_state = 0, .external_lex_state = 8}, + [8145] = {.lex_state = 7, .external_lex_state = 9}, + [8146] = {.lex_state = 7, .external_lex_state = 9}, [8147] = {.lex_state = 0, .external_lex_state = 8}, [8148] = {.lex_state = 0, .external_lex_state = 8}, - [8149] = {.lex_state = 7, .external_lex_state = 8}, - [8150] = {.lex_state = 0, .external_lex_state = 8}, + [8149] = {.lex_state = 0, .external_lex_state = 8}, + [8150] = {.lex_state = 7, .external_lex_state = 9}, [8151] = {.lex_state = 0, .external_lex_state = 8}, [8152] = {.lex_state = 0, .external_lex_state = 8}, - [8153] = {.lex_state = 11, .external_lex_state = 8}, + [8153] = {.lex_state = 0, .external_lex_state = 8}, [8154] = {.lex_state = 0, .external_lex_state = 8}, [8155] = {.lex_state = 0, .external_lex_state = 8}, [8156] = {.lex_state = 0, .external_lex_state = 8}, [8157] = {.lex_state = 0, .external_lex_state = 8}, - [8158] = {.lex_state = 7, .external_lex_state = 8}, + [8158] = {.lex_state = 0, .external_lex_state = 8}, [8159] = {.lex_state = 0, .external_lex_state = 8}, [8160] = {.lex_state = 0, .external_lex_state = 8}, [8161] = {.lex_state = 0, .external_lex_state = 8}, [8162] = {.lex_state = 0, .external_lex_state = 8}, - [8163] = {.lex_state = 0, .external_lex_state = 8}, + [8163] = {.lex_state = 7, .external_lex_state = 9}, [8164] = {.lex_state = 0, .external_lex_state = 8}, [8165] = {.lex_state = 0, .external_lex_state = 8}, - [8166] = {.lex_state = 0, .external_lex_state = 8}, - [8167] = {.lex_state = 0, .external_lex_state = 8}, - [8168] = {.lex_state = 0, .external_lex_state = 8}, + [8166] = {.lex_state = 7, .external_lex_state = 8}, + [8167] = {.lex_state = 11, .external_lex_state = 8}, + [8168] = {.lex_state = 7, .external_lex_state = 8}, [8169] = {.lex_state = 0, .external_lex_state = 8}, - [8170] = {.lex_state = 0, .external_lex_state = 8}, - [8171] = {.lex_state = 0, .external_lex_state = 8}, + [8170] = {.lex_state = 0, .external_lex_state = 9}, + [8171] = {.lex_state = 0, .external_lex_state = 9}, [8172] = {.lex_state = 0, .external_lex_state = 8}, [8173] = {.lex_state = 0, .external_lex_state = 8}, [8174] = {.lex_state = 0, .external_lex_state = 8}, [8175] = {.lex_state = 0, .external_lex_state = 8}, - [8176] = {.lex_state = 0, .external_lex_state = 8}, + [8176] = {.lex_state = 0, .external_lex_state = 9}, [8177] = {.lex_state = 0, .external_lex_state = 8}, [8178] = {.lex_state = 0, .external_lex_state = 8}, [8179] = {.lex_state = 0, .external_lex_state = 8}, - [8180] = {.lex_state = 0, .external_lex_state = 9}, - [8181] = {.lex_state = 0, .external_lex_state = 8}, - [8182] = {.lex_state = 0, .external_lex_state = 8}, + [8180] = {.lex_state = 0, .external_lex_state = 8}, + [8181] = {.lex_state = 7, .external_lex_state = 8}, + [8182] = {.lex_state = 7, .external_lex_state = 8}, [8183] = {.lex_state = 0, .external_lex_state = 8}, - [8184] = {.lex_state = 0, .external_lex_state = 8}, + [8184] = {.lex_state = 7, .external_lex_state = 8}, [8185] = {.lex_state = 0, .external_lex_state = 8}, - [8186] = {.lex_state = 0, .external_lex_state = 9}, - [8187] = {.lex_state = 7, .external_lex_state = 8}, - [8188] = {.lex_state = 0, .external_lex_state = 8}, - [8189] = {.lex_state = 0, .external_lex_state = 8}, + [8186] = {.lex_state = 0, .external_lex_state = 10}, + [8187] = {.lex_state = 0, .external_lex_state = 9}, + [8188] = {.lex_state = 0, .external_lex_state = 10}, + [8189] = {.lex_state = 7, .external_lex_state = 8}, [8190] = {.lex_state = 0, .external_lex_state = 8}, - [8191] = {.lex_state = 0, .external_lex_state = 8}, - [8192] = {.lex_state = 0, .external_lex_state = 9}, - [8193] = {.lex_state = 0, .external_lex_state = 8}, - [8194] = {.lex_state = 0, .external_lex_state = 8}, + [8191] = {.lex_state = 7, .external_lex_state = 8}, + [8192] = {.lex_state = 0, .external_lex_state = 8}, + [8193] = {.lex_state = 0, .external_lex_state = 9}, + [8194] = {.lex_state = 0, .external_lex_state = 9}, [8195] = {.lex_state = 0, .external_lex_state = 8}, [8196] = {.lex_state = 0, .external_lex_state = 8}, [8197] = {.lex_state = 0, .external_lex_state = 8}, - [8198] = {.lex_state = 0, .external_lex_state = 8}, + [8198] = {.lex_state = 7, .external_lex_state = 8}, [8199] = {.lex_state = 0, .external_lex_state = 8}, [8200] = {.lex_state = 0, .external_lex_state = 8}, [8201] = {.lex_state = 0, .external_lex_state = 8}, [8202] = {.lex_state = 0, .external_lex_state = 8}, - [8203] = {.lex_state = 0, .external_lex_state = 8}, - [8204] = {.lex_state = 0, .external_lex_state = 10}, + [8203] = {.lex_state = 7, .external_lex_state = 8}, + [8204] = {.lex_state = 0, .external_lex_state = 8}, [8205] = {.lex_state = 0, .external_lex_state = 8}, - [8206] = {.lex_state = 0, .external_lex_state = 8}, - [8207] = {.lex_state = 0, .external_lex_state = 8}, + [8206] = {.lex_state = 7, .external_lex_state = 8}, + [8207] = {.lex_state = 0, .external_lex_state = 9}, [8208] = {.lex_state = 0, .external_lex_state = 8}, [8209] = {.lex_state = 0, .external_lex_state = 8}, - [8210] = {.lex_state = 0, .external_lex_state = 8}, + [8210] = {.lex_state = 0, .external_lex_state = 9}, [8211] = {.lex_state = 0, .external_lex_state = 8}, [8212] = {.lex_state = 0, .external_lex_state = 8}, [8213] = {.lex_state = 0, .external_lex_state = 8}, - [8214] = {.lex_state = 0, .external_lex_state = 8}, - [8215] = {.lex_state = 7, .external_lex_state = 11}, + [8214] = {.lex_state = 7, .external_lex_state = 9}, + [8215] = {.lex_state = 0, .external_lex_state = 8}, [8216] = {.lex_state = 0, .external_lex_state = 8}, [8217] = {.lex_state = 0, .external_lex_state = 8}, [8218] = {.lex_state = 0, .external_lex_state = 8}, [8219] = {.lex_state = 0, .external_lex_state = 8}, [8220] = {.lex_state = 0, .external_lex_state = 8}, - [8221] = {.lex_state = 7, .external_lex_state = 8}, - [8222] = {.lex_state = 0, .external_lex_state = 9}, + [8221] = {.lex_state = 0, .external_lex_state = 8}, + [8222] = {.lex_state = 0, .external_lex_state = 8}, [8223] = {.lex_state = 0, .external_lex_state = 8}, - [8224] = {.lex_state = 0, .external_lex_state = 9}, - [8225] = {.lex_state = 0, .external_lex_state = 9}, - [8226] = {.lex_state = 7, .external_lex_state = 8}, - [8227] = {.lex_state = 7, .external_lex_state = 11}, - [8228] = {.lex_state = 0, .external_lex_state = 10}, - [8229] = {.lex_state = 0, .external_lex_state = 8}, - [8230] = {.lex_state = 7, .external_lex_state = 8}, - [8231] = {.lex_state = 7, .external_lex_state = 8}, + [8224] = {.lex_state = 7, .external_lex_state = 11}, + [8225] = {.lex_state = 0, .external_lex_state = 8}, + [8226] = {.lex_state = 0, .external_lex_state = 9}, + [8227] = {.lex_state = 0, .external_lex_state = 9}, + [8228] = {.lex_state = 0, .external_lex_state = 8}, + [8229] = {.lex_state = 0, .external_lex_state = 9}, + [8230] = {.lex_state = 0, .external_lex_state = 9}, + [8231] = {.lex_state = 0, .external_lex_state = 8}, [8232] = {.lex_state = 0, .external_lex_state = 8}, - [8233] = {.lex_state = 0, .external_lex_state = 8}, - [8234] = {.lex_state = 0, .external_lex_state = 8}, + [8233] = {.lex_state = 0, .external_lex_state = 9}, + [8234] = {.lex_state = 0, .external_lex_state = 9}, [8235] = {.lex_state = 0, .external_lex_state = 8}, - [8236] = {.lex_state = 0, .external_lex_state = 8}, - [8237] = {.lex_state = 0, .external_lex_state = 8}, - [8238] = {.lex_state = 7, .external_lex_state = 8}, - [8239] = {.lex_state = 7, .external_lex_state = 8}, + [8236] = {.lex_state = 0, .external_lex_state = 9}, + [8237] = {.lex_state = 7, .external_lex_state = 8}, + [8238] = {.lex_state = 0, .external_lex_state = 8}, + [8239] = {.lex_state = 0, .external_lex_state = 8}, [8240] = {.lex_state = 0, .external_lex_state = 8}, - [8241] = {.lex_state = 7, .external_lex_state = 8}, - [8242] = {.lex_state = 7, .external_lex_state = 8}, - [8243] = {.lex_state = 0, .external_lex_state = 9}, + [8241] = {.lex_state = 0, .external_lex_state = 8}, + [8242] = {.lex_state = 0, .external_lex_state = 8}, + [8243] = {.lex_state = 0, .external_lex_state = 8}, [8244] = {.lex_state = 0, .external_lex_state = 8}, - [8245] = {.lex_state = 0, .external_lex_state = 8}, + [8245] = {.lex_state = 7, .external_lex_state = 8}, [8246] = {.lex_state = 0, .external_lex_state = 8}, - [8247] = {.lex_state = 7, .external_lex_state = 9}, + [8247] = {.lex_state = 0, .external_lex_state = 8}, [8248] = {.lex_state = 0, .external_lex_state = 8}, - [8249] = {.lex_state = 7, .external_lex_state = 8}, - [8250] = {.lex_state = 0, .external_lex_state = 8}, + [8249] = {.lex_state = 0, .external_lex_state = 8}, + [8250] = {.lex_state = 7, .external_lex_state = 8}, [8251] = {.lex_state = 0, .external_lex_state = 8}, [8252] = {.lex_state = 0, .external_lex_state = 8}, [8253] = {.lex_state = 0, .external_lex_state = 8}, @@ -22472,131 +22482,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8255] = {.lex_state = 0, .external_lex_state = 8}, [8256] = {.lex_state = 0, .external_lex_state = 8}, [8257] = {.lex_state = 0, .external_lex_state = 8}, - [8258] = {.lex_state = 7, .external_lex_state = 8}, + [8258] = {.lex_state = 0, .external_lex_state = 8}, [8259] = {.lex_state = 0, .external_lex_state = 8}, [8260] = {.lex_state = 0, .external_lex_state = 8}, - [8261] = {.lex_state = 0, .external_lex_state = 9}, - [8262] = {.lex_state = 0, .external_lex_state = 8}, + [8261] = {.lex_state = 0, .external_lex_state = 8}, + [8262] = {.lex_state = 7, .external_lex_state = 8}, [8263] = {.lex_state = 0, .external_lex_state = 8}, [8264] = {.lex_state = 0, .external_lex_state = 8}, - [8265] = {.lex_state = 0, .external_lex_state = 9}, - [8266] = {.lex_state = 0, .external_lex_state = 9}, + [8265] = {.lex_state = 0, .external_lex_state = 8}, + [8266] = {.lex_state = 0, .external_lex_state = 8}, [8267] = {.lex_state = 0, .external_lex_state = 8}, - [8268] = {.lex_state = 7, .external_lex_state = 8}, + [8268] = {.lex_state = 0, .external_lex_state = 8}, [8269] = {.lex_state = 0, .external_lex_state = 8}, [8270] = {.lex_state = 0, .external_lex_state = 8}, [8271] = {.lex_state = 0, .external_lex_state = 8}, [8272] = {.lex_state = 0, .external_lex_state = 8}, - [8273] = {.lex_state = 7, .external_lex_state = 8}, + [8273] = {.lex_state = 0, .external_lex_state = 8}, [8274] = {.lex_state = 0, .external_lex_state = 8}, - [8275] = {.lex_state = 0, .external_lex_state = 10}, - [8276] = {.lex_state = 0, .external_lex_state = 9}, - [8277] = {.lex_state = 0, .external_lex_state = 9}, - [8278] = {.lex_state = 0, .external_lex_state = 9}, - [8279] = {.lex_state = 0, .external_lex_state = 9}, + [8275] = {.lex_state = 0, .external_lex_state = 8}, + [8276] = {.lex_state = 0, .external_lex_state = 8}, + [8277] = {.lex_state = 0, .external_lex_state = 8}, + [8278] = {.lex_state = 0, .external_lex_state = 8}, + [8279] = {.lex_state = 0, .external_lex_state = 8}, [8280] = {.lex_state = 0, .external_lex_state = 8}, - [8281] = {.lex_state = 7, .external_lex_state = 8}, - [8282] = {.lex_state = 0, .external_lex_state = 9}, + [8281] = {.lex_state = 7, .external_lex_state = 11}, + [8282] = {.lex_state = 0, .external_lex_state = 10}, [8283] = {.lex_state = 0, .external_lex_state = 8}, - [8284] = {.lex_state = 0, .external_lex_state = 9}, - [8285] = {.lex_state = 0, .external_lex_state = 8}, - [8286] = {.lex_state = 0, .external_lex_state = 8}, - [8287] = {.lex_state = 0, .external_lex_state = 8}, + [8284] = {.lex_state = 0, .external_lex_state = 8}, + [8285] = {.lex_state = 0, .external_lex_state = 9}, + [8286] = {.lex_state = 0, .external_lex_state = 9}, + [8287] = {.lex_state = 7, .external_lex_state = 8}, [8288] = {.lex_state = 0, .external_lex_state = 9}, - [8289] = {.lex_state = 0, .external_lex_state = 9}, + [8289] = {.lex_state = 0, .external_lex_state = 8}, [8290] = {.lex_state = 0, .external_lex_state = 8}, [8291] = {.lex_state = 0, .external_lex_state = 8}, [8292] = {.lex_state = 0, .external_lex_state = 8}, [8293] = {.lex_state = 0, .external_lex_state = 8}, [8294] = {.lex_state = 0, .external_lex_state = 8}, - [8295] = {.lex_state = 0, .external_lex_state = 8}, - [8296] = {.lex_state = 0, .external_lex_state = 8}, + [8295] = {.lex_state = 0, .external_lex_state = 9}, + [8296] = {.lex_state = 0, .external_lex_state = 9}, [8297] = {.lex_state = 0, .external_lex_state = 8}, [8298] = {.lex_state = 0, .external_lex_state = 8}, - [8299] = {.lex_state = 0, .external_lex_state = 9}, + [8299] = {.lex_state = 0, .external_lex_state = 8}, [8300] = {.lex_state = 7, .external_lex_state = 8}, - [8301] = {.lex_state = 0, .external_lex_state = 9}, + [8301] = {.lex_state = 0, .external_lex_state = 8}, [8302] = {.lex_state = 0, .external_lex_state = 9}, [8303] = {.lex_state = 0, .external_lex_state = 8}, - [8304] = {.lex_state = 0, .external_lex_state = 9}, + [8304] = {.lex_state = 0, .external_lex_state = 8}, [8305] = {.lex_state = 0, .external_lex_state = 9}, - [8306] = {.lex_state = 7, .external_lex_state = 8}, + [8306] = {.lex_state = 0, .external_lex_state = 8}, [8307] = {.lex_state = 0, .external_lex_state = 8}, - [8308] = {.lex_state = 0, .external_lex_state = 9}, + [8308] = {.lex_state = 0, .external_lex_state = 8}, [8309] = {.lex_state = 0, .external_lex_state = 8}, [8310] = {.lex_state = 0, .external_lex_state = 8}, [8311] = {.lex_state = 0, .external_lex_state = 8}, - [8312] = {.lex_state = 0, .external_lex_state = 8}, + [8312] = {.lex_state = 7, .external_lex_state = 8}, [8313] = {.lex_state = 0, .external_lex_state = 8}, [8314] = {.lex_state = 0, .external_lex_state = 9}, [8315] = {.lex_state = 0, .external_lex_state = 9}, - [8316] = {.lex_state = 0, .external_lex_state = 8}, - [8317] = {.lex_state = 0, .external_lex_state = 9}, + [8316] = {.lex_state = 7, .external_lex_state = 8}, + [8317] = {.lex_state = 0, .external_lex_state = 8}, [8318] = {.lex_state = 0, .external_lex_state = 9}, - [8319] = {.lex_state = 0, .external_lex_state = 8}, + [8319] = {.lex_state = 0, .external_lex_state = 9}, [8320] = {.lex_state = 0, .external_lex_state = 8}, [8321] = {.lex_state = 0, .external_lex_state = 8}, [8322] = {.lex_state = 0, .external_lex_state = 8}, - [8323] = {.lex_state = 0, .external_lex_state = 8}, + [8323] = {.lex_state = 0, .external_lex_state = 9}, [8324] = {.lex_state = 0, .external_lex_state = 9}, - [8325] = {.lex_state = 0, .external_lex_state = 9}, - [8326] = {.lex_state = 0, .external_lex_state = 8}, + [8325] = {.lex_state = 0, .external_lex_state = 8}, + [8326] = {.lex_state = 0, .external_lex_state = 9}, [8327] = {.lex_state = 0, .external_lex_state = 8}, [8328] = {.lex_state = 0, .external_lex_state = 8}, [8329] = {.lex_state = 0, .external_lex_state = 8}, [8330] = {.lex_state = 0, .external_lex_state = 8}, - [8331] = {.lex_state = 0, .external_lex_state = 8}, - [8332] = {.lex_state = 7, .external_lex_state = 8}, - [8333] = {.lex_state = 31, .external_lex_state = 8}, - [8334] = {.lex_state = 0, .external_lex_state = 8}, - [8335] = {.lex_state = 31, .external_lex_state = 8}, + [8331] = {.lex_state = 0, .external_lex_state = 9}, + [8332] = {.lex_state = 0, .external_lex_state = 8}, + [8333] = {.lex_state = 7, .external_lex_state = 8}, + [8334] = {.lex_state = 7, .external_lex_state = 8}, + [8335] = {.lex_state = 7, .external_lex_state = 8}, [8336] = {.lex_state = 0, .external_lex_state = 8}, [8337] = {.lex_state = 0, .external_lex_state = 8}, [8338] = {.lex_state = 0, .external_lex_state = 8}, [8339] = {.lex_state = 0, .external_lex_state = 8}, [8340] = {.lex_state = 0, .external_lex_state = 8}, [8341] = {.lex_state = 0, .external_lex_state = 8}, - [8342] = {.lex_state = 0, .external_lex_state = 9}, - [8343] = {.lex_state = 0, .external_lex_state = 9}, - [8344] = {.lex_state = 0, .external_lex_state = 9}, - [8345] = {.lex_state = 0, .external_lex_state = 8}, - [8346] = {.lex_state = 31, .external_lex_state = 8}, + [8342] = {.lex_state = 0, .external_lex_state = 8}, + [8343] = {.lex_state = 31, .external_lex_state = 8}, + [8344] = {.lex_state = 7, .external_lex_state = 8}, + [8345] = {.lex_state = 31, .external_lex_state = 8}, + [8346] = {.lex_state = 0, .external_lex_state = 9}, [8347] = {.lex_state = 7, .external_lex_state = 8}, [8348] = {.lex_state = 0, .external_lex_state = 9}, - [8349] = {.lex_state = 0, .external_lex_state = 9}, + [8349] = {.lex_state = 0, .external_lex_state = 8}, [8350] = {.lex_state = 0, .external_lex_state = 8}, [8351] = {.lex_state = 0, .external_lex_state = 8}, [8352] = {.lex_state = 0, .external_lex_state = 8}, - [8353] = {.lex_state = 31, .external_lex_state = 8}, + [8353] = {.lex_state = 7, .external_lex_state = 8}, [8354] = {.lex_state = 0, .external_lex_state = 8}, - [8355] = {.lex_state = 0, .external_lex_state = 8}, + [8355] = {.lex_state = 7, .external_lex_state = 8}, [8356] = {.lex_state = 0, .external_lex_state = 8}, [8357] = {.lex_state = 0, .external_lex_state = 8}, [8358] = {.lex_state = 0, .external_lex_state = 8}, [8359] = {.lex_state = 0, .external_lex_state = 8}, [8360] = {.lex_state = 0, .external_lex_state = 8}, [8361] = {.lex_state = 31, .external_lex_state = 8}, - [8362] = {.lex_state = 0, .external_lex_state = 8}, + [8362] = {.lex_state = 31, .external_lex_state = 8}, [8363] = {.lex_state = 0, .external_lex_state = 8}, [8364] = {.lex_state = 31, .external_lex_state = 8}, - [8365] = {.lex_state = 7, .external_lex_state = 8}, + [8365] = {.lex_state = 31, .external_lex_state = 8}, [8366] = {.lex_state = 0, .external_lex_state = 8}, - [8367] = {.lex_state = 7, .external_lex_state = 8}, - [8368] = {.lex_state = 0, .external_lex_state = 8}, - [8369] = {.lex_state = 0, .external_lex_state = 8}, - [8370] = {.lex_state = 0, .external_lex_state = 8}, - [8371] = {.lex_state = 31, .external_lex_state = 8}, - [8372] = {.lex_state = 0, .external_lex_state = 8}, - [8373] = {.lex_state = 7, .external_lex_state = 8}, - [8374] = {.lex_state = 0, .external_lex_state = 8}, - [8375] = {.lex_state = 7, .external_lex_state = 8}, - [8376] = {.lex_state = 0, .external_lex_state = 9}, - [8377] = {.lex_state = 7, .external_lex_state = 8}, - [8378] = {.lex_state = 7, .external_lex_state = 8}, + [8367] = {.lex_state = 0, .external_lex_state = 8}, + [8368] = {.lex_state = 31, .external_lex_state = 8}, + [8369] = {.lex_state = 7, .external_lex_state = 8}, + [8370] = {.lex_state = 0, .external_lex_state = 9}, + [8371] = {.lex_state = 7, .external_lex_state = 8}, + [8372] = {.lex_state = 31, .external_lex_state = 8}, + [8373] = {.lex_state = 0, .external_lex_state = 8}, + [8374] = {.lex_state = 7, .external_lex_state = 8}, + [8375] = {.lex_state = 31, .external_lex_state = 8}, + [8376] = {.lex_state = 0, .external_lex_state = 8}, + [8377] = {.lex_state = 0, .external_lex_state = 8}, + [8378] = {.lex_state = 0, .external_lex_state = 8}, [8379] = {.lex_state = 0, .external_lex_state = 8}, - [8380] = {.lex_state = 7, .external_lex_state = 8}, + [8380] = {.lex_state = 0, .external_lex_state = 8}, [8381] = {.lex_state = 0, .external_lex_state = 8}, - [8382] = {.lex_state = 0, .external_lex_state = 8}, + [8382] = {.lex_state = 31, .external_lex_state = 8}, [8383] = {.lex_state = 0, .external_lex_state = 8}, [8384] = {.lex_state = 0, .external_lex_state = 8}, [8385] = {.lex_state = 0, .external_lex_state = 8}, @@ -22605,211 +22615,211 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8388] = {.lex_state = 0, .external_lex_state = 8}, [8389] = {.lex_state = 0, .external_lex_state = 8}, [8390] = {.lex_state = 7, .external_lex_state = 8}, - [8391] = {.lex_state = 0, .external_lex_state = 8}, - [8392] = {.lex_state = 7, .external_lex_state = 8}, + [8391] = {.lex_state = 7, .external_lex_state = 8}, + [8392] = {.lex_state = 31, .external_lex_state = 8}, [8393] = {.lex_state = 0, .external_lex_state = 8}, - [8394] = {.lex_state = 0, .external_lex_state = 9}, + [8394] = {.lex_state = 7, .external_lex_state = 8}, [8395] = {.lex_state = 0, .external_lex_state = 8}, [8396] = {.lex_state = 7, .external_lex_state = 8}, - [8397] = {.lex_state = 31, .external_lex_state = 8}, - [8398] = {.lex_state = 31, .external_lex_state = 8}, - [8399] = {.lex_state = 31, .external_lex_state = 8}, - [8400] = {.lex_state = 0, .external_lex_state = 8}, - [8401] = {.lex_state = 7, .external_lex_state = 8}, + [8397] = {.lex_state = 0, .external_lex_state = 8}, + [8398] = {.lex_state = 0, .external_lex_state = 8}, + [8399] = {.lex_state = 7, .external_lex_state = 8}, + [8400] = {.lex_state = 31, .external_lex_state = 8}, + [8401] = {.lex_state = 31, .external_lex_state = 8}, [8402] = {.lex_state = 0, .external_lex_state = 8}, [8403] = {.lex_state = 0, .external_lex_state = 8}, - [8404] = {.lex_state = 7, .external_lex_state = 8}, + [8404] = {.lex_state = 0, .external_lex_state = 8}, [8405] = {.lex_state = 0, .external_lex_state = 8}, [8406] = {.lex_state = 7, .external_lex_state = 8}, - [8407] = {.lex_state = 31, .external_lex_state = 8}, - [8408] = {.lex_state = 31, .external_lex_state = 8}, - [8409] = {.lex_state = 0, .external_lex_state = 8}, - [8410] = {.lex_state = 7, .external_lex_state = 8}, - [8411] = {.lex_state = 7, .external_lex_state = 8}, - [8412] = {.lex_state = 7, .external_lex_state = 8}, - [8413] = {.lex_state = 0, .external_lex_state = 8}, - [8414] = {.lex_state = 7, .external_lex_state = 8}, + [8407] = {.lex_state = 0, .external_lex_state = 8}, + [8408] = {.lex_state = 7, .external_lex_state = 8}, + [8409] = {.lex_state = 7, .external_lex_state = 8}, + [8410] = {.lex_state = 31, .external_lex_state = 8}, + [8411] = {.lex_state = 0, .external_lex_state = 8}, + [8412] = {.lex_state = 0, .external_lex_state = 9}, + [8413] = {.lex_state = 0, .external_lex_state = 9}, + [8414] = {.lex_state = 0, .external_lex_state = 9}, [8415] = {.lex_state = 0, .external_lex_state = 8}, - [8416] = {.lex_state = 31, .external_lex_state = 8}, - [8417] = {.lex_state = 7, .external_lex_state = 8}, + [8416] = {.lex_state = 7, .external_lex_state = 8}, + [8417] = {.lex_state = 31, .external_lex_state = 8}, [8418] = {.lex_state = 0, .external_lex_state = 8}, - [8419] = {.lex_state = 31, .external_lex_state = 8}, - [8420] = {.lex_state = 31, .external_lex_state = 8}, + [8419] = {.lex_state = 0, .external_lex_state = 8}, + [8420] = {.lex_state = 0, .external_lex_state = 8}, [8421] = {.lex_state = 0, .external_lex_state = 8}, - [8422] = {.lex_state = 0, .external_lex_state = 8}, + [8422] = {.lex_state = 7, .external_lex_state = 8}, [8423] = {.lex_state = 0, .external_lex_state = 8}, [8424] = {.lex_state = 0, .external_lex_state = 8}, [8425] = {.lex_state = 0, .external_lex_state = 8}, [8426] = {.lex_state = 0, .external_lex_state = 8}, - [8427] = {.lex_state = 31, .external_lex_state = 8}, - [8428] = {.lex_state = 7, .external_lex_state = 8}, + [8427] = {.lex_state = 0, .external_lex_state = 8}, + [8428] = {.lex_state = 0, .external_lex_state = 8}, [8429] = {.lex_state = 0, .external_lex_state = 8}, [8430] = {.lex_state = 0, .external_lex_state = 8}, - [8431] = {.lex_state = 7, .external_lex_state = 8}, + [8431] = {.lex_state = 0, .external_lex_state = 8}, [8432] = {.lex_state = 0, .external_lex_state = 8}, - [8433] = {.lex_state = 7, .external_lex_state = 8}, - [8434] = {.lex_state = 7, .external_lex_state = 8}, + [8433] = {.lex_state = 0, .external_lex_state = 8}, + [8434] = {.lex_state = 0, .external_lex_state = 8}, [8435] = {.lex_state = 0, .external_lex_state = 8}, - [8436] = {.lex_state = 7, .external_lex_state = 8}, - [8437] = {.lex_state = 7, .external_lex_state = 8}, - [8438] = {.lex_state = 31, .external_lex_state = 8}, + [8436] = {.lex_state = 31, .external_lex_state = 8}, + [8437] = {.lex_state = 31, .external_lex_state = 8}, + [8438] = {.lex_state = 7, .external_lex_state = 8}, [8439] = {.lex_state = 7, .external_lex_state = 8}, - [8440] = {.lex_state = 0, .external_lex_state = 8}, - [8441] = {.lex_state = 0, .external_lex_state = 8}, - [8442] = {.lex_state = 0, .external_lex_state = 8}, - [8443] = {.lex_state = 7, .external_lex_state = 8}, - [8444] = {.lex_state = 0, .external_lex_state = 8}, - [8445] = {.lex_state = 7, .external_lex_state = 8}, + [8440] = {.lex_state = 7, .external_lex_state = 8}, + [8441] = {.lex_state = 7, .external_lex_state = 8}, + [8442] = {.lex_state = 31, .external_lex_state = 8}, + [8443] = {.lex_state = 0, .external_lex_state = 8}, + [8444] = {.lex_state = 7, .external_lex_state = 8}, + [8445] = {.lex_state = 0, .external_lex_state = 8}, [8446] = {.lex_state = 0, .external_lex_state = 8}, - [8447] = {.lex_state = 31, .external_lex_state = 8}, + [8447] = {.lex_state = 0, .external_lex_state = 8}, [8448] = {.lex_state = 0, .external_lex_state = 8}, [8449] = {.lex_state = 0, .external_lex_state = 8}, [8450] = {.lex_state = 7, .external_lex_state = 8}, [8451] = {.lex_state = 7, .external_lex_state = 8}, - [8452] = {.lex_state = 7, .external_lex_state = 8}, + [8452] = {.lex_state = 0, .external_lex_state = 8}, [8453] = {.lex_state = 0, .external_lex_state = 8}, - [8454] = {.lex_state = 7, .external_lex_state = 8}, + [8454] = {.lex_state = 0, .external_lex_state = 8}, [8455] = {.lex_state = 0, .external_lex_state = 8}, [8456] = {.lex_state = 0, .external_lex_state = 8}, - [8457] = {.lex_state = 31, .external_lex_state = 8}, - [8458] = {.lex_state = 7, .external_lex_state = 8}, - [8459] = {.lex_state = 0, .external_lex_state = 8}, - [8460] = {.lex_state = 31, .external_lex_state = 8}, + [8457] = {.lex_state = 7, .external_lex_state = 8}, + [8458] = {.lex_state = 0, .external_lex_state = 8}, + [8459] = {.lex_state = 7, .external_lex_state = 8}, + [8460] = {.lex_state = 0, .external_lex_state = 8}, [8461] = {.lex_state = 0, .external_lex_state = 8}, - [8462] = {.lex_state = 0, .external_lex_state = 8}, - [8463] = {.lex_state = 0, .external_lex_state = 8}, - [8464] = {.lex_state = 31, .external_lex_state = 8}, + [8462] = {.lex_state = 7, .external_lex_state = 8}, + [8463] = {.lex_state = 7, .external_lex_state = 8}, + [8464] = {.lex_state = 7, .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}, + [8466] = {.lex_state = 7, .external_lex_state = 8}, + [8467] = {.lex_state = 7, .external_lex_state = 8}, [8468] = {.lex_state = 0, .external_lex_state = 8}, - [8469] = {.lex_state = 31, .external_lex_state = 8}, - [8470] = {.lex_state = 31, .external_lex_state = 8}, - [8471] = {.lex_state = 7, .external_lex_state = 8}, - [8472] = {.lex_state = 0, .external_lex_state = 8}, + [8469] = {.lex_state = 0, .external_lex_state = 9}, + [8470] = {.lex_state = 0, .external_lex_state = 8}, + [8471] = {.lex_state = 31, .external_lex_state = 8}, + [8472] = {.lex_state = 7, .external_lex_state = 8}, [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 = 7, .external_lex_state = 8}, [8476] = {.lex_state = 0, .external_lex_state = 8}, - [8477] = {.lex_state = 7, .external_lex_state = 8}, - [8478] = {.lex_state = 31, .external_lex_state = 8}, - [8479] = {.lex_state = 0, .external_lex_state = 8}, + [8477] = {.lex_state = 0, .external_lex_state = 8}, + [8478] = {.lex_state = 7, .external_lex_state = 8}, + [8479] = {.lex_state = 7, .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 = 7, .external_lex_state = 8}, + [8481] = {.lex_state = 31, .external_lex_state = 8}, + [8482] = {.lex_state = 31, .external_lex_state = 8}, + [8483] = {.lex_state = 0, .external_lex_state = 8}, [8484] = {.lex_state = 7, .external_lex_state = 8}, - [8485] = {.lex_state = 31, .external_lex_state = 8}, + [8485] = {.lex_state = 0, .external_lex_state = 8}, [8486] = {.lex_state = 7, .external_lex_state = 8}, [8487] = {.lex_state = 0, .external_lex_state = 8}, [8488] = {.lex_state = 0, .external_lex_state = 8}, - [8489] = {.lex_state = 7, .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 = 9}, - [8493] = {.lex_state = 7, .external_lex_state = 8}, + [8489] = {.lex_state = 0, .external_lex_state = 8}, + [8490] = {.lex_state = 7, .external_lex_state = 8}, + [8491] = {.lex_state = 7, .external_lex_state = 8}, + [8492] = {.lex_state = 0, .external_lex_state = 8}, + [8493] = {.lex_state = 0, .external_lex_state = 8}, [8494] = {.lex_state = 0, .external_lex_state = 8}, [8495] = {.lex_state = 0, .external_lex_state = 8}, - [8496] = {.lex_state = 0, .external_lex_state = 8}, - [8497] = {.lex_state = 0, .external_lex_state = 8}, + [8496] = {.lex_state = 31, .external_lex_state = 8}, + [8497] = {.lex_state = 0, .external_lex_state = 9}, [8498] = {.lex_state = 0, .external_lex_state = 8}, - [8499] = {.lex_state = 0, .external_lex_state = 8}, + [8499] = {.lex_state = 0, .external_lex_state = 9}, [8500] = {.lex_state = 0, .external_lex_state = 8}, - [8501] = {.lex_state = 0, .external_lex_state = 8}, - [8502] = {.lex_state = 31, .external_lex_state = 8}, + [8501] = {.lex_state = 31, .external_lex_state = 8}, + [8502] = {.lex_state = 7, .external_lex_state = 8}, [8503] = {.lex_state = 0, .external_lex_state = 8}, [8504] = {.lex_state = 0, .external_lex_state = 8}, [8505] = {.lex_state = 0, .external_lex_state = 8}, - [8506] = {.lex_state = 7, .external_lex_state = 8}, + [8506] = {.lex_state = 0, .external_lex_state = 8}, [8507] = {.lex_state = 31, .external_lex_state = 8}, - [8508] = {.lex_state = 31, .external_lex_state = 8}, - [8509] = {.lex_state = 0, .external_lex_state = 9}, - [8510] = {.lex_state = 7, .external_lex_state = 8}, - [8511] = {.lex_state = 0, .external_lex_state = 9}, + [8508] = {.lex_state = 0, .external_lex_state = 8}, + [8509] = {.lex_state = 0, .external_lex_state = 8}, + [8510] = {.lex_state = 31, .external_lex_state = 8}, + [8511] = {.lex_state = 0, .external_lex_state = 8}, [8512] = {.lex_state = 0, .external_lex_state = 8}, [8513] = {.lex_state = 0, .external_lex_state = 8}, [8514] = {.lex_state = 0, .external_lex_state = 8}, - [8515] = {.lex_state = 0, .external_lex_state = 8}, + [8515] = {.lex_state = 31, .external_lex_state = 8}, [8516] = {.lex_state = 0, .external_lex_state = 8}, - [8517] = {.lex_state = 0, .external_lex_state = 8}, - [8518] = {.lex_state = 7, .external_lex_state = 8}, - [8519] = {.lex_state = 0, .external_lex_state = 8}, - [8520] = {.lex_state = 31, .external_lex_state = 8}, - [8521] = {.lex_state = 31, .external_lex_state = 8}, - [8522] = {.lex_state = 31, .external_lex_state = 8}, - [8523] = {.lex_state = 0, .external_lex_state = 8}, - [8524] = {.lex_state = 0, .external_lex_state = 8}, - [8525] = {.lex_state = 7, .external_lex_state = 8}, - [8526] = {.lex_state = 0, .external_lex_state = 8}, + [8517] = {.lex_state = 31, .external_lex_state = 8}, + [8518] = {.lex_state = 0, .external_lex_state = 8}, + [8519] = {.lex_state = 31, .external_lex_state = 8}, + [8520] = {.lex_state = 0, .external_lex_state = 8}, + [8521] = {.lex_state = 7, .external_lex_state = 8}, + [8522] = {.lex_state = 0, .external_lex_state = 8}, + [8523] = {.lex_state = 31, .external_lex_state = 8}, + [8524] = {.lex_state = 31, .external_lex_state = 8}, + [8525] = {.lex_state = 0, .external_lex_state = 8}, + [8526] = {.lex_state = 31, .external_lex_state = 8}, [8527] = {.lex_state = 31, .external_lex_state = 8}, - [8528] = {.lex_state = 31, .external_lex_state = 8}, - [8529] = {.lex_state = 7, .external_lex_state = 8}, - [8530] = {.lex_state = 7, .external_lex_state = 8}, - [8531] = {.lex_state = 0, .external_lex_state = 8}, + [8528] = {.lex_state = 7, .external_lex_state = 8}, + [8529] = {.lex_state = 0, .external_lex_state = 8}, + [8530] = {.lex_state = 0, .external_lex_state = 8}, + [8531] = {.lex_state = 31, .external_lex_state = 8}, [8532] = {.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 = 0, .external_lex_state = 8}, - [8536] = {.lex_state = 0, .external_lex_state = 8}, + [8536] = {.lex_state = 31, .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}, + [8539] = {.lex_state = 0, .external_lex_state = 9}, + [8540] = {.lex_state = 0, .external_lex_state = 9}, [8541] = {.lex_state = 0, .external_lex_state = 8}, - [8542] = {.lex_state = 31, .external_lex_state = 8}, - [8543] = {.lex_state = 0, .external_lex_state = 8}, - [8544] = {.lex_state = 31, .external_lex_state = 8}, + [8542] = {.lex_state = 7, .external_lex_state = 8}, + [8543] = {.lex_state = 31, .external_lex_state = 8}, + [8544] = {.lex_state = 0, .external_lex_state = 8}, [8545] = {.lex_state = 0, .external_lex_state = 8}, [8546] = {.lex_state = 0, .external_lex_state = 8}, - [8547] = {.lex_state = 0, .external_lex_state = 9}, - [8548] = {.lex_state = 0, .external_lex_state = 8}, - [8549] = {.lex_state = 7, .external_lex_state = 8}, + [8547] = {.lex_state = 0, .external_lex_state = 8}, + [8548] = {.lex_state = 7, .external_lex_state = 8}, + [8549] = {.lex_state = 0, .external_lex_state = 8}, [8550] = {.lex_state = 0, .external_lex_state = 8}, - [8551] = {.lex_state = 31, .external_lex_state = 8}, + [8551] = {.lex_state = 0, .external_lex_state = 8}, [8552] = {.lex_state = 31, .external_lex_state = 8}, - [8553] = {.lex_state = 0, .external_lex_state = 8}, + [8553] = {.lex_state = 31, .external_lex_state = 8}, [8554] = {.lex_state = 0, .external_lex_state = 8}, - [8555] = {.lex_state = 31, .external_lex_state = 8}, + [8555] = {.lex_state = 0, .external_lex_state = 8}, [8556] = {.lex_state = 0, .external_lex_state = 8}, - [8557] = {.lex_state = 0, .external_lex_state = 8}, + [8557] = {.lex_state = 31, .external_lex_state = 8}, [8558] = {.lex_state = 0, .external_lex_state = 8}, - [8559] = {.lex_state = 31, .external_lex_state = 8}, + [8559] = {.lex_state = 0, .external_lex_state = 8}, [8560] = {.lex_state = 0, .external_lex_state = 8}, - [8561] = {.lex_state = 31, .external_lex_state = 8}, - [8562] = {.lex_state = 0, .external_lex_state = 8}, - [8563] = {.lex_state = 31, .external_lex_state = 8}, + [8561] = {.lex_state = 0, .external_lex_state = 8}, + [8562] = {.lex_state = 31, .external_lex_state = 8}, + [8563] = {.lex_state = 0, .external_lex_state = 8}, [8564] = {.lex_state = 0, .external_lex_state = 8}, [8565] = {.lex_state = 0, .external_lex_state = 8}, - [8566] = {.lex_state = 31, .external_lex_state = 8}, - [8567] = {.lex_state = 0, .external_lex_state = 8}, - [8568] = {.lex_state = 31, .external_lex_state = 8}, + [8566] = {.lex_state = 7, .external_lex_state = 8}, + [8567] = {.lex_state = 7, .external_lex_state = 8}, + [8568] = {.lex_state = 0, .external_lex_state = 8}, [8569] = {.lex_state = 0, .external_lex_state = 8}, [8570] = {.lex_state = 0, .external_lex_state = 8}, - [8571] = {.lex_state = 7, .external_lex_state = 8}, - [8572] = {.lex_state = 0, .external_lex_state = 8}, - [8573] = {.lex_state = 0, .external_lex_state = 8}, - [8574] = {.lex_state = 0, .external_lex_state = 8}, - [8575] = {.lex_state = 0, .external_lex_state = 8}, - [8576] = {.lex_state = 0, .external_lex_state = 8}, - [8577] = {.lex_state = 7, .external_lex_state = 8}, + [8571] = {.lex_state = 0, .external_lex_state = 8}, + [8572] = {.lex_state = 31, .external_lex_state = 8}, + [8573] = {.lex_state = 31, .external_lex_state = 8}, + [8574] = {.lex_state = 7, .external_lex_state = 8}, + [8575] = {.lex_state = 7, .external_lex_state = 8}, + [8576] = {.lex_state = 31, .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}, + [8579] = {.lex_state = 31, .external_lex_state = 8}, [8580] = {.lex_state = 0, .external_lex_state = 8}, - [8581] = {.lex_state = 0, .external_lex_state = 8}, - [8582] = {.lex_state = 31, .external_lex_state = 8}, - [8583] = {.lex_state = 7, .external_lex_state = 8}, + [8581] = {.lex_state = 31, .external_lex_state = 8}, + [8582] = {.lex_state = 0, .external_lex_state = 8}, + [8583] = {.lex_state = 0, .external_lex_state = 8}, [8584] = {.lex_state = 31, .external_lex_state = 8}, [8585] = {.lex_state = 0, .external_lex_state = 8}, - [8586] = {.lex_state = 7, .external_lex_state = 8}, + [8586] = {.lex_state = 0, .external_lex_state = 8}, [8587] = {.lex_state = 0, .external_lex_state = 8}, [8588] = {.lex_state = 0, .external_lex_state = 8}, - [8589] = {.lex_state = 31, .external_lex_state = 8}, + [8589] = {.lex_state = 0, .external_lex_state = 8}, [8590] = {.lex_state = 0, .external_lex_state = 8}, - [8591] = {.lex_state = 0, .external_lex_state = 8}, + [8591] = {.lex_state = 7, .external_lex_state = 8}, [8592] = {.lex_state = 0, .external_lex_state = 8}, - [8593] = {.lex_state = 0, .external_lex_state = 8}, + [8593] = {.lex_state = 31, .external_lex_state = 8}, [8594] = {.lex_state = 0, .external_lex_state = 8}, - [8595] = {.lex_state = 0, .external_lex_state = 9}, + [8595] = {.lex_state = 0, .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}, @@ -22817,9 +22827,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [8603] = {.lex_state = 0, .external_lex_state = 9}, [8604] = {.lex_state = 0, .external_lex_state = 8}, - [8605] = {.lex_state = 0, .external_lex_state = 9}, + [8605] = {.lex_state = 0, .external_lex_state = 8}, [8606] = {.lex_state = 0, .external_lex_state = 8}, [8607] = {.lex_state = 0, .external_lex_state = 8}, [8608] = {.lex_state = 0, .external_lex_state = 8}, @@ -22836,74 +22846,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 0, .external_lex_state = 8}, + [8622] = {.lex_state = 7, .external_lex_state = 8}, [8623] = {.lex_state = 0, .external_lex_state = 8}, [8624] = {.lex_state = 0, .external_lex_state = 8}, - [8625] = {.lex_state = 7, .external_lex_state = 8}, + [8625] = {.lex_state = 0, .external_lex_state = 8}, [8626] = {.lex_state = 0, .external_lex_state = 8}, [8627] = {.lex_state = 0, .external_lex_state = 8}, [8628] = {.lex_state = 0, .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 = 9}, + [8631] = {.lex_state = 7, .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 = 0, .external_lex_state = 8}, + [8636] = {.lex_state = 7, .external_lex_state = 8}, + [8637] = {.lex_state = 7, .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}, + [8640] = {.lex_state = 7, .external_lex_state = 8}, [8641] = {.lex_state = 0, .external_lex_state = 8}, - [8642] = {.lex_state = 0, .external_lex_state = 8}, + [8642] = {.lex_state = 7, .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}, - [8646] = {.lex_state = 0, .external_lex_state = 9}, + [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}, + [8649] = {.lex_state = 0, .external_lex_state = 9}, [8650] = {.lex_state = 0, .external_lex_state = 8}, [8651] = {.lex_state = 0, .external_lex_state = 8}, [8652] = {.lex_state = 0, .external_lex_state = 8}, [8653] = {.lex_state = 0, .external_lex_state = 8}, [8654] = {.lex_state = 0, .external_lex_state = 8}, - [8655] = {.lex_state = 31, .external_lex_state = 8}, + [8655] = {.lex_state = 0, .external_lex_state = 8}, [8656] = {.lex_state = 0, .external_lex_state = 8}, [8657] = {.lex_state = 0, .external_lex_state = 8}, - [8658] = {.lex_state = 31, .external_lex_state = 8}, - [8659] = {.lex_state = 0, .external_lex_state = 9}, + [8658] = {.lex_state = 0, .external_lex_state = 9}, + [8659] = {.lex_state = 0, .external_lex_state = 8}, [8660] = {.lex_state = 0, .external_lex_state = 8}, [8661] = {.lex_state = 0, .external_lex_state = 8}, [8662] = {.lex_state = 0, .external_lex_state = 8}, [8663] = {.lex_state = 0, .external_lex_state = 8}, - [8664] = {.lex_state = 0, .external_lex_state = 9}, + [8664] = {.lex_state = 0, .external_lex_state = 8}, [8665] = {.lex_state = 0, .external_lex_state = 9}, [8666] = {.lex_state = 0, .external_lex_state = 8}, [8667] = {.lex_state = 0, .external_lex_state = 8}, [8668] = {.lex_state = 0, .external_lex_state = 8}, [8669] = {.lex_state = 0, .external_lex_state = 8}, - [8670] = {.lex_state = 7, .external_lex_state = 8}, + [8670] = {.lex_state = 0, .external_lex_state = 8}, [8671] = {.lex_state = 0, .external_lex_state = 8}, [8672] = {.lex_state = 0, .external_lex_state = 8}, - [8673] = {.lex_state = 0, .external_lex_state = 8}, + [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 = 9}, - [8678] = {.lex_state = 0, .external_lex_state = 9}, + [8676] = {.lex_state = 0, .external_lex_state = 9}, + [8677] = {.lex_state = 0, .external_lex_state = 8}, + [8678] = {.lex_state = 0, .external_lex_state = 8}, [8679] = {.lex_state = 0, .external_lex_state = 8}, [8680] = {.lex_state = 0, .external_lex_state = 8}, - [8681] = {.lex_state = 0, .external_lex_state = 8}, + [8681] = {.lex_state = 0, .external_lex_state = 9}, [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 = 31, .external_lex_state = 8}, [8686] = {.lex_state = 0, .external_lex_state = 8}, [8687] = {.lex_state = 0, .external_lex_state = 8}, - [8688] = {.lex_state = 0, .external_lex_state = 8}, - [8689] = {.lex_state = 7, .external_lex_state = 8}, + [8688] = {.lex_state = 7, .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}, @@ -22914,621 +22924,621 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8697] = {.lex_state = 0, .external_lex_state = 9}, [8698] = {.lex_state = 0, .external_lex_state = 8}, [8699] = {.lex_state = 0, .external_lex_state = 8}, - [8700] = {.lex_state = 0, .external_lex_state = 9}, - [8701] = {.lex_state = 0, .external_lex_state = 8}, + [8700] = {.lex_state = 0, .external_lex_state = 8}, + [8701] = {.lex_state = 31, .external_lex_state = 8}, [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 = 0, .external_lex_state = 8}, - [8706] = {.lex_state = 0, .external_lex_state = 8}, + [8706] = {.lex_state = 7, .external_lex_state = 8}, [8707] = {.lex_state = 0, .external_lex_state = 8}, [8708] = {.lex_state = 0, .external_lex_state = 8}, - [8709] = {.lex_state = 0, .external_lex_state = 8}, + [8709] = {.lex_state = 7, .external_lex_state = 8}, [8710] = {.lex_state = 0, .external_lex_state = 8}, - [8711] = {.lex_state = 0, .external_lex_state = 8}, + [8711] = {.lex_state = 7, .external_lex_state = 8}, [8712] = {.lex_state = 0, .external_lex_state = 8}, - [8713] = {.lex_state = 0, .external_lex_state = 8}, - [8714] = {.lex_state = 0, .external_lex_state = 8}, - [8715] = {.lex_state = 7, .external_lex_state = 8}, - [8716] = {.lex_state = 0, .external_lex_state = 9}, + [8713] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 0, .external_lex_state = 8}, [8718] = {.lex_state = 0, .external_lex_state = 8}, [8719] = {.lex_state = 0, .external_lex_state = 8}, - [8720] = {.lex_state = 0, .external_lex_state = 8}, - [8721] = {.lex_state = 7, .external_lex_state = 8}, + [8720] = {.lex_state = 7, .external_lex_state = 8}, + [8721] = {.lex_state = 0, .external_lex_state = 8}, [8722] = {.lex_state = 0, .external_lex_state = 9}, [8723] = {.lex_state = 0, .external_lex_state = 8}, [8724] = {.lex_state = 0, .external_lex_state = 8}, - [8725] = {.lex_state = 0, .external_lex_state = 8}, + [8725] = {.lex_state = 7, .external_lex_state = 8}, [8726] = {.lex_state = 0, .external_lex_state = 8}, [8727] = {.lex_state = 0, .external_lex_state = 8}, - [8728] = {.lex_state = 7, .external_lex_state = 8}, - [8729] = {.lex_state = 0, .external_lex_state = 8}, - [8730] = {.lex_state = 7, .external_lex_state = 8}, - [8731] = {.lex_state = 7, .external_lex_state = 8}, - [8732] = {.lex_state = 7, .external_lex_state = 8}, + [8728] = {.lex_state = 0, .external_lex_state = 9}, + [8729] = {.lex_state = 0, .external_lex_state = 9}, + [8730] = {.lex_state = 0, .external_lex_state = 9}, + [8731] = {.lex_state = 0, .external_lex_state = 8}, + [8732] = {.lex_state = 0, .external_lex_state = 9}, [8733] = {.lex_state = 0, .external_lex_state = 8}, [8734] = {.lex_state = 0, .external_lex_state = 9}, - [8735] = {.lex_state = 0, .external_lex_state = 8}, - [8736] = {.lex_state = 0, .external_lex_state = 9}, - [8737] = {.lex_state = 0, .external_lex_state = 8}, + [8735] = {.lex_state = 7, .external_lex_state = 8}, + [8736] = {.lex_state = 0, .external_lex_state = 8}, + [8737] = {.lex_state = 0, .external_lex_state = 9}, [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}, + [8740] = {.lex_state = 0, .external_lex_state = 9}, + [8741] = {.lex_state = 31, .external_lex_state = 8}, [8742] = {.lex_state = 0, .external_lex_state = 8}, [8743] = {.lex_state = 0, .external_lex_state = 8}, - [8744] = {.lex_state = 0, .external_lex_state = 8}, + [8744] = {.lex_state = 0, .external_lex_state = 9}, [8745] = {.lex_state = 0, .external_lex_state = 8}, [8746] = {.lex_state = 0, .external_lex_state = 8}, - [8747] = {.lex_state = 7, .external_lex_state = 8}, + [8747] = {.lex_state = 0, .external_lex_state = 8}, [8748] = {.lex_state = 0, .external_lex_state = 8}, [8749] = {.lex_state = 0, .external_lex_state = 8}, - [8750] = {.lex_state = 0, .external_lex_state = 8}, + [8750] = {.lex_state = 0, .external_lex_state = 9}, [8751] = {.lex_state = 0, .external_lex_state = 8}, - [8752] = {.lex_state = 7, .external_lex_state = 8}, - [8753] = {.lex_state = 7, .external_lex_state = 8}, - [8754] = {.lex_state = 0, .external_lex_state = 8}, + [8752] = {.lex_state = 0, .external_lex_state = 8}, + [8753] = {.lex_state = 0, .external_lex_state = 8}, + [8754] = {.lex_state = 7, .external_lex_state = 11}, [8755] = {.lex_state = 0, .external_lex_state = 8}, - [8756] = {.lex_state = 0, .external_lex_state = 8}, + [8756] = {.lex_state = 0, .external_lex_state = 9}, [8757] = {.lex_state = 0, .external_lex_state = 8}, - [8758] = {.lex_state = 0, .external_lex_state = 8}, + [8758] = {.lex_state = 7, .external_lex_state = 8}, [8759] = {.lex_state = 0, .external_lex_state = 8}, [8760] = {.lex_state = 7, .external_lex_state = 8}, - [8761] = {.lex_state = 0, .external_lex_state = 9}, - [8762] = {.lex_state = 7, .external_lex_state = 8}, - [8763] = {.lex_state = 0, .external_lex_state = 8}, + [8761] = {.lex_state = 0, .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}, [8765] = {.lex_state = 0, .external_lex_state = 8}, - [8766] = {.lex_state = 0, .external_lex_state = 8}, - [8767] = {.lex_state = 31, .external_lex_state = 8}, - [8768] = {.lex_state = 0, .external_lex_state = 8}, + [8766] = {.lex_state = 0, .external_lex_state = 9}, + [8767] = {.lex_state = 0, .external_lex_state = 9}, + [8768] = {.lex_state = 7, .external_lex_state = 11}, [8769] = {.lex_state = 0, .external_lex_state = 8}, - [8770] = {.lex_state = 7, .external_lex_state = 8}, - [8771] = {.lex_state = 0, .external_lex_state = 8}, + [8770] = {.lex_state = 0, .external_lex_state = 9}, + [8771] = {.lex_state = 7, .external_lex_state = 8}, [8772] = {.lex_state = 0, .external_lex_state = 8}, [8773] = {.lex_state = 0, .external_lex_state = 8}, - [8774] = {.lex_state = 0, .external_lex_state = 9}, + [8774] = {.lex_state = 0, .external_lex_state = 8}, [8775] = {.lex_state = 0, .external_lex_state = 8}, [8776] = {.lex_state = 0, .external_lex_state = 8}, [8777] = {.lex_state = 0, .external_lex_state = 8}, - [8778] = {.lex_state = 0, .external_lex_state = 8}, + [8778] = {.lex_state = 0, .external_lex_state = 9}, [8779] = {.lex_state = 0, .external_lex_state = 8}, - [8780] = {.lex_state = 0, .external_lex_state = 9}, - [8781] = {.lex_state = 0, .external_lex_state = 8}, - [8782] = {.lex_state = 0, .external_lex_state = 8}, + [8780] = {.lex_state = 0, .external_lex_state = 8}, + [8781] = {.lex_state = 0, .external_lex_state = 9}, + [8782] = {.lex_state = 0, .external_lex_state = 9}, [8783] = {.lex_state = 0, .external_lex_state = 9}, - [8784] = {.lex_state = 0, .external_lex_state = 9}, + [8784] = {.lex_state = 0, .external_lex_state = 8}, [8785] = {.lex_state = 0, .external_lex_state = 8}, [8786] = {.lex_state = 0, .external_lex_state = 8}, - [8787] = {.lex_state = 7, .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}, - [8791] = {.lex_state = 7, .external_lex_state = 8}, + [8790] = {.lex_state = 0, .external_lex_state = 9}, + [8791] = {.lex_state = 0, .external_lex_state = 9}, [8792] = {.lex_state = 0, .external_lex_state = 8}, - [8793] = {.lex_state = 0, .external_lex_state = 9}, + [8793] = {.lex_state = 7, .external_lex_state = 8}, [8794] = {.lex_state = 0, .external_lex_state = 8}, [8795] = {.lex_state = 0, .external_lex_state = 8}, - [8796] = {.lex_state = 0, .external_lex_state = 8}, - [8797] = {.lex_state = 0, .external_lex_state = 9}, - [8798] = {.lex_state = 31, .external_lex_state = 8}, + [8796] = {.lex_state = 7, .external_lex_state = 8}, + [8797] = {.lex_state = 0, .external_lex_state = 8}, + [8798] = {.lex_state = 0, .external_lex_state = 8}, [8799] = {.lex_state = 0, .external_lex_state = 8}, - [8800] = {.lex_state = 0, .external_lex_state = 8}, - [8801] = {.lex_state = 0, .external_lex_state = 8}, - [8802] = {.lex_state = 0, .external_lex_state = 8}, - [8803] = {.lex_state = 0, .external_lex_state = 9}, - [8804] = {.lex_state = 0, .external_lex_state = 8}, + [8800] = {.lex_state = 0, .external_lex_state = 9}, + [8801] = {.lex_state = 0, .external_lex_state = 9}, + [8802] = {.lex_state = 0, .external_lex_state = 9}, + [8803] = {.lex_state = 0, .external_lex_state = 8}, + [8804] = {.lex_state = 7, .external_lex_state = 8}, [8805] = {.lex_state = 0, .external_lex_state = 8}, - [8806] = {.lex_state = 0, .external_lex_state = 9}, + [8806] = {.lex_state = 0, .external_lex_state = 8}, [8807] = {.lex_state = 0, .external_lex_state = 8}, - [8808] = {.lex_state = 7, .external_lex_state = 8}, - [8809] = {.lex_state = 7, .external_lex_state = 8}, - [8810] = {.lex_state = 0, .external_lex_state = 8}, - [8811] = {.lex_state = 7, .external_lex_state = 8}, - [8812] = {.lex_state = 0, .external_lex_state = 8}, - [8813] = {.lex_state = 0, .external_lex_state = 8}, - [8814] = {.lex_state = 0, .external_lex_state = 9}, - [8815] = {.lex_state = 0, .external_lex_state = 9}, - [8816] = {.lex_state = 31, .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 = 0, .external_lex_state = 9}, + [8812] = {.lex_state = 7, .external_lex_state = 8}, + [8813] = {.lex_state = 0, .external_lex_state = 9}, + [8814] = {.lex_state = 0, .external_lex_state = 8}, + [8815] = {.lex_state = 0, .external_lex_state = 8}, + [8816] = {.lex_state = 0, .external_lex_state = 8}, [8817] = {.lex_state = 0, .external_lex_state = 8}, - [8818] = {.lex_state = 0, .external_lex_state = 9}, - [8819] = {.lex_state = 7, .external_lex_state = 11}, - [8820] = {.lex_state = 0, .external_lex_state = 9}, - [8821] = {.lex_state = 0, .external_lex_state = 9}, + [8818] = {.lex_state = 0, .external_lex_state = 8}, + [8819] = {.lex_state = 0, .external_lex_state = 8}, + [8820] = {.lex_state = 7, .external_lex_state = 8}, + [8821] = {.lex_state = 0, .external_lex_state = 8}, [8822] = {.lex_state = 0, .external_lex_state = 9}, - [8823] = {.lex_state = 0, .external_lex_state = 9}, - [8824] = {.lex_state = 0, .external_lex_state = 9}, - [8825] = {.lex_state = 0, .external_lex_state = 8}, - [8826] = {.lex_state = 0, .external_lex_state = 9}, + [8823] = {.lex_state = 0, .external_lex_state = 8}, + [8824] = {.lex_state = 0, .external_lex_state = 8}, + [8825] = {.lex_state = 0, .external_lex_state = 9}, + [8826] = {.lex_state = 0, .external_lex_state = 8}, [8827] = {.lex_state = 0, .external_lex_state = 8}, [8828] = {.lex_state = 0, .external_lex_state = 8}, - [8829] = {.lex_state = 0, .external_lex_state = 8}, + [8829] = {.lex_state = 0, .external_lex_state = 9}, [8830] = {.lex_state = 0, .external_lex_state = 8}, - [8831] = {.lex_state = 0, .external_lex_state = 9}, - [8832] = {.lex_state = 0, .external_lex_state = 9}, + [8831] = {.lex_state = 0, .external_lex_state = 8}, + [8832] = {.lex_state = 0, .external_lex_state = 8}, [8833] = {.lex_state = 0, .external_lex_state = 8}, - [8834] = {.lex_state = 7, .external_lex_state = 8}, - [8835] = {.lex_state = 0, .external_lex_state = 9}, + [8834] = {.lex_state = 0, .external_lex_state = 9}, + [8835] = {.lex_state = 0, .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 = 9}, + [8838] = {.lex_state = 0, .external_lex_state = 8}, [8839] = {.lex_state = 0, .external_lex_state = 8}, [8840] = {.lex_state = 0, .external_lex_state = 8}, [8841] = {.lex_state = 0, .external_lex_state = 8}, - [8842] = {.lex_state = 0, .external_lex_state = 9}, - [8843] = {.lex_state = 0, .external_lex_state = 8}, - [8844] = {.lex_state = 0, .external_lex_state = 9}, - [8845] = {.lex_state = 7, .external_lex_state = 8}, + [8842] = {.lex_state = 0, .external_lex_state = 8}, + [8843] = {.lex_state = 0, .external_lex_state = 9}, + [8844] = {.lex_state = 0, .external_lex_state = 8}, + [8845] = {.lex_state = 0, .external_lex_state = 9}, [8846] = {.lex_state = 0, .external_lex_state = 8}, - [8847] = {.lex_state = 0, .external_lex_state = 9}, - [8848] = {.lex_state = 0, .external_lex_state = 9}, + [8847] = {.lex_state = 0, .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 = 9}, + [8850] = {.lex_state = 0, .external_lex_state = 8}, [8851] = {.lex_state = 0, .external_lex_state = 9}, - [8852] = {.lex_state = 0, .external_lex_state = 8}, + [8852] = {.lex_state = 0, .external_lex_state = 9}, [8853] = {.lex_state = 0, .external_lex_state = 8}, [8854] = {.lex_state = 0, .external_lex_state = 8}, [8855] = {.lex_state = 0, .external_lex_state = 8}, - [8856] = {.lex_state = 0, .external_lex_state = 9}, - [8857] = {.lex_state = 0, .external_lex_state = 9}, - [8858] = {.lex_state = 7, .external_lex_state = 11}, - [8859] = {.lex_state = 0, .external_lex_state = 9}, + [8856] = {.lex_state = 0, .external_lex_state = 8}, + [8857] = {.lex_state = 0, .external_lex_state = 8}, + [8858] = {.lex_state = 0, .external_lex_state = 9}, + [8859] = {.lex_state = 7, .external_lex_state = 8}, [8860] = {.lex_state = 0, .external_lex_state = 8}, [8861] = {.lex_state = 0, .external_lex_state = 9}, [8862] = {.lex_state = 0, .external_lex_state = 8}, [8863] = {.lex_state = 0, .external_lex_state = 8}, - [8864] = {.lex_state = 7, .external_lex_state = 8}, - [8865] = {.lex_state = 0, .external_lex_state = 8}, + [8864] = {.lex_state = 0, .external_lex_state = 8}, + [8865] = {.lex_state = 0, .external_lex_state = 9}, [8866] = {.lex_state = 0, .external_lex_state = 8}, - [8867] = {.lex_state = 0, .external_lex_state = 9}, - [8868] = {.lex_state = 0, .external_lex_state = 8}, + [8867] = {.lex_state = 0, .external_lex_state = 8}, + [8868] = {.lex_state = 0, .external_lex_state = 9}, [8869] = {.lex_state = 0, .external_lex_state = 9}, [8870] = {.lex_state = 0, .external_lex_state = 8}, [8871] = {.lex_state = 0, .external_lex_state = 9}, [8872] = {.lex_state = 7, .external_lex_state = 8}, - [8873] = {.lex_state = 0, .external_lex_state = 9}, - [8874] = {.lex_state = 0, .external_lex_state = 8}, - [8875] = {.lex_state = 0, .external_lex_state = 8}, - [8876] = {.lex_state = 0, .external_lex_state = 9}, - [8877] = {.lex_state = 0, .external_lex_state = 8}, + [8873] = {.lex_state = 0, .external_lex_state = 8}, + [8874] = {.lex_state = 0, .external_lex_state = 9}, + [8875] = {.lex_state = 7, .external_lex_state = 8}, + [8876] = {.lex_state = 0, .external_lex_state = 8}, + [8877] = {.lex_state = 7, .external_lex_state = 8}, [8878] = {.lex_state = 0, .external_lex_state = 8}, [8879] = {.lex_state = 0, .external_lex_state = 8}, [8880] = {.lex_state = 0, .external_lex_state = 8}, [8881] = {.lex_state = 0, .external_lex_state = 9}, [8882] = {.lex_state = 0, .external_lex_state = 9}, - [8883] = {.lex_state = 0, .external_lex_state = 8}, - [8884] = {.lex_state = 7, .external_lex_state = 8}, + [8883] = {.lex_state = 7, .external_lex_state = 8}, + [8884] = {.lex_state = 0, .external_lex_state = 8}, [8885] = {.lex_state = 0, .external_lex_state = 8}, - [8886] = {.lex_state = 0, .external_lex_state = 9}, - [8887] = {.lex_state = 7, .external_lex_state = 8}, - [8888] = {.lex_state = 0, .external_lex_state = 8}, + [8886] = {.lex_state = 0, .external_lex_state = 8}, + [8887] = {.lex_state = 0, .external_lex_state = 8}, + [8888] = {.lex_state = 31, .external_lex_state = 8}, [8889] = {.lex_state = 0, .external_lex_state = 8}, [8890] = {.lex_state = 0, .external_lex_state = 9}, - [8891] = {.lex_state = 0, .external_lex_state = 9}, - [8892] = {.lex_state = 0, .external_lex_state = 8}, - [8893] = {.lex_state = 0, .external_lex_state = 8}, - [8894] = {.lex_state = 0, .external_lex_state = 9}, + [8891] = {.lex_state = 0, .external_lex_state = 8}, + [8892] = {.lex_state = 7, .external_lex_state = 8}, + [8893] = {.lex_state = 31, .external_lex_state = 8}, + [8894] = {.lex_state = 0, .external_lex_state = 8}, [8895] = {.lex_state = 0, .external_lex_state = 8}, - [8896] = {.lex_state = 31, .external_lex_state = 8}, - [8897] = {.lex_state = 0, .external_lex_state = 9}, - [8898] = {.lex_state = 0, .external_lex_state = 8}, - [8899] = {.lex_state = 0, .external_lex_state = 9}, - [8900] = {.lex_state = 0, .external_lex_state = 8}, - [8901] = {.lex_state = 0, .external_lex_state = 8}, - [8902] = {.lex_state = 0, .external_lex_state = 9}, - [8903] = {.lex_state = 0, .external_lex_state = 9}, - [8904] = {.lex_state = 7, .external_lex_state = 8}, - [8905] = {.lex_state = 0, .external_lex_state = 9}, - [8906] = {.lex_state = 0, .external_lex_state = 9}, - [8907] = {.lex_state = 0, .external_lex_state = 8}, - [8908] = {.lex_state = 0, .external_lex_state = 8}, + [8896] = {.lex_state = 0, .external_lex_state = 8}, + [8897] = {.lex_state = 0, .external_lex_state = 8}, + [8898] = {.lex_state = 0, .external_lex_state = 9}, + [8899] = {.lex_state = 0, .external_lex_state = 8}, + [8900] = {.lex_state = 31, .external_lex_state = 8}, + [8901] = {.lex_state = 0, .external_lex_state = 9}, + [8902] = {.lex_state = 0, .external_lex_state = 8}, + [8903] = {.lex_state = 0, .external_lex_state = 8}, + [8904] = {.lex_state = 0, .external_lex_state = 9}, + [8905] = {.lex_state = 0, .external_lex_state = 8}, + [8906] = {.lex_state = 0, .external_lex_state = 8}, + [8907] = {.lex_state = 0, .external_lex_state = 9}, + [8908] = {.lex_state = 0, .external_lex_state = 9}, [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 = 9}, + [8911] = {.lex_state = 0, .external_lex_state = 9}, + [8912] = {.lex_state = 7, .external_lex_state = 8}, [8913] = {.lex_state = 0, .external_lex_state = 8}, [8914] = {.lex_state = 0, .external_lex_state = 9}, - [8915] = {.lex_state = 7, .external_lex_state = 8}, - [8916] = {.lex_state = 0, .external_lex_state = 9}, - [8917] = {.lex_state = 7, .external_lex_state = 8}, - [8918] = {.lex_state = 0, .external_lex_state = 9}, - [8919] = {.lex_state = 0, .external_lex_state = 8}, + [8915] = {.lex_state = 0, .external_lex_state = 8}, + [8916] = {.lex_state = 0, .external_lex_state = 8}, + [8917] = {.lex_state = 0, .external_lex_state = 8}, + [8918] = {.lex_state = 7, .external_lex_state = 8}, + [8919] = {.lex_state = 0, .external_lex_state = 9}, [8920] = {.lex_state = 0, .external_lex_state = 8}, [8921] = {.lex_state = 0, .external_lex_state = 8}, - [8922] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 0, .external_lex_state = 8}, [8926] = {.lex_state = 0, .external_lex_state = 9}, - [8927] = {.lex_state = 0, .external_lex_state = 8}, + [8927] = {.lex_state = 0, .external_lex_state = 9}, [8928] = {.lex_state = 0, .external_lex_state = 9}, [8929] = {.lex_state = 0, .external_lex_state = 8}, - [8930] = {.lex_state = 7, .external_lex_state = 8}, + [8930] = {.lex_state = 0, .external_lex_state = 9}, [8931] = {.lex_state = 0, .external_lex_state = 8}, - [8932] = {.lex_state = 0, .external_lex_state = 8}, + [8932] = {.lex_state = 7, .external_lex_state = 8}, [8933] = {.lex_state = 0, .external_lex_state = 8}, - [8934] = {.lex_state = 7, .external_lex_state = 8}, - [8935] = {.lex_state = 0, .external_lex_state = 8}, - [8936] = {.lex_state = 0, .external_lex_state = 8}, - [8937] = {.lex_state = 0, .external_lex_state = 9}, + [8934] = {.lex_state = 0, .external_lex_state = 8}, + [8935] = {.lex_state = 0, .external_lex_state = 9}, + [8936] = {.lex_state = 0, .external_lex_state = 9}, + [8937] = {.lex_state = 7, .external_lex_state = 8}, [8938] = {.lex_state = 0, .external_lex_state = 8}, - [8939] = {.lex_state = 0, .external_lex_state = 9}, - [8940] = {.lex_state = 0, .external_lex_state = 8}, - [8941] = {.lex_state = 0, .external_lex_state = 9}, - [8942] = {.lex_state = 0, .external_lex_state = 8}, - [8943] = {.lex_state = 7, .external_lex_state = 8}, - [8944] = {.lex_state = 0, .external_lex_state = 8}, + [8939] = {.lex_state = 0, .external_lex_state = 8}, + [8940] = {.lex_state = 0, .external_lex_state = 9}, + [8941] = {.lex_state = 0, .external_lex_state = 8}, + [8942] = {.lex_state = 0, .external_lex_state = 9}, + [8943] = {.lex_state = 0, .external_lex_state = 9}, + [8944] = {.lex_state = 0, .external_lex_state = 9}, [8945] = {.lex_state = 0, .external_lex_state = 8}, [8946] = {.lex_state = 7, .external_lex_state = 8}, - [8947] = {.lex_state = 0, .external_lex_state = 8}, + [8947] = {.lex_state = 0, .external_lex_state = 9}, [8948] = {.lex_state = 0, .external_lex_state = 8}, [8949] = {.lex_state = 0, .external_lex_state = 8}, - [8950] = {.lex_state = 7, .external_lex_state = 8}, - [8951] = {.lex_state = 7, .external_lex_state = 8}, - [8952] = {.lex_state = 0, .external_lex_state = 9}, + [8950] = {.lex_state = 0, .external_lex_state = 8}, + [8951] = {.lex_state = 0, .external_lex_state = 8}, + [8952] = {.lex_state = 0, .external_lex_state = 8}, [8953] = {.lex_state = 0, .external_lex_state = 8}, - [8954] = {.lex_state = 0, .external_lex_state = 9}, + [8954] = {.lex_state = 0, .external_lex_state = 8}, [8955] = {.lex_state = 0, .external_lex_state = 8}, - [8956] = {.lex_state = 0, .external_lex_state = 9}, - [8957] = {.lex_state = 7, .external_lex_state = 8}, - [8958] = {.lex_state = 7, .external_lex_state = 8}, - [8959] = {.lex_state = 0, .external_lex_state = 9}, - [8960] = {.lex_state = 0, .external_lex_state = 9}, - [8961] = {.lex_state = 0, .external_lex_state = 9}, + [8956] = {.lex_state = 7, .external_lex_state = 8}, + [8957] = {.lex_state = 0, .external_lex_state = 8}, + [8958] = {.lex_state = 0, .external_lex_state = 8}, + [8959] = {.lex_state = 0, .external_lex_state = 8}, + [8960] = {.lex_state = 7, .external_lex_state = 8}, + [8961] = {.lex_state = 0, .external_lex_state = 8}, [8962] = {.lex_state = 0, .external_lex_state = 8}, - [8963] = {.lex_state = 7, .external_lex_state = 8}, - [8964] = {.lex_state = 7, .external_lex_state = 8}, + [8963] = {.lex_state = 0, .external_lex_state = 9}, + [8964] = {.lex_state = 0, .external_lex_state = 9}, [8965] = {.lex_state = 0, .external_lex_state = 8}, [8966] = {.lex_state = 0, .external_lex_state = 8}, [8967] = {.lex_state = 0, .external_lex_state = 8}, [8968] = {.lex_state = 0, .external_lex_state = 8}, - [8969] = {.lex_state = 7, .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 = 9}, - [8972] = {.lex_state = 0, .external_lex_state = 9}, - [8973] = {.lex_state = 0, .external_lex_state = 9}, + [8971] = {.lex_state = 0, .external_lex_state = 8}, + [8972] = {.lex_state = 0, .external_lex_state = 8}, + [8973] = {.lex_state = 0, .external_lex_state = 8}, [8974] = {.lex_state = 0, .external_lex_state = 8}, - [8975] = {.lex_state = 0, .external_lex_state = 8}, + [8975] = {.lex_state = 7, .external_lex_state = 8}, [8976] = {.lex_state = 7, .external_lex_state = 8}, - [8977] = {.lex_state = 0, .external_lex_state = 8}, + [8977] = {.lex_state = 7, .external_lex_state = 8}, [8978] = {.lex_state = 7, .external_lex_state = 8}, - [8979] = {.lex_state = 0, .external_lex_state = 8}, - [8980] = {.lex_state = 0, .external_lex_state = 8}, - [8981] = {.lex_state = 0, .external_lex_state = 8}, + [8979] = {.lex_state = 7, .external_lex_state = 8}, + [8980] = {.lex_state = 7, .external_lex_state = 8}, + [8981] = {.lex_state = 7, .external_lex_state = 8}, [8982] = {.lex_state = 0, .external_lex_state = 8}, [8983] = {.lex_state = 7, .external_lex_state = 8}, [8984] = {.lex_state = 7, .external_lex_state = 8}, - [8985] = {.lex_state = 0, .external_lex_state = 9}, + [8985] = {.lex_state = 7, .external_lex_state = 8}, [8986] = {.lex_state = 7, .external_lex_state = 8}, - [8987] = {.lex_state = 0, .external_lex_state = 8}, - [8988] = {.lex_state = 0, .external_lex_state = 8}, + [8987] = {.lex_state = 7, .external_lex_state = 8}, + [8988] = {.lex_state = 7, .external_lex_state = 8}, [8989] = {.lex_state = 0, .external_lex_state = 8}, [8990] = {.lex_state = 0, .external_lex_state = 8}, - [8991] = {.lex_state = 7, .external_lex_state = 8}, - [8992] = {.lex_state = 7, .external_lex_state = 8}, - [8993] = {.lex_state = 7, .external_lex_state = 8}, + [8991] = {.lex_state = 0, .external_lex_state = 8}, + [8992] = {.lex_state = 0, .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 = 7, .external_lex_state = 8}, + [8995] = {.lex_state = 0, .external_lex_state = 9}, + [8996] = {.lex_state = 0, .external_lex_state = 9}, [8997] = {.lex_state = 7, .external_lex_state = 8}, - [8998] = {.lex_state = 7, .external_lex_state = 8}, - [8999] = {.lex_state = 7, .external_lex_state = 8}, + [8998] = {.lex_state = 0, .external_lex_state = 8}, + [8999] = {.lex_state = 0, .external_lex_state = 9}, [9000] = {.lex_state = 7, .external_lex_state = 8}, - [9001] = {.lex_state = 7, .external_lex_state = 8}, - [9002] = {.lex_state = 7, .external_lex_state = 8}, - [9003] = {.lex_state = 7, .external_lex_state = 8}, - [9004] = {.lex_state = 0, .external_lex_state = 8}, - [9005] = {.lex_state = 7, .external_lex_state = 8}, - [9006] = {.lex_state = 7, .external_lex_state = 8}, + [9001] = {.lex_state = 0, .external_lex_state = 8}, + [9002] = {.lex_state = 0, .external_lex_state = 8}, + [9003] = {.lex_state = 0, .external_lex_state = 8}, + [9004] = {.lex_state = 7, .external_lex_state = 8}, + [9005] = {.lex_state = 0, .external_lex_state = 9}, + [9006] = {.lex_state = 0, .external_lex_state = 8}, [9007] = {.lex_state = 7, .external_lex_state = 8}, - [9008] = {.lex_state = 7, .external_lex_state = 8}, - [9009] = {.lex_state = 0, .external_lex_state = 8}, + [9008] = {.lex_state = 0, .external_lex_state = 8}, + [9009] = {.lex_state = 7, .external_lex_state = 8}, [9010] = {.lex_state = 0, .external_lex_state = 8}, [9011] = {.lex_state = 0, .external_lex_state = 8}, - [9012] = {.lex_state = 0, .external_lex_state = 8}, - [9013] = {.lex_state = 7, .external_lex_state = 8}, + [9012] = {.lex_state = 7, .external_lex_state = 8}, + [9013] = {.lex_state = 0, .external_lex_state = 8}, [9014] = {.lex_state = 0, .external_lex_state = 8}, - [9015] = {.lex_state = 7, .external_lex_state = 8}, + [9015] = {.lex_state = 0, .external_lex_state = 8}, [9016] = {.lex_state = 0, .external_lex_state = 8}, - [9017] = {.lex_state = 7, .external_lex_state = 8}, - [9018] = {.lex_state = 7, .external_lex_state = 8}, + [9017] = {.lex_state = 0, .external_lex_state = 8}, + [9018] = {.lex_state = 0, .external_lex_state = 8}, [9019] = {.lex_state = 7, .external_lex_state = 8}, [9020] = {.lex_state = 0, .external_lex_state = 8}, - [9021] = {.lex_state = 7, .external_lex_state = 8}, - [9022] = {.lex_state = 0, .external_lex_state = 8}, - [9023] = {.lex_state = 7, .external_lex_state = 8}, - [9024] = {.lex_state = 7, .external_lex_state = 8}, + [9021] = {.lex_state = 0, .external_lex_state = 8}, + [9022] = {.lex_state = 7, .external_lex_state = 8}, + [9023] = {.lex_state = 0, .external_lex_state = 8}, + [9024] = {.lex_state = 0, .external_lex_state = 8}, [9025] = {.lex_state = 0, .external_lex_state = 8}, [9026] = {.lex_state = 7, .external_lex_state = 8}, - [9027] = {.lex_state = 7, .external_lex_state = 8}, + [9027] = {.lex_state = 0, .external_lex_state = 8}, [9028] = {.lex_state = 7, .external_lex_state = 8}, - [9029] = {.lex_state = 7, .external_lex_state = 8}, - [9030] = {.lex_state = 7, .external_lex_state = 8}, - [9031] = {.lex_state = 7, .external_lex_state = 8}, + [9029] = {.lex_state = 0, .external_lex_state = 8}, + [9030] = {.lex_state = 0, .external_lex_state = 8}, + [9031] = {.lex_state = 0, .external_lex_state = 8}, [9032] = {.lex_state = 7, .external_lex_state = 8}, - [9033] = {.lex_state = 7, .external_lex_state = 8}, - [9034] = {.lex_state = 7, .external_lex_state = 8}, - [9035] = {.lex_state = 7, .external_lex_state = 8}, - [9036] = {.lex_state = 7, .external_lex_state = 8}, + [9033] = {.lex_state = 0, .external_lex_state = 8}, + [9034] = {.lex_state = 0, .external_lex_state = 8}, + [9035] = {.lex_state = 0, .external_lex_state = 8}, + [9036] = {.lex_state = 0, .external_lex_state = 9}, [9037] = {.lex_state = 0, .external_lex_state = 9}, - [9038] = {.lex_state = 7, .external_lex_state = 8}, - [9039] = {.lex_state = 0, .external_lex_state = 9}, - [9040] = {.lex_state = 7, .external_lex_state = 8}, + [9038] = {.lex_state = 0, .external_lex_state = 9}, + [9039] = {.lex_state = 7, .external_lex_state = 8}, + [9040] = {.lex_state = 0, .external_lex_state = 8}, [9041] = {.lex_state = 0, .external_lex_state = 8}, - [9042] = {.lex_state = 7, .external_lex_state = 8}, - [9043] = {.lex_state = 7, .external_lex_state = 8}, - [9044] = {.lex_state = 0, .external_lex_state = 8}, - [9045] = {.lex_state = 0, .external_lex_state = 8}, - [9046] = {.lex_state = 0, .external_lex_state = 8}, - [9047] = {.lex_state = 0, .external_lex_state = 8}, - [9048] = {.lex_state = 0, .external_lex_state = 8}, + [9042] = {.lex_state = 0, .external_lex_state = 8}, + [9043] = {.lex_state = 0, .external_lex_state = 8}, + [9044] = {.lex_state = 7, .external_lex_state = 8}, + [9045] = {.lex_state = 0, .external_lex_state = 9}, + [9046] = {.lex_state = 7, .external_lex_state = 8}, + [9047] = {.lex_state = 0, .external_lex_state = 9}, + [9048] = {.lex_state = 0, .external_lex_state = 9}, [9049] = {.lex_state = 0, .external_lex_state = 8}, [9050] = {.lex_state = 0, .external_lex_state = 8}, - [9051] = {.lex_state = 7, .external_lex_state = 8}, + [9051] = {.lex_state = 0, .external_lex_state = 8}, [9052] = {.lex_state = 0, .external_lex_state = 8}, - [9053] = {.lex_state = 7, .external_lex_state = 8}, - [9054] = {.lex_state = 7, .external_lex_state = 8}, - [9055] = {.lex_state = 7, .external_lex_state = 8}, + [9053] = {.lex_state = 0, .external_lex_state = 8}, + [9054] = {.lex_state = 0, .external_lex_state = 8}, + [9055] = {.lex_state = 0, .external_lex_state = 8}, [9056] = {.lex_state = 0, .external_lex_state = 8}, - [9057] = {.lex_state = 0, .external_lex_state = 8}, - [9058] = {.lex_state = 0, .external_lex_state = 8}, - [9059] = {.lex_state = 7, .external_lex_state = 8}, + [9057] = {.lex_state = 0, .external_lex_state = 9}, + [9058] = {.lex_state = 7, .external_lex_state = 8}, + [9059] = {.lex_state = 0, .external_lex_state = 8}, [9060] = {.lex_state = 0, .external_lex_state = 8}, - [9061] = {.lex_state = 7, .external_lex_state = 8}, + [9061] = {.lex_state = 0, .external_lex_state = 8}, [9062] = {.lex_state = 0, .external_lex_state = 8}, - [9063] = {.lex_state = 7, .external_lex_state = 8}, + [9063] = {.lex_state = 0, .external_lex_state = 8}, [9064] = {.lex_state = 7, .external_lex_state = 8}, - [9065] = {.lex_state = 7, .external_lex_state = 8}, - [9066] = {.lex_state = 0, .external_lex_state = 8}, + [9065] = {.lex_state = 0, .external_lex_state = 8}, + [9066] = {.lex_state = 0, .external_lex_state = 9}, [9067] = {.lex_state = 7, .external_lex_state = 8}, - [9068] = {.lex_state = 0, .external_lex_state = 8}, + [9068] = {.lex_state = 7, .external_lex_state = 8}, [9069] = {.lex_state = 0, .external_lex_state = 8}, - [9070] = {.lex_state = 0, .external_lex_state = 8}, - [9071] = {.lex_state = 7, .external_lex_state = 8}, - [9072] = {.lex_state = 7, .external_lex_state = 8}, - [9073] = {.lex_state = 7, .external_lex_state = 8}, + [9070] = {.lex_state = 7, .external_lex_state = 8}, + [9071] = {.lex_state = 0, .external_lex_state = 8}, + [9072] = {.lex_state = 0, .external_lex_state = 8}, + [9073] = {.lex_state = 0, .external_lex_state = 8}, [9074] = {.lex_state = 0, .external_lex_state = 8}, - [9075] = {.lex_state = 7, .external_lex_state = 8}, - [9076] = {.lex_state = 0, .external_lex_state = 8}, + [9075] = {.lex_state = 0, .external_lex_state = 8}, + [9076] = {.lex_state = 7, .external_lex_state = 8}, [9077] = {.lex_state = 7, .external_lex_state = 8}, - [9078] = {.lex_state = 7, .external_lex_state = 8}, + [9078] = {.lex_state = 0, .external_lex_state = 8}, [9079] = {.lex_state = 7, .external_lex_state = 8}, - [9080] = {.lex_state = 7, .external_lex_state = 8}, + [9080] = {.lex_state = 0, .external_lex_state = 8}, [9081] = {.lex_state = 0, .external_lex_state = 8}, - [9082] = {.lex_state = 7, .external_lex_state = 8}, + [9082] = {.lex_state = 0, .external_lex_state = 8}, [9083] = {.lex_state = 7, .external_lex_state = 8}, [9084] = {.lex_state = 7, .external_lex_state = 8}, [9085] = {.lex_state = 0, .external_lex_state = 8}, - [9086] = {.lex_state = 7, .external_lex_state = 8}, - [9087] = {.lex_state = 7, .external_lex_state = 8}, + [9086] = {.lex_state = 0, .external_lex_state = 8}, + [9087] = {.lex_state = 0, .external_lex_state = 8}, [9088] = {.lex_state = 7, .external_lex_state = 8}, - [9089] = {.lex_state = 7, .external_lex_state = 8}, - [9090] = {.lex_state = 7, .external_lex_state = 8}, + [9089] = {.lex_state = 0, .external_lex_state = 8}, + [9090] = {.lex_state = 0, .external_lex_state = 8}, [9091] = {.lex_state = 7, .external_lex_state = 8}, [9092] = {.lex_state = 7, .external_lex_state = 8}, - [9093] = {.lex_state = 7, .external_lex_state = 8}, + [9093] = {.lex_state = 0, .external_lex_state = 8}, [9094] = {.lex_state = 7, .external_lex_state = 8}, - [9095] = {.lex_state = 7, .external_lex_state = 8}, + [9095] = {.lex_state = 0, .external_lex_state = 8}, [9096] = {.lex_state = 0, .external_lex_state = 8}, [9097] = {.lex_state = 7, .external_lex_state = 8}, - [9098] = {.lex_state = 7, .external_lex_state = 8}, + [9098] = {.lex_state = 0, .external_lex_state = 8}, [9099] = {.lex_state = 7, .external_lex_state = 8}, [9100] = {.lex_state = 7, .external_lex_state = 8}, - [9101] = {.lex_state = 7, .external_lex_state = 8}, + [9101] = {.lex_state = 0, .external_lex_state = 8}, [9102] = {.lex_state = 7, .external_lex_state = 8}, - [9103] = {.lex_state = 7, .external_lex_state = 8}, - [9104] = {.lex_state = 0, .external_lex_state = 8}, - [9105] = {.lex_state = 0, .external_lex_state = 8}, - [9106] = {.lex_state = 7, .external_lex_state = 8}, - [9107] = {.lex_state = 0, .external_lex_state = 8}, + [9103] = {.lex_state = 0, .external_lex_state = 8}, + [9104] = {.lex_state = 7, .external_lex_state = 8}, + [9105] = {.lex_state = 7, .external_lex_state = 8}, + [9106] = {.lex_state = 0, .external_lex_state = 8}, + [9107] = {.lex_state = 7, .external_lex_state = 8}, [9108] = {.lex_state = 7, .external_lex_state = 8}, [9109] = {.lex_state = 0, .external_lex_state = 8}, - [9110] = {.lex_state = 7, .external_lex_state = 8}, + [9110] = {.lex_state = 0, .external_lex_state = 8}, [9111] = {.lex_state = 7, .external_lex_state = 8}, [9112] = {.lex_state = 7, .external_lex_state = 8}, - [9113] = {.lex_state = 7, .external_lex_state = 8}, - [9114] = {.lex_state = 7, .external_lex_state = 8}, + [9113] = {.lex_state = 0, .external_lex_state = 8}, + [9114] = {.lex_state = 0, .external_lex_state = 8}, [9115] = {.lex_state = 7, .external_lex_state = 8}, - [9116] = {.lex_state = 7, .external_lex_state = 8}, - [9117] = {.lex_state = 7, .external_lex_state = 8}, + [9116] = {.lex_state = 0, .external_lex_state = 8}, + [9117] = {.lex_state = 0, .external_lex_state = 8}, [9118] = {.lex_state = 7, .external_lex_state = 8}, [9119] = {.lex_state = 7, .external_lex_state = 8}, [9120] = {.lex_state = 7, .external_lex_state = 8}, [9121] = {.lex_state = 7, .external_lex_state = 8}, - [9122] = {.lex_state = 0, .external_lex_state = 8}, - [9123] = {.lex_state = 7, .external_lex_state = 8}, + [9122] = {.lex_state = 7, .external_lex_state = 8}, + [9123] = {.lex_state = 0, .external_lex_state = 8}, [9124] = {.lex_state = 7, .external_lex_state = 8}, [9125] = {.lex_state = 0, .external_lex_state = 8}, [9126] = {.lex_state = 7, .external_lex_state = 8}, [9127] = {.lex_state = 7, .external_lex_state = 8}, - [9128] = {.lex_state = 7, .external_lex_state = 8}, + [9128] = {.lex_state = 0, .external_lex_state = 8}, [9129] = {.lex_state = 0, .external_lex_state = 8}, [9130] = {.lex_state = 7, .external_lex_state = 8}, [9131] = {.lex_state = 7, .external_lex_state = 8}, [9132] = {.lex_state = 0, .external_lex_state = 8}, [9133] = {.lex_state = 0, .external_lex_state = 8}, - [9134] = {.lex_state = 7, .external_lex_state = 8}, + [9134] = {.lex_state = 0, .external_lex_state = 8}, [9135] = {.lex_state = 7, .external_lex_state = 8}, [9136] = {.lex_state = 0, .external_lex_state = 8}, - [9137] = {.lex_state = 7, .external_lex_state = 8}, - [9138] = {.lex_state = 7, .external_lex_state = 8}, - [9139] = {.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 = 7, .external_lex_state = 8}, [9140] = {.lex_state = 7, .external_lex_state = 8}, [9141] = {.lex_state = 7, .external_lex_state = 8}, - [9142] = {.lex_state = 0, .external_lex_state = 8}, + [9142] = {.lex_state = 7, .external_lex_state = 8}, [9143] = {.lex_state = 0, .external_lex_state = 8}, - [9144] = {.lex_state = 0, .external_lex_state = 8}, - [9145] = {.lex_state = 7, .external_lex_state = 8}, + [9144] = {.lex_state = 7, .external_lex_state = 8}, + [9145] = {.lex_state = 0, .external_lex_state = 8}, [9146] = {.lex_state = 0, .external_lex_state = 8}, - [9147] = {.lex_state = 7, .external_lex_state = 8}, + [9147] = {.lex_state = 0, .external_lex_state = 8}, [9148] = {.lex_state = 7, .external_lex_state = 8}, [9149] = {.lex_state = 7, .external_lex_state = 8}, - [9150] = {.lex_state = 0, .external_lex_state = 8}, + [9150] = {.lex_state = 7, .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 = 7, .external_lex_state = 8}, + [9153] = {.lex_state = 7, .external_lex_state = 8}, + [9154] = {.lex_state = 0, .external_lex_state = 8}, [9155] = {.lex_state = 0, .external_lex_state = 8}, [9156] = {.lex_state = 7, .external_lex_state = 8}, [9157] = {.lex_state = 7, .external_lex_state = 8}, - [9158] = {.lex_state = 7, .external_lex_state = 8}, - [9159] = {.lex_state = 7, .external_lex_state = 8}, - [9160] = {.lex_state = 0, .external_lex_state = 8}, + [9158] = {.lex_state = 0, .external_lex_state = 8}, + [9159] = {.lex_state = 0, .external_lex_state = 8}, + [9160] = {.lex_state = 7, .external_lex_state = 8}, [9161] = {.lex_state = 7, .external_lex_state = 8}, - [9162] = {.lex_state = 7, .external_lex_state = 8}, - [9163] = {.lex_state = 7, .external_lex_state = 8}, + [9162] = {.lex_state = 0, .external_lex_state = 8}, + [9163] = {.lex_state = 0, .external_lex_state = 8}, [9164] = {.lex_state = 7, .external_lex_state = 8}, [9165] = {.lex_state = 7, .external_lex_state = 8}, - [9166] = {.lex_state = 7, .external_lex_state = 8}, - [9167] = {.lex_state = 7, .external_lex_state = 8}, + [9166] = {.lex_state = 0, .external_lex_state = 8}, + [9167] = {.lex_state = 0, .external_lex_state = 8}, [9168] = {.lex_state = 7, .external_lex_state = 8}, - [9169] = {.lex_state = 0, .external_lex_state = 8}, - [9170] = {.lex_state = 7, .external_lex_state = 8}, + [9169] = {.lex_state = 7, .external_lex_state = 8}, + [9170] = {.lex_state = 0, .external_lex_state = 8}, [9171] = {.lex_state = 0, .external_lex_state = 8}, [9172] = {.lex_state = 7, .external_lex_state = 8}, [9173] = {.lex_state = 0, .external_lex_state = 8}, - [9174] = {.lex_state = 0, .external_lex_state = 8}, + [9174] = {.lex_state = 7, .external_lex_state = 8}, [9175] = {.lex_state = 0, .external_lex_state = 8}, [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 = 7, .external_lex_state = 8}, - [9180] = {.lex_state = 7, .external_lex_state = 8}, + [9177] = {.lex_state = 7, .external_lex_state = 8}, + [9178] = {.lex_state = 7, .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 = 9}, - [9183] = {.lex_state = 0, .external_lex_state = 8}, + [9182] = {.lex_state = 7, .external_lex_state = 8}, + [9183] = {.lex_state = 7, .external_lex_state = 8}, [9184] = {.lex_state = 0, .external_lex_state = 8}, - [9185] = {.lex_state = 0, .external_lex_state = 8}, - [9186] = {.lex_state = 0, .external_lex_state = 8}, + [9185] = {.lex_state = 7, .external_lex_state = 8}, + [9186] = {.lex_state = 7, .external_lex_state = 8}, [9187] = {.lex_state = 0, .external_lex_state = 8}, - [9188] = {.lex_state = 0, .external_lex_state = 8}, - [9189] = {.lex_state = 7, .external_lex_state = 8}, + [9188] = {.lex_state = 7, .external_lex_state = 8}, + [9189] = {.lex_state = 0, .external_lex_state = 8}, [9190] = {.lex_state = 0, .external_lex_state = 8}, [9191] = {.lex_state = 0, .external_lex_state = 8}, - [9192] = {.lex_state = 7, .external_lex_state = 8}, + [9192] = {.lex_state = 0, .external_lex_state = 8}, [9193] = {.lex_state = 7, .external_lex_state = 8}, [9194] = {.lex_state = 7, .external_lex_state = 8}, - [9195] = {.lex_state = 7, .external_lex_state = 8}, - [9196] = {.lex_state = 7, .external_lex_state = 8}, + [9195] = {.lex_state = 0, .external_lex_state = 8}, + [9196] = {.lex_state = 0, .external_lex_state = 8}, [9197] = {.lex_state = 0, .external_lex_state = 8}, [9198] = {.lex_state = 0, .external_lex_state = 8}, - [9199] = {.lex_state = 0, .external_lex_state = 8}, - [9200] = {.lex_state = 0, .external_lex_state = 8}, + [9199] = {.lex_state = 7, .external_lex_state = 8}, + [9200] = {.lex_state = 7, .external_lex_state = 8}, [9201] = {.lex_state = 0, .external_lex_state = 8}, - [9202] = {.lex_state = 0, .external_lex_state = 8}, + [9202] = {.lex_state = 7, .external_lex_state = 8}, [9203] = {.lex_state = 0, .external_lex_state = 8}, [9204] = {.lex_state = 0, .external_lex_state = 8}, [9205] = {.lex_state = 0, .external_lex_state = 8}, [9206] = {.lex_state = 0, .external_lex_state = 8}, - [9207] = {.lex_state = 0, .external_lex_state = 8}, - [9208] = {.lex_state = 0, .external_lex_state = 8}, + [9207] = {.lex_state = 7, .external_lex_state = 8}, + [9208] = {.lex_state = 7, .external_lex_state = 8}, [9209] = {.lex_state = 7, .external_lex_state = 8}, [9210] = {.lex_state = 0, .external_lex_state = 8}, - [9211] = {.lex_state = 0, .external_lex_state = 8}, + [9211] = {.lex_state = 7, .external_lex_state = 8}, [9212] = {.lex_state = 7, .external_lex_state = 8}, - [9213] = {.lex_state = 7, .external_lex_state = 8}, - [9214] = {.lex_state = 7, .external_lex_state = 8}, - [9215] = {.lex_state = 0, .external_lex_state = 8}, + [9213] = {.lex_state = 0, .external_lex_state = 8}, + [9214] = {.lex_state = 0, .external_lex_state = 8}, + [9215] = {.lex_state = 7, .external_lex_state = 8}, [9216] = {.lex_state = 0, .external_lex_state = 8}, - [9217] = {.lex_state = 7, .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}, + [9221] = {.lex_state = 7, .external_lex_state = 8}, + [9222] = {.lex_state = 7, .external_lex_state = 8}, [9223] = {.lex_state = 7, .external_lex_state = 8}, [9224] = {.lex_state = 0, .external_lex_state = 8}, - [9225] = {.lex_state = 0, .external_lex_state = 8}, + [9225] = {.lex_state = 7, .external_lex_state = 8}, [9226] = {.lex_state = 0, .external_lex_state = 8}, - [9227] = {.lex_state = 7, .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 = 7, .external_lex_state = 8}, + [9230] = {.lex_state = 0, .external_lex_state = 8}, [9231] = {.lex_state = 7, .external_lex_state = 8}, - [9232] = {.lex_state = 0, .external_lex_state = 8}, - [9233] = {.lex_state = 0, .external_lex_state = 9}, + [9232] = {.lex_state = 7, .external_lex_state = 8}, + [9233] = {.lex_state = 0, .external_lex_state = 8}, [9234] = {.lex_state = 0, .external_lex_state = 8}, [9235] = {.lex_state = 0, .external_lex_state = 8}, [9236] = {.lex_state = 0, .external_lex_state = 8}, [9237] = {.lex_state = 0, .external_lex_state = 8}, - [9238] = {.lex_state = 7, .external_lex_state = 8}, - [9239] = {.lex_state = 0, .external_lex_state = 8}, - [9240] = {.lex_state = 7, .external_lex_state = 8}, - [9241] = {.lex_state = 7, .external_lex_state = 8}, + [9238] = {.lex_state = 0, .external_lex_state = 8}, + [9239] = {.lex_state = 7, .external_lex_state = 8}, + [9240] = {.lex_state = 0, .external_lex_state = 8}, + [9241] = {.lex_state = 0, .external_lex_state = 8}, [9242] = {.lex_state = 0, .external_lex_state = 8}, [9243] = {.lex_state = 0, .external_lex_state = 8}, - [9244] = {.lex_state = 0, .external_lex_state = 8}, - [9245] = {.lex_state = 7, .external_lex_state = 8}, - [9246] = {.lex_state = 0, .external_lex_state = 8}, + [9244] = {.lex_state = 7, .external_lex_state = 8}, + [9245] = {.lex_state = 0, .external_lex_state = 8}, + [9246] = {.lex_state = 7, .external_lex_state = 8}, [9247] = {.lex_state = 0, .external_lex_state = 8}, - [9248] = {.lex_state = 7, .external_lex_state = 8}, + [9248] = {.lex_state = 0, .external_lex_state = 8}, [9249] = {.lex_state = 0, .external_lex_state = 8}, [9250] = {.lex_state = 0, .external_lex_state = 8}, - [9251] = {.lex_state = 7, .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}, - [9255] = {.lex_state = 0, .external_lex_state = 8}, + [9253] = {.lex_state = 7, .external_lex_state = 8}, + [9254] = {.lex_state = 7, .external_lex_state = 8}, + [9255] = {.lex_state = 7, .external_lex_state = 8}, [9256] = {.lex_state = 0, .external_lex_state = 8}, - [9257] = {.lex_state = 0, .external_lex_state = 8}, - [9258] = {.lex_state = 7, .external_lex_state = 8}, - [9259] = {.lex_state = 0, .external_lex_state = 8}, - [9260] = {.lex_state = 0, .external_lex_state = 8}, + [9257] = {.lex_state = 7, .external_lex_state = 8}, + [9258] = {.lex_state = 0, .external_lex_state = 8}, + [9259] = {.lex_state = 7, .external_lex_state = 8}, + [9260] = {.lex_state = 7, .external_lex_state = 8}, [9261] = {.lex_state = 0, .external_lex_state = 8}, [9262] = {.lex_state = 0, .external_lex_state = 8}, [9263] = {.lex_state = 0, .external_lex_state = 8}, - [9264] = {.lex_state = 0, .external_lex_state = 8}, - [9265] = {.lex_state = 0, .external_lex_state = 8}, - [9266] = {.lex_state = 0, .external_lex_state = 8}, - [9267] = {.lex_state = 0, .external_lex_state = 8}, + [9264] = {.lex_state = 7, .external_lex_state = 8}, + [9265] = {.lex_state = 7, .external_lex_state = 8}, + [9266] = {.lex_state = 7, .external_lex_state = 8}, + [9267] = {.lex_state = 7, .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 = 0, .external_lex_state = 8}, - [9272] = {.lex_state = 0, .external_lex_state = 8}, - [9273] = {.lex_state = 0, .external_lex_state = 8}, - [9274] = {.lex_state = 0, .external_lex_state = 8}, + [9270] = {.lex_state = 7, .external_lex_state = 8}, + [9271] = {.lex_state = 7, .external_lex_state = 8}, + [9272] = {.lex_state = 7, .external_lex_state = 8}, + [9273] = {.lex_state = 7, .external_lex_state = 8}, + [9274] = {.lex_state = 7, .external_lex_state = 8}, [9275] = {.lex_state = 7, .external_lex_state = 8}, - [9276] = {.lex_state = 0, .external_lex_state = 8}, + [9276] = {.lex_state = 7, .external_lex_state = 8}, [9277] = {.lex_state = 7, .external_lex_state = 8}, [9278] = {.lex_state = 7, .external_lex_state = 8}, - [9279] = {.lex_state = 0, .external_lex_state = 8}, - [9280] = {.lex_state = 0, .external_lex_state = 8}, + [9279] = {.lex_state = 7, .external_lex_state = 8}, + [9280] = {.lex_state = 7, .external_lex_state = 8}, [9281] = {.lex_state = 0, .external_lex_state = 8}, [9282] = {.lex_state = 0, .external_lex_state = 8}, - [9283] = {.lex_state = 0, .external_lex_state = 8}, + [9283] = {.lex_state = 7, .external_lex_state = 8}, [9284] = {.lex_state = 0, .external_lex_state = 8}, - [9285] = {.lex_state = 0, .external_lex_state = 8}, - [9286] = {.lex_state = 7, .external_lex_state = 8}, - [9287] = {.lex_state = 0, .external_lex_state = 8}, - [9288] = {.lex_state = 0, .external_lex_state = 8}, - [9289] = {.lex_state = 0, .external_lex_state = 8}, - [9290] = {.lex_state = 0, .external_lex_state = 8}, - [9291] = {.lex_state = 0, .external_lex_state = 8}, + [9285] = {.lex_state = 7, .external_lex_state = 8}, + [9286] = {.lex_state = 0, .external_lex_state = 8}, + [9287] = {.lex_state = 7, .external_lex_state = 8}, + [9288] = {.lex_state = 7, .external_lex_state = 8}, + [9289] = {.lex_state = 7, .external_lex_state = 8}, + [9290] = {.lex_state = 7, .external_lex_state = 8}, + [9291] = {.lex_state = 7, .external_lex_state = 8}, [9292] = {.lex_state = 7, .external_lex_state = 8}, [9293] = {.lex_state = 0, .external_lex_state = 8}, [9294] = {.lex_state = 0, .external_lex_state = 8}, - [9295] = {.lex_state = 0, .external_lex_state = 8}, - [9296] = {.lex_state = 0, .external_lex_state = 8}, - [9297] = {.lex_state = 0, .external_lex_state = 8}, + [9295] = {.lex_state = 7, .external_lex_state = 8}, + [9296] = {.lex_state = 7, .external_lex_state = 8}, + [9297] = {.lex_state = 7, .external_lex_state = 8}, [9298] = {.lex_state = 7, .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}, + [9299] = {.lex_state = 7, .external_lex_state = 8}, + [9300] = {.lex_state = 7, .external_lex_state = 8}, + [9301] = {.lex_state = 7, .external_lex_state = 8}, [9302] = {.lex_state = 7, .external_lex_state = 8}, [9303] = {.lex_state = 7, .external_lex_state = 8}, - [9304] = {.lex_state = 0, .external_lex_state = 8}, - [9305] = {.lex_state = 0, .external_lex_state = 8}, + [9304] = {.lex_state = 7, .external_lex_state = 8}, + [9305] = {.lex_state = 7, .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 = 0, .external_lex_state = 8}, + [9307] = {.lex_state = 7, .external_lex_state = 8}, + [9308] = {.lex_state = 7, .external_lex_state = 8}, + [9309] = {.lex_state = 7, .external_lex_state = 8}, + [9310] = {.lex_state = 7, .external_lex_state = 8}, [9311] = {.lex_state = 0, .external_lex_state = 8}, [9312] = {.lex_state = 0, .external_lex_state = 8}, - [9313] = {.lex_state = 0, .external_lex_state = 8}, - [9314] = {.lex_state = 0, .external_lex_state = 8}, + [9313] = {.lex_state = 7, .external_lex_state = 8}, + [9314] = {.lex_state = 7, .external_lex_state = 8}, [9315] = {.lex_state = 0, .external_lex_state = 8}, [9316] = {.lex_state = 0, .external_lex_state = 8}, [9317] = {.lex_state = 0, .external_lex_state = 8}, @@ -23545,33 +23555,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9328] = {.lex_state = 0, .external_lex_state = 8}, [9329] = {.lex_state = 0, .external_lex_state = 8}, [9330] = {.lex_state = 0, .external_lex_state = 8}, - [9331] = {.lex_state = 0, .external_lex_state = 8}, - [9332] = {.lex_state = 0, .external_lex_state = 8}, - [9333] = {.lex_state = 0, .external_lex_state = 8}, + [9331] = {.lex_state = 7, .external_lex_state = 8}, + [9332] = {.lex_state = 7, .external_lex_state = 8}, + [9333] = {.lex_state = 7, .external_lex_state = 8}, [9334] = {.lex_state = 0, .external_lex_state = 8}, - [9335] = {.lex_state = 0, .external_lex_state = 8}, + [9335] = {.lex_state = 7, .external_lex_state = 8}, [9336] = {.lex_state = 0, .external_lex_state = 8}, [9337] = {.lex_state = 0, .external_lex_state = 8}, - [9338] = {.lex_state = 7, .external_lex_state = 8}, - [9339] = {.lex_state = 0, .external_lex_state = 8}, - [9340] = {.lex_state = 0, .external_lex_state = 8}, + [9338] = {.lex_state = 0, .external_lex_state = 8}, + [9339] = {.lex_state = 7, .external_lex_state = 8}, + [9340] = {.lex_state = 7, .external_lex_state = 8}, [9341] = {.lex_state = 0, .external_lex_state = 8}, - [9342] = {.lex_state = 0, .external_lex_state = 8}, + [9342] = {.lex_state = 7, .external_lex_state = 8}, [9343] = {.lex_state = 7, .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 = 7, .external_lex_state = 8}, - [9348] = {.lex_state = 0, .external_lex_state = 8}, + [9346] = {.lex_state = 7, .external_lex_state = 8}, + [9347] = {.lex_state = 0, .external_lex_state = 8}, + [9348] = {.lex_state = 7, .external_lex_state = 8}, [9349] = {.lex_state = 0, .external_lex_state = 8}, [9350] = {.lex_state = 0, .external_lex_state = 8}, [9351] = {.lex_state = 0, .external_lex_state = 8}, - [9352] = {.lex_state = 7, .external_lex_state = 8}, + [9352] = {.lex_state = 0, .external_lex_state = 8}, [9353] = {.lex_state = 0, .external_lex_state = 8}, [9354] = {.lex_state = 0, .external_lex_state = 8}, [9355] = {.lex_state = 0, .external_lex_state = 8}, [9356] = {.lex_state = 0, .external_lex_state = 8}, - [9357] = {.lex_state = 7, .external_lex_state = 8}, + [9357] = {.lex_state = 0, .external_lex_state = 8}, [9358] = {.lex_state = 0, .external_lex_state = 8}, [9359] = {.lex_state = 0, .external_lex_state = 8}, [9360] = {.lex_state = 0, .external_lex_state = 8}, @@ -23594,14 +23604,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9377] = {.lex_state = 0, .external_lex_state = 8}, [9378] = {.lex_state = 0, .external_lex_state = 8}, [9379] = {.lex_state = 0, .external_lex_state = 8}, - [9380] = {.lex_state = 7, .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 = 7, .external_lex_state = 8}, + [9384] = {.lex_state = 0, .external_lex_state = 8}, [9385] = {.lex_state = 0, .external_lex_state = 8}, [9386] = {.lex_state = 0, .external_lex_state = 8}, - [9387] = {.lex_state = 0, .external_lex_state = 8}, + [9387] = {.lex_state = 7, .external_lex_state = 8}, [9388] = {.lex_state = 0, .external_lex_state = 8}, [9389] = {.lex_state = 0, .external_lex_state = 8}, [9390] = {.lex_state = 0, .external_lex_state = 8}, @@ -23613,19 +23623,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9396] = {.lex_state = 0, .external_lex_state = 8}, [9397] = {.lex_state = 0, .external_lex_state = 8}, [9398] = {.lex_state = 0, .external_lex_state = 8}, - [9399] = {.lex_state = 7, .external_lex_state = 8}, + [9399] = {.lex_state = 0, .external_lex_state = 8}, [9400] = {.lex_state = 0, .external_lex_state = 8}, [9401] = {.lex_state = 0, .external_lex_state = 8}, - [9402] = {.lex_state = 7, .external_lex_state = 8}, + [9402] = {.lex_state = 0, .external_lex_state = 8}, [9403] = {.lex_state = 0, .external_lex_state = 8}, [9404] = {.lex_state = 0, .external_lex_state = 8}, [9405] = {.lex_state = 0, .external_lex_state = 8}, [9406] = {.lex_state = 0, .external_lex_state = 8}, - [9407] = {.lex_state = 0, .external_lex_state = 8}, + [9407] = {.lex_state = 7, .external_lex_state = 8}, [9408] = {.lex_state = 0, .external_lex_state = 8}, [9409] = {.lex_state = 0, .external_lex_state = 8}, [9410] = {.lex_state = 7, .external_lex_state = 8}, - [9411] = {.lex_state = 7, .external_lex_state = 8}, + [9411] = {.lex_state = 0, .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}, @@ -23636,87 +23646,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 7, .external_lex_state = 8}, - [9423] = {.lex_state = 7, .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 = 8}, - [9425] = {.lex_state = 0, .external_lex_state = 8}, + [9425] = {.lex_state = 10, .external_lex_state = 8}, [9426] = {.lex_state = 0, .external_lex_state = 8}, - [9427] = {.lex_state = 7, .external_lex_state = 8}, + [9427] = {.lex_state = 0, .external_lex_state = 8}, [9428] = {.lex_state = 0, .external_lex_state = 8}, [9429] = {.lex_state = 0, .external_lex_state = 8}, [9430] = {.lex_state = 0, .external_lex_state = 8}, [9431] = {.lex_state = 0, .external_lex_state = 8}, - [9432] = {.lex_state = 0, .external_lex_state = 8}, + [9432] = {.lex_state = 7, .external_lex_state = 8}, [9433] = {.lex_state = 0, .external_lex_state = 8}, - [9434] = {.lex_state = 0, .external_lex_state = 8}, - [9435] = {.lex_state = 0, .external_lex_state = 8}, + [9434] = {.lex_state = 7, .external_lex_state = 8}, + [9435] = {.lex_state = 7, .external_lex_state = 8}, [9436] = {.lex_state = 0, .external_lex_state = 8}, - [9437] = {.lex_state = 7, .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 = 8}, [9441] = {.lex_state = 0, .external_lex_state = 8}, - [9442] = {.lex_state = 0, .external_lex_state = 8}, + [9442] = {.lex_state = 7, .external_lex_state = 8}, [9443] = {.lex_state = 0, .external_lex_state = 8}, [9444] = {.lex_state = 0, .external_lex_state = 8}, - [9445] = {.lex_state = 7, .external_lex_state = 8}, + [9445] = {.lex_state = 0, .external_lex_state = 8}, [9446] = {.lex_state = 0, .external_lex_state = 8}, [9447] = {.lex_state = 0, .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 = 7, .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 = 8}, - [9454] = {.lex_state = 7, .external_lex_state = 8}, + [9454] = {.lex_state = 0, .external_lex_state = 8}, [9455] = {.lex_state = 0, .external_lex_state = 8}, - [9456] = {.lex_state = 10, .external_lex_state = 8}, + [9456] = {.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 = 0, .external_lex_state = 8}, - [9460] = {.lex_state = 7, .external_lex_state = 8}, - [9461] = {.lex_state = 7, .external_lex_state = 8}, + [9460] = {.lex_state = 0, .external_lex_state = 8}, + [9461] = {.lex_state = 0, .external_lex_state = 8}, [9462] = {.lex_state = 0, .external_lex_state = 8}, [9463] = {.lex_state = 0, .external_lex_state = 8}, - [9464] = {.lex_state = 0, .external_lex_state = 8}, - [9465] = {.lex_state = 0, .external_lex_state = 8}, + [9464] = {.lex_state = 7, .external_lex_state = 8}, + [9465] = {.lex_state = 7, .external_lex_state = 8}, [9466] = {.lex_state = 0, .external_lex_state = 8}, - [9467] = {.lex_state = 7, .external_lex_state = 8}, + [9467] = {.lex_state = 0, .external_lex_state = 8}, [9468] = {.lex_state = 0, .external_lex_state = 8}, [9469] = {.lex_state = 7, .external_lex_state = 8}, - [9470] = {.lex_state = 0, .external_lex_state = 8}, + [9470] = {.lex_state = 7, .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}, + [9472] = {.lex_state = 7, .external_lex_state = 8}, + [9473] = {.lex_state = 7, .external_lex_state = 8}, [9474] = {.lex_state = 0, .external_lex_state = 8}, [9475] = {.lex_state = 0, .external_lex_state = 8}, - [9476] = {.lex_state = 7, .external_lex_state = 8}, - [9477] = {.lex_state = 7, .external_lex_state = 8}, + [9476] = {.lex_state = 0, .external_lex_state = 8}, + [9477] = {.lex_state = 0, .external_lex_state = 8}, [9478] = {.lex_state = 0, .external_lex_state = 8}, [9479] = {.lex_state = 0, .external_lex_state = 8}, - [9480] = {.lex_state = 7, .external_lex_state = 8}, - [9481] = {.lex_state = 0, .external_lex_state = 8}, + [9480] = {.lex_state = 0, .external_lex_state = 8}, + [9481] = {.lex_state = 7, .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 = 7, .external_lex_state = 8}, - [9486] = {.lex_state = 0, .external_lex_state = 8}, + [9483] = {.lex_state = 7, .external_lex_state = 8}, + [9484] = {.lex_state = 7, .external_lex_state = 8}, + [9485] = {.lex_state = 0, .external_lex_state = 8}, + [9486] = {.lex_state = 7, .external_lex_state = 8}, [9487] = {.lex_state = 0, .external_lex_state = 8}, - [9488] = {.lex_state = 0, .external_lex_state = 8}, - [9489] = {.lex_state = 7, .external_lex_state = 8}, - [9490] = {.lex_state = 0, .external_lex_state = 8}, - [9491] = {.lex_state = 0, .external_lex_state = 8}, - [9492] = {.lex_state = 0, .external_lex_state = 8}, + [9488] = {.lex_state = 7, .external_lex_state = 8}, + [9489] = {.lex_state = 0, .external_lex_state = 8}, + [9490] = {.lex_state = 7, .external_lex_state = 8}, + [9491] = {.lex_state = 7, .external_lex_state = 8}, + [9492] = {.lex_state = 7, .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}, - [9498] = {.lex_state = 0, .external_lex_state = 8}, + [9498] = {.lex_state = 7, .external_lex_state = 8}, [9499] = {.lex_state = 0, .external_lex_state = 8}, - [9500] = {.lex_state = 7, .external_lex_state = 8}, + [9500] = {.lex_state = 0, .external_lex_state = 8}, [9501] = {.lex_state = 0, .external_lex_state = 8}, - [9502] = {.lex_state = 0, .external_lex_state = 8}, + [9502] = {.lex_state = 7, .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 = 8}, @@ -23724,26 +23734,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9507] = {.lex_state = 0, .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}, + [9510] = {.lex_state = 7, .external_lex_state = 8}, [9511] = {.lex_state = 0, .external_lex_state = 8}, - [9512] = {.lex_state = 0, .external_lex_state = 8}, + [9512] = {.lex_state = 7, .external_lex_state = 8}, [9513] = {.lex_state = 0, .external_lex_state = 8}, - [9514] = {.lex_state = 7, .external_lex_state = 8}, - [9515] = {.lex_state = 0, .external_lex_state = 8}, + [9514] = {.lex_state = 0, .external_lex_state = 8}, + [9515] = {.lex_state = 7, .external_lex_state = 8}, [9516] = {.lex_state = 0, .external_lex_state = 8}, - [9517] = {.lex_state = 0, .external_lex_state = 8}, + [9517] = {.lex_state = 7, .external_lex_state = 8}, [9518] = {.lex_state = 7, .external_lex_state = 8}, [9519] = {.lex_state = 0, .external_lex_state = 8}, - [9520] = {.lex_state = 0, .external_lex_state = 8}, - [9521] = {.lex_state = 7, .external_lex_state = 8}, + [9520] = {.lex_state = 7, .external_lex_state = 8}, + [9521] = {.lex_state = 0, .external_lex_state = 8}, [9522] = {.lex_state = 7, .external_lex_state = 8}, - [9523] = {.lex_state = 0, .external_lex_state = 8}, - [9524] = {.lex_state = 7, .external_lex_state = 8}, - [9525] = {.lex_state = 7, .external_lex_state = 8}, - [9526] = {.lex_state = 0, .external_lex_state = 8}, - [9527] = {.lex_state = 0, .external_lex_state = 8}, + [9523] = {.lex_state = 7, .external_lex_state = 8}, + [9524] = {.lex_state = 0, .external_lex_state = 8}, + [9525] = {.lex_state = 0, .external_lex_state = 8}, + [9526] = {.lex_state = 7, .external_lex_state = 8}, + [9527] = {.lex_state = 7, .external_lex_state = 8}, [9528] = {.lex_state = 0, .external_lex_state = 8}, - [9529] = {.lex_state = 7, .external_lex_state = 8}, + [9529] = {.lex_state = 0, .external_lex_state = 8}, [9530] = {.lex_state = 0, .external_lex_state = 8}, [9531] = {.lex_state = 0, .external_lex_state = 8}, [9532] = {.lex_state = 0, .external_lex_state = 8}, @@ -23761,37 +23771,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9544] = {.lex_state = 0, .external_lex_state = 8}, [9545] = {.lex_state = 0, .external_lex_state = 8}, [9546] = {.lex_state = 0, .external_lex_state = 8}, - [9547] = {.lex_state = 7, .external_lex_state = 8}, - [9548] = {.lex_state = 0, .external_lex_state = 8}, + [9547] = {.lex_state = 0, .external_lex_state = 8}, + [9548] = {.lex_state = 7, .external_lex_state = 8}, [9549] = {.lex_state = 0, .external_lex_state = 8}, [9550] = {.lex_state = 0, .external_lex_state = 8}, [9551] = {.lex_state = 0, .external_lex_state = 8}, - [9552] = {.lex_state = 7, .external_lex_state = 8}, - [9553] = {.lex_state = 7, .external_lex_state = 8}, - [9554] = {.lex_state = 7, .external_lex_state = 8}, + [9552] = {.lex_state = 0, .external_lex_state = 8}, + [9553] = {.lex_state = 0, .external_lex_state = 8}, + [9554] = {.lex_state = 0, .external_lex_state = 8}, [9555] = {.lex_state = 7, .external_lex_state = 8}, [9556] = {.lex_state = 7, .external_lex_state = 8}, [9557] = {.lex_state = 7, .external_lex_state = 8}, [9558] = {.lex_state = 7, .external_lex_state = 8}, [9559] = {.lex_state = 7, .external_lex_state = 8}, - [9560] = {.lex_state = 0, .external_lex_state = 8}, - [9561] = {.lex_state = 0, .external_lex_state = 8}, - [9562] = {.lex_state = 0, .external_lex_state = 8}, - [9563] = {.lex_state = 0, .external_lex_state = 8}, + [9560] = {.lex_state = 7, .external_lex_state = 8}, + [9561] = {.lex_state = 7, .external_lex_state = 8}, + [9562] = {.lex_state = 7, .external_lex_state = 8}, + [9563] = {.lex_state = 7, .external_lex_state = 8}, [9564] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, [9569] = {.lex_state = 0, .external_lex_state = 8}, - [9570] = {.lex_state = 0, .external_lex_state = 8}, + [9570] = {.lex_state = 7, .external_lex_state = 8}, [9571] = {.lex_state = 0, .external_lex_state = 8}, - [9572] = {.lex_state = 7, .external_lex_state = 8}, + [9572] = {.lex_state = 0, .external_lex_state = 8}, [9573] = {.lex_state = 0, .external_lex_state = 8}, [9574] = {.lex_state = 0, .external_lex_state = 8}, [9575] = {.lex_state = 0, .external_lex_state = 8}, [9576] = {.lex_state = 0, .external_lex_state = 8}, - [9577] = {.lex_state = 35, .external_lex_state = 8}, + [9577] = {.lex_state = 0, .external_lex_state = 8}, + [9578] = {.lex_state = 0, .external_lex_state = 8}, + [9579] = {.lex_state = 7, .external_lex_state = 8}, + [9580] = {.lex_state = 35, .external_lex_state = 8}, }; enum { @@ -24019,92 +24032,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(9502), - [sym_shebang_line] = STATE(52), - [sym_file_annotation] = STATE(53), - [sym_package_header] = STATE(66), + [sym_source_file] = STATE(9489), + [sym_shebang_line] = STATE(53), + [sym_file_annotation] = STATE(52), + [sym_package_header] = STATE(78), [sym_import_list] = STATE(62), - [sym_import_header] = STATE(8215), - [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__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_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat1] = STATE(53), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat1] = STATE(52), [aux_sym_source_file_repeat2] = STATE(62), - [aux_sym_source_file_repeat3] = STATE(253), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [aux_sym_source_file_repeat3] = STATE(248), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [ts_builtin_sym_end] = ACTIONS(5), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_POUND_BANG] = ACTIONS(9), @@ -24186,84 +24199,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [2] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3130), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9232), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), @@ -24287,32 +24300,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(133), [anon_sym_fun] = ACTIONS(135), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(147), [anon_sym_DASH_GT] = ACTIONS(117), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), [anon_sym_DOT_DOT] = ACTIONS(117), [anon_sym_QMARK_COLON] = ACTIONS(117), [anon_sym_AMP_AMP] = ACTIONS(117), [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), [anon_sym_PLUS_EQ] = ACTIONS(117), [anon_sym_DASH_EQ] = ACTIONS(117), [anon_sym_STAR_EQ] = ACTIONS(117), @@ -24327,20 +24340,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(117), [anon_sym_is] = ACTIONS(119), [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), [anon_sym_SLASH] = ACTIONS(119), [anon_sym_PERCENT] = ACTIONS(119), [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_BANG_BANG] = ACTIONS(117), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -24359,180 +24372,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_safe_nav] = ACTIONS(117), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [3] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3204), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3397), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(145), - [anon_sym_DASH_GT] = ACTIONS(199), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(171), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -24551,180 +24564,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [4] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4650), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3405), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_DASH_GT] = ACTIONS(117), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(287), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -24743,180 +24756,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [5] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4592), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4601), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_DASH_GT] = ACTIONS(199), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(305), + [anon_sym_set] = ACTIONS(307), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(309), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -24935,180 +24948,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, [6] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9063), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4613), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(285), - [anon_sym_as] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(287), - [anon_sym_where] = ACTIONS(287), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(305), [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(309), - [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DASH_GT] = ACTIONS(287), [sym_label] = ACTIONS(311), [anon_sym_for] = ACTIONS(313), - [anon_sym_in] = ACTIONS(287), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(315), [anon_sym_do] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(285), - [anon_sym_QMARK_COLON] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(319), [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(287), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(323), [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_PERCENT_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_BANGin] = ACTIONS(285), - [anon_sym_is] = ACTIONS(287), - [anon_sym_BANGis] = ACTIONS(285), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(327), - [anon_sym_SLASH] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_as_QMARK] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(329), [anon_sym_DASH_DASH] = ACTIONS(329), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_BANG_BANG] = ACTIONS(285), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -25127,125 +25140,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(285), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [7] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3136), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1173), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(119), + [anon_sym_as] = ACTIONS(289), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(289), [anon_sym_class] = ACTIONS(339), [anon_sym_interface] = ACTIONS(339), [anon_sym_enum] = ACTIONS(341), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(287), [anon_sym_val] = ACTIONS(347), [anon_sym_var] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), [anon_sym_object] = ACTIONS(349), [anon_sym_fun] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(353), [anon_sym_set] = ACTIONS(355), [anon_sym_this] = ACTIONS(357), @@ -25253,16 +25266,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(361), [sym_label] = ACTIONS(363), [anon_sym_for] = ACTIONS(365), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(367), [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(371), [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(119), + [anon_sym_else] = ACTIONS(289), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(379), @@ -25270,6 +25283,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_BANG_BANG] = ACTIONS(287), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [8] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9232), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(119), + [anon_sym_GT] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(147), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_in] = ACTIONS(119), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(117), + [anon_sym_QMARK_COLON] = ACTIONS(117), + [anon_sym_AMP_AMP] = ACTIONS(117), + [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(119), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), [anon_sym_PLUS_EQ] = ACTIONS(117), [anon_sym_DASH_EQ] = ACTIONS(117), [anon_sym_STAR_EQ] = ACTIONS(117), @@ -25284,20 +25487,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(117), [anon_sym_is] = ACTIONS(119), [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), [anon_sym_SLASH] = ACTIONS(119), [anon_sym_PERCENT] = ACTIONS(119), [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_BANG_BANG] = ACTIONS(117), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -25316,178 +25519,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym__automatic_semicolon] = ACTIONS(117), [sym_safe_nav] = ACTIONS(117), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(199), }, - [8] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(4906), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), + [9] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3728), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(431), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_BANG_BANG] = ACTIONS(199), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_BANG_BANG] = ACTIONS(205), [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_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -25506,178 +25709,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [9] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3856), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(483), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(509), - [anon_sym_BANG_BANG] = ACTIONS(199), + [10] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3779), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -25696,126 +25899,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [10] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1151), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), + [11] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4899), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(513), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_BANG_BANG] = ACTIONS(287), + [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_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [12] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1161), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(339), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(347), + [anon_sym_var] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(349), + [anon_sym_fun] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(353), + [anon_sym_set] = ACTIONS(355), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(361), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [13] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3144), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(119), + [anon_sym_as] = ACTIONS(289), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(289), [anon_sym_class] = ACTIONS(543), [anon_sym_interface] = ACTIONS(543), [anon_sym_enum] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(287), [anon_sym_val] = ACTIONS(551), [anon_sym_var] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), [anon_sym_object] = ACTIONS(553), [anon_sym_fun] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(557), [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), @@ -25823,16 +26406,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(565), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(571), [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(575), [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(119), + [anon_sym_else] = ACTIONS(289), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), [anon_sym_throw] = ACTIONS(583), @@ -25840,29 +26423,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(591), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(593), [anon_sym_DASH_DASH] = ACTIONS(593), [anon_sym_BANG] = ACTIONS(591), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -25889,7 +26472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -25900,302 +26483,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(611), [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [11] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3717), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(483), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(509), - [anon_sym_BANG_BANG] = ACTIONS(117), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [12] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1133), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), + [14] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3158), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(201), + [anon_sym_as] = ACTIONS(207), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_EQ] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(207), [anon_sym_class] = ACTIONS(543), [anon_sym_interface] = ACTIONS(543), [anon_sym_enum] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(205), [anon_sym_val] = ACTIONS(551), [anon_sym_var] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), [anon_sym_object] = ACTIONS(553), [anon_sym_fun] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), [anon_sym_get] = ACTIONS(557), [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), @@ -26203,16 +26596,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(565), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(207), [anon_sym_while] = ACTIONS(571), [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), [anon_sym_null] = ACTIONS(575), [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(201), + [anon_sym_else] = ACTIONS(207), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), [anon_sym_throw] = ACTIONS(583), @@ -26220,29 +26613,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), [anon_sym_PLUS] = ACTIONS(591), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(593), [anon_sym_DASH_DASH] = ACTIONS(593), [anon_sym_BANG] = ACTIONS(591), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -26269,7 +26662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -26280,164 +26673,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(611), [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [13] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9063), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [15] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5076), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(287), - [anon_sym_where] = ACTIONS(287), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(303), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(309), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_in] = ACTIONS(287), - [anon_sym_while] = ACTIONS(315), - [anon_sym_do] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(285), - [anon_sym_QMARK_COLON] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(287), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_PERCENT_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_BANGin] = ACTIONS(285), - [anon_sym_is] = ACTIONS(287), - [anon_sym_BANGis] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_SLASH] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_as_QMARK] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_BANG_BANG] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(513), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -26456,178 +26849,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym__automatic_semicolon] = ACTIONS(285), - [sym_safe_nav] = ACTIONS(285), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [14] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3155), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [16] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4601), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(361), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(631), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -26646,178 +27038,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [15] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5004), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [17] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4613), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(431), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(631), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG_BANG] = ACTIONS(287), [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_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -26836,171 +27226,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [16] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1133), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), + [18] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3144), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(201), + [anon_sym_as] = ACTIONS(289), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(631), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(657), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(663), [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(201), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(289), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -27027,7 +27416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -27038,163 +27427,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(611), [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [17] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3204), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(663), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_BANG_BANG] = ACTIONS(199), + [19] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3779), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(799), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(689), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -27213,175 +27601,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [18] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3155), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [20] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4899), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(695), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(721), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(289), + [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(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -27400,176 +27789,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [19] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3136), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [21] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5076), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(695), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(721), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(207), + [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(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -27588,177 +27977,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(109), }, - [20] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4592), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [22] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3728), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(799), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(689), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [23] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3405), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(727), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(747), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -27777,175 +28354,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [21] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3717), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), + [24] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3397), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(753), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(747), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -27964,176 +28542,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [22] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3856), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(753), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_BANG_BANG] = ACTIONS(199), + [25] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1161), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(779), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -28152,171 +28729,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [23] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1151), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), + [26] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1173), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(779), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_STAR_EQ] = ACTIONS(287), + [anon_sym_SLASH_EQ] = ACTIONS(287), + [anon_sym_PERCENT_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_BANG_BANG] = ACTIONS(287), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [27] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3158), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(119), + [anon_sym_as] = ACTIONS(207), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(631), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(657), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(663), [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(119), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(207), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -28343,7 +29108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -28354,162 +29119,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(611), [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [24] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5004), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [28] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3397), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(785), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(119), - [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(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(797), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(805), + [anon_sym_fun] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(811), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_BANG_BANG] = ACTIONS(205), [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_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -28528,177 +29292,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [25] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3130), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), + [29] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4601), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(663), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(321), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -28717,175 +29478,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(117), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [26] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(4906), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [30] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3405), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(785), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(201), - [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(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(797), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(805), + [anon_sym_fun] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(811), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_DASH_GT] = ACTIONS(287), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_BANG_BANG] = ACTIONS(287), [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_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -28904,921 +29664,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [27] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4650), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(727), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(117), - [anon_sym_DASH_EQ] = ACTIONS(117), - [anon_sym_STAR_EQ] = ACTIONS(117), - [anon_sym_SLASH_EQ] = ACTIONS(117), - [anon_sym_PERCENT_EQ] = ACTIONS(117), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(119), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_BANG_BANG] = ACTIONS(117), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [28] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4650), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(117), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_BANG_BANG] = ACTIONS(117), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [29] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3204), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_DASH_GT] = ACTIONS(199), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_BANG_BANG] = ACTIONS(199), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [30] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4592), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), + [31] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4613), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(199), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_BANG_BANG] = ACTIONS(199), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [31] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3130), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_DASH_GT] = ACTIONS(117), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_DASH_GT] = ACTIONS(287), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(321), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -29837,171 +29850,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(117), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [32] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3717), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1173), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(459), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(337), [anon_sym_class] = ACTIONS(857), [anon_sym_interface] = ACTIONS(857), [anon_sym_enum] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(287), [anon_sym_val] = ACTIONS(863), [anon_sym_var] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), [anon_sym_object] = ACTIONS(865), [anon_sym_fun] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(869), [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(873), [sym_label] = ACTIONS(875), [anon_sym_for] = ACTIONS(877), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_do] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(883), [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(885), [anon_sym_DASH_DASH] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(883), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30020,172 +30033,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [33] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3856), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1161), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(459), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(337), [anon_sym_class] = ACTIONS(857), [anon_sym_interface] = ACTIONS(857), [anon_sym_enum] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(205), [anon_sym_val] = ACTIONS(863), [anon_sym_var] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), [anon_sym_object] = ACTIONS(865), [anon_sym_fun] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), [anon_sym_get] = ACTIONS(869), [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(873), [sym_label] = ACTIONS(875), [anon_sym_for] = ACTIONS(877), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(207), [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_do] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), [anon_sym_PLUS] = ACTIONS(883), [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(885), [anon_sym_DASH_DASH] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(883), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30204,172 +30217,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [34] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1133), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5076), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(495), [anon_sym_class] = ACTIONS(889), [anon_sym_interface] = ACTIONS(889), [anon_sym_enum] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(205), [anon_sym_val] = ACTIONS(895), [anon_sym_var] = ACTIONS(895), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), [anon_sym_object] = ACTIONS(897), [anon_sym_fun] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), [anon_sym_get] = ACTIONS(901), [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(905), [sym_label] = ACTIONS(907), [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(207), [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30388,172 +30401,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, [35] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1151), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3728), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_BANG_BANG] = ACTIONS(117), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30572,167 +30585,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [36] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(4906), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3779), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_BANG_BANG] = ACTIONS(287), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [37] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4899), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(889), + [anon_sym_interface] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_val] = ACTIONS(895), + [anon_sym_var] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), + [anon_sym_object] = ACTIONS(897), + [anon_sym_fun] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(903), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(201), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(289), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -30770,158 +30967,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(105), [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [37] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3136), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [38] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3158), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(541), [anon_sym_class] = ACTIONS(949), [anon_sym_interface] = ACTIONS(949), [anon_sym_enum] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(205), [anon_sym_val] = ACTIONS(955), [anon_sym_var] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), [anon_sym_object] = ACTIONS(957), [anon_sym_fun] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), [anon_sym_get] = ACTIONS(961), [anon_sym_set] = ACTIONS(963), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(965), [sym_label] = ACTIONS(967), [anon_sym_for] = ACTIONS(969), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(207), [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_do] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_if] = ACTIONS(577), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), [anon_sym_PLUS] = ACTIONS(975), [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(977), [anon_sym_DASH_DASH] = ACTIONS(977), [anon_sym_BANG] = ACTIONS(975), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30940,356 +31137,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [38] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5004), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_BANG_BANG] = ACTIONS(117), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, [39] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3155), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3144), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(541), [anon_sym_class] = ACTIONS(949), [anon_sym_interface] = ACTIONS(949), [anon_sym_enum] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(287), [anon_sym_val] = ACTIONS(955), [anon_sym_var] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_where] = ACTIONS(289), [anon_sym_object] = ACTIONS(957), [anon_sym_fun] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(961), [anon_sym_set] = ACTIONS(963), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(965), [sym_label] = ACTIONS(967), [anon_sym_for] = ACTIONS(969), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_do] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), + [anon_sym_if] = ACTIONS(577), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(975), [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(977), [anon_sym_DASH_DASH] = ACTIONS(977), [anon_sym_BANG] = ACTIONS(975), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31308,123 +31321,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), }, [40] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1133), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3158), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(201), + [anon_sym_as] = ACTIONS(207), [anon_sym_typealias] = ACTIONS(541), [anon_sym_class] = ACTIONS(981), [anon_sym_interface] = ACTIONS(981), [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_val] = ACTIONS(985), [anon_sym_var] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), [anon_sym_object] = ACTIONS(987), [anon_sym_fun] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), [anon_sym_get] = ACTIONS(991), [anon_sym_set] = ACTIONS(993), [anon_sym_this] = ACTIONS(561), @@ -31432,41 +31445,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(997), [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(207), [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(201), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(207), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(1005), [anon_sym_DASH_DASH] = ACTIONS(1005), [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -31493,10 +31506,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -31504,156 +31517,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(611), [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, [41] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3717), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(459), + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4613), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(291), [anon_sym_class] = ACTIONS(1007), [anon_sym_interface] = ACTIONS(1007), [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_val] = ACTIONS(1011), [anon_sym_var] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), [anon_sym_object] = ACTIONS(1013), [anon_sym_fun] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(1017), [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_BANG_BANG] = ACTIONS(117), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31672,170 +31686,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, [42] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(4906), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(199), + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3728), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_BANG_BANG] = ACTIONS(205), [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_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31854,171 +31867,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [43] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4592), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4601), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(1011), + [anon_sym_var] = ACTIONS(1011), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -32037,139 +32050,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(199), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [44] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5004), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4899), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(119), + [anon_sym_else] = ACTIONS(289), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -32177,24 +32190,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(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(69), [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -32232,109 +32245,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(105), [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, [45] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1151), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3779), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_in] = ACTIONS(289), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_BANG_BANG] = ACTIONS(287), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [46] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3144), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(119), + [anon_sym_as] = ACTIONS(289), [anon_sym_typealias] = ACTIONS(541), [anon_sym_class] = ACTIONS(981), [anon_sym_interface] = ACTIONS(981), [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_val] = ACTIONS(985), [anon_sym_var] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), [anon_sym_object] = ACTIONS(987), [anon_sym_fun] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(991), [anon_sym_set] = ACTIONS(993), [anon_sym_this] = ACTIONS(561), @@ -32342,41 +32537,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(997), [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(119), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(289), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(1005), [anon_sym_DASH_DASH] = ACTIONS(1005), [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -32403,10 +32598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -32414,339 +32609,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(611), [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [46] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4650), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [47] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1173), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_BANG_BANG] = ACTIONS(117), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [47] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3204), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(337), [anon_sym_class] = ACTIONS(1071), [anon_sym_interface] = ACTIONS(1071), [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_val] = ACTIONS(1075), [anon_sym_var] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), [anon_sym_object] = ACTIONS(1077), [anon_sym_fun] = ACTIONS(1079), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(1081), [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1087), [anon_sym_for] = ACTIONS(1089), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), + [anon_sym_do] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -32765,170 +32777,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(287), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [48] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3130), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5076), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_val] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_in] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -32947,164 +32959,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(117), + [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), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(109), }, [49] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3155), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1161), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(201), + [anon_sym_as] = ACTIONS(207), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1071), + [anon_sym_interface] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1101), - [anon_sym_var] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1109), + [anon_sym_val] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(201), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(207), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_BANG_BANG] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -33131,167 +33144,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [50] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3136), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3405), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_as] = ACTIONS(289), + [anon_sym_typealias] = ACTIONS(209), [anon_sym_class] = ACTIONS(1097), [anon_sym_interface] = ACTIONS(1097), [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_val] = ACTIONS(1101), [anon_sym_var] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_GT] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), [anon_sym_object] = ACTIONS(1103), [anon_sym_fun] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym_get] = ACTIONS(1107), [anon_sym_set] = ACTIONS(1109), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(1111), [sym_label] = ACTIONS(1113), [anon_sym_for] = ACTIONS(1115), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_QMARK_COLON] = ACTIONS(117), - [anon_sym_AMP_AMP] = ACTIONS(117), - [anon_sym_PIPE_PIPE] = ACTIONS(117), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(117), - [anon_sym_EQ_EQ] = ACTIONS(119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(117), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_GT_EQ] = ACTIONS(117), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(287), + [anon_sym_QMARK_COLON] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(1119), [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_PERCENT] = ACTIONS(117), - [anon_sym_as_QMARK] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_as_QMARK] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(1121), [anon_sym_DASH_DASH] = ACTIONS(1121), [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_BANG_BANG] = ACTIONS(117), + [anon_sym_BANG_BANG] = ACTIONS(287), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33310,170 +33324,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(117), - [sym_safe_nav] = ACTIONS(117), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(287), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [51] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3856), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3397), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(201), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(199), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_BANG_BANG] = ACTIONS(199), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(1101), + [anon_sym_var] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1103), + [anon_sym_fun] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1107), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_BANG_BANG] = ACTIONS(205), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33492,110 +33506,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [52] = { - [sym_file_annotation] = STATE(54), - [sym_package_header] = STATE(83), - [sym_import_list] = STATE(79), - [sym_import_header] = STATE(8215), - [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__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_file_annotation] = STATE(3268), + [sym_package_header] = STATE(74), + [sym_import_list] = STATE(63), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat1] = STATE(54), - [aux_sym_source_file_repeat2] = STATE(79), - [aux_sym_source_file_repeat3] = STATE(237), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat1] = STATE(3268), + [aux_sym_source_file_repeat2] = STATE(63), + [aux_sym_source_file_repeat3] = STATE(247), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [ts_builtin_sym_end] = ACTIONS(1123), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), @@ -33676,90 +33689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [53] = { - [sym_file_annotation] = STATE(3221), - [sym_package_header] = STATE(83), - [sym_import_list] = STATE(79), - [sym_import_header] = STATE(8215), - [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__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_file_annotation] = STATE(54), + [sym_package_header] = STATE(74), + [sym_import_list] = STATE(63), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat1] = STATE(3221), - [aux_sym_source_file_repeat2] = STATE(79), - [aux_sym_source_file_repeat3] = STATE(237), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat1] = STATE(54), + [aux_sym_source_file_repeat2] = STATE(63), + [aux_sym_source_file_repeat3] = STATE(247), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [ts_builtin_sym_end] = ACTIONS(1123), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), @@ -33840,90 +33853,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [54] = { - [sym_file_annotation] = STATE(3221), - [sym_package_header] = STATE(78), - [sym_import_list] = STATE(81), - [sym_import_header] = STATE(8215), - [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__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_file_annotation] = STATE(3268), + [sym_package_header] = STATE(80), + [sym_import_list] = STATE(79), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat1] = STATE(3221), - [aux_sym_source_file_repeat2] = STATE(81), - [aux_sym_source_file_repeat3] = STATE(222), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat1] = STATE(3268), + [aux_sym_source_file_repeat2] = STATE(79), + [aux_sym_source_file_repeat3] = STATE(213), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [ts_builtin_sym_end] = ACTIONS(1125), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), @@ -34004,132 +34017,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [55] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9063), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9232), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(303), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_in] = ACTIONS(287), - [anon_sym_while] = ACTIONS(315), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(287), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(285), - [anon_sym_is] = ACTIONS(287), - [anon_sym_BANGis] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_in] = ACTIONS(119), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(119), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(117), + [anon_sym_is] = ACTIONS(119), + [anon_sym_BANGis] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34148,150 +34161,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym__automatic_semicolon] = ACTIONS(285), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym__automatic_semicolon] = ACTIONS(117), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [56] = { - [sym_type_alias] = STATE(5348), - [sym__declaration] = STATE(5348), - [sym_class_declaration] = STATE(5348), - [sym_function_declaration] = STATE(5348), - [sym_property_declaration] = STATE(5348), - [sym_getter] = STATE(5348), - [sym_setter] = STATE(5348), - [sym_object_declaration] = STATE(5348), - [sym__statement] = STATE(5348), - [sym_control_structure_body] = STATE(5389), - [sym__block] = STATE(5348), - [sym__loop_statement] = STATE(5348), - [sym_for_statement] = STATE(5348), - [sym_while_statement] = STATE(5348), - [sym_do_while_statement] = STATE(5348), - [sym_assignment] = STATE(5348), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7621), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [sym_type_alias] = STATE(5304), + [sym__declaration] = STATE(5304), + [sym_class_declaration] = STATE(5304), + [sym_function_declaration] = STATE(5304), + [sym_property_declaration] = STATE(5304), + [sym_getter] = STATE(5304), + [sym_setter] = STATE(5304), + [sym_object_declaration] = STATE(5304), + [sym__statement] = STATE(5304), + [sym_control_structure_body] = STATE(5277), + [sym__block] = STATE(5304), + [sym__loop_statement] = STATE(5304), + [sym_for_statement] = STATE(5304), + [sym_while_statement] = STATE(5304), + [sym_do_while_statement] = STATE(5304), + [sym_assignment] = STATE(5304), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7845), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(815), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(1127), [anon_sym_class] = ACTIONS(1129), [anon_sym_interface] = ACTIONS(1129), [anon_sym_enum] = ACTIONS(1131), [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_val] = ACTIONS(1135), [anon_sym_var] = ACTIONS(1135), [anon_sym_object] = ACTIONS(1137), [anon_sym_fun] = ACTIONS(1139), [anon_sym_get] = ACTIONS(1141), [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), [anon_sym_for] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(119), + [anon_sym_in] = ACTIONS(207), [anon_sym_while] = ACTIONS(1147), [anon_sym_do] = ACTIONS(1149), [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(119), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANGin] = ACTIONS(117), - [anon_sym_is] = ACTIONS(119), - [anon_sym_BANGis] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1003), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34310,150 +34323,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(117), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(615), }, [57] = { - [sym_type_alias] = STATE(5348), - [sym__declaration] = STATE(5348), - [sym_class_declaration] = STATE(5348), - [sym_function_declaration] = STATE(5348), - [sym_property_declaration] = STATE(5348), - [sym_getter] = STATE(5348), - [sym_setter] = STATE(5348), - [sym_object_declaration] = STATE(5348), - [sym__statement] = STATE(5348), - [sym_control_structure_body] = STATE(5342), - [sym__block] = STATE(5348), - [sym__loop_statement] = STATE(5348), - [sym_for_statement] = STATE(5348), - [sym_while_statement] = STATE(5348), - [sym_do_while_statement] = STATE(5348), - [sym_assignment] = STATE(5348), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7621), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [sym_type_alias] = STATE(5304), + [sym__declaration] = STATE(5304), + [sym_class_declaration] = STATE(5304), + [sym_function_declaration] = STATE(5304), + [sym_property_declaration] = STATE(5304), + [sym_getter] = STATE(5304), + [sym_setter] = STATE(5304), + [sym_object_declaration] = STATE(5304), + [sym__statement] = STATE(5304), + [sym_control_structure_body] = STATE(5281), + [sym__block] = STATE(5304), + [sym__loop_statement] = STATE(5304), + [sym_for_statement] = STATE(5304), + [sym_while_statement] = STATE(5304), + [sym_do_while_statement] = STATE(5304), + [sym_assignment] = STATE(5304), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7845), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(815), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(1127), [anon_sym_class] = ACTIONS(1129), [anon_sym_interface] = ACTIONS(1129), [anon_sym_enum] = ACTIONS(1131), [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_val] = ACTIONS(1135), [anon_sym_var] = ACTIONS(1135), [anon_sym_object] = ACTIONS(1137), [anon_sym_fun] = ACTIONS(1139), [anon_sym_get] = ACTIONS(1141), [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), [anon_sym_for] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(201), + [anon_sym_in] = ACTIONS(289), [anon_sym_while] = ACTIONS(1147), [anon_sym_do] = ACTIONS(1149), [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(289), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(287), + [anon_sym_is] = ACTIONS(289), + [anon_sym_BANGis] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1003), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34472,106 +34485,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(199), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(615), }, [58] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9169), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9256), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9432), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9466), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -34651,87 +34664,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [59] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9312), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9323), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9479), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9549), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -34811,87 +34824,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [60] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9383), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9322), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9282), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9549), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -34911,7 +34924,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(1163), + [anon_sym_DASH_GT] = ACTIONS(1159), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -34971,87 +34984,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [61] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9340), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(8992), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9282), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9460), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -35060,7 +35073,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(1165), + [anon_sym_RBRACE] = ACTIONS(1163), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -35071,7 +35084,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(1163), + [anon_sym_DASH_GT] = ACTIONS(1165), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -35131,87 +35144,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [62] = { - [sym_import_list] = STATE(3082), - [sym_import_header] = STATE(8215), - [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__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_import_list] = STATE(3031), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(3082), - [aux_sym_source_file_repeat3] = STATE(237), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(3031), + [aux_sym_source_file_repeat3] = STATE(247), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [ts_builtin_sym_end] = ACTIONS(1123), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), @@ -35291,97 +35304,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [63] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9429), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_import_list] = STATE(3031), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9432), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(3031), + [aux_sym_source_file_repeat3] = STATE(213), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1125), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1167), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -35391,7 +35405,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(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -35451,87 +35464,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [64] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9481), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9190), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9479), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9328), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -35540,7 +35553,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(1169), + [anon_sym_RBRACE] = ACTIONS(1167), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -35551,7 +35564,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(1159), + [anon_sym_DASH_GT] = ACTIONS(1169), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -35611,87 +35624,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [65] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9300), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9306), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9358), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9482), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -35771,98 +35784,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [66] = { - [sym_import_list] = STATE(79), - [sym_import_header] = STATE(8215), - [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__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_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9316), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9466), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(79), - [aux_sym_source_file_repeat3] = STATE(237), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1123), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -35872,6 +35884,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(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -35931,87 +35944,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [67] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9332), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9286), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9318), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9506), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -36020,7 +36033,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(1175), + [anon_sym_RBRACE] = ACTIONS(1177), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -36031,7 +36044,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(1177), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -36091,87 +36104,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [68] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9459), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9113), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9253), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9460), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -36180,7 +36193,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(1179), + [anon_sym_RBRACE] = ACTIONS(1181), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -36191,7 +36204,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(1181), + [anon_sym_DASH_GT] = ACTIONS(1165), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -36251,87 +36264,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [69] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9561), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9452), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9282), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9506), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -36351,7 +36364,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(1163), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -36411,87 +36424,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [70] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9472), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9262), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9479), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9482), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -36511,7 +36524,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(1159), + [anon_sym_DASH_GT] = ACTIONS(1173), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -36571,98 +36584,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [71] = { - [sym_import_list] = STATE(3082), - [sym_import_header] = STATE(8215), - [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__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_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9453), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9328), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(3082), - [aux_sym_source_file_repeat3] = STATE(246), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1187), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1187), + [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -36672,6 +36684,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(1169), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -36731,87 +36744,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [72] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9541), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9133), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9318), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9506), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -36831,7 +36844,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(1177), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -36891,87 +36904,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [73] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9484), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9448), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9358), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9328), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -36991,7 +37004,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(1173), + [anon_sym_DASH_GT] = ACTIONS(1169), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -37051,97 +37064,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [74] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9453), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_import_list] = STATE(79), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9253), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(79), + [aux_sym_source_file_repeat3] = STATE(213), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1125), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1193), - [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -37151,7 +37165,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(1181), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -37211,87 +37224,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [75] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9527), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9416), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9282), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9506), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -37300,7 +37313,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(1195), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -37311,7 +37324,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(1163), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -37371,87 +37384,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [76] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9441), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9326), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9318), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9549), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -37460,7 +37473,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(1197), + [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -37471,7 +37484,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(1177), + [anon_sym_DASH_GT] = ACTIONS(1159), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -37531,87 +37544,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [77] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9438), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9090), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9253), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9482), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -37620,7 +37633,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(1197), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -37631,7 +37644,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(1181), + [anon_sym_DASH_GT] = ACTIONS(1173), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -37691,88 +37704,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [78] = { - [sym_import_list] = STATE(71), - [sym_import_header] = STATE(8215), - [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__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_import_list] = STATE(63), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(71), - [aux_sym_source_file_repeat3] = STATE(224), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1201), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(63), + [aux_sym_source_file_repeat3] = STATE(247), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1123), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -37851,88 +37864,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [79] = { - [sym_import_list] = STATE(3082), - [sym_import_header] = STATE(8215), - [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__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_import_list] = STATE(3031), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(3082), - [aux_sym_source_file_repeat3] = STATE(222), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1125), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(3031), + [aux_sym_source_file_repeat3] = STATE(245), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1199), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -38011,97 +38024,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [80] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9507), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_import_list] = STATE(85), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9358), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(85), + [aux_sym_source_file_repeat3] = STATE(245), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1199), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1153), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -38111,7 +38125,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(1173), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -38171,98 +38184,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [81] = { - [sym_import_list] = STATE(3082), - [sym_import_header] = STATE(8215), - [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__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_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9041), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9466), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(3082), - [aux_sym_source_file_repeat3] = STATE(224), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1201), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1201), + [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -38272,6 +38284,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(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -38331,87 +38344,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [82] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9494), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9462), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9432), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9460), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -38420,7 +38433,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(1205), + [anon_sym_RBRACE] = ACTIONS(1203), [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -38431,7 +38444,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(1155), + [anon_sym_DASH_GT] = ACTIONS(1165), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -38491,98 +38504,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [83] = { - [sym_import_list] = STATE(81), - [sym_import_header] = STATE(8215), - [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__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_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9421), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9460), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat2] = STATE(81), - [aux_sym_source_file_repeat3] = STATE(222), - [aux_sym_import_list_repeat1] = STATE(8215), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1125), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1205), + [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -38592,6 +38604,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(1165), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -38651,87 +38664,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [84] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9185), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_variable_declaration] = STATE(8500), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9249), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9479), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_multi_variable_declaration] = STATE(8500), + [sym_lambda_parameters] = STATE(9328), + [sym__lambda_parameter] = STATE(8500), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5108), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -38751,7 +38764,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(1159), + [anon_sym_DASH_GT] = ACTIONS(1169), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -38811,411 +38824,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [85] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_variable_declaration] = STATE(8372), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9274), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [sym_import_list] = STATE(3031), + [sym_import_header] = STATE(8224), + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_multi_variable_declaration] = STATE(8372), - [sym_lambda_parameters] = STATE(9432), - [sym__lambda_parameter] = STATE(8372), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5132), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat2] = STATE(3031), + [aux_sym_source_file_repeat3] = STATE(238), + [aux_sym_import_list_repeat1] = STATE(8224), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1209), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [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(1209), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_object] = ACTIONS(31), - [anon_sym_fun] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1155), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [86] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9063), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(303), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym__automatic_semicolon] = ACTIONS(285), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [87] = { - [sym_type_alias] = STATE(8815), - [sym__declaration] = STATE(8815), - [sym_class_declaration] = STATE(8815), - [sym_function_declaration] = STATE(8815), - [sym_property_declaration] = STATE(8815), - [sym_getter] = STATE(8815), - [sym_setter] = STATE(8815), - [sym_object_declaration] = STATE(8815), - [sym__statement] = STATE(8815), - [sym_control_structure_body] = STATE(8890), - [sym__block] = STATE(8815), - [sym__loop_statement] = STATE(8815), - [sym_for_statement] = STATE(8815), - [sym_while_statement] = STATE(8815), - [sym_do_while_statement] = STATE(8815), - [sym_assignment] = STATE(8815), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [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(1211), - [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -39281,89 +38980,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(105), [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [86] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9232), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym__automatic_semicolon] = ACTIONS(117), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [87] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5013), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [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_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, [88] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(2397), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(4031), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(799), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [89] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3595), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(575), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(603), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [90] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(4164), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), @@ -39371,13 +39698,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(981), [anon_sym_interface] = ACTIONS(981), [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_val] = ACTIONS(985), [anon_sym_var] = ACTIONS(985), [anon_sym_object] = ACTIONS(987), [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_get] = ACTIONS(991), [anon_sym_set] = ACTIONS(993), [anon_sym_this] = ACTIONS(561), @@ -39387,13 +39714,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(999), [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(1231), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -39428,10 +39755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -39442,128 +39769,756 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [89] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1550), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), + [91] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3841), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [92] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1560), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(857), + [anon_sym_interface] = ACTIONS(857), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(863), + [anon_sym_var] = ACTIONS(863), + [anon_sym_object] = ACTIONS(865), + [anon_sym_fun] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(871), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(875), + [anon_sym_for] = ACTIONS(877), + [anon_sym_while] = ACTIONS(879), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [93] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1241), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [94] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(5260), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(321), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [95] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5462), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), [anon_sym_class] = ACTIONS(889), [anon_sym_interface] = ACTIONS(889), [anon_sym_enum] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(895), [anon_sym_var] = ACTIONS(895), [anon_sym_object] = ACTIONS(897), [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1253), [anon_sym_get] = ACTIONS(901), [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(905), [sym_label] = ACTIONS(907), [anon_sym_for] = ACTIONS(909), [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39582,102 +40537,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [90] = { - [sym_type_alias] = STATE(8815), - [sym__declaration] = STATE(8815), - [sym_class_declaration] = STATE(8815), - [sym_function_declaration] = STATE(8815), - [sym_property_declaration] = STATE(8815), - [sym_getter] = STATE(8815), - [sym_setter] = STATE(8815), - [sym_object_declaration] = STATE(8815), - [sym__statement] = STATE(8815), - [sym_control_structure_body] = STATE(8859), - [sym__block] = STATE(8815), - [sym__loop_statement] = STATE(8815), - [sym_for_statement] = STATE(8815), - [sym_while_statement] = STATE(8815), - [sym_do_while_statement] = STATE(8815), - [sym_assignment] = STATE(8815), + [96] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4570), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(305), + [anon_sym_set] = ACTIONS(307), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [97] = { + [sym_type_alias] = STATE(8802), + [sym__declaration] = STATE(8802), + [sym_class_declaration] = STATE(8802), + [sym_function_declaration] = STATE(8802), + [sym_property_declaration] = STATE(8802), + [sym_getter] = STATE(8802), + [sym_setter] = STATE(8802), + [sym_object_declaration] = STATE(8802), + [sym__statement] = STATE(8802), + [sym_control_structure_body] = STATE(8890), + [sym__block] = STATE(8802), + [sym__loop_statement] = STATE(8802), + [sym_for_statement] = STATE(8802), + [sym_while_statement] = STATE(8802), + [sym_do_while_statement] = STATE(8802), + [sym_assignment] = STATE(8802), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -39685,8 +40797,8 @@ 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(1211), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -39752,127 +40864,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(105), [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(199), + [sym__automatic_semicolon] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [91] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(4944), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), + [98] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5485), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1267), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [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(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [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), @@ -39902,7 +41014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), + [sym_real_literal] = ACTIONS(97), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -39913,85 +41025,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [92] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1073), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), + [99] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3340), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [100] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3247), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), @@ -40005,19 +41274,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(551), [anon_sym_object] = ACTIONS(553), [anon_sym_fun] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1275), [anon_sym_get] = ACTIONS(557), [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), [anon_sym_while] = ACTIONS(571), [anon_sym_do] = ACTIONS(573), [anon_sym_null] = ACTIONS(575), [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1279), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), [anon_sym_throw] = ACTIONS(583), @@ -40056,7 +41325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -40070,111 +41339,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [93] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5492), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), + [101] = { + [sym_type_alias] = STATE(8802), + [sym__declaration] = STATE(8802), + [sym_class_declaration] = STATE(8802), + [sym_function_declaration] = STATE(8802), + [sym_property_declaration] = STATE(8802), + [sym_getter] = STATE(8802), + [sym_setter] = STATE(8802), + [sym_object_declaration] = STATE(8802), + [sym__statement] = STATE(8802), + [sym_control_structure_body] = STATE(8845), + [sym__block] = STATE(8802), + [sym__loop_statement] = STATE(8802), + [sym_for_statement] = STATE(8802), + [sym_while_statement] = STATE(8802), + [sym_do_while_statement] = STATE(8802), + [sym_assignment] = STATE(8802), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), + [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(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1235), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -40224,288 +41492,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(105), [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(287), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [94] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(5245), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [102] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(4061), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), [anon_sym_class] = ACTIONS(797), [anon_sym_interface] = ACTIONS(797), [anon_sym_enum] = ACTIONS(799), [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), [anon_sym_val] = ACTIONS(803), [anon_sym_var] = ACTIONS(803), [anon_sym_object] = ACTIONS(805), [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1281), [anon_sym_get] = ACTIONS(809), [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(813), [sym_label] = ACTIONS(815), [anon_sym_for] = ACTIONS(817), [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [95] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5148), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1245), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), [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_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40524,145 +41636,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [96] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(5474), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [103] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(2393), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(1071), + [anon_sym_interface] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1075), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40681,145 +41793,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [97] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3951), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), + [104] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3945), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(1293), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40838,140 +41950,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [98] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1237), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), + [105] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(4079), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_class] = ACTIONS(949), + [anon_sym_interface] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), + [anon_sym_val] = ACTIONS(955), + [anon_sym_var] = ACTIONS(955), + [anon_sym_object] = ACTIONS(957), + [anon_sym_fun] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(963), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(971), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(577), + [anon_sym_else] = ACTIONS(1297), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -40998,10 +42110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -41012,128 +42124,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [99] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(4205), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [106] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(4176), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(1301), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41152,145 +42264,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [100] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(4171), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), + [107] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(4218), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [108] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(5477), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(1011), + [anon_sym_var] = ACTIONS(1011), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41309,140 +42578,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [101] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3621), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), + [109] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1089), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), + [anon_sym_class] = ACTIONS(339), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(341), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), + [anon_sym_val] = ACTIONS(347), + [anon_sym_var] = ACTIONS(347), + [anon_sym_object] = ACTIONS(349), + [anon_sym_fun] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(353), + [anon_sym_set] = ACTIONS(355), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_while] = ACTIONS(367), [anon_sym_do] = ACTIONS(369), [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(1315), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -41469,142 +42738,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [102] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3965), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [110] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(4193), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(1101), + [anon_sym_var] = ACTIONS(1101), + [anon_sym_object] = ACTIONS(1103), + [anon_sym_fun] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(1107), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41623,145 +42892,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [103] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(4228), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [111] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(5121), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41780,145 +43049,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [104] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(4062), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [112] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5185), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(955), - [anon_sym_var] = ACTIONS(955), - [anon_sym_object] = ACTIONS(957), - [anon_sym_fun] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(963), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1331), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41937,145 +43206,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(109), }, - [105] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(5121), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [113] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4639), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(305), + [anon_sym_set] = ACTIONS(307), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(1295), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(323), [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42094,140 +43362,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [106] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3128), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), + [114] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(785), [anon_sym_do] = ACTIONS(369), [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -42254,299 +43521,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [107] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3354), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [115] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3255), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [108] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3843), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(1101), + [anon_sym_var] = ACTIONS(1101), + [anon_sym_object] = ACTIONS(1103), + [anon_sym_fun] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(1107), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42565,145 +43674,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [109] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4722), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [116] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3463), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(1319), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(575), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42722,140 +43830,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(603), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), }, - [110] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(4139), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), + [117] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1087), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1101), - [anon_sym_var] = ACTIONS(1101), - [anon_sym_object] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1109), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(785), [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(1323), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -42882,142 +43989,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(413), }, - [111] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(4047), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [118] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3462), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_else] = ACTIONS(1327), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43036,145 +44142,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [112] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5455), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [119] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4680), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(1331), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [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_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43193,144 +44298,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [113] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3241), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), + [120] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4682), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43349,144 +44454,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [114] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3367), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), + [121] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4686), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43505,144 +44610,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [115] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4595), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [122] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5014), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), + [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(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43661,144 +44766,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [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), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [116] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4599), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [123] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5065), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), + [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(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43817,144 +44922,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [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), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [117] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4625), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [124] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3249), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(1101), + [anon_sym_var] = ACTIONS(1101), + [anon_sym_object] = ACTIONS(1103), + [anon_sym_fun] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1107), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -43973,144 +45078,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [118] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3394), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [125] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4985), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), + [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(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44129,144 +45234,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [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), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [119] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3394), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [126] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(1071), + [anon_sym_interface] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1075), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44285,144 +45390,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [120] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3241), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), + [127] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4686), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(833), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_val] = ACTIONS(1011), + [anon_sym_var] = ACTIONS(1011), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44441,144 +45546,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [121] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4725), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [128] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4682), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(1011), + [anon_sym_var] = ACTIONS(1011), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44597,144 +45702,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [122] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3258), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [129] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4680), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(1011), + [anon_sym_var] = ACTIONS(1011), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44753,144 +45858,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [123] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3781), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), + [130] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5065), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -44909,144 +46014,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [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), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [124] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3199), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [131] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5065), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1101), - [anon_sym_var] = ACTIONS(1101), - [anon_sym_object] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -45065,144 +46170,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(109), }, - [125] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), + [132] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3678), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -45221,144 +46326,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [126] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3683), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), + [133] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3840), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -45377,144 +46482,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [127] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3763), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [134] = { + [sym_type_alias] = STATE(8802), + [sym__declaration] = STATE(8802), + [sym_class_declaration] = STATE(8802), + [sym_function_declaration] = STATE(8802), + [sym_property_declaration] = STATE(8802), + [sym_getter] = STATE(8802), + [sym_setter] = STATE(8802), + [sym_object_declaration] = STATE(8802), + [sym__statement] = STATE(8802), + [sym_control_structure_body] = STATE(8829), + [sym__block] = STATE(8802), + [sym__loop_statement] = STATE(8802), + [sym_for_statement] = STATE(8802), + [sym_while_statement] = STATE(8802), + [sym_do_while_statement] = STATE(8802), + [sym_assignment] = STATE(8802), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [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(1263), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1363), + [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(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -45533,300 +46638,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [128] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4725), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3003), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7930), - [sym_modifiers] = STATE(7790), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), + [135] = { + [sym_type_alias] = STATE(5304), + [sym__declaration] = STATE(5304), + [sym_class_declaration] = STATE(5304), + [sym_function_declaration] = STATE(5304), + [sym_property_declaration] = STATE(5304), + [sym_getter] = STATE(5304), + [sym_setter] = STATE(5304), + [sym_object_declaration] = STATE(5304), + [sym__statement] = STATE(5304), + [sym_control_structure_body] = STATE(5349), + [sym__block] = STATE(5304), + [sym__loop_statement] = STATE(5304), + [sym_for_statement] = STATE(5304), + [sym_while_statement] = STATE(5304), + [sym_do_while_statement] = STATE(5304), + [sym_assignment] = STATE(5304), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7845), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(810), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(209), - [anon_sym_interface] = ACTIONS(209), - [anon_sym_enum] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(217), - [anon_sym_var] = ACTIONS(217), - [anon_sym_object] = ACTIONS(219), - [anon_sym_fun] = ACTIONS(221), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(223), - [anon_sym_set] = ACTIONS(225), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [129] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3199), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(815), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(955), - [anon_sym_var] = ACTIONS(955), - [anon_sym_object] = ACTIONS(957), - [anon_sym_fun] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(963), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1129), + [anon_sym_interface] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(1135), + [anon_sym_var] = ACTIONS(1135), + [anon_sym_object] = ACTIONS(1137), + [anon_sym_fun] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(1141), + [anon_sym_set] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1149), [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -45845,144 +46794,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(615), }, - [130] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3450), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(955), - [anon_sym_var] = ACTIONS(955), - [anon_sym_object] = ACTIONS(957), - [anon_sym_fun] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(963), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [136] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46001,139 +46950,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [131] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3450), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), + [137] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_class] = ACTIONS(339), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1101), - [anon_sym_var] = ACTIONS(1101), - [anon_sym_object] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1109), + [anon_sym_val] = ACTIONS(347), + [anon_sym_var] = ACTIONS(347), + [anon_sym_object] = ACTIONS(349), + [anon_sym_fun] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(353), + [anon_sym_set] = ACTIONS(355), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_while] = ACTIONS(367), [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -46160,141 +47109,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(413), }, - [132] = { - [sym_type_alias] = STATE(5348), - [sym__declaration] = STATE(5348), - [sym_class_declaration] = STATE(5348), - [sym_function_declaration] = STATE(5348), - [sym_property_declaration] = STATE(5348), - [sym_getter] = STATE(5348), - [sym_setter] = STATE(5348), - [sym_object_declaration] = STATE(5348), - [sym__statement] = STATE(5348), - [sym_control_structure_body] = STATE(5367), - [sym__block] = STATE(5348), - [sym__loop_statement] = STATE(5348), - [sym_for_statement] = STATE(5348), - [sym_while_statement] = STATE(5348), - [sym_do_while_statement] = STATE(5348), - [sym_assignment] = STATE(5348), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7621), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [138] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3249), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(797), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_object] = ACTIONS(805), + [anon_sym_fun] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(811), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46313,144 +47262,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [133] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3348), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [139] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3255), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(955), - [anon_sym_var] = ACTIONS(955), - [anon_sym_object] = ACTIONS(957), - [anon_sym_fun] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(963), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(797), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_object] = ACTIONS(805), + [anon_sym_fun] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(811), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46469,144 +47418,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [134] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3367), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), + [140] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3258), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(797), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_object] = ACTIONS(805), + [anon_sym_fun] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(811), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46625,144 +47574,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [135] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3763), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_modifiers] = STATE(7675), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(815), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(461), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_object] = ACTIONS(471), - [anon_sym_fun] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(477), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), + [141] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5009), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(889), + [anon_sym_interface] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(895), + [anon_sym_var] = ACTIONS(895), + [anon_sym_object] = ACTIONS(897), + [anon_sym_fun] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(903), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46781,144 +47730,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [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), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [136] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3258), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [142] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9232), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46937,144 +47886,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [137] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3245), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), + [143] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4639), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(833), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_val] = ACTIONS(1011), + [anon_sym_var] = ACTIONS(1011), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47093,144 +48042,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [138] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1184), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [144] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1087), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(1071), + [anon_sym_interface] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1075), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47249,102 +48198,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [139] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1199), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), + [145] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3445), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), @@ -47358,12 +48307,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(551), [anon_sym_object] = ACTIONS(553), [anon_sym_fun] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1373), [anon_sym_get] = ACTIONS(557), [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), [anon_sym_while] = ACTIONS(571), @@ -47408,7 +48357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -47422,127 +48371,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [140] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1152), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [146] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5014), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), [anon_sym_class] = ACTIONS(889), [anon_sym_interface] = ACTIONS(889), [anon_sym_enum] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(895), [anon_sym_var] = ACTIONS(895), [anon_sym_object] = ACTIONS(897), [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1351), [anon_sym_get] = ACTIONS(901), [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(905), [sym_label] = ACTIONS(907), [anon_sym_for] = ACTIONS(909), [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47561,144 +48510,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [141] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3781), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [147] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5065), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(889), + [anon_sym_interface] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(895), + [anon_sym_var] = ACTIONS(895), + [anon_sym_object] = ACTIONS(897), + [anon_sym_fun] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(903), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47717,144 +48666,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [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), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [142] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1199), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [148] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4985), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(4137), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_modifiers] = STATE(7745), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(810), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), [anon_sym_class] = ACTIONS(889), [anon_sym_interface] = ACTIONS(889), [anon_sym_enum] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(895), [anon_sym_var] = ACTIONS(895), [anon_sym_object] = ACTIONS(897), [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1357), [anon_sym_get] = ACTIONS(901), [anon_sym_set] = ACTIONS(903), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(905), [sym_label] = ACTIONS(907), [anon_sym_for] = ACTIONS(909), [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47873,144 +48822,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [143] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3348), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), + [149] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3445), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1101), - [anon_sym_var] = ACTIONS(1101), - [anon_sym_object] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(575), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48029,126 +48978,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(603), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(615), }, - [144] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5025), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), + [150] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5014), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -48157,11 +49106,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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -48191,7 +49140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), + [sym_real_literal] = ACTIONS(535), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -48202,241 +49151,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [145] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3763), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [146] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1152), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), + [151] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3463), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), @@ -48450,12 +49243,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(551), [anon_sym_object] = ACTIONS(553), [anon_sym_fun] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1339), [anon_sym_get] = ACTIONS(557), [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), [anon_sym_while] = ACTIONS(571), @@ -48500,7 +49293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -48514,127 +49307,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [147] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [152] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(857), + [anon_sym_interface] = ACTIONS(857), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(863), + [anon_sym_var] = ACTIONS(863), + [anon_sym_object] = ACTIONS(865), + [anon_sym_fun] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(871), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(875), + [anon_sym_for] = ACTIONS(877), + [anon_sym_while] = ACTIONS(879), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48653,102 +49446,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [148] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1184), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), + [153] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3467), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), @@ -48762,12 +49555,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(551), [anon_sym_object] = ACTIONS(553), [anon_sym_fun] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1375), [anon_sym_get] = ACTIONS(557), [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), [anon_sym_while] = ACTIONS(571), @@ -48812,7 +49605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -48826,127 +49619,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [149] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3245), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_modifiers] = STATE(7669), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(797), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(123), - [anon_sym_interface] = ACTIONS(123), - [anon_sym_enum] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(131), - [anon_sym_var] = ACTIONS(131), - [anon_sym_object] = ACTIONS(133), - [anon_sym_fun] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(139), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [154] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_object] = ACTIONS(925), + [anon_sym_fun] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(931), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48965,300 +49758,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [150] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3348), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [155] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3258), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [151] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3763), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(1101), + [anon_sym_var] = ACTIONS(1101), + [anon_sym_object] = ACTIONS(1103), + [anon_sym_fun] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1107), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49277,144 +49914,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [152] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3683), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_modifiers] = STATE(7780), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(827), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_object] = ACTIONS(745), - [anon_sym_fun] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(749), - [anon_sym_set] = ACTIONS(751), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), + [156] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1098), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(857), + [anon_sym_interface] = ACTIONS(857), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(863), + [anon_sym_var] = ACTIONS(863), + [anon_sym_object] = ACTIONS(865), + [anon_sym_fun] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(871), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(875), + [anon_sym_for] = ACTIONS(877), + [anon_sym_while] = ACTIONS(879), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49433,139 +50070,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [153] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5065), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), + [157] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5009), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [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(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -49595,7 +50232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), + [sym_real_literal] = ACTIONS(535), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -49606,127 +50243,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [154] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1199), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [158] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(857), + [anon_sym_interface] = ACTIONS(857), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(863), + [anon_sym_var] = ACTIONS(863), + [anon_sym_object] = ACTIONS(865), + [anon_sym_fun] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(871), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(875), + [anon_sym_for] = ACTIONS(877), + [anon_sym_while] = ACTIONS(879), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49745,144 +50382,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [155] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5080), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), + [159] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), [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_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49901,139 +50538,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [156] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1152), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), + [160] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_class] = ACTIONS(949), + [anon_sym_interface] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), + [anon_sym_val] = ACTIONS(955), + [anon_sym_var] = ACTIONS(955), + [anon_sym_object] = ACTIONS(957), + [anon_sym_fun] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(963), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(971), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -50060,10 +50697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -50074,127 +50711,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [157] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5048), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [161] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1087), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_modifiers] = STATE(7829), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), - [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(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(857), + [anon_sym_interface] = ACTIONS(857), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(863), + [anon_sym_var] = ACTIONS(863), + [anon_sym_object] = ACTIONS(865), + [anon_sym_fun] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(871), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(875), + [anon_sym_for] = ACTIONS(877), + [anon_sym_while] = ACTIONS(879), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), [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_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50213,139 +50850,295 @@ static const uint16_t ts_parse_table[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(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [158] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1184), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), + [162] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3462), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_modifiers] = STATE(7869), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(806), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(797), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_object] = ACTIONS(805), + [anon_sym_fun] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(811), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [163] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_class] = ACTIONS(981), + [anon_sym_interface] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), + [anon_sym_val] = ACTIONS(985), + [anon_sym_var] = ACTIONS(985), + [anon_sym_object] = ACTIONS(987), + [anon_sym_fun] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(993), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), + [anon_sym_for] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -50372,10 +51165,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -50386,122 +51179,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [159] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3450), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), + [164] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(785), [anon_sym_do] = ACTIONS(369), [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -50528,141 +51321,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [160] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5025), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), + [165] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3840), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), [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_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50681,144 +51474,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [161] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3199), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_modifiers] = STATE(7662), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(801), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [166] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3462), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_modifiers] = STATE(7605), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(825), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(339), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(347), - [anon_sym_var] = ACTIONS(347), - [anon_sym_object] = ACTIONS(349), - [anon_sym_fun] = ACTIONS(351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(353), - [anon_sym_set] = ACTIONS(355), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(1101), + [anon_sym_var] = ACTIONS(1101), + [anon_sym_object] = ACTIONS(1103), + [anon_sym_fun] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1107), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50837,144 +51630,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [162] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5048), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3562), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_modifiers] = STATE(7725), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(799), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [167] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9232), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(415), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(421), - [anon_sym_var] = ACTIONS(421), - [anon_sym_object] = ACTIONS(423), - [anon_sym_fun] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(427), - [anon_sym_set] = ACTIONS(429), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [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_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50993,144 +51786,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [163] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4725), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [168] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4639), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(323), [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [169] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(575), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51149,144 +52098,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(603), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [164] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3241), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), + [170] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4686), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(305), + [anon_sym_set] = ACTIONS(307), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51305,144 +52254,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [165] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3394), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), + [171] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4682), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(305), + [anon_sym_set] = ACTIONS(307), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51461,144 +52410,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [166] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3245), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_modifiers] = STATE(7771), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(829), - [aux_sym_modifiers_repeat1] = STATE(5459), + [172] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4680), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3108), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_modifiers] = STATE(7851), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(649), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(293), + [anon_sym_interface] = ACTIONS(293), + [anon_sym_enum] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_object] = ACTIONS(655), - [anon_sym_fun] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(661), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_val] = ACTIONS(299), + [anon_sym_var] = ACTIONS(299), + [anon_sym_object] = ACTIONS(301), + [anon_sym_fun] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(305), + [anon_sym_set] = ACTIONS(307), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51617,139 +52566,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [167] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3258), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1424), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_modifiers] = STATE(7860), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(826), - [aux_sym_modifiers_repeat1] = STATE(5459), + [173] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_class] = ACTIONS(1071), + [anon_sym_interface] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(955), - [anon_sym_var] = ACTIONS(955), - [anon_sym_object] = ACTIONS(957), - [anon_sym_fun] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(963), + [anon_sym_val] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1075), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -51776,141 +52725,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(413), }, - [168] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5080), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [174] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3678), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), [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_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51929,144 +52878,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [169] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3367), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(1450), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_modifiers] = STATE(7858), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(831), - [anon_sym_var] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(839), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [175] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3840), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52085,126 +53034,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [170] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1196), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_modifiers] = STATE(7845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), + [176] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(800), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [177] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_modifiers] = STATE(7708), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(808), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_class] = ACTIONS(543), + [anon_sym_interface] = ACTIONS(543), + [anon_sym_enum] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_object] = ACTIONS(897), - [anon_sym_fun] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(901), - [anon_sym_set] = ACTIONS(903), + [anon_sym_val] = ACTIONS(551), + [anon_sym_var] = ACTIONS(551), + [anon_sym_object] = ACTIONS(553), + [anon_sym_fun] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(557), + [anon_sym_set] = ACTIONS(559), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(567), + [anon_sym_for] = ACTIONS(569), + [anon_sym_while] = ACTIONS(571), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), + [anon_sym_null] = ACTIONS(575), [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), @@ -52213,11 +53318,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -52244,10 +53349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(603), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -52258,122 +53363,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [171] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5065), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), + [178] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4985), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -52403,7 +53508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), + [sym_real_literal] = ACTIONS(535), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -52414,127 +53519,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [172] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4595), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), + [179] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3678), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52553,144 +53658,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [173] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3781), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), + [180] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4686), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52709,144 +53814,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [174] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5080), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [181] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3249), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), [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_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52865,144 +53970,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [175] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4599), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [182] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3249), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53021,144 +54126,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [176] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [183] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3255), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53177,300 +54282,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [177] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3367), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), + [184] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4680), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [178] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4625), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(3863), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_modifiers] = STATE(7728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(717), - [anon_sym_var] = ACTIONS(717), - [anon_sym_object] = ACTIONS(719), - [anon_sym_fun] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(723), - [anon_sym_set] = ACTIONS(725), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(323), [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53489,144 +54438,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [179] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5025), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [185] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1098), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_modifiers] = STATE(7655), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), - [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(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(769), + [anon_sym_var] = ACTIONS(769), + [anon_sym_object] = ACTIONS(771), + [anon_sym_fun] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(777), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [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_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53645,144 +54594,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [180] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3683), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2383), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_modifiers] = STATE(7615), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(809), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(863), - [anon_sym_var] = ACTIONS(863), - [anon_sym_object] = ACTIONS(865), - [anon_sym_fun] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(869), - [anon_sym_set] = ACTIONS(871), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), + [186] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3840), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53801,144 +54750,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [181] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1196), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_modifiers] = STATE(7653), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(804), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(543), - [anon_sym_interface] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(551), - [anon_sym_var] = ACTIONS(551), - [anon_sym_object] = ACTIONS(553), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(557), - [anon_sym_set] = ACTIONS(559), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(567), - [anon_sym_for] = ACTIONS(569), - [anon_sym_while] = ACTIONS(571), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), + [187] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(799), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53957,144 +54906,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [182] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4595), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [188] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3258), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54113,144 +55062,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [183] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3394), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [189] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(799), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54269,144 +55218,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [184] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4599), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [190] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3255), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54425,144 +55374,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [185] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5025), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [191] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3445), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(949), + [anon_sym_interface] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(955), + [anon_sym_var] = ACTIONS(955), + [anon_sym_object] = ACTIONS(957), + [anon_sym_fun] = ACTIONS(959), [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(963), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [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_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54581,144 +55530,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, - [186] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4625), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7638), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(822), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(1055), - [anon_sym_var] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1057), - [anon_sym_fun] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1063), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [192] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_modifiers] = STATE(7796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(827), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(1031), + [anon_sym_var] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1033), + [anon_sym_fun] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54737,125 +55686,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [187] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5080), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), + [193] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5009), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7659), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(893), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), + [anon_sym_val] = ACTIONS(1057), + [anon_sym_var] = ACTIONS(1057), + [anon_sym_object] = ACTIONS(1059), + [anon_sym_fun] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1063), + [anon_sym_set] = ACTIONS(1065), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_do] = ACTIONS(521), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), @@ -54910,127 +55859,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [188] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9063), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [194] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3467), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(303), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(981), + [anon_sym_interface] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(985), + [anon_sym_var] = ACTIONS(985), + [anon_sym_object] = ACTIONS(987), + [anon_sym_fun] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(993), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), + [anon_sym_for] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [195] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4682), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_modifiers] = STATE(7794), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(835), + [anon_sym_var] = ACTIONS(835), + [anon_sym_object] = ACTIONS(837), + [anon_sym_fun] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(841), + [anon_sym_set] = ACTIONS(843), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_while] = ACTIONS(851), [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), + [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(323), [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55049,144 +56154,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [189] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5048), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4149), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_modifiers] = STATE(7613), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(813), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [196] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3258), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(1310), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_modifiers] = STATE(7812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(804), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(921), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_object] = ACTIONS(929), - [anon_sym_fun] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(933), - [anon_sym_set] = ACTIONS(935), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(733), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_object] = ACTIONS(739), + [anon_sym_fun] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(745), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), [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_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55205,144 +56310,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [190] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5065), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7802), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), + [197] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3463), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(805), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1037), - [anon_sym_var] = ACTIONS(1037), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_fun] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1045), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), - [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(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(949), + [anon_sym_interface] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(955), + [anon_sym_var] = ACTIONS(955), + [anon_sym_object] = ACTIONS(957), + [anon_sym_fun] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(963), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [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_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55361,144 +56466,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, - [191] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9063), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [198] = { + [sym_type_alias] = STATE(4667), + [sym__declaration] = STATE(4667), + [sym_class_declaration] = STATE(4667), + [sym_function_declaration] = STATE(4667), + [sym_property_declaration] = STATE(4667), + [sym_getter] = STATE(4667), + [sym_setter] = STATE(4667), + [sym_object_declaration] = STATE(4667), + [sym__statement] = STATE(4667), + [sym_control_structure_body] = STATE(4639), + [sym__block] = STATE(4667), + [sym__loop_statement] = STATE(4667), + [sym_for_statement] = STATE(4667), + [sym_while_statement] = STATE(4667), + [sym_do_while_statement] = STATE(4667), + [sym_assignment] = STATE(4667), + [sym__expression] = STATE(3733), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_modifiers] = STATE(7804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(303), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(291), + [anon_sym_class] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(621), + [anon_sym_var] = ACTIONS(621), + [anon_sym_object] = ACTIONS(623), + [anon_sym_fun] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(629), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(637), [anon_sym_do] = ACTIONS(317), [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55517,144 +56622,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [192] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4625), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), + [199] = { + [sym_type_alias] = STATE(3306), + [sym__declaration] = STATE(3306), + [sym_class_declaration] = STATE(3306), + [sym_function_declaration] = STATE(3306), + [sym_property_declaration] = STATE(3306), + [sym_getter] = STATE(3306), + [sym_setter] = STATE(3306), + [sym_object_declaration] = STATE(3306), + [sym__statement] = STATE(3306), + [sym_control_structure_body] = STATE(3462), + [sym__block] = STATE(3306), + [sym__loop_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3306), + [sym_do_while_statement] = STATE(3306), + [sym_assignment] = STATE(3306), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_modifiers] = STATE(7778), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(219), + [anon_sym_var] = ACTIONS(219), + [anon_sym_object] = ACTIONS(221), + [anon_sym_fun] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(225), + [anon_sym_set] = ACTIONS(227), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55673,456 +56778,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [193] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4599), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [194] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3241), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [195] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4595), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [200] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3467), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_modifiers] = STATE(7848), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(814), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(949), + [anon_sym_interface] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(955), + [anon_sym_var] = ACTIONS(955), + [anon_sym_object] = ACTIONS(957), + [anon_sym_fun] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(961), + [anon_sym_set] = ACTIONS(963), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56141,126 +56934,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [196] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5065), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), + [201] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(4985), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3913), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_modifiers] = STATE(7749), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(501), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), + [anon_sym_val] = ACTIONS(711), + [anon_sym_var] = ACTIONS(711), + [anon_sym_object] = ACTIONS(713), + [anon_sym_fun] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(719), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -56269,11 +57062,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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -56303,7 +57096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), + [sym_real_literal] = ACTIONS(535), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -56314,127 +57107,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [197] = { - [sym_type_alias] = STATE(8815), - [sym__declaration] = STATE(8815), - [sym_class_declaration] = STATE(8815), - [sym_function_declaration] = STATE(8815), - [sym_property_declaration] = STATE(8815), - [sym_getter] = STATE(8815), - [sym_setter] = STATE(8815), - [sym_object_declaration] = STATE(8815), - [sym__statement] = STATE(8815), - [sym_control_structure_body] = STATE(8722), - [sym__block] = STATE(8815), - [sym__loop_statement] = STATE(8815), - [sym_for_statement] = STATE(8815), - [sym_while_statement] = STATE(8815), - [sym_do_while_statement] = STATE(8815), - [sym_assignment] = STATE(8815), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [202] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1087), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [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(1211), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_object] = ACTIONS(31), - [anon_sym_fun] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(339), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(347), + [anon_sym_var] = ACTIONS(347), + [anon_sym_object] = ACTIONS(349), + [anon_sym_fun] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(353), + [anon_sym_set] = ACTIONS(355), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [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_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56453,139 +57246,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [198] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1196), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_modifiers] = STATE(7750), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(818), - [aux_sym_modifiers_repeat1] = STATE(5459), + [203] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3445), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_class] = ACTIONS(981), + [anon_sym_interface] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_object] = ACTIONS(623), - [anon_sym_fun] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(627), - [anon_sym_set] = ACTIONS(629), + [anon_sym_val] = ACTIONS(985), + [anon_sym_var] = ACTIONS(985), + [anon_sym_object] = ACTIONS(987), + [anon_sym_fun] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(993), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), + [anon_sym_for] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -56612,10 +57405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -56626,127 +57419,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [199] = { - [sym_type_alias] = STATE(4571), - [sym__declaration] = STATE(4571), - [sym_class_declaration] = STATE(4571), - [sym_function_declaration] = STATE(4571), - [sym_property_declaration] = STATE(4571), - [sym_getter] = STATE(4571), - [sym_setter] = STATE(4571), - [sym_object_declaration] = STATE(4571), - [sym__statement] = STATE(4571), - [sym_control_structure_body] = STATE(4725), - [sym__block] = STATE(4571), - [sym__loop_statement] = STATE(4571), - [sym_for_statement] = STATE(4571), - [sym_while_statement] = STATE(4571), - [sym_do_while_statement] = STATE(4571), - [sym_assignment] = STATE(4571), - [sym__expression] = STATE(4029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_modifiers] = STATE(7821), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(790), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(207), - [anon_sym_class] = ACTIONS(797), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(803), - [anon_sym_var] = ACTIONS(803), - [anon_sym_object] = ACTIONS(805), - [anon_sym_fun] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(811), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), + [204] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_modifiers] = STATE(7873), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(826), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(421), + [anon_sym_interface] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(429), + [anon_sym_var] = ACTIONS(429), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56765,144 +57558,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [200] = { - [sym_type_alias] = STATE(5052), - [sym__declaration] = STATE(5052), - [sym_class_declaration] = STATE(5052), - [sym_function_declaration] = STATE(5052), - [sym_property_declaration] = STATE(5052), - [sym_getter] = STATE(5052), - [sym_setter] = STATE(5052), - [sym_object_declaration] = STATE(5052), - [sym__statement] = STATE(5052), - [sym_control_structure_body] = STATE(5048), - [sym__block] = STATE(5052), - [sym__loop_statement] = STATE(5052), - [sym_for_statement] = STATE(5052), - [sym_while_statement] = STATE(5052), - [sym_do_while_statement] = STATE(5052), - [sym_assignment] = STATE(5052), - [sym__expression] = STATE(3957), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_modifiers] = STATE(7741), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(803), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), + [205] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3467), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_modifiers] = STATE(7596), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(413), - [anon_sym_class] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [anon_sym_object] = ACTIONS(777), - [anon_sym_fun] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(783), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(541), + [anon_sym_class] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(647), + [anon_sym_var] = ACTIONS(647), + [anon_sym_object] = ACTIONS(649), + [anon_sym_fun] = ACTIONS(651), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(655), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(575), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [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_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56921,139 +57714,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(603), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, - [201] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3258), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7767), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(787), - [aux_sym_modifiers_repeat1] = STATE(5459), + [206] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1098), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_modifiers] = STATE(7809), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(801), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_class] = ACTIONS(1071), + [anon_sym_interface] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(861), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1101), - [anon_sym_var] = ACTIONS(1101), - [anon_sym_object] = ACTIONS(1103), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1109), + [anon_sym_val] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1075), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -57080,136 +57873,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(413), }, - [202] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3199), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), + [207] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1098), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), + [anon_sym_class] = ACTIONS(339), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(341), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), + [anon_sym_val] = ACTIONS(347), + [anon_sym_var] = ACTIONS(347), + [anon_sym_object] = ACTIONS(349), + [anon_sym_fun] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(353), + [anon_sym_set] = ACTIONS(355), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_while] = ACTIONS(367), [anon_sym_do] = ACTIONS(369), [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), + [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -57236,141 +58029,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(393), [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [203] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3450), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), + [208] = { + [sym_type_alias] = STATE(3712), + [sym__declaration] = STATE(3712), + [sym_class_declaration] = STATE(3712), + [sym_function_declaration] = STATE(3712), + [sym_property_declaration] = STATE(3712), + [sym_getter] = STATE(3712), + [sym_setter] = STATE(3712), + [sym_object_declaration] = STATE(3712), + [sym__statement] = STATE(3712), + [sym_control_structure_body] = STATE(3678), + [sym__block] = STATE(3712), + [sym__loop_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3712), + [sym_do_while_statement] = STATE(3712), + [sym_assignment] = STATE(3712), + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_modifiers] = STATE(7650), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(799), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_typealias] = ACTIONS(419), + [anon_sym_class] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_val] = ACTIONS(679), + [anon_sym_var] = ACTIONS(679), + [anon_sym_object] = ACTIONS(681), + [anon_sym_fun] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_get] = ACTIONS(685), + [anon_sym_set] = ACTIONS(687), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(473), + [anon_sym_inner] = ACTIONS(473), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57389,144 +58182,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_expect] = ACTIONS(475), + [anon_sym_actual] = ACTIONS(475), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [204] = { - [sym_type_alias] = STATE(3456), - [sym__declaration] = STATE(3456), - [sym_class_declaration] = STATE(3456), - [sym_function_declaration] = STATE(3456), - [sym_property_declaration] = STATE(3456), - [sym_getter] = STATE(3456), - [sym_setter] = STATE(3456), - [sym_object_declaration] = STATE(3456), - [sym__statement] = STATE(3456), - [sym_control_structure_body] = STATE(3348), - [sym__block] = STATE(3456), - [sym__loop_statement] = STATE(3456), - [sym_for_statement] = STATE(3456), - [sym_while_statement] = STATE(3456), - [sym_do_while_statement] = STATE(3456), - [sym_assignment] = STATE(3456), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_modifiers] = STATE(7776), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [209] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5009), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(337), - [anon_sym_class] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [anon_sym_object] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(693), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57545,258 +58338,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [205] = { - [sym_type_alias] = STATE(3371), - [sym__declaration] = STATE(3371), - [sym_class_declaration] = STATE(3371), - [sym_function_declaration] = STATE(3371), - [sym_property_declaration] = STATE(3371), - [sym_getter] = STATE(3371), - [sym_setter] = STATE(3371), - [sym_object_declaration] = STATE(3371), - [sym__statement] = STATE(3371), - [sym_control_structure_body] = STATE(3245), - [sym__block] = STATE(3371), - [sym__loop_statement] = STATE(3371), - [sym_for_statement] = STATE(3371), - [sym_while_statement] = STATE(3371), - [sym_do_while_statement] = STATE(3371), - [sym_assignment] = STATE(3371), - [sym__expression] = STATE(2436), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_modifiers] = STATE(7818), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(808), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_typealias] = ACTIONS(121), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_val] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_fun] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(175), - [anon_sym_inner] = ACTIONS(175), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(177), - [anon_sym_actual] = ACTIONS(177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [206] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1184), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), + [210] = { + [sym_type_alias] = STATE(3323), + [sym__declaration] = STATE(3323), + [sym_class_declaration] = STATE(3323), + [sym_function_declaration] = STATE(3323), + [sym_property_declaration] = STATE(3323), + [sym_getter] = STATE(3323), + [sym_setter] = STATE(3323), + [sym_object_declaration] = STATE(3323), + [sym__statement] = STATE(3323), + [sym_control_structure_body] = STATE(3463), + [sym__block] = STATE(3323), + [sym__loop_statement] = STATE(3323), + [sym_for_statement] = STATE(3323), + [sym_while_statement] = STATE(3323), + [sym_do_while_statement] = STATE(3323), + [sym_assignment] = STATE(3323), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7722), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), @@ -57804,13 +58441,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(981), [anon_sym_interface] = ACTIONS(981), [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_val] = ACTIONS(985), [anon_sym_var] = ACTIONS(985), [anon_sym_object] = ACTIONS(987), [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1339), [anon_sym_get] = ACTIONS(991), [anon_sym_set] = ACTIONS(993), [anon_sym_this] = ACTIONS(561), @@ -57820,12 +58457,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(999), [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -57860,10 +58497,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -57874,127 +58511,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [207] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3747), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [211] = { + [sym_type_alias] = STATE(1104), + [sym__declaration] = STATE(1104), + [sym_class_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [sym_property_declaration] = STATE(1104), + [sym_getter] = STATE(1104), + [sym_setter] = STATE(1104), + [sym_object_declaration] = STATE(1104), + [sym__statement] = STATE(1104), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1104), + [sym__loop_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_while_statement] = STATE(1104), + [sym_assignment] = STATE(1104), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_modifiers] = STATE(7660), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_typealias] = ACTIONS(337), + [anon_sym_class] = ACTIONS(339), + [anon_sym_interface] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_val] = ACTIONS(347), + [anon_sym_var] = ACTIONS(347), + [anon_sym_object] = ACTIONS(349), + [anon_sym_fun] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(353), + [anon_sym_set] = ACTIONS(355), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(391), + [anon_sym_inner] = ACTIONS(391), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58013,144 +58650,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), + [anon_sym_expect] = ACTIONS(393), + [anon_sym_actual] = ACTIONS(393), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [208] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1152), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [212] = { + [sym_type_alias] = STATE(4948), + [sym__declaration] = STATE(4948), + [sym_class_declaration] = STATE(4948), + [sym_function_declaration] = STATE(4948), + [sym_property_declaration] = STATE(4948), + [sym_getter] = STATE(4948), + [sym_setter] = STATE(4948), + [sym_object_declaration] = STATE(4948), + [sym__statement] = STATE(4948), + [sym_control_structure_body] = STATE(5014), + [sym__block] = STATE(4948), + [sym__loop_statement] = STATE(4948), + [sym_for_statement] = STATE(4948), + [sym_while_statement] = STATE(4948), + [sym_do_while_statement] = STATE(4948), + [sym_assignment] = STATE(4948), + [sym__expression] = STATE(3584), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_modifiers] = STATE(7792), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(495), + [anon_sym_class] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(503), + [anon_sym_var] = ACTIONS(503), + [anon_sym_object] = ACTIONS(505), + [anon_sym_fun] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(509), + [anon_sym_set] = ACTIONS(511), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58169,144 +58806,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [209] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3781), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [213] = { + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat3] = STATE(239), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1199), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [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(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58325,144 +58961,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [210] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1199), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(537), + [214] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9295), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(595), - [anon_sym_inner] = ACTIONS(595), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58481,131 +59116,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(597), - [anon_sym_actual] = ACTIONS(597), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [211] = { - [sym_type_alias] = STATE(1052), - [sym__declaration] = STATE(1052), - [sym_class_declaration] = STATE(1052), - [sym_function_declaration] = STATE(1052), - [sym_property_declaration] = STATE(1052), - [sym_getter] = STATE(1052), - [sym_setter] = STATE(1052), - [sym_object_declaration] = STATE(1052), - [sym__statement] = STATE(1052), - [sym_control_structure_body] = STATE(1196), - [sym__block] = STATE(1052), - [sym__loop_statement] = STATE(1052), - [sym_for_statement] = STATE(1052), - [sym_while_statement] = STATE(1052), - [sym_do_while_statement] = STATE(1052), - [sym_assignment] = STATE(1052), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_modifiers] = STATE(7721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(806), - [aux_sym_modifiers_repeat1] = STATE(5459), + [215] = { + [sym_type_alias] = STATE(5304), + [sym__declaration] = STATE(5304), + [sym_class_declaration] = STATE(5304), + [sym_function_declaration] = STATE(5304), + [sym_property_declaration] = STATE(5304), + [sym_getter] = STATE(5304), + [sym_setter] = STATE(5304), + [sym_object_declaration] = STATE(5304), + [sym__statement] = STATE(5304), + [sym_control_structure_body] = STATE(5205), + [sym__block] = STATE(5304), + [sym__loop_statement] = STATE(5304), + [sym_for_statement] = STATE(5304), + [sym_while_statement] = STATE(5304), + [sym_do_while_statement] = STATE(5304), + [sym_assignment] = STATE(5304), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7845), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(815), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_typealias] = ACTIONS(541), - [anon_sym_class] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_typealias] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1129), + [anon_sym_interface] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_val] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_object] = ACTIONS(987), - [anon_sym_fun] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(993), + [anon_sym_val] = ACTIONS(1135), + [anon_sym_var] = ACTIONS(1135), + [anon_sym_object] = ACTIONS(1137), + [anon_sym_fun] = ACTIONS(1139), + [anon_sym_get] = ACTIONS(1141), + [anon_sym_set] = ACTIONS(1143), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(997), - [anon_sym_for] = ACTIONS(999), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -58640,10 +59274,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(597), [anon_sym_actual] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -58654,127 +59288,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [212] = { - [sym_type_alias] = STATE(3873), - [sym__declaration] = STATE(3873), - [sym_class_declaration] = STATE(3873), - [sym_function_declaration] = STATE(3873), - [sym_property_declaration] = STATE(3873), - [sym_getter] = STATE(3873), - [sym_setter] = STATE(3873), - [sym_object_declaration] = STATE(3873), - [sym__statement] = STATE(3873), - [sym_control_structure_body] = STATE(3683), - [sym__block] = STATE(3873), - [sym__loop_statement] = STATE(3873), - [sym_for_statement] = STATE(3873), - [sym_while_statement] = STATE(3873), - [sym_do_while_statement] = STATE(3873), - [sym_assignment] = STATE(3873), - [sym__expression] = STATE(2500), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_modifiers] = STATE(7861), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(824), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_typealias] = ACTIONS(459), - [anon_sym_class] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_val] = ACTIONS(1011), - [anon_sym_var] = ACTIONS(1011), - [anon_sym_object] = ACTIONS(1013), - [anon_sym_fun] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1017), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [216] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9156), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(513), - [anon_sym_inner] = ACTIONS(513), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58793,101 +59426,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(515), - [anon_sym_actual] = ACTIONS(515), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [213] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9308), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [217] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9443), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -58896,7 +59529,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(1385), + [anon_sym_RBRACE] = ACTIONS(1387), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -58965,84 +59598,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [214] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9466), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [218] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9434), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [219] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(8953), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -59051,7 +59839,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(1387), + [anon_sym_RBRACE] = ACTIONS(1391), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -59120,84 +59908,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [215] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9317), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [220] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9153), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [221] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9138), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -59206,7 +60149,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(1389), + [anon_sym_RBRACE] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -59275,84 +60218,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [216] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9346), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [222] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9150), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [223] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9289), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [224] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9062), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -59361,7 +60614,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(1391), + [anon_sym_RBRACE] = ACTIONS(1397), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -59430,239 +60683,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [217] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9518), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [218] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9313), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [225] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9293), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -59671,7 +60769,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(1395), + [anon_sym_RBRACE] = ACTIONS(1399), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -59740,84 +60838,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [219] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9560), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [226] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9317), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -59826,7 +60924,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(1397), + [anon_sym_RBRACE] = ACTIONS(1401), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -59895,281 +60993,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [220] = { - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(145), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_label] = ACTIONS(171), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(171), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [221] = { - [sym_type_alias] = STATE(5348), - [sym__declaration] = STATE(5348), - [sym_class_declaration] = STATE(5348), - [sym_function_declaration] = STATE(5348), - [sym_property_declaration] = STATE(5348), - [sym_getter] = STATE(5348), - [sym_setter] = STATE(5348), - [sym_object_declaration] = STATE(5348), - [sym__statement] = STATE(5348), - [sym_control_structure_body] = STATE(5258), - [sym__block] = STATE(5348), - [sym__loop_statement] = STATE(5348), - [sym_for_statement] = STATE(5348), - [sym_while_statement] = STATE(5348), - [sym_do_while_statement] = STATE(5348), - [sym_assignment] = STATE(5348), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7621), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [227] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9197), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [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(1403), + [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(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60188,102 +61131,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(109), }, - [222] = { - [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__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), + [228] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9106), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1201), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -60292,6 +61234,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(1405), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -60360,240 +61303,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [223] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9460), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [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__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), + [229] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9243), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1187), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -60602,6 +61389,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(1407), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -60670,84 +61458,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [225] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9178), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [230] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(8991), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -60756,7 +61544,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(1415), + [anon_sym_RBRACE] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -60825,394 +61613,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [226] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9213), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [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__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(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym__alpha_identifier] = ACTIONS(1419), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_typealias] = ACTIONS(1428), - [anon_sym_class] = ACTIONS(1431), - [anon_sym_interface] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_val] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1446), - [anon_sym_fun] = ACTIONS(1449), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1455), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_super] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1464), - [sym_label] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_when] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1488), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_suspend] = ACTIONS(1509), - [anon_sym_sealed] = ACTIONS(1512), - [anon_sym_annotation] = ACTIONS(1512), - [anon_sym_data] = ACTIONS(1515), - [anon_sym_inner] = ACTIONS(1515), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_lateinit] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1521), - [anon_sym_private] = ACTIONS(1521), - [anon_sym_internal] = ACTIONS(1521), - [anon_sym_protected] = ACTIONS(1521), - [anon_sym_tailrec] = ACTIONS(1509), - [anon_sym_operator] = ACTIONS(1509), - [anon_sym_infix] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [anon_sym_external] = ACTIONS(1509), - [sym_property_modifier] = ACTIONS(1524), - [anon_sym_abstract] = ACTIONS(1527), - [anon_sym_final] = ACTIONS(1527), - [anon_sym_open] = ACTIONS(1527), - [anon_sym_vararg] = ACTIONS(1530), - [anon_sym_noinline] = ACTIONS(1530), - [anon_sym_crossinline] = ACTIONS(1530), - [anon_sym_expect] = ACTIONS(1533), - [anon_sym_actual] = ACTIONS(1533), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1536), - [anon_sym_continue_AT] = ACTIONS(1539), - [anon_sym_break_AT] = ACTIONS(1542), - [sym_real_literal] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1548), - [sym_hex_literal] = ACTIONS(1551), - [sym_bin_literal] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1557), - [sym__backtick_identifier] = ACTIONS(1560), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1563), - }, - [228] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9407), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [231] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(8965), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -61221,7 +61699,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(1566), + [anon_sym_RBRACE] = ACTIONS(1411), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -61290,126 +61768,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [229] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9384), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [232] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9149), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61428,101 +61906,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [230] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9341), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [233] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9221), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [234] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9459), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -61531,7 +62164,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(1570), + [anon_sym_RBRACE] = ACTIONS(1415), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -61600,84 +62233,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [231] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9431), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [235] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9449), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -61686,7 +62319,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(1417), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -61755,239 +62388,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [232] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9154), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [233] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9336), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [236] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9180), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -61996,7 +62474,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(1576), + [anon_sym_RBRACE] = ACTIONS(1419), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -62065,84 +62543,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [234] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9447), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [237] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9510), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [238] = { + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat3] = STATE(239), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1421), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -62151,7 +62785,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(1578), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -62220,84 +62853,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [235] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9526), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [239] = { + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat3] = STATE(239), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym__alpha_identifier] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_typealias] = ACTIONS(1434), + [anon_sym_class] = ACTIONS(1437), + [anon_sym_interface] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_val] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_object] = ACTIONS(1452), + [anon_sym_fun] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1461), + [anon_sym_this] = ACTIONS(1464), + [anon_sym_super] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1470), + [sym_label] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_when] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1494), + [anon_sym_throw] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_suspend] = ACTIONS(1515), + [anon_sym_sealed] = ACTIONS(1518), + [anon_sym_annotation] = ACTIONS(1518), + [anon_sym_data] = ACTIONS(1521), + [anon_sym_inner] = ACTIONS(1521), + [anon_sym_override] = ACTIONS(1524), + [anon_sym_lateinit] = ACTIONS(1524), + [anon_sym_public] = ACTIONS(1527), + [anon_sym_private] = ACTIONS(1527), + [anon_sym_internal] = ACTIONS(1527), + [anon_sym_protected] = ACTIONS(1527), + [anon_sym_tailrec] = ACTIONS(1515), + [anon_sym_operator] = ACTIONS(1515), + [anon_sym_infix] = ACTIONS(1515), + [anon_sym_inline] = ACTIONS(1515), + [anon_sym_external] = ACTIONS(1515), + [sym_property_modifier] = ACTIONS(1530), + [anon_sym_abstract] = ACTIONS(1533), + [anon_sym_final] = ACTIONS(1533), + [anon_sym_open] = ACTIONS(1533), + [anon_sym_vararg] = ACTIONS(1536), + [anon_sym_noinline] = ACTIONS(1536), + [anon_sym_crossinline] = ACTIONS(1536), + [anon_sym_expect] = ACTIONS(1539), + [anon_sym_actual] = ACTIONS(1539), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1542), + [anon_sym_continue_AT] = ACTIONS(1545), + [anon_sym_break_AT] = ACTIONS(1548), + [sym_real_literal] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1554), + [sym_hex_literal] = ACTIONS(1557), + [sym_bin_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1563), + [sym__backtick_identifier] = ACTIONS(1566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1569), + }, + [240] = { + [sym_type_alias] = STATE(5304), + [sym__declaration] = STATE(5304), + [sym_class_declaration] = STATE(5304), + [sym_function_declaration] = STATE(5304), + [sym_property_declaration] = STATE(5304), + [sym_getter] = STATE(5304), + [sym_setter] = STATE(5304), + [sym_object_declaration] = STATE(5304), + [sym__statement] = STATE(5304), + [sym_control_structure_body] = STATE(5209), + [sym__block] = STATE(5304), + [sym__loop_statement] = STATE(5304), + [sym_for_statement] = STATE(5304), + [sym_while_statement] = STATE(5304), + [sym_do_while_statement] = STATE(5304), + [sym_assignment] = STATE(5304), + [sym__expression] = STATE(2367), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_modifiers] = STATE(7845), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(815), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_typealias] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1129), + [anon_sym_interface] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_val] = ACTIONS(1135), + [anon_sym_var] = ACTIONS(1135), + [anon_sym_object] = ACTIONS(1137), + [anon_sym_fun] = ACTIONS(1139), + [anon_sym_get] = ACTIONS(1141), + [anon_sym_set] = ACTIONS(1143), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(595), + [anon_sym_inner] = ACTIONS(595), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(597), + [anon_sym_actual] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [241] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9383), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -62306,7 +63249,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(1580), + [anon_sym_RBRACE] = ACTIONS(1572), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -62375,84 +63318,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [236] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9508), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [242] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9268), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -62461,7 +63404,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(1582), + [anon_sym_RBRACE] = ACTIONS(1574), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -62530,85 +63473,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [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__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), + [243] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9339), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [244] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9035), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1125), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -62617,6 +63714,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_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -62685,84 +63783,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [238] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9483), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [245] = { + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat3] = STATE(239), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1209), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -62771,7 +63870,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(1584), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -62840,394 +63938,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [239] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9217), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [240] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9214), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [241] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9265), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [246] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9415), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -63236,7 +64024,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(1588), + [anon_sym_RBRACE] = ACTIONS(1580), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -63305,84 +64093,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [242] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9203), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [247] = { + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat3] = STATE(239), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1125), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -63391,7 +64180,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(1590), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -63460,84 +64248,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [243] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9186), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [248] = { + [sym_type_alias] = STATE(8778), + [sym__declaration] = STATE(8778), + [sym_class_declaration] = STATE(8778), + [sym_function_declaration] = STATE(8778), + [sym_property_declaration] = STATE(8778), + [sym_getter] = STATE(8778), + [sym_setter] = STATE(8778), + [sym_object_declaration] = STATE(8778), + [sym__statement] = STATE(8778), + [sym__loop_statement] = STATE(8778), + [sym_for_statement] = STATE(8778), + [sym_while_statement] = STATE(8778), + [sym_do_while_statement] = STATE(8778), + [sym_assignment] = STATE(8778), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym_source_file_repeat3] = STATE(239), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [ts_builtin_sym_end] = ACTIONS(1123), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -63546,7 +64335,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(1592), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -63615,84 +64403,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [244] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9153), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [249] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9093), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -63701,7 +64489,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(1594), + [anon_sym_RBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -63770,126 +64558,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [245] = { - [sym_type_alias] = STATE(5348), - [sym__declaration] = STATE(5348), - [sym_class_declaration] = STATE(5348), - [sym_function_declaration] = STATE(5348), - [sym_property_declaration] = STATE(5348), - [sym_getter] = STATE(5348), - [sym_setter] = STATE(5348), - [sym_object_declaration] = STATE(5348), - [sym__statement] = STATE(5348), - [sym_control_structure_body] = STATE(5198), - [sym__block] = STATE(5348), - [sym__loop_statement] = STATE(5348), - [sym_for_statement] = STATE(5348), - [sym_while_statement] = STATE(5348), - [sym_do_while_statement] = STATE(5348), - [sym_assignment] = STATE(5348), - [sym__expression] = STATE(2364), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_modifiers] = STATE(7621), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(333), + [250] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9024), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_typealias] = ACTIONS(1127), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_val] = ACTIONS(1135), - [anon_sym_var] = ACTIONS(1135), - [anon_sym_object] = ACTIONS(1137), - [anon_sym_fun] = ACTIONS(1139), - [anon_sym_get] = ACTIONS(1141), - [anon_sym_set] = ACTIONS(1143), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [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(1584), + [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(391), - [anon_sym_inner] = ACTIONS(391), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63908,102 +64696,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(393), - [anon_sym_actual] = ACTIONS(393), + [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(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(109), }, - [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__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), + [251] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9440), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1596), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -64012,6 +64799,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(1586), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -64080,84 +64868,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [247] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9408), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [252] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9398), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -64166,7 +64954,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(1598), + [anon_sym_RBRACE] = ACTIONS(1588), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -64235,126 +65023,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [248] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9193), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), + [253] = { + [sym_type_alias] = STATE(9435), + [sym__declaration] = STATE(9435), + [sym_class_declaration] = STATE(9435), + [sym_function_declaration] = STATE(9435), + [sym_property_declaration] = STATE(9435), + [sym_getter] = STATE(9435), + [sym_setter] = STATE(9435), + [sym_object_declaration] = STATE(9435), + [sym__statement] = STATE(9435), + [sym_control_structure_body] = STATE(9148), + [sym__block] = STATE(9435), + [sym__loop_statement] = STATE(9435), + [sym_for_statement] = STATE(9435), + [sym_while_statement] = STATE(9435), + [sym_do_while_statement] = STATE(9435), + [sym_assignment] = STATE(9435), + [sym__expression] = STATE(4178), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_modifiers] = STATE(7674), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(829), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_typealias] = ACTIONS(121), + [anon_sym_class] = ACTIONS(123), + [anon_sym_interface] = ACTIONS(123), + [anon_sym_enum] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(131), + [anon_sym_var] = ACTIONS(131), + [anon_sym_object] = ACTIONS(133), + [anon_sym_fun] = ACTIONS(135), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64373,101 +65161,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_expect] = ACTIONS(179), + [anon_sym_actual] = ACTIONS(179), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [249] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9542), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [254] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9418), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -64476,7 +65264,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(1600), + [anon_sym_RBRACE] = ACTIONS(1590), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -64545,126 +65333,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [250] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9099), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), + [255] = { + [sym_type_alias] = STATE(8226), + [sym__declaration] = STATE(8226), + [sym_class_declaration] = STATE(8226), + [sym_function_declaration] = STATE(8226), + [sym_property_declaration] = STATE(8226), + [sym_getter] = STATE(8226), + [sym_setter] = STATE(8226), + [sym_object_declaration] = STATE(8226), + [sym_statements] = STATE(9242), + [sym__statement] = STATE(8226), + [sym__loop_statement] = STATE(8226), + [sym_for_statement] = STATE(8226), + [sym_while_statement] = STATE(8226), + [sym_do_while_statement] = STATE(8226), + [sym_assignment] = STATE(8226), + [sym__expression] = STATE(4196), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), + [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(1592), + [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(261), - [anon_sym_inner] = ACTIONS(261), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64683,101 +65471,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [251] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9473), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), + [256] = { + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(1594), + [sym_label] = ACTIONS(259), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [257] = { + [sym_type_alias] = STATE(8822), + [sym__declaration] = STATE(8822), + [sym_class_declaration] = STATE(8822), + [sym_function_declaration] = STATE(8822), + [sym_property_declaration] = STATE(8822), + [sym_getter] = STATE(8822), + [sym_setter] = STATE(8822), + [sym_object_declaration] = STATE(8822), + [sym__statement] = STATE(8822), + [sym__loop_statement] = STATE(8822), + [sym_for_statement] = STATE(8822), + [sym_while_statement] = STATE(8822), + [sym_do_while_statement] = STATE(8822), + [sym_assignment] = STATE(8822), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -64786,936 +65728,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_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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [252] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9478), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [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(1604), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [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__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(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym_source_file_repeat3] = STATE(227), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [ts_builtin_sym_end] = ACTIONS(1123), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [254] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9212), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [255] = { - [sym_type_alias] = STATE(8308), - [sym__declaration] = STATE(8308), - [sym_class_declaration] = STATE(8308), - [sym_function_declaration] = STATE(8308), - [sym_property_declaration] = STATE(8308), - [sym_getter] = STATE(8308), - [sym_setter] = STATE(8308), - [sym_object_declaration] = STATE(8308), - [sym_statements] = STATE(9495), - [sym__statement] = STATE(8308), - [sym__loop_statement] = STATE(8308), - [sym_for_statement] = STATE(8308), - [sym_while_statement] = STATE(8308), - [sym_do_while_statement] = STATE(8308), - [sym_assignment] = STATE(8308), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [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(1606), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_object] = ACTIONS(31), - [anon_sym_fun] = ACTIONS(33), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), - [anon_sym_this] = ACTIONS(39), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [256] = { - [sym_type_alias] = STATE(9461), - [sym__declaration] = STATE(9461), - [sym_class_declaration] = STATE(9461), - [sym_function_declaration] = STATE(9461), - [sym_property_declaration] = STATE(9461), - [sym_getter] = STATE(9461), - [sym_setter] = STATE(9461), - [sym_object_declaration] = STATE(9461), - [sym__statement] = STATE(9461), - [sym_control_structure_body] = STATE(9108), - [sym__block] = STATE(9461), - [sym__loop_statement] = STATE(9461), - [sym_for_statement] = STATE(9461), - [sym_while_statement] = STATE(9461), - [sym_do_while_statement] = STATE(9461), - [sym_assignment] = STATE(9461), - [sym__expression] = STATE(4184), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_modifiers] = STATE(7813), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(830), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_class] = ACTIONS(291), - [anon_sym_interface] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(297), - [anon_sym_var] = ACTIONS(297), - [anon_sym_object] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(301), - [anon_sym_get] = ACTIONS(305), - [anon_sym_set] = ACTIONS(307), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [257] = { - [sym_type_alias] = STATE(8761), - [sym__declaration] = STATE(8761), - [sym_class_declaration] = STATE(8761), - [sym_function_declaration] = STATE(8761), - [sym_property_declaration] = STATE(8761), - [sym_getter] = STATE(8761), - [sym_setter] = STATE(8761), - [sym_object_declaration] = STATE(8761), - [sym__statement] = STATE(8761), - [sym__loop_statement] = STATE(8761), - [sym_for_statement] = STATE(8761), - [sym_while_statement] = STATE(8761), - [sym_do_while_statement] = STATE(8761), - [sym_assignment] = STATE(8761), - [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [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(1608), + [anon_sym_RBRACE] = ACTIONS(1608), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -65785,82 +65798,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [258] = { - [sym_type_alias] = STATE(8761), - [sym__declaration] = STATE(8761), - [sym_class_declaration] = STATE(8761), - [sym_function_declaration] = STATE(8761), - [sym_property_declaration] = STATE(8761), - [sym_getter] = STATE(8761), - [sym_setter] = STATE(8761), - [sym_object_declaration] = STATE(8761), - [sym__statement] = STATE(8761), - [sym__loop_statement] = STATE(8761), - [sym_for_statement] = STATE(8761), - [sym_while_statement] = STATE(8761), - [sym_do_while_statement] = STATE(8761), - [sym_assignment] = STATE(8761), + [sym_type_alias] = STATE(8822), + [sym__declaration] = STATE(8822), + [sym_class_declaration] = STATE(8822), + [sym_function_declaration] = STATE(8822), + [sym_property_declaration] = STATE(8822), + [sym_getter] = STATE(8822), + [sym_setter] = STATE(8822), + [sym_object_declaration] = STATE(8822), + [sym__statement] = STATE(8822), + [sym__loop_statement] = STATE(8822), + [sym_for_statement] = STATE(8822), + [sym_while_statement] = STATE(8822), + [sym_do_while_statement] = STATE(8822), + [sym_assignment] = STATE(8822), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -65939,82 +65952,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [259] = { - [sym_type_alias] = STATE(8761), - [sym__declaration] = STATE(8761), - [sym_class_declaration] = STATE(8761), - [sym_function_declaration] = STATE(8761), - [sym_property_declaration] = STATE(8761), - [sym_getter] = STATE(8761), - [sym_setter] = STATE(8761), - [sym_object_declaration] = STATE(8761), - [sym__statement] = STATE(8761), - [sym__loop_statement] = STATE(8761), - [sym_for_statement] = STATE(8761), - [sym_while_statement] = STATE(8761), - [sym_do_while_statement] = STATE(8761), - [sym_assignment] = STATE(8761), + [sym_type_alias] = STATE(8822), + [sym__declaration] = STATE(8822), + [sym_class_declaration] = STATE(8822), + [sym_function_declaration] = STATE(8822), + [sym_property_declaration] = STATE(8822), + [sym_getter] = STATE(8822), + [sym_setter] = STATE(8822), + [sym_object_declaration] = STATE(8822), + [sym__statement] = STATE(8822), + [sym__loop_statement] = STATE(8822), + [sym_for_statement] = STATE(8822), + [sym_while_statement] = STATE(8822), + [sym_do_while_statement] = STATE(8822), + [sym_assignment] = STATE(8822), [sym__expression] = STATE(4196), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7921), - [sym_modifiers] = STATE(7781), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(811), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_modifiers] = STATE(7626), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(828), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), @@ -66092,1675 +66105,1675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(109), }, [260] = { - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(565), - [sym_label] = ACTIONS(591), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [sym_label] = ACTIONS(469), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [261] = { - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [sym__expression] = STATE(371), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(483), - [sym_label] = ACTIONS(509), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(361), + [sym_label] = ACTIONS(387), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(509), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [262] = { - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [sym__expression] = STATE(1306), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1632), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(663), - [sym_label] = ACTIONS(677), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(747), + [sym_label] = ACTIONS(761), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [263] = { - [sym__expression] = STATE(1360), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [sym__expression] = STATE(1363), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(753), - [sym_label] = ACTIONS(767), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(689), + [sym_label] = ACTIONS(703), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [264] = { - [sym__expression] = STATE(396), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [sym__expression] = STATE(383), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(631), - [sym_label] = ACTIONS(645), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(779), + [sym_label] = ACTIONS(793), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [265] = { - [sym__expression] = STATE(1487), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [sym__expression] = STATE(1483), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1638), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_label] = ACTIONS(851), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_DASH_GT] = ACTIONS(1594), + [sym_label] = ACTIONS(823), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1640), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1642), [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [266] = { - [sym__expression] = STATE(467), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1646), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(1650), [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [267] = { - [sym__expression] = STATE(2418), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [sym__expression] = STATE(2390), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1654), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1658), [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [268] = { - [sym__expression] = STATE(2485), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [sym__expression] = STATE(2447), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, [269] = { - [sym__expression] = STATE(2510), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [sym__expression] = STATE(2560), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1674), [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [270] = { - [sym__expression] = STATE(542), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1678), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(1680), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(1682), [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [271] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(1696), @@ -67858,46 +67871,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1696), }, [272] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(1754), @@ -67908,8 +67921,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1710), + [anon_sym_get] = ACTIONS(1758), + [anon_sym_set] = ACTIONS(1760), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1712), @@ -67995,60 +68008,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1754), }, [273] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1758), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68056,21 +68069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68087,7 +68100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68115,77 +68128,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(1764), }, [274] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1710), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1758), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68193,21 +68206,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68224,7 +68237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68252,77 +68265,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1770), }, [275] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), [anon_sym_get] = ACTIONS(1708), [anon_sym_set] = ACTIONS(1710), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68330,21 +68343,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68361,7 +68374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68389,77 +68402,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1776), }, [276] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1758), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68467,21 +68480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68498,7 +68511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68526,77 +68539,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1782), }, [277] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1786), [anon_sym_get] = ACTIONS(1708), [anon_sym_set] = ACTIONS(1710), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68604,21 +68617,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68635,7 +68648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68663,77 +68676,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1782), }, [278] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1710), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1758), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68741,21 +68754,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68772,7 +68785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1694), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68800,77 +68813,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1696), }, [279] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1710), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -68878,21 +68891,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -68909,7 +68922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -68937,77 +68950,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1754), }, [280] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), + [anon_sym_get] = ACTIONS(1758), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -69015,21 +69028,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -69046,7 +69059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69074,77 +69087,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [sym__string_start] = ACTIONS(1776), }, [281] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1710), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -69152,21 +69165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -69183,7 +69196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69211,77 +69224,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1770), }, [282] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1710), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -69289,21 +69302,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -69320,7 +69333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69348,75 +69361,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1764), }, [283] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1800), [anon_sym_get] = ACTIONS(1802), [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -69424,21 +69437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -69455,7 +69468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69483,75 +69496,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1770), }, [284] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1828), [anon_sym_get] = ACTIONS(1830), [anon_sym_set] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -69559,22 +69572,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), @@ -69590,7 +69603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69618,75 +69631,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1754), }, [285] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1834), [anon_sym_get] = ACTIONS(1802), [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -69694,21 +69707,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -69725,7 +69738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69753,75 +69766,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1764), }, [286] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1830), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -69829,21 +69842,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -69860,7 +69873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -69888,75 +69901,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1782), }, [287] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1830), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -69964,21 +69977,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -69995,7 +70008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -70023,63 +70036,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(1770), }, [288] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -70088,8 +70101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(1830), + [anon_sym_set] = ACTIONS(1832), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1806), @@ -70175,58 +70188,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1696), }, [289] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1842), [anon_sym_get] = ACTIONS(1802), [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -70234,21 +70247,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -70265,7 +70278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -70293,75 +70306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1776), }, [290] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1844), [anon_sym_get] = ACTIONS(1830), [anon_sym_set] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -70369,21 +70382,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -70400,7 +70413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -70428,75 +70441,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1776), }, [291] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1804), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [292] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1804), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [293] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1850), [anon_sym_get] = ACTIONS(1830), [anon_sym_set] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -70504,21 +70787,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -70535,7 +70818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -70563,198 +70846,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1764), }, - [292] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_get] = ACTIONS(1830), - [anon_sym_set] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [293] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [294] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -70762,9 +70910,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(1830), - [anon_sym_set] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1804), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1806), @@ -70849,363 +70997,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [294] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(1830), - [anon_sym_set] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, [295] = { - [sym__expression] = STATE(3007), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(3116), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(1858), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_label] = ACTIONS(257), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(309), + [anon_sym_DASH_GT] = ACTIONS(1594), + [sym_label] = ACTIONS(327), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(321), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(1594), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [296] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__expression] = STATE(3588), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(513), + [sym_label] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [297] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1878), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -71233,110 +71377,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1776), }, - [297] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [298] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_get] = ACTIONS(1898), - [anon_sym_set] = ACTIONS(1900), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1878), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -71364,241 +71508,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), - }, - [298] = { - [sym__expression] = STATE(3624), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(431), - [sym_label] = ACTIONS(449), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(1782), }, [299] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -71626,83 +71639,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [sym__string_start] = ACTIONS(1782), }, [300] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1872), [anon_sym_where] = ACTIONS(1752), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1870), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1910), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), [anon_sym_null] = ACTIONS(1752), [anon_sym_if] = ACTIONS(1752), [anon_sym_else] = ACTIONS(1752), @@ -71713,19 +71726,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1752), [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), @@ -71774,93 +71787,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1754), }, [301] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -71888,110 +71901,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1770), }, [302] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(1898), - [anon_sym_set] = ACTIONS(1900), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1878), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -72019,241 +72032,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1754), }, [303] = { - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(361), - [sym_label] = ACTIONS(387), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1880), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [304] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1878), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -72281,110 +72294,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1770), }, [305] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1878), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -72412,83 +72425,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1764), }, [306] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1872), [anon_sym_where] = ACTIONS(1694), [anon_sym_object] = ACTIONS(1694), [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(1898), - [anon_sym_set] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1878), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), [anon_sym_null] = ACTIONS(1694), [anon_sym_if] = ACTIONS(1694), [anon_sym_else] = ACTIONS(1694), @@ -72499,19 +72512,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1694), [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), @@ -72560,93 +72573,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1696), }, [307] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(1898), - [anon_sym_set] = ACTIONS(1900), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -72674,110 +72687,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(1764), }, [308] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1898), - [anon_sym_set] = ACTIONS(1900), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1694), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -72805,110 +72818,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1696), }, [309] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__expression] = STATE(1027), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [sym_label] = ACTIONS(591), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [310] = { + [sym__expression] = STATE(3756), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(631), + [sym_label] = ACTIONS(639), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [311] = { + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1772), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_get] = ACTIONS(1898), - [anon_sym_set] = ACTIONS(1900), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_get] = ACTIONS(1946), + [anon_sym_set] = ACTIONS(1948), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_QMARK_COLON] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), + [anon_sym_EQ_EQ] = ACTIONS(1962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_BANGin] = ACTIONS(1968), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PERCENT] = ACTIONS(1950), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1694), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -72936,204 +73208,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [310] = { - [sym__expression] = STATE(3723), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(727), - [sym_label] = ACTIONS(735), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(1696), }, - [311] = { - [sym_getter] = STATE(5339), - [sym_setter] = STATE(5339), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [312] = { + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_get] = ACTIONS(1946), - [anon_sym_set] = ACTIONS(1948), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1978), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -73141,15 +73283,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -73167,7 +73309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -73195,74 +73337,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1770), }, - [312] = { - [sym_getter] = STATE(5383), - [sym_setter] = STATE(5383), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [313] = { + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(657), + [sym_label] = ACTIONS(671), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [314] = { + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1982), [anon_sym_get] = ACTIONS(1946), [anon_sym_set] = ACTIONS(1948), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -73270,15 +73541,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -73296,7 +73567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -73324,74 +73595,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1776), }, - [313] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [315] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(1978), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(1946), + [anon_sym_set] = ACTIONS(1948), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -73399,15 +73670,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -73425,7 +73696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -73453,203 +73724,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1782), }, - [314] = { - [sym__expression] = STATE(3916), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(785), - [sym_label] = ACTIONS(793), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1401), - [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(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [315] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [316] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1986), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(1946), + [anon_sym_set] = ACTIONS(1948), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -73657,15 +73799,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -73683,7 +73825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -73711,74 +73853,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1754), }, - [316] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [317] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), [anon_sym_get] = ACTIONS(1946), [anon_sym_set] = ACTIONS(1948), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -73786,15 +73928,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -73812,7 +73954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -73840,191 +73982,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, - [317] = { - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(695), - [sym_label] = ACTIONS(709), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(1770), }, [318] = { - [sym_getter] = STATE(5392), - [sym_setter] = STATE(5392), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -74032,9 +74045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(1946), - [anon_sym_set] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1978), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1950), @@ -74115,57 +74128,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1754), }, [319] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_get] = ACTIONS(1978), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1946), + [anon_sym_set] = ACTIONS(1948), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -74173,15 +74186,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -74199,7 +74212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -74227,74 +74240,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(1764), }, [320] = { - [sym_getter] = STATE(5327), - [sym_setter] = STATE(5327), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__expression] = STATE(3918), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(721), + [sym_label] = ACTIONS(729), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1596), + [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(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [321] = { + [sym_getter] = STATE(5354), + [sym_setter] = STATE(5354), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(1946), - [anon_sym_set] = ACTIONS(1948), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -74302,15 +74444,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -74328,7 +74470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -74356,62 +74498,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [sym__string_start] = ACTIONS(1776), }, - [321] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [322] = { + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -74419,9 +74561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1694), [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(1978), - [anon_sym_set] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1978), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1950), @@ -74501,187 +74643,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1696), }, - [322] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_get] = ACTIONS(1986), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1950), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_BANGin] = ACTIONS(1968), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, [323] = { [sym_getter] = STATE(5311), [sym_setter] = STATE(5311), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(1946), - [anon_sym_set] = ACTIONS(1948), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -74689,15 +74702,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -74715,7 +74728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1694), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -74743,74 +74756,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1696), }, [324] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(1978), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1978), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -74818,15 +74831,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -74844,7 +74857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -74872,74 +74885,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(1764), }, [325] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5284), + [sym_setter] = STATE(5284), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(1986), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -74947,15 +74960,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -74973,7 +74986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -75001,74 +75014,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1764), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [sym__string_start] = ACTIONS(1764), }, [326] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5273), + [sym_setter] = STATE(5273), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(1978), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -75076,15 +75089,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -75102,7 +75115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -75130,74 +75143,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1770), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1770), }, [327] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(1986), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1978), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -75205,15 +75218,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -75231,7 +75244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -75259,74 +75272,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(1782), }, [328] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5326), + [sym_setter] = STATE(5326), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_get] = ACTIONS(1978), - [anon_sym_set] = ACTIONS(1980), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -75334,15 +75347,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -75360,7 +75373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -75388,74 +75401,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1782), }, [329] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5300), + [sym_setter] = STATE(5300), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_get] = ACTIONS(1986), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -75463,15 +75476,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -75489,7 +75502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -75517,74 +75530,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [sym__string_start] = ACTIONS(1754), }, [330] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(1986), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1978), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -75592,15 +75605,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -75618,7 +75631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_BANG_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -75646,200 +75659,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1748), [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1776), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [sym__string_start] = ACTIONS(1776), }, [331] = { - [sym__expression] = STATE(4006), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(3982), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_DASH_GT] = ACTIONS(1594), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(1594), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [332] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(2028), [anon_sym_AT] = ACTIONS(2031), [anon_sym_LBRACK] = ACTIONS(2035), @@ -75917,55 +75930,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2126), }, [333] = { - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [sym__expression] = STATE(1307), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(2129), [anon_sym_AT] = ACTIONS(2031), [anon_sym_LBRACK] = ACTIONS(2132), @@ -76043,55 +76056,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2219), }, [334] = { - [sym__expression] = STATE(468), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [sym__expression] = STATE(2446), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_typealias] = ACTIONS(2038), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_interface] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_val] = ACTIONS(2038), + [anon_sym_var] = ACTIONS(2038), + [anon_sym_object] = ACTIONS(2141), + [anon_sym_fun] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2149), + [anon_sym_set] = ACTIONS(2149), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_super] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2226), + [sym_label] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_when] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_suspend] = ACTIONS(2038), + [anon_sym_sealed] = ACTIONS(2038), + [anon_sym_annotation] = ACTIONS(2038), + [anon_sym_data] = ACTIONS(2149), + [anon_sym_inner] = ACTIONS(2149), + [anon_sym_override] = ACTIONS(2038), + [anon_sym_lateinit] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_internal] = ACTIONS(2038), + [anon_sym_protected] = ACTIONS(2038), + [anon_sym_tailrec] = ACTIONS(2038), + [anon_sym_operator] = ACTIONS(2038), + [anon_sym_infix] = ACTIONS(2038), + [anon_sym_inline] = ACTIONS(2038), + [anon_sym_external] = ACTIONS(2038), + [sym_property_modifier] = ACTIONS(2038), + [anon_sym_abstract] = ACTIONS(2038), + [anon_sym_final] = ACTIONS(2038), + [anon_sym_open] = ACTIONS(2038), + [anon_sym_vararg] = ACTIONS(2038), + [anon_sym_noinline] = ACTIONS(2038), + [anon_sym_crossinline] = ACTIONS(2038), + [anon_sym_expect] = ACTIONS(2149), + [anon_sym_actual] = ACTIONS(2149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2192), + [anon_sym_continue_AT] = ACTIONS(2195), + [anon_sym_break_AT] = ACTIONS(2198), + [sym_real_literal] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2204), + [sym_hex_literal] = ACTIONS(2207), + [sym_bin_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym__backtick_identifier] = ACTIONS(2216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2219), + }, + [335] = { + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(2028), [anon_sym_AT] = ACTIONS(2031), [anon_sym_LBRACK] = ACTIONS(2035), @@ -76104,30 +76243,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), [anon_sym_object] = ACTIONS(2046), - [anon_sym_fun] = ACTIONS(2222), + [anon_sym_fun] = ACTIONS(2244), [anon_sym_get] = ACTIONS(2054), [anon_sym_set] = ACTIONS(2054), [anon_sym_this] = ACTIONS(2058), [anon_sym_super] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2226), - [sym_label] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2248), + [sym_label] = ACTIONS(2251), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), [anon_sym_null] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2254), [anon_sym_when] = ACTIONS(2078), [anon_sym_try] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2260), [anon_sym_continue] = ACTIONS(2090), [anon_sym_break] = ACTIONS(2090), [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), @@ -76168,223 +76307,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2126), }, - [335] = { - [sym__expression] = STATE(4151), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_typealias] = ACTIONS(2038), - [anon_sym_class] = ACTIONS(2038), - [anon_sym_interface] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_val] = ACTIONS(2038), - [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2256), - [anon_sym_fun] = ACTIONS(2260), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2274), - [sym_label] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_suspend] = ACTIONS(2038), - [anon_sym_sealed] = ACTIONS(2038), - [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2264), - [anon_sym_inner] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2038), - [anon_sym_lateinit] = ACTIONS(2038), - [anon_sym_public] = ACTIONS(2038), - [anon_sym_private] = ACTIONS(2038), - [anon_sym_internal] = ACTIONS(2038), - [anon_sym_protected] = ACTIONS(2038), - [anon_sym_tailrec] = ACTIONS(2038), - [anon_sym_operator] = ACTIONS(2038), - [anon_sym_infix] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_external] = ACTIONS(2038), - [sym_property_modifier] = ACTIONS(2038), - [anon_sym_abstract] = ACTIONS(2038), - [anon_sym_final] = ACTIONS(2038), - [anon_sym_open] = ACTIONS(2038), - [anon_sym_vararg] = ACTIONS(2038), - [anon_sym_noinline] = ACTIONS(2038), - [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2264), - [anon_sym_actual] = ACTIONS(2264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), - }, [336] = { - [sym__expression] = STATE(3885), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), + [sym__expression] = STATE(538), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2269), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2349), - [anon_sym_fun] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2367), - [sym_label] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2278), + [anon_sym_fun] = ACTIONS(2282), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2296), + [sym_label] = ACTIONS(2299), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [anon_sym_BANG] = ACTIONS(2326), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2357), - [anon_sym_inner] = ACTIONS(2357), + [anon_sym_data] = ACTIONS(2286), + [anon_sym_inner] = ACTIONS(2286), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -76403,114 +76416,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2357), - [anon_sym_actual] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), + [anon_sym_expect] = ACTIONS(2286), + [anon_sym_actual] = ACTIONS(2286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), }, [337] = { - [sym__expression] = STATE(2090), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), + [sym__expression] = STATE(2389), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2362), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2442), - [anon_sym_fun] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2460), - [sym_label] = ACTIONS(2463), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_fun] = ACTIONS(2375), + [anon_sym_get] = ACTIONS(2379), + [anon_sym_set] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2389), + [sym_label] = ACTIONS(2392), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_null] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2450), - [anon_sym_inner] = ACTIONS(2450), + [anon_sym_data] = ACTIONS(2379), + [anon_sym_inner] = ACTIONS(2379), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -76529,114 +76542,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2450), - [anon_sym_actual] = ACTIONS(2450), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), + [anon_sym_expect] = ACTIONS(2379), + [anon_sym_actual] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, [338] = { - [sym__expression] = STATE(4197), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), + [sym__expression] = STATE(1500), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(2028), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2035), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2043), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2256), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2524), - [sym_label] = ACTIONS(2527), + [anon_sym_object] = ACTIONS(2046), + [anon_sym_fun] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2054), + [anon_sym_set] = ACTIONS(2054), + [anon_sym_this] = ACTIONS(2058), + [anon_sym_super] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2453), + [sym_label] = ACTIONS(2456), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_null] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_when] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2264), - [anon_sym_inner] = ACTIONS(2264), + [anon_sym_data] = ACTIONS(2054), + [anon_sym_inner] = ACTIONS(2054), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -76655,114 +76668,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2264), - [anon_sym_actual] = ACTIONS(2264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), + [anon_sym_expect] = ACTIONS(2054), + [anon_sym_actual] = ACTIONS(2054), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2102), + [anon_sym_break_AT] = ACTIONS(2105), + [sym_real_literal] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2111), + [sym_hex_literal] = ACTIONS(2114), + [sym_bin_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2120), + [sym__backtick_identifier] = ACTIONS(2123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2126), }, [339] = { - [sym__expression] = STATE(3996), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(3998), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2474), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2349), - [anon_sym_fun] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2546), - [sym_label] = ACTIONS(2549), + [anon_sym_object] = ACTIONS(2483), + [anon_sym_fun] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2491), + [anon_sym_set] = ACTIONS(2491), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2501), + [sym_label] = ACTIONS(2504), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2552), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2357), - [anon_sym_inner] = ACTIONS(2357), + [anon_sym_data] = ACTIONS(2491), + [anon_sym_inner] = ACTIONS(2491), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -76781,73 +76794,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2357), - [anon_sym_actual] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), + [anon_sym_expect] = ACTIONS(2491), + [anon_sym_actual] = ACTIONS(2491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), }, [340] = { - [sym__expression] = STATE(2486), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__expression] = STATE(1460), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(2129), [anon_sym_AT] = ACTIONS(2031), [anon_sym_LBRACK] = ACTIONS(2132), @@ -76925,96 +76938,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2219), }, [341] = { - [sym__expression] = STATE(397), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(2028), + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2589), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2046), - [anon_sym_fun] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2054), - [anon_sym_this] = ACTIONS(2058), - [anon_sym_super] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2590), - [sym_label] = ACTIONS(2593), + [anon_sym_object] = ACTIONS(2598), + [anon_sym_fun] = ACTIONS(2602), + [anon_sym_get] = ACTIONS(2606), + [anon_sym_set] = ACTIONS(2606), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2616), + [sym_label] = ACTIONS(2619), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_when] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2625), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2054), - [anon_sym_inner] = ACTIONS(2054), + [anon_sym_data] = ACTIONS(2606), + [anon_sym_inner] = ACTIONS(2606), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77033,114 +77046,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2054), - [anon_sym_actual] = ACTIONS(2054), + [anon_sym_expect] = ACTIONS(2606), + [anon_sym_actual] = ACTIONS(2606), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2102), - [anon_sym_break_AT] = ACTIONS(2105), - [sym_real_literal] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2111), - [sym_hex_literal] = ACTIONS(2114), - [sym_bin_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2120), - [sym__backtick_identifier] = ACTIONS(2123), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2126), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), }, [342] = { - [sym__expression] = STATE(372), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(2028), + [sym__expression] = STATE(4198), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2589), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2046), - [anon_sym_fun] = ACTIONS(2608), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2054), - [anon_sym_this] = ACTIONS(2058), - [anon_sym_super] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2612), - [sym_label] = ACTIONS(2615), + [anon_sym_object] = ACTIONS(2598), + [anon_sym_fun] = ACTIONS(2676), + [anon_sym_get] = ACTIONS(2606), + [anon_sym_set] = ACTIONS(2606), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2680), + [sym_label] = ACTIONS(2683), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_when] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2624), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_null] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2054), - [anon_sym_inner] = ACTIONS(2054), + [anon_sym_data] = ACTIONS(2606), + [anon_sym_inner] = ACTIONS(2606), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77159,114 +77172,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2054), - [anon_sym_actual] = ACTIONS(2054), + [anon_sym_expect] = ACTIONS(2606), + [anon_sym_actual] = ACTIONS(2606), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2102), - [anon_sym_break_AT] = ACTIONS(2105), - [sym_real_literal] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2111), - [sym_hex_literal] = ACTIONS(2114), - [sym_bin_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2120), - [sym__backtick_identifier] = ACTIONS(2123), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2126), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), }, [343] = { - [sym__expression] = STATE(3565), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), + [sym__expression] = STATE(1257), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2362), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2256), - [anon_sym_fun] = ACTIONS(2630), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2634), - [sym_label] = ACTIONS(2637), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_fun] = ACTIONS(2698), + [anon_sym_get] = ACTIONS(2379), + [anon_sym_set] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2702), + [sym_label] = ACTIONS(2705), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_null] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2717), + [anon_sym_BANG] = ACTIONS(2717), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2264), - [anon_sym_inner] = ACTIONS(2264), + [anon_sym_data] = ACTIONS(2379), + [anon_sym_inner] = ACTIONS(2379), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77285,114 +77298,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2264), - [anon_sym_actual] = ACTIONS(2264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), + [anon_sym_expect] = ACTIONS(2379), + [anon_sym_actual] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, [344] = { - [sym__expression] = STATE(3006), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), + [sym__expression] = STATE(2093), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(2028), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2035), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2043), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2349), - [anon_sym_fun] = ACTIONS(2652), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2656), - [sym_label] = ACTIONS(2659), + [anon_sym_object] = ACTIONS(2046), + [anon_sym_fun] = ACTIONS(2720), + [anon_sym_get] = ACTIONS(2054), + [anon_sym_set] = ACTIONS(2054), + [anon_sym_this] = ACTIONS(2058), + [anon_sym_super] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2724), + [sym_label] = ACTIONS(2727), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_null] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_when] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2357), - [anon_sym_inner] = ACTIONS(2357), + [anon_sym_data] = ACTIONS(2054), + [anon_sym_inner] = ACTIONS(2054), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77411,114 +77424,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2357), - [anon_sym_actual] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), + [anon_sym_expect] = ACTIONS(2054), + [anon_sym_actual] = ACTIONS(2054), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2102), + [anon_sym_break_AT] = ACTIONS(2105), + [sym_real_literal] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2111), + [sym_hex_literal] = ACTIONS(2114), + [sym_bin_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2120), + [sym__backtick_identifier] = ACTIONS(2123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2126), }, [345] = { - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(2129), + [sym__expression] = STATE(381), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2269), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2141), - [anon_sym_fun] = ACTIONS(2674), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(2153), - [anon_sym_super] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2678), - [sym_label] = ACTIONS(2681), + [anon_sym_object] = ACTIONS(2278), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2746), + [sym_label] = ACTIONS(2749), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_when] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2174), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2149), - [anon_sym_inner] = ACTIONS(2149), + [anon_sym_data] = ACTIONS(2286), + [anon_sym_inner] = ACTIONS(2286), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77537,114 +77550,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2149), - [anon_sym_actual] = ACTIONS(2149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2192), - [anon_sym_continue_AT] = ACTIONS(2195), - [anon_sym_break_AT] = ACTIONS(2198), - [sym_real_literal] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2204), - [sym_hex_literal] = ACTIONS(2207), - [sym_bin_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2213), - [sym__backtick_identifier] = ACTIONS(2216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2219), + [anon_sym_expect] = ACTIONS(2286), + [anon_sym_actual] = ACTIONS(2286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), }, [346] = { - [sym__expression] = STATE(1359), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), + [sym__expression] = STATE(356), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2269), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2708), - [anon_sym_fun] = ACTIONS(2712), - [anon_sym_get] = ACTIONS(2716), - [anon_sym_set] = ACTIONS(2716), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2726), - [sym_label] = ACTIONS(2729), + [anon_sym_object] = ACTIONS(2278), + [anon_sym_fun] = ACTIONS(2764), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2768), + [sym_label] = ACTIONS(2771), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2716), - [anon_sym_inner] = ACTIONS(2716), + [anon_sym_data] = ACTIONS(2286), + [anon_sym_inner] = ACTIONS(2286), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77663,104 +77676,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2716), - [anon_sym_actual] = ACTIONS(2716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), + [anon_sym_expect] = ACTIONS(2286), + [anon_sym_actual] = ACTIONS(2286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), }, [347] = { - [sym__expression] = STATE(2417), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), + [sym__expression] = STATE(4173), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2474), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2708), + [anon_sym_object] = ACTIONS(2483), [anon_sym_fun] = ACTIONS(2786), - [anon_sym_get] = ACTIONS(2716), - [anon_sym_set] = ACTIONS(2716), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2491), + [anon_sym_set] = ACTIONS(2491), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), [anon_sym_STAR] = ACTIONS(2790), [sym_label] = ACTIONS(2793), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), + [anon_sym_null] = ACTIONS(2507), [anon_sym_if] = ACTIONS(2796), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), [anon_sym_throw] = ACTIONS(2799), [anon_sym_return] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), [anon_sym_PLUS] = ACTIONS(2793), [anon_sym_DASH] = ACTIONS(2793), [anon_sym_PLUS_PLUS] = ACTIONS(2805), @@ -77769,8 +77782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2716), - [anon_sym_inner] = ACTIONS(2716), + [anon_sym_data] = ACTIONS(2491), + [anon_sym_inner] = ACTIONS(2491), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77789,104 +77802,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2716), - [anon_sym_actual] = ACTIONS(2716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), + [anon_sym_expect] = ACTIONS(2491), + [anon_sym_actual] = ACTIONS(2491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), }, [348] = { - [sym__expression] = STATE(3959), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), + [sym__expression] = STATE(3551), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2589), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2256), + [anon_sym_object] = ACTIONS(2598), [anon_sym_fun] = ACTIONS(2808), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), + [anon_sym_get] = ACTIONS(2606), + [anon_sym_set] = ACTIONS(2606), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), [anon_sym_STAR] = ACTIONS(2812), [sym_label] = ACTIONS(2815), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), + [anon_sym_null] = ACTIONS(2622), [anon_sym_if] = ACTIONS(2818), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), [anon_sym_throw] = ACTIONS(2821), [anon_sym_return] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), [anon_sym_PLUS] = ACTIONS(2815), [anon_sym_DASH] = ACTIONS(2815), [anon_sym_PLUS_PLUS] = ACTIONS(2827), @@ -77895,8 +77908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2264), - [anon_sym_inner] = ACTIONS(2264), + [anon_sym_data] = ACTIONS(2606), + [anon_sym_inner] = ACTIONS(2606), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -77915,104 +77928,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2264), - [anon_sym_actual] = ACTIONS(2264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), + [anon_sym_expect] = ACTIONS(2606), + [anon_sym_actual] = ACTIONS(2606), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), }, [349] = { - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), + [sym__expression] = STATE(3094), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2474), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2442), + [anon_sym_object] = ACTIONS(2483), [anon_sym_fun] = ACTIONS(2830), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), + [anon_sym_get] = ACTIONS(2491), + [anon_sym_set] = ACTIONS(2491), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), [anon_sym_STAR] = ACTIONS(2834), [sym_label] = ACTIONS(2837), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2507), [anon_sym_if] = ACTIONS(2840), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), [anon_sym_throw] = ACTIONS(2843), [anon_sym_return] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), [anon_sym_PLUS] = ACTIONS(2837), [anon_sym_DASH] = ACTIONS(2837), [anon_sym_PLUS_PLUS] = ACTIONS(2849), @@ -78021,8 +78034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2450), - [anon_sym_inner] = ACTIONS(2450), + [anon_sym_data] = ACTIONS(2491), + [anon_sym_inner] = ACTIONS(2491), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78041,104 +78054,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2450), - [anon_sym_actual] = ACTIONS(2450), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), + [anon_sym_expect] = ACTIONS(2491), + [anon_sym_actual] = ACTIONS(2491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), }, [350] = { - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2129), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2132), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2442), + [anon_sym_object] = ACTIONS(2141), [anon_sym_fun] = ACTIONS(2852), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), + [anon_sym_get] = ACTIONS(2149), + [anon_sym_set] = ACTIONS(2149), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_super] = ACTIONS(2156), [anon_sym_STAR] = ACTIONS(2856), [sym_label] = ACTIONS(2859), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2165), [anon_sym_if] = ACTIONS(2862), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), + [anon_sym_when] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2174), [anon_sym_throw] = ACTIONS(2865), [anon_sym_return] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2186), [anon_sym_PLUS] = ACTIONS(2859), [anon_sym_DASH] = ACTIONS(2859), [anon_sym_PLUS_PLUS] = ACTIONS(2871), @@ -78147,8 +78160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2450), - [anon_sym_inner] = ACTIONS(2450), + [anon_sym_data] = ACTIONS(2149), + [anon_sym_inner] = ACTIONS(2149), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78167,104 +78180,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2450), - [anon_sym_actual] = ACTIONS(2450), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), + [anon_sym_expect] = ACTIONS(2149), + [anon_sym_actual] = ACTIONS(2149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2192), + [anon_sym_continue_AT] = ACTIONS(2195), + [anon_sym_break_AT] = ACTIONS(2198), + [sym_real_literal] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2204), + [sym_hex_literal] = ACTIONS(2207), + [sym_bin_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym__backtick_identifier] = ACTIONS(2216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2219), }, [351] = { - [sym__expression] = STATE(4176), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), + [sym__expression] = STATE(3907), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2589), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2349), + [anon_sym_object] = ACTIONS(2598), [anon_sym_fun] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), + [anon_sym_get] = ACTIONS(2606), + [anon_sym_set] = ACTIONS(2606), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), [anon_sym_STAR] = ACTIONS(2878), [sym_label] = ACTIONS(2881), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2622), [anon_sym_if] = ACTIONS(2884), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), [anon_sym_throw] = ACTIONS(2887), [anon_sym_return] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), [anon_sym_PLUS] = ACTIONS(2881), [anon_sym_DASH] = ACTIONS(2881), [anon_sym_PLUS_PLUS] = ACTIONS(2893), @@ -78273,8 +78286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2357), - [anon_sym_inner] = ACTIONS(2357), + [anon_sym_data] = ACTIONS(2606), + [anon_sym_inner] = ACTIONS(2606), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78293,104 +78306,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2357), - [anon_sym_actual] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), + [anon_sym_expect] = ACTIONS(2606), + [anon_sym_actual] = ACTIONS(2606), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), }, [352] = { - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), + [sym__expression] = STATE(1362), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2362), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2708), + [anon_sym_object] = ACTIONS(2371), [anon_sym_fun] = ACTIONS(2896), - [anon_sym_get] = ACTIONS(2716), - [anon_sym_set] = ACTIONS(2716), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2379), + [anon_sym_set] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), [anon_sym_STAR] = ACTIONS(2900), [sym_label] = ACTIONS(2903), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), + [anon_sym_null] = ACTIONS(2395), [anon_sym_if] = ACTIONS(2906), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), [anon_sym_throw] = ACTIONS(2909), [anon_sym_return] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), [anon_sym_PLUS] = ACTIONS(2903), [anon_sym_DASH] = ACTIONS(2903), [anon_sym_PLUS_PLUS] = ACTIONS(2915), @@ -78399,8 +78412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2716), - [anon_sym_inner] = ACTIONS(2716), + [anon_sym_data] = ACTIONS(2379), + [anon_sym_inner] = ACTIONS(2379), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78419,104 +78432,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2716), - [anon_sym_actual] = ACTIONS(2716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), + [anon_sym_expect] = ACTIONS(2379), + [anon_sym_actual] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, [353] = { - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(2129), + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2474), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2141), + [anon_sym_object] = ACTIONS(2483), [anon_sym_fun] = ACTIONS(2918), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(2153), - [anon_sym_super] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2491), + [anon_sym_set] = ACTIONS(2491), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), [anon_sym_STAR] = ACTIONS(2922), [sym_label] = ACTIONS(2925), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2165), + [anon_sym_null] = ACTIONS(2507), [anon_sym_if] = ACTIONS(2928), - [anon_sym_when] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2174), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), [anon_sym_throw] = ACTIONS(2931), [anon_sym_return] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_COLON_COLON] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), [anon_sym_PLUS] = ACTIONS(2925), [anon_sym_DASH] = ACTIONS(2925), [anon_sym_PLUS_PLUS] = ACTIONS(2937), @@ -78525,8 +78538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2149), - [anon_sym_inner] = ACTIONS(2149), + [anon_sym_data] = ACTIONS(2491), + [anon_sym_inner] = ACTIONS(2491), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78545,104 +78558,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2149), - [anon_sym_actual] = ACTIONS(2149), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2192), - [anon_sym_continue_AT] = ACTIONS(2195), - [anon_sym_break_AT] = ACTIONS(2198), - [sym_real_literal] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2204), - [sym_hex_literal] = ACTIONS(2207), - [sym_bin_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2213), - [sym__backtick_identifier] = ACTIONS(2216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2219), + [anon_sym_expect] = ACTIONS(2491), + [anon_sym_actual] = ACTIONS(2491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), }, [354] = { - [sym__expression] = STATE(2516), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [sym__expression] = STATE(2561), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2362), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2708), + [anon_sym_object] = ACTIONS(2371), [anon_sym_fun] = ACTIONS(2940), - [anon_sym_get] = ACTIONS(2716), - [anon_sym_set] = ACTIONS(2716), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2379), + [anon_sym_set] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), [anon_sym_STAR] = ACTIONS(2944), [sym_label] = ACTIONS(2947), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), + [anon_sym_null] = ACTIONS(2395), [anon_sym_if] = ACTIONS(2950), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), [anon_sym_throw] = ACTIONS(2953), [anon_sym_return] = ACTIONS(2956), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), [anon_sym_PLUS] = ACTIONS(2947), [anon_sym_DASH] = ACTIONS(2947), [anon_sym_PLUS_PLUS] = ACTIONS(2959), @@ -78651,8 +78664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2716), - [anon_sym_inner] = ACTIONS(2716), + [anon_sym_data] = ACTIONS(2379), + [anon_sym_inner] = ACTIONS(2379), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78671,104 +78684,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2716), - [anon_sym_actual] = ACTIONS(2716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), + [anon_sym_expect] = ACTIONS(2379), + [anon_sym_actual] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, [355] = { - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), [anon_sym_AT] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2269), [anon_sym_typealias] = ACTIONS(2038), [anon_sym_class] = ACTIONS(2038), [anon_sym_interface] = ACTIONS(2038), [anon_sym_enum] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), [anon_sym_val] = ACTIONS(2038), [anon_sym_var] = ACTIONS(2038), - [anon_sym_object] = ACTIONS(2442), + [anon_sym_object] = ACTIONS(2278), [anon_sym_fun] = ACTIONS(2962), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), + [anon_sym_get] = ACTIONS(2286), + [anon_sym_set] = ACTIONS(2286), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), [anon_sym_STAR] = ACTIONS(2966), [sym_label] = ACTIONS(2969), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2302), [anon_sym_if] = ACTIONS(2972), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), [anon_sym_throw] = ACTIONS(2975), [anon_sym_return] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), [anon_sym_PLUS] = ACTIONS(2969), [anon_sym_DASH] = ACTIONS(2969), [anon_sym_PLUS_PLUS] = ACTIONS(2981), @@ -78777,8 +78790,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(2038), [anon_sym_sealed] = ACTIONS(2038), [anon_sym_annotation] = ACTIONS(2038), - [anon_sym_data] = ACTIONS(2450), - [anon_sym_inner] = ACTIONS(2450), + [anon_sym_data] = ACTIONS(2286), + [anon_sym_inner] = ACTIONS(2286), [anon_sym_override] = ACTIONS(2038), [anon_sym_lateinit] = ACTIONS(2038), [anon_sym_public] = ACTIONS(2038), @@ -78797,222 +78810,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(2038), [anon_sym_noinline] = ACTIONS(2038), [anon_sym_crossinline] = ACTIONS(2038), - [anon_sym_expect] = ACTIONS(2450), - [anon_sym_actual] = ACTIONS(2450), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), + [anon_sym_expect] = ACTIONS(2286), + [anon_sym_actual] = ACTIONS(2286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), }, [356] = { - [sym__expression] = STATE(1469), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [357] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(2992), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(2992), + [anon_sym_in] = ACTIONS(1716), [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), + [anon_sym_QMARK_COLON] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1722), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1740), [anon_sym_DASH] = ACTIONS(1740), [anon_sym_SLASH] = ACTIONS(1712), @@ -79020,124 +78908,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2984), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), + [sym__string_start] = ACTIONS(2986), }, - [358] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [357] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2990), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_fun] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(2999), - [anon_sym_super] = ACTIONS(2999), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(2988), [anon_sym_DOT_DOT] = ACTIONS(1718), [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_when] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), [anon_sym_PLUS] = ACTIONS(1740), [anon_sym_DASH] = ACTIONS(1740), [anon_sym_SLASH] = ACTIONS(1712), @@ -79145,124 +79033,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2988), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(2999), - [anon_sym_sealed] = ACTIONS(2999), - [anon_sym_annotation] = ACTIONS(2999), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_lateinit] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_tailrec] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2999), - [sym_property_modifier] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_vararg] = ACTIONS(2999), - [anon_sym_noinline] = ACTIONS(2999), - [anon_sym_crossinline] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3001), - [anon_sym_continue_AT] = ACTIONS(3001), - [anon_sym_break_AT] = ACTIONS(3001), - [sym_real_literal] = ACTIONS(3001), - [sym_integer_literal] = ACTIONS(2999), - [sym_hex_literal] = ACTIONS(3001), - [sym_bin_literal] = ACTIONS(3001), - [anon_sym_true] = ACTIONS(2999), - [anon_sym_false] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), + [sym__automatic_semicolon] = ACTIONS(2990), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3001), + [sym__string_start] = ACTIONS(2990), }, - [359] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [358] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(2995), [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), [anon_sym_PLUS] = ACTIONS(1740), [anon_sym_DASH] = ACTIONS(1740), [anon_sym_SLASH] = ACTIONS(1712), @@ -79270,115 +79158,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(2995), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), + [sym__automatic_semicolon] = ACTIONS(2997), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(2997), }, - [360] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [359] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3004), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3004), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), [anon_sym_DOT_DOT] = ACTIONS(1718), [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -79395,246 +79283,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3002), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), + [sym__automatic_semicolon] = ACTIONS(3004), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), + [sym__string_start] = ACTIONS(3004), }, - [361] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3011), + [360] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3008), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1712), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3006), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), + [sym__string_start] = ACTIONS(3008), }, - [362] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [361] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3015), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), [anon_sym_DOT_DOT] = ACTIONS(1718), [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_when] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), [anon_sym_BANGin] = ACTIONS(1734), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), @@ -79645,249 +79533,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3013), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3020), - [anon_sym_continue_AT] = ACTIONS(3020), - [anon_sym_break_AT] = ACTIONS(3020), - [sym_real_literal] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [sym_hex_literal] = ACTIONS(3020), - [sym_bin_literal] = ACTIONS(3020), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), + [sym__automatic_semicolon] = ACTIONS(3015), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3020), + [sym__string_start] = ACTIONS(3015), }, - [363] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3022), + [362] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3019), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(1712), - [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3017), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), + [sym__string_start] = ACTIONS(3019), }, - [364] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), + [363] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3026), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3024), [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), [anon_sym_PLUS] = ACTIONS(1740), [anon_sym_DASH] = ACTIONS(1740), [anon_sym_SLASH] = ACTIONS(1712), @@ -79895,121 +79783,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3024), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), + [sym__string_start] = ACTIONS(3026), + }, + [364] = { + [sym__expression] = STATE(4140), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, [365] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3041), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), [anon_sym_DOT_DOT] = ACTIONS(1718), [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(1722), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT_EQ] = ACTIONS(1732), [anon_sym_BANGin] = ACTIONS(1734), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), @@ -80020,119 +80033,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3039), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), + [sym__automatic_semicolon] = ACTIONS(3041), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), + [sym__string_start] = ACTIONS(3041), }, [366] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3045), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), [anon_sym_DOT_DOT] = ACTIONS(1718), [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), [anon_sym_LT_EQ] = ACTIONS(1732), [anon_sym_GT_EQ] = ACTIONS(1732), [anon_sym_BANGin] = ACTIONS(1734), @@ -80145,115 +80158,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3043), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), + [sym__automatic_semicolon] = ACTIONS(3045), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), + [sym__string_start] = ACTIONS(3045), }, [367] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3049), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), [anon_sym_DOT_DOT] = ACTIONS(1718), [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -80270,329 +80283,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3047), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), + [sym__automatic_semicolon] = ACTIONS(3049), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), + [sym__string_start] = ACTIONS(3049), }, [368] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1712), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1716), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_SLASH] = ACTIONS(1712), - [anon_sym_PERCENT] = ACTIONS(1712), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym__expression] = STATE(1499), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(1726), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), + [sym__string_start] = ACTIONS(615), }, [369] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(1712), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_SLASH] = ACTIONS(1712), - [anon_sym_PERCENT] = ACTIONS(1712), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), - }, - [370] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3061), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(3061), @@ -80689,56 +80577,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3061), }, - [371] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), + [370] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3065), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), [anon_sym_where] = ACTIONS(3063), [anon_sym_object] = ACTIONS(3063), [anon_sym_fun] = ACTIONS(3063), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), [anon_sym_this] = ACTIONS(3063), [anon_sym_super] = ACTIONS(3063), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1716), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_QMARK_COLON] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_null] = ACTIONS(3063), [anon_sym_if] = ACTIONS(3063), [anon_sym_else] = ACTIONS(3063), @@ -80754,15 +80642,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(3065), [anon_sym_SLASH_EQ] = ACTIONS(3065), [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_BANGin] = ACTIONS(1734), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), [anon_sym_PLUS] = ACTIONS(1740), [anon_sym_DASH] = ACTIONS(1740), [anon_sym_SLASH] = ACTIONS(1712), @@ -80775,8 +80663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3063), [anon_sym_sealed] = ACTIONS(3063), [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), [anon_sym_override] = ACTIONS(3063), [anon_sym_lateinit] = ACTIONS(3063), [anon_sym_public] = ACTIONS(3063), @@ -80795,8 +80683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3063), [anon_sym_noinline] = ACTIONS(3063), [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3065), [anon_sym_continue_AT] = ACTIONS(3065), @@ -80808,55 +80696,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3063), [anon_sym_false] = ACTIONS(3063), [anon_sym_SQUOTE] = ACTIONS(3065), - [sym__backtick_identifier] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(3065), [sym__automatic_semicolon] = ACTIONS(3065), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3065), }, - [372] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [371] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3072), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3072), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -80864,21 +80752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -80895,93 +80783,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3070), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), + [sym__automatic_semicolon] = ACTIONS(3072), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym__string_start] = ACTIONS(3072), }, - [373] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [372] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3076), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1702), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1716), @@ -80989,21 +80877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1720), [anon_sym_AMP_AMP] = ACTIONS(1722), [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), [anon_sym_BANG_EQ] = ACTIONS(1728), [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), [anon_sym_EQ_EQ] = ACTIONS(1728), @@ -81020,124 +80908,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3074), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), + [sym__automatic_semicolon] = ACTIONS(3076), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__string_start] = ACTIONS(3076), }, - [374] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3075), + [373] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3080), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3078), + [anon_sym_object] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3078), + [anon_sym_super] = ACTIONS(3078), [anon_sym_STAR] = ACTIONS(1712), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), + [anon_sym_in] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_QMARK_COLON] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1722), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_when] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1740), [anon_sym_DASH] = ACTIONS(1740), [anon_sym_SLASH] = ACTIONS(1712), @@ -81145,79 +81033,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3078), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3080), + [anon_sym_continue_AT] = ACTIONS(3080), + [anon_sym_break_AT] = ACTIONS(3080), + [sym_real_literal] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(3078), + [sym_hex_literal] = ACTIONS(3080), + [sym_bin_literal] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3080), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3080), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), + [sym__string_start] = ACTIONS(3080), }, - [375] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(1710), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1717), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1718), - [sym__multiplicative_operator] = STATE(1721), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1722), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [374] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3084), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(3084), @@ -81314,110 +81202,728 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3084), }, + [375] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_fun] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3086), + [anon_sym_super] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(1712), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_QMARK_COLON] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1722), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_null] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_when] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3086), + [anon_sym_sealed] = ACTIONS(3086), + [anon_sym_annotation] = ACTIONS(3086), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_lateinit] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_internal] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_tailrec] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_infix] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_external] = ACTIONS(3086), + [sym_property_modifier] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_open] = ACTIONS(3086), + [anon_sym_vararg] = ACTIONS(3086), + [anon_sym_noinline] = ACTIONS(3086), + [anon_sym_crossinline] = ACTIONS(3086), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3088), + [anon_sym_continue_AT] = ACTIONS(3088), + [anon_sym_break_AT] = ACTIONS(3088), + [sym_real_literal] = ACTIONS(3088), + [sym_integer_literal] = ACTIONS(3086), + [sym_hex_literal] = ACTIONS(3088), + [sym_bin_literal] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3088), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3088), + }, [376] = { - [sym__expression] = STATE(4143), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1627), + [sym__in_operator] = STATE(1624), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1705), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2271), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(1712), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_QMARK_COLON] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_BANGin] = ACTIONS(1734), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3092), + }, + [377] = { + [sym__expression] = STATE(4168), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [378] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2990), + }, + [379] = { + [sym__expression] = STATE(2016), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [380] = { + [sym__expression] = STATE(4214), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1401), + [anon_sym_as] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1594), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(1596), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_BANG_BANG] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(1594), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -81426,7 +81932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -81434,164 +81940,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SQUOTE] = ACTIONS(105), [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [377] = { - [sym__expression] = STATE(4175), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(327), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_safe_nav] = ACTIONS(1399), + [381] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(2986), }, - [378] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [382] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3061), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -81686,170 +82191,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3061), }, - [379] = { - [sym_primary_constructor] = STATE(2854), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(420), - [sym_type_constraints] = STATE(3081), - [sym_enum_class_body] = STATE(3223), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), - }, - [380] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [383] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3072), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -81857,21 +82239,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -81888,91 +82270,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3070), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), + [sym__automatic_semicolon] = ACTIONS(3072), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(3072), }, - [381] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [384] = { + [sym_primary_constructor] = STATE(876), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(415), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [385] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3076), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_fun] = ACTIONS(3063), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3063), - [anon_sym_super] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -81980,6 +82485,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3076), + }, + [386] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3004), + }, + [387] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_object] = ACTIONS(3063), + [anon_sym_fun] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3063), + [anon_sym_super] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_null] = ACTIONS(3063), [anon_sym_if] = ACTIONS(3063), [anon_sym_else] = ACTIONS(3063), @@ -81995,15 +82746,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(3065), [anon_sym_SLASH_EQ] = ACTIONS(3065), [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), [anon_sym_SLASH] = ACTIONS(1806), @@ -82016,8 +82767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3063), [anon_sym_sealed] = ACTIONS(3063), [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), [anon_sym_override] = ACTIONS(3063), [anon_sym_lateinit] = ACTIONS(3063), [anon_sym_public] = ACTIONS(3063), @@ -82036,8 +82787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3063), [anon_sym_noinline] = ACTIONS(3063), [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3065), [anon_sym_continue_AT] = ACTIONS(3065), @@ -82049,325 +82800,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3063), [anon_sym_false] = ACTIONS(3063), [anon_sym_SQUOTE] = ACTIONS(3065), - [sym__backtick_identifier] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(3065), [sym__automatic_semicolon] = ACTIONS(3065), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3065), }, - [382] = { - [sym_primary_constructor] = STATE(2841), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(406), - [sym_type_constraints] = STATE(2992), - [sym_enum_class_body] = STATE(3459), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [383] = { - [sym_primary_constructor] = STATE(2842), - [sym_class_body] = STATE(3459), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(421), - [sym_type_constraints] = STATE(3043), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [388] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(1806), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2997), }, - [384] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [389] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3080), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), + [anon_sym_object] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3078), + [anon_sym_super] = ACTIONS(3078), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_when] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), [anon_sym_LT_EQ] = ACTIONS(1822), [anon_sym_GT_EQ] = ACTIONS(1822), [anon_sym_BANGin] = ACTIONS(1824), @@ -82380,119 +83008,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3078), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_return_AT] = ACTIONS(3080), + [anon_sym_continue_AT] = ACTIONS(3080), + [anon_sym_break_AT] = ACTIONS(3080), + [sym_real_literal] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(3078), + [sym_hex_literal] = ACTIONS(3080), + [sym_bin_literal] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), + [sym__automatic_semicolon] = ACTIONS(3080), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), + [sym__string_start] = ACTIONS(3080), }, - [385] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [390] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3045), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), [anon_sym_BANGin] = ACTIONS(1824), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), @@ -82503,122 +83131,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3043), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), + [sym__automatic_semicolon] = ACTIONS(3045), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), + [sym__string_start] = ACTIONS(3045), }, - [386] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [391] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3015), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), [anon_sym_SLASH] = ACTIONS(1806), @@ -82626,460 +83254,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3013), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), + [sym__automatic_semicolon] = ACTIONS(3015), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), + [sym__string_start] = ACTIONS(3015), }, - [387] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3022), + [392] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3008), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), [anon_sym_SLASH] = ACTIONS(1806), [anon_sym_PERCENT] = ACTIONS(1806), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3006), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), + [sym__string_start] = ACTIONS(3008), }, - [388] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3011), + [393] = { + [sym_primary_constructor] = STATE(831), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(413), + [sym_type_constraints] = STATE(985), + [sym_enum_class_body] = STATE(1141), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [394] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3019), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3017), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), + [sym__string_start] = ACTIONS(3019), }, - [389] = { - [sym_primary_constructor] = STATE(2861), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(416), - [sym_type_constraints] = STATE(2994), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [395] = { + [sym_primary_constructor] = STATE(872), + [sym_class_body] = STATE(1141), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(412), + [sym_type_constraints] = STATE(964), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, - [390] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [396] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3041), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), @@ -83087,21 +83838,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1812), [anon_sym_AMP_AMP] = ACTIONS(1814), [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_when] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -83118,245 +83869,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3039), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3020), - [anon_sym_continue_AT] = ACTIONS(3020), - [anon_sym_break_AT] = ACTIONS(3020), - [sym_real_literal] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [sym_hex_literal] = ACTIONS(3020), - [sym_bin_literal] = ACTIONS(3020), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), + [sym__automatic_semicolon] = ACTIONS(3041), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3020), - }, - [391] = { - [sym_primary_constructor] = STATE(862), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(415), - [sym_type_constraints] = STATE(1026), - [sym_enum_class_body] = STATE(1192), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [sym__string_start] = ACTIONS(3041), }, - [392] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3075), + [397] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3026), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), [anon_sym_SLASH] = ACTIONS(1806), @@ -83364,113 +83992,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3024), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), + [sym__string_start] = ACTIONS(3026), }, - [393] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [398] = { + [sym_primary_constructor] = STATE(868), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(410), + [sym_type_constraints] = STATE(996), + [sym_enum_class_body] = STATE(1195), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [399] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3049), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), [anon_sym_BANG_EQ] = ACTIONS(1818), [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), [anon_sym_EQ_EQ] = ACTIONS(1818), @@ -83487,122 +84238,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3047), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), + [sym__automatic_semicolon] = ACTIONS(3049), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), + [sym__string_start] = ACTIONS(3049), }, - [394] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [400] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3092), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), [anon_sym_STAR] = ACTIONS(1806), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), + [anon_sym_QMARK_COLON] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), [anon_sym_SLASH] = ACTIONS(1806), @@ -83610,79 +84361,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3090), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(3092), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), + [sym__string_start] = ACTIONS(3092), }, - [395] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [401] = { + [sym_primary_constructor] = STATE(2850), + [sym_class_body] = STATE(3311), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(408), + [sym_type_constraints] = STATE(2999), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [402] = { + [sym_primary_constructor] = STATE(2865), + [sym_class_body] = STATE(3290), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(411), + [sym_type_constraints] = STATE(3046), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [403] = { + [sym_primary_constructor] = STATE(2855), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(417), + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3290), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [404] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2043), + [sym__in_operator] = STATE(2039), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2027), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2019), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3084), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -83777,1634 +84897,2112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3084), }, - [396] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [405] = { + [sym_primary_constructor] = STATE(2870), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(409), + [sym_type_constraints] = STATE(3084), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [406] = { + [sym_primary_constructor] = STATE(2952), + [sym_class_body] = STATE(3290), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(423), + [sym_type_constraints] = STATE(3046), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [407] = { + [sym_primary_constructor] = STATE(906), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(422), + [sym_type_constraints] = STATE(996), + [sym_enum_class_body] = STATE(1195), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [408] = { + [sym_primary_constructor] = STATE(2853), + [sym_class_body] = STATE(3293), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3019), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [409] = { + [sym_primary_constructor] = STATE(2871), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(1726), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__string_start] = ACTIONS(3200), }, - [397] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [410] = { + [sym_primary_constructor] = STATE(867), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(1726), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym__string_start] = ACTIONS(3200), }, - [398] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), + [411] = { + [sym_primary_constructor] = STATE(2867), + [sym_class_body] = STATE(3230), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3081), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [399] = { - [sym__expression] = STATE(4202), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [412] = { + [sym_primary_constructor] = STATE(869), + [sym_class_body] = STATE(1177), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(995), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [400] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), + [413] = { + [sym_primary_constructor] = STATE(871), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [401] = { - [sym__expression] = STATE(2068), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [414] = { + [sym_primary_constructor] = STATE(2964), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(431), + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3290), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, - [402] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2189), - [sym__comparison_operator] = STATE(2187), - [sym__in_operator] = STATE(2185), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2184), - [sym__multiplicative_operator] = STATE(2151), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2122), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(1806), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), + [415] = { + [sym_primary_constructor] = STATE(873), + [sym_class_body] = STATE(1140), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(986), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, - [403] = { - [sym_primary_constructor] = STATE(869), - [sym_class_body] = STATE(1069), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(409), - [sym_type_constraints] = STATE(966), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [416] = { + [sym_primary_constructor] = STATE(918), + [sym_class_body] = STATE(1141), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(432), + [sym_type_constraints] = STATE(964), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, - [404] = { - [sym_primary_constructor] = STATE(856), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(412), - [sym_type_constraints] = STATE(955), - [sym_enum_class_body] = STATE(1140), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [417] = { + [sym_primary_constructor] = STATE(2866), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [405] = { - [sym_primary_constructor] = STATE(875), - [sym_class_body] = STATE(1140), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(413), - [sym_type_constraints] = STATE(991), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [418] = { + [sym_primary_constructor] = STATE(2925), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(424), + [sym_type_constraints] = STATE(3084), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), }, - [406] = { - [sym_primary_constructor] = STATE(2847), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [419] = { + [sym_primary_constructor] = STATE(941), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(433), + [sym_type_constraints] = STATE(985), + [sym_enum_class_body] = STATE(1141), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, - [407] = { - [sym_primary_constructor] = STATE(2965), - [sym_class_body] = STATE(3459), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(428), - [sym_type_constraints] = STATE(3043), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [420] = { + [sym_primary_constructor] = STATE(937), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(437), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, - [408] = { - [sym_primary_constructor] = STATE(911), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(432), - [sym_type_constraints] = STATE(1026), - [sym_enum_class_body] = STATE(1192), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [421] = { + [sym_primary_constructor] = STATE(2984), + [sym_class_body] = STATE(3311), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(427), + [sym_type_constraints] = STATE(2999), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, - [409] = { - [sym_primary_constructor] = STATE(861), - [sym_class_body] = STATE(1139), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(957), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [422] = { + [sym_primary_constructor] = STATE(905), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3230), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3130), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(3196), [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), @@ -85453,31 +87051,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3200), [anon_sym_continue_AT] = ACTIONS(3200), @@ -85495,770 +87093,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3200), }, - [410] = { - [sym_primary_constructor] = STATE(2981), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(430), - [sym_type_constraints] = STATE(2994), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [411] = { - [sym_primary_constructor] = STATE(927), - [sym_class_body] = STATE(1140), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(424), - [sym_type_constraints] = STATE(991), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [412] = { - [sym_primary_constructor] = STATE(833), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [413] = { - [sym_primary_constructor] = STATE(874), - [sym_class_body] = STATE(1181), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(1022), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [414] = { - [sym_primary_constructor] = STATE(2978), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(429), - [sym_type_constraints] = STATE(2992), - [sym_enum_class_body] = STATE(3459), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [415] = { - [sym_primary_constructor] = STATE(845), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [423] = { + [sym_primary_constructor] = STATE(2927), + [sym_class_body] = STATE(3230), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3081), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [416] = { - [sym_primary_constructor] = STATE(2840), - [sym_class_body] = STATE(3472), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3016), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [424] = { + [sym_primary_constructor] = STATE(2902), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3234), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3174), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3176), [anon_sym_object] = ACTIONS(3196), [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), @@ -86307,31 +87293,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3200), [anon_sym_continue_AT] = ACTIONS(3200), @@ -86349,695 +87335,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3200), }, - [417] = { - [sym_primary_constructor] = STATE(929), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(431), - [sym_type_constraints] = STATE(955), - [sym_enum_class_body] = STATE(1140), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [418] = { - [sym_primary_constructor] = STATE(2947), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(425), - [sym_type_constraints] = STATE(3081), - [sym_enum_class_body] = STATE(3223), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), - }, - [419] = { - [sym_primary_constructor] = STATE(935), - [sym_class_body] = STATE(1069), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(434), - [sym_type_constraints] = STATE(966), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [420] = { - [sym_primary_constructor] = STATE(2856), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [421] = { - [sym_primary_constructor] = STATE(2848), - [sym_class_body] = STATE(3322), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3078), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [422] = { - [sym_type_constraints] = STATE(457), - [sym_property_delegate] = STATE(509), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [425] = { + [sym_type_constraints] = STATE(446), + [sym_property_delegate] = STATE(494), + [sym_getter] = STATE(3308), + [sym_setter] = STATE(3308), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -87061,62 +87437,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, - [423] = { - [sym_type_constraints] = STATE(458), - [sym_property_delegate] = STATE(513), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [426] = { + [sym_type_constraints] = STATE(441), + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3254), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_by] = ACTIONS(3244), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1752), @@ -87182,8 +87558,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -87201,285 +87577,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [424] = { - [sym_primary_constructor] = STATE(919), - [sym_class_body] = STATE(1181), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(1022), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [425] = { - [sym_primary_constructor] = STATE(2929), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [427] = { + [sym_primary_constructor] = STATE(2965), + [sym_class_body] = STATE(3293), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3019), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, - [426] = { - [sym_type_constraints] = STATE(456), - [sym_property_delegate] = STATE(490), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [428] = { + [sym_type_constraints] = STATE(455), + [sym_property_delegate] = STATE(495), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_EQ] = ACTIONS(3262), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_by] = ACTIONS(3244), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1752), @@ -87545,8 +87800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -87564,85 +87819,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [427] = { - [sym_type_constraints] = STATE(455), - [sym_property_delegate] = STATE(479), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [429] = { + [sym_type_constraints] = STATE(442), + [sym_property_delegate] = STATE(490), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -87666,709 +87921,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, - [428] = { - [sym_primary_constructor] = STATE(2950), - [sym_class_body] = STATE(3322), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3078), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [429] = { - [sym_primary_constructor] = STATE(2959), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [430] = { - [sym_primary_constructor] = STATE(2979), - [sym_class_body] = STATE(3472), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3016), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), - }, - [431] = { - [sym_primary_constructor] = STATE(923), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [432] = { - [sym_primary_constructor] = STATE(908), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [433] = { - [sym_type_constraints] = STATE(447), - [sym_property_delegate] = STATE(515), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), + [sym_type_constraints] = STATE(452), + [sym_property_delegate] = STATE(486), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), [anon_sym_EQ] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -88392,225 +88042,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [434] = { - [sym_primary_constructor] = STATE(930), - [sym_class_body] = STATE(1139), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(957), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), + [431] = { + [sym_primary_constructor] = STATE(2944), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [432] = { + [sym_primary_constructor] = STATE(907), + [sym_class_body] = STATE(1177), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(995), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [435] = { - [sym_type_constraints] = STATE(452), - [sym_property_delegate] = STATE(488), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3284), + [433] = { + [sym_primary_constructor] = STATE(917), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [434] = { + [sym_type_constraints] = STATE(449), + [sym_property_delegate] = STATE(504), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3282), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -88634,104 +88526,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, - [436] = { - [sym_type_constraints] = STATE(453), - [sym_property_delegate] = STATE(497), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [435] = { + [sym_type_constraints] = STATE(443), + [sym_property_delegate] = STATE(509), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -88755,104 +88647,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [437] = { - [sym_type_constraints] = STATE(441), - [sym_property_delegate] = STATE(500), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), + [436] = { + [sym_type_constraints] = STATE(457), + [sym_property_delegate] = STATE(516), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -88876,104 +88768,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [437] = { + [sym_primary_constructor] = STATE(942), + [sym_class_body] = STATE(1140), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(986), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, [438] = { - [sym_type_constraints] = STATE(443), - [sym_property_delegate] = STATE(499), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), + [sym_type_constraints] = STATE(445), + [sym_property_delegate] = STATE(481), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -88997,104 +89010,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [439] = { - [sym_type_constraints] = STATE(444), - [sym_property_delegate] = STATE(496), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), + [sym_type_constraints] = STATE(458), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1792), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -89118,103 +89131,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [440] = { - [sym_type_constraints] = STATE(493), - [sym_property_delegate] = STATE(563), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), + [sym_type_constraints] = STATE(506), + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(3308), + [sym_setter] = STATE(3308), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), [anon_sym_EQ] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), [anon_sym_SEMI] = ACTIONS(3300), [anon_sym_get] = ACTIONS(3302), [anon_sym_set] = ACTIONS(3304), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -89238,103 +89251,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, [441] = { - [sym_property_delegate] = STATE(497), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_property_delegate] = STATE(502), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -89358,103 +89371,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [442] = { - [sym_type_constraints] = STATE(482), - [sym_property_delegate] = STATE(572), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [sym_property_delegate] = STATE(481), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -89478,61 +89491,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [443] = { - [sym_property_delegate] = STATE(513), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [444] = { + [sym_type_constraints] = STATE(480), + [sym_property_delegate] = STATE(564), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3308), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_by] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1752), @@ -89598,8 +89731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -89617,84 +89750,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [444] = { - [sym_property_delegate] = STATE(479), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [445] = { + [sym_property_delegate] = STATE(486), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -89718,103 +89851,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [445] = { - [sym_type_constraints] = STATE(492), - [sym_property_delegate] = STATE(562), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), + [446] = { + [sym_property_delegate] = STATE(490), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [447] = { + [sym_type_constraints] = STATE(501), + [sym_property_delegate] = STATE(607), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3316), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -89838,61 +90091,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, - [446] = { - [sym_type_constraints] = STATE(511), - [sym_property_delegate] = STATE(546), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [448] = { + [sym_type_constraints] = STATE(500), + [sym_property_delegate] = STATE(603), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [449] = { + [sym_property_delegate] = STATE(509), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [450] = { + [sym_type_constraints] = STATE(512), + [sym_property_delegate] = STATE(599), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [451] = { + [sym_type_constraints] = STATE(479), + [sym_property_delegate] = STATE(593), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [452] = { + [sym_property_delegate] = STATE(495), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3262), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3244), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(1752), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1752), @@ -89958,8 +90691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -89977,84 +90710,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [447] = { - [sym_property_delegate] = STATE(488), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), - [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(3284), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [453] = { + [sym_type_constraints] = STATE(483), + [sym_property_delegate] = STATE(548), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -90078,301 +90811,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [448] = { - [sym_type_constraints] = STATE(489), - [sym_property_delegate] = STATE(558), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [449] = { - [sym_type_constraints] = STATE(501), - [sym_property_delegate] = STATE(549), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, - [450] = { - [sym_type_constraints] = STATE(502), - [sym_property_delegate] = STATE(574), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [454] = { + [sym_type_constraints] = STATE(508), + [sym_property_delegate] = STATE(578), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3330), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_by] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1752), @@ -90438,8 +90931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -90457,324 +90950,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [451] = { - [sym_type_constraints] = STATE(481), - [sym_property_delegate] = STATE(554), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [452] = { - [sym_property_delegate] = STATE(496), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [453] = { - [sym_property_delegate] = STATE(499), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [455] = { + [sym_property_delegate] = STATE(485), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -90798,103 +91051,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [454] = { - [sym_type_constraints] = STATE(508), - [sym_property_delegate] = STATE(601), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), + [456] = { + [sym_type_constraints] = STATE(492), + [sym_property_delegate] = STATE(553), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -90918,44 +91171,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [455] = { - [sym_property_delegate] = STATE(490), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [457] = { + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_EQ] = ACTIONS(3254), @@ -90963,14 +91216,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3238), + [anon_sym_by] = ACTIONS(3244), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1756), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), [anon_sym_this] = ACTIONS(1752), @@ -91038,8 +91291,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -91057,324 +91310,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [456] = { - [sym_property_delegate] = STATE(480), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1776), + [458] = { + [sym_property_delegate] = STATE(516), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1784), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [457] = { - [sym_property_delegate] = STATE(500), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3238), - [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(3290), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [458] = { - [sym_property_delegate] = STATE(486), - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -91398,103 +91411,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [459] = { - [sym_type_constraints] = STATE(485), - [sym_property_delegate] = STATE(556), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [sym_type_constraints] = STATE(498), + [sym_property_delegate] = STATE(591), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -91518,296 +91531,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [460] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3041), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_object] = ACTIONS(3059), - [anon_sym_fun] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3059), - [anon_sym_super] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_when] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3039), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3059), - [anon_sym_sealed] = ACTIONS(3059), - [anon_sym_annotation] = ACTIONS(3059), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_lateinit] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_protected] = ACTIONS(3059), - [anon_sym_tailrec] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym_external] = ACTIONS(3059), - [sym_property_modifier] = ACTIONS(3059), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_vararg] = ACTIONS(3059), - [anon_sym_noinline] = ACTIONS(3059), - [anon_sym_crossinline] = ACTIONS(3059), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3061), - [anon_sym_continue_AT] = ACTIONS(3061), - [anon_sym_break_AT] = ACTIONS(3061), - [sym_real_literal] = ACTIONS(3061), - [sym_integer_literal] = ACTIONS(3059), - [sym_hex_literal] = ACTIONS(3061), - [sym_bin_literal] = ACTIONS(3061), - [anon_sym_true] = ACTIONS(3059), - [anon_sym_false] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), + [sym__automatic_semicolon] = ACTIONS(3041), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3061), + [sym__string_start] = ACTIONS(3041), }, [461] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3075), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3008), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3006), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), + [sym__string_start] = ACTIONS(3008), }, [462] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(1880), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2986), + }, + [463] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3019), + }, + [464] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3084), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_COMMA] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1872), [anon_sym_where] = ACTIONS(3082), [anon_sym_object] = ACTIONS(3082), [anon_sym_fun] = ACTIONS(3082), @@ -91817,13 +92068,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1686), [anon_sym_this] = ACTIONS(3082), [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), [anon_sym_null] = ACTIONS(3082), [anon_sym_if] = ACTIONS(3082), [anon_sym_else] = ACTIONS(3082), @@ -91834,19 +92085,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3082), [anon_sym_break] = ACTIONS(3082), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), @@ -91894,1986 +92145,1748 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3084), }, - [463] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(1872), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), - }, - [464] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(1872), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), - }, [465] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3061), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_object] = ACTIONS(3059), + [anon_sym_fun] = ACTIONS(3059), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3059), + [anon_sym_super] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_when] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3059), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_suspend] = ACTIONS(3059), + [anon_sym_sealed] = ACTIONS(3059), + [anon_sym_annotation] = ACTIONS(3059), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3059), + [anon_sym_lateinit] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_internal] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_tailrec] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_infix] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_external] = ACTIONS(3059), + [sym_property_modifier] = ACTIONS(3059), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_final] = ACTIONS(3059), + [anon_sym_open] = ACTIONS(3059), + [anon_sym_vararg] = ACTIONS(3059), + [anon_sym_noinline] = ACTIONS(3059), + [anon_sym_crossinline] = ACTIONS(3059), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_return_AT] = ACTIONS(3061), + [anon_sym_continue_AT] = ACTIONS(3061), + [anon_sym_break_AT] = ACTIONS(3061), + [sym_real_literal] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(3059), + [sym_hex_literal] = ACTIONS(3061), + [sym_bin_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(3059), + [anon_sym_false] = ACTIONS(3059), + [anon_sym_SQUOTE] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), + [sym__automatic_semicolon] = ACTIONS(3061), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), + [sym__string_start] = ACTIONS(3061), }, [466] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3065), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_object] = ACTIONS(3063), + [anon_sym_fun] = ACTIONS(3063), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3063), + [anon_sym_super] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_null] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_when] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3063), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_suspend] = ACTIONS(3063), + [anon_sym_sealed] = ACTIONS(3063), + [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3063), + [anon_sym_lateinit] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_internal] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_tailrec] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_infix] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_external] = ACTIONS(3063), + [sym_property_modifier] = ACTIONS(3063), + [anon_sym_abstract] = ACTIONS(3063), + [anon_sym_final] = ACTIONS(3063), + [anon_sym_open] = ACTIONS(3063), + [anon_sym_vararg] = ACTIONS(3063), + [anon_sym_noinline] = ACTIONS(3063), + [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), + [anon_sym_return_AT] = ACTIONS(3065), + [anon_sym_continue_AT] = ACTIONS(3065), + [anon_sym_break_AT] = ACTIONS(3065), + [sym_real_literal] = ACTIONS(3065), + [sym_integer_literal] = ACTIONS(3063), + [sym_hex_literal] = ACTIONS(3065), + [sym_bin_literal] = ACTIONS(3065), + [anon_sym_true] = ACTIONS(3063), + [anon_sym_false] = ACTIONS(3063), + [anon_sym_SQUOTE] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), + [sym__string_start] = ACTIONS(3065), }, [467] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3080), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3080), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3078), + [anon_sym_object] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3078), + [anon_sym_super] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_when] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3078), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_return_AT] = ACTIONS(3080), + [anon_sym_continue_AT] = ACTIONS(3080), + [anon_sym_break_AT] = ACTIONS(3080), + [sym_real_literal] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(3078), + [sym_hex_literal] = ACTIONS(3080), + [sym_bin_literal] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), + [sym__automatic_semicolon] = ACTIONS(3080), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__string_start] = ACTIONS(3080), }, [468] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3045), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3043), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), + [sym__automatic_semicolon] = ACTIONS(3045), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym__string_start] = ACTIONS(3045), }, [469] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_fun] = ACTIONS(3063), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3063), - [anon_sym_super] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_when] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(2995), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3063), - [anon_sym_sealed] = ACTIONS(3063), - [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_lateinit] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_tailrec] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym_external] = ACTIONS(3063), - [sym_property_modifier] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_vararg] = ACTIONS(3063), - [anon_sym_noinline] = ACTIONS(3063), - [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3065), - [anon_sym_continue_AT] = ACTIONS(3065), - [anon_sym_break_AT] = ACTIONS(3065), - [sym_real_literal] = ACTIONS(3065), - [sym_integer_literal] = ACTIONS(3063), - [sym_hex_literal] = ACTIONS(3065), - [sym_bin_literal] = ACTIONS(3065), - [anon_sym_true] = ACTIONS(3063), - [anon_sym_false] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(2997), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3065), + [sym__string_start] = ACTIONS(2997), }, [470] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3076), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_fun] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(2999), - [anon_sym_super] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_when] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3074), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(2999), - [anon_sym_sealed] = ACTIONS(2999), - [anon_sym_annotation] = ACTIONS(2999), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_lateinit] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_tailrec] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2999), - [sym_property_modifier] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_vararg] = ACTIONS(2999), - [anon_sym_noinline] = ACTIONS(2999), - [anon_sym_crossinline] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3001), - [anon_sym_continue_AT] = ACTIONS(3001), - [anon_sym_break_AT] = ACTIONS(3001), - [sym_real_literal] = ACTIONS(3001), - [sym_integer_literal] = ACTIONS(2999), - [sym_hex_literal] = ACTIONS(3001), - [sym_bin_literal] = ACTIONS(3001), - [anon_sym_true] = ACTIONS(2999), - [anon_sym_false] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), + [sym__automatic_semicolon] = ACTIONS(3076), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3001), + [sym__string_start] = ACTIONS(3076), }, [471] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3092), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3090), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), + [sym__automatic_semicolon] = ACTIONS(3092), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), + [sym__string_start] = ACTIONS(3092), }, [472] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3049), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3047), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), + [sym__automatic_semicolon] = ACTIONS(3049), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), + [sym__string_start] = ACTIONS(3049), }, [473] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3088), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_fun] = ACTIONS(3086), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3086), + [anon_sym_super] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_when] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3086), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_suspend] = ACTIONS(3086), + [anon_sym_sealed] = ACTIONS(3086), + [anon_sym_annotation] = ACTIONS(3086), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_lateinit] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_internal] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_tailrec] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_infix] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_external] = ACTIONS(3086), + [sym_property_modifier] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_open] = ACTIONS(3086), + [anon_sym_vararg] = ACTIONS(3086), + [anon_sym_noinline] = ACTIONS(3086), + [anon_sym_crossinline] = ACTIONS(3086), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(3088), + [anon_sym_continue_AT] = ACTIONS(3088), + [anon_sym_break_AT] = ACTIONS(3088), + [sym_real_literal] = ACTIONS(3088), + [sym_integer_literal] = ACTIONS(3086), + [sym_hex_literal] = ACTIONS(3088), + [sym_bin_literal] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3088), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), + [sym__automatic_semicolon] = ACTIONS(3088), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(3088), }, [474] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2990), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(2988), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), + [sym__automatic_semicolon] = ACTIONS(2990), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), + [sym__string_start] = ACTIONS(2990), }, [475] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3022), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3015), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(1898), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3013), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), + [sym__string_start] = ACTIONS(3015), }, [476] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3011), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3026), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3024), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), + [sym__string_start] = ACTIONS(3026), }, [477] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(2992), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3004), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(3002), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), + [sym__string_start] = ACTIONS(3004), }, [478] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2315), - [sym__comparison_operator] = STATE(2313), - [sym__in_operator] = STATE(2311), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(2308), - [sym__multiplicative_operator] = STATE(2301), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2300), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1981), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3072), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3072), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_where] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(1872), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(1880), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_QMARK_COLON] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_when] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_QMARK_COLON] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_BANGin] = ACTIONS(1890), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_BANGin] = ACTIONS(1898), [anon_sym_is] = ACTIONS(1736), [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1880), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3070), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3020), - [anon_sym_continue_AT] = ACTIONS(3020), - [anon_sym_break_AT] = ACTIONS(3020), - [sym_real_literal] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [sym_hex_literal] = ACTIONS(3020), - [sym_bin_literal] = ACTIONS(3020), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), + [sym__automatic_semicolon] = ACTIONS(3072), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3020), + [sym__string_start] = ACTIONS(3072), }, [479] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [sym_property_delegate] = STATE(591), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -93897,101 +93910,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [480] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_property_delegate] = STATE(597), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94015,101 +94028,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [481] = { - [sym_property_delegate] = STATE(549), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94133,101 +94146,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [482] = { - [sym_property_delegate] = STATE(556), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94251,101 +94264,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [483] = { - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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), + [sym_property_delegate] = STATE(553), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94369,101 +94382,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [484] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94487,101 +94500,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [485] = { - [sym_property_delegate] = STATE(558), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94605,232 +94618,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, [486] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [487] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), + }, + [487] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), [anon_sym_infix] = ACTIONS(73), [anon_sym_inline] = ACTIONS(73), [anon_sym_external] = ACTIONS(73), @@ -94841,101 +94854,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, [488] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -94959,59 +94972,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, [489] = { - [sym_property_delegate] = STATE(562), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), [anon_sym_object] = ACTIONS(1694), [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1694), @@ -95077,8 +95090,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1696), [anon_sym_continue_AT] = ACTIONS(1696), @@ -95097,81 +95110,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1696), }, [490] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95195,101 +95208,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [491] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95313,47 +95326,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [492] = { - [sym_property_delegate] = STATE(574), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_property_delegate] = STATE(564), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3308), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), @@ -95363,7 +95376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1852), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), [anon_sym_this] = ACTIONS(1752), @@ -95431,8 +95444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -95451,81 +95464,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1754), }, [493] = { - [sym_property_delegate] = STATE(554), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95549,101 +95562,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [494] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3280), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95667,101 +95680,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [495] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95785,101 +95798,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [496] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1792), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95903,101 +95916,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [497] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_getter] = STATE(3178), + [sym_setter] = STATE(3178), + [sym_modifiers] = STATE(8877), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), + }, + [498] = { + [sym_property_delegate] = STATE(578), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96021,43 +96152,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [sym__string_start] = ACTIONS(1754), }, - [498] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [499] = { + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_EQ] = ACTIONS(1694), @@ -96072,8 +96203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1694), @@ -96139,8 +96270,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1696), [anon_sym_continue_AT] = ACTIONS(1696), @@ -96158,200 +96289,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1696), }, - [499] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), - }, [500] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_property_delegate] = STATE(548), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96375,101 +96388,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [501] = { - [sym_property_delegate] = STATE(546), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), + [sym_property_delegate] = STATE(603), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96493,101 +96506,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [502] = { - [sym_property_delegate] = STATE(594), - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96611,101 +96624,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, [503] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96729,101 +96742,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, [504] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3286), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96847,101 +96860,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [505] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96965,101 +96978,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [506] = { - [sym_getter] = STATE(3175), - [sym_setter] = STATE(3175), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [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), + [sym_property_delegate] = STATE(599), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97083,101 +97096,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [507] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97201,101 +97214,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [508] = { - [sym_property_delegate] = STATE(563), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), + [sym_property_delegate] = STATE(574), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1838), [anon_sym_get] = ACTIONS(3302), [anon_sym_set] = ACTIONS(3304), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97319,101 +97332,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [509] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3290), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97437,101 +97450,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [510] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1772), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97555,101 +97568,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [511] = { - [sym_property_delegate] = STATE(598), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(1139), + [sym_setter] = STATE(1139), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97673,101 +97686,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, [512] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_property_delegate] = STATE(593), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97791,101 +97804,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [513] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97909,101 +97922,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [514] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8689), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98027,101 +98040,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [515] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3284), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), [anon_sym_get] = ACTIONS(3256), [anon_sym_set] = ACTIONS(3258), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98145,107 +98158,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [516] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8845), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3280), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3258), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), + }, + [516] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8760), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), [anon_sym_private] = ACTIONS(81), @@ -98263,416 +98276,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, [517] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3022), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3072), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_QMARK_COLON] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(1962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), + [anon_sym_EQ_EQ] = ACTIONS(1962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_BANGin] = ACTIONS(1968), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), [anon_sym_PERCENT] = ACTIONS(1950), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3070), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), + [sym__string_start] = ACTIONS(3072), }, [518] = { - [sym_primary_constructor] = STATE(3685), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(593), - [sym_type_constraints] = STATE(2994), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [519] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3011), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PERCENT] = ACTIONS(1950), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(2995), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), + [sym__string_start] = ACTIONS(2997), }, - [520] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [519] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3049), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -98680,15 +98576,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_when] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -98706,195 +98602,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3047), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3020), - [anon_sym_continue_AT] = ACTIONS(3020), - [anon_sym_break_AT] = ACTIONS(3020), - [sym_real_literal] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [sym_hex_literal] = ACTIONS(3020), - [sym_bin_literal] = ACTIONS(3020), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3049), + }, + [520] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(1950), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3020), + [sym__string_start] = ACTIONS(3026), }, [521] = { - [sym_primary_constructor] = STATE(3699), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(599), - [sym_type_constraints] = STATE(2992), - [sym_enum_class_body] = STATE(3459), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_fun] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3346), + [anon_sym_super] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3346), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, [522] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3061), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), @@ -98985,520 +98998,754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3061), }, [523] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(1950), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_BANGin] = ACTIONS(1968), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), + [sym_primary_constructor] = STATE(3690), + [sym_class_body] = STATE(3290), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(585), + [sym_type_constraints] = STATE(3046), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, [524] = { - [sym_primary_constructor] = STATE(3716), - [sym_class_body] = STATE(3459), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(600), - [sym_type_constraints] = STATE(3043), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [sym_primary_constructor] = STATE(3689), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(586), + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3290), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, [525] = { - [sym_primary_constructor] = STATE(3726), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(603), - [sym_type_constraints] = STATE(3081), - [sym_enum_class_body] = STATE(3223), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [sym_primary_constructor] = STATE(3698), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(570), + [sym_type_constraints] = STATE(3084), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), }, [526] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(1950), - [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_BANGin] = ACTIONS(1968), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_as_QMARK] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(1726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym_primary_constructor] = STATE(1336), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(562), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, [527] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_primary_constructor] = STATE(3683), + [sym_class_body] = STATE(3311), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(606), + [sym_type_constraints] = STATE(2999), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [528] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_fun] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3346), + [anon_sym_super] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3346), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), + }, + [529] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(3065), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), [anon_sym_object] = ACTIONS(3063), [anon_sym_fun] = ACTIONS(3063), [anon_sym_DOT] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), [anon_sym_this] = ACTIONS(3063), [anon_sym_super] = ACTIONS(3063), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_null] = ACTIONS(3063), [anon_sym_if] = ACTIONS(3063), [anon_sym_else] = ACTIONS(3063), @@ -99509,15 +99756,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3063), [anon_sym_break] = ACTIONS(3063), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_BANGin] = ACTIONS(1968), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), [anon_sym_PLUS] = ACTIONS(1970), [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), @@ -99530,8 +99777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(3063), [anon_sym_sealed] = ACTIONS(3063), [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), [anon_sym_override] = ACTIONS(3063), [anon_sym_lateinit] = ACTIONS(3063), [anon_sym_public] = ACTIONS(3063), @@ -99550,8 +99797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3063), [anon_sym_noinline] = ACTIONS(3063), [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3065), [anon_sym_continue_AT] = ACTIONS(3065), @@ -99563,546 +99810,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3063), [anon_sym_false] = ACTIONS(3063), [anon_sym_SQUOTE] = ACTIONS(3065), - [sym__backtick_identifier] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(3065), [sym__automatic_semicolon] = ACTIONS(3065), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3065), }, - [528] = { - [sym_primary_constructor] = STATE(1297), - [sym_class_body] = STATE(1069), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(597), - [sym_type_constraints] = STATE(966), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [529] = { - [sym_primary_constructor] = STATE(1299), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(589), - [sym_type_constraints] = STATE(955), - [sym_enum_class_body] = STATE(1140), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, [530] = { - [sym_primary_constructor] = STATE(1300), - [sym_class_body] = STATE(1140), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(588), - [sym_type_constraints] = STATE(991), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [531] = { - [sym_primary_constructor] = STATE(1303), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(587), - [sym_type_constraints] = STATE(1026), - [sym_enum_class_body] = STATE(1192), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), - }, - [532] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3080), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_object] = ACTIONS(3078), + [anon_sym_fun] = ACTIONS(3078), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), + [anon_sym_this] = ACTIONS(3078), + [anon_sym_super] = ACTIONS(3078), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_when] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(1962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), + [anon_sym_EQ_EQ] = ACTIONS(1962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_BANGin] = ACTIONS(1968), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1970), [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), @@ -100110,228 +99889,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3078), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_return_AT] = ACTIONS(3080), + [anon_sym_continue_AT] = ACTIONS(3080), + [anon_sym_break_AT] = ACTIONS(3080), + [sym_real_literal] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(3078), + [sym_hex_literal] = ACTIONS(3080), + [sym_bin_literal] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), + [sym__automatic_semicolon] = ACTIONS(3080), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), + [sym__string_start] = ACTIONS(3080), }, - [533] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(1686), + [531] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3019), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(1968), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3017), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), + [sym__string_start] = ACTIONS(3019), }, - [534] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [532] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3084), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_fun] = ACTIONS(3082), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3082), + [anon_sym_super] = ACTIONS(3082), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(1962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), + [anon_sym_EQ_EQ] = ACTIONS(1962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), [anon_sym_LT_EQ] = ACTIONS(1966), [anon_sym_GT_EQ] = ACTIONS(1966), [anon_sym_BANGin] = ACTIONS(1968), @@ -100344,106 +100123,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3082), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_return_AT] = ACTIONS(3084), + [anon_sym_continue_AT] = ACTIONS(3084), + [anon_sym_break_AT] = ACTIONS(3084), + [sym_real_literal] = ACTIONS(3084), + [sym_integer_literal] = ACTIONS(3082), + [sym_hex_literal] = ACTIONS(3084), + [sym_bin_literal] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(1726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3084), + }, + [533] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1950), + [sym_label] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_as_QMARK] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_BANG_BANG] = ACTIONS(1744), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), + [sym__string_start] = ACTIONS(3008), + }, + [534] = { + [sym_primary_constructor] = STATE(1334), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(547), + [sym_type_constraints] = STATE(985), + [sym_enum_class_body] = STATE(1141), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, [535] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3076), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -100461,116 +100474,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3074), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), + [sym__automatic_semicolon] = ACTIONS(3076), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), + [sym__string_start] = ACTIONS(3076), }, [536] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2990), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(2988), [anon_sym_DOT_DOT] = ACTIONS(1954), [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_BANGin] = ACTIONS(1968), - [anon_sym_is] = ACTIONS(1736), - [anon_sym_BANGis] = ACTIONS(1738), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), [anon_sym_PLUS] = ACTIONS(1970), [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), @@ -100578,116 +100591,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(2988), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), + [sym__automatic_semicolon] = ACTIONS(2990), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), + [sym__string_start] = ACTIONS(2990), }, [537] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3015), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), + [anon_sym_QMARK_COLON] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(1968), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1970), [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), @@ -100695,90 +100708,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3013), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(3015), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), + [sym__string_start] = ACTIONS(3015), }, [538] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(2986), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), @@ -100786,15 +100799,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -100812,116 +100825,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(2984), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), + [sym__automatic_semicolon] = ACTIONS(2986), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(2986), }, [539] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(2992), + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3045), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(2992), + [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), + [anon_sym_QMARK_COLON] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_BANGin] = ACTIONS(1968), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1970), [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), @@ -100929,116 +100942,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(3043), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3045), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), + [sym__string_start] = ACTIONS(3045), }, [540] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(3075), + [sym_primary_constructor] = STATE(1333), + [sym_class_body] = STATE(1141), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(552), + [sym_type_constraints] = STATE(964), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [541] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3041), [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_QMARK_COLON] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(1962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), + [anon_sym_EQ_EQ] = ACTIONS(1962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_BANGin] = ACTIONS(1968), + [anon_sym_is] = ACTIONS(1736), + [anon_sym_BANGis] = ACTIONS(1738), [anon_sym_PLUS] = ACTIONS(1970), [anon_sym_DASH] = ACTIONS(1970), [anon_sym_SLASH] = ACTIONS(1972), @@ -101046,106 +101176,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3039), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3041), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), + [sym__string_start] = ACTIONS(3041), }, - [541] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [542] = { + [sym_primary_constructor] = STATE(1330), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(565), + [sym_type_constraints] = STATE(996), + [sym_enum_class_body] = STATE(1195), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [543] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3004), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_super] = ACTIONS(3082), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), [anon_sym_QMARK_COLON] = ACTIONS(1956), [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -101163,106 +101410,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3002), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3084), - [anon_sym_continue_AT] = ACTIONS(3084), - [anon_sym_break_AT] = ACTIONS(3084), - [sym_real_literal] = ACTIONS(3084), - [sym_integer_literal] = ACTIONS(3082), - [sym_hex_literal] = ACTIONS(3084), - [sym_bin_literal] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), + [sym__automatic_semicolon] = ACTIONS(3004), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3084), + [sym__string_start] = ACTIONS(3004), }, - [542] = { - [sym_indexing_suffix] = STATE(1043), - [sym_navigation_suffix] = STATE(1049), - [sym_call_suffix] = STATE(1050), - [sym_annotated_lambda] = STATE(1058), - [sym_type_arguments] = STATE(7501), - [sym_value_arguments] = STATE(783), - [sym_lambda_literal] = STATE(1056), - [sym__equality_operator] = STATE(2016), - [sym__comparison_operator] = STATE(2015), - [sym__in_operator] = STATE(1967), - [sym__is_operator] = STATE(6288), - [sym__additive_operator] = STATE(1961), - [sym__multiplicative_operator] = STATE(1948), - [sym__as_operator] = STATE(6289), - [sym__postfix_unary_operator] = STATE(1135), - [sym__member_access_operator] = STATE(7292), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1921), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), + [544] = { + [sym_indexing_suffix] = STATE(1068), + [sym_navigation_suffix] = STATE(1067), + [sym_call_suffix] = STATE(1066), + [sym_annotated_lambda] = STATE(1065), + [sym_type_arguments] = STATE(7564), + [sym_value_arguments] = STATE(772), + [sym_lambda_literal] = STATE(1118), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2213), + [sym__in_operator] = STATE(2212), + [sym__is_operator] = STATE(6178), + [sym__additive_operator] = STATE(2211), + [sym__multiplicative_operator] = STATE(2210), + [sym__as_operator] = STATE(6147), + [sym__postfix_unary_operator] = STATE(1064), + [sym__member_access_operator] = STATE(7278), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2206), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), [anon_sym_LBRACK] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(3092), [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), [anon_sym_STAR] = ACTIONS(1950), [sym_label] = ACTIONS(1714), [anon_sym_in] = ACTIONS(1952), [anon_sym_DOT_DOT] = ACTIONS(1954), [anon_sym_QMARK_COLON] = ACTIONS(1956), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), [anon_sym_COLON_COLON] = ACTIONS(1726), [anon_sym_BANG_EQ] = ACTIONS(1962), [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), @@ -101280,240 +101527,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(1742), [anon_sym_PLUS_PLUS] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3090), [anon_sym_BANG_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), + [sym__automatic_semicolon] = ACTIONS(3092), [sym_safe_nav] = ACTIONS(1726), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__string_start] = ACTIONS(3092), }, - [543] = { - [sym_primary_constructor] = STATE(1381), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(628), - [sym_type_constraints] = STATE(1026), - [sym_enum_class_body] = STATE(1192), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [545] = { + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [544] = { - [sym_type_constraints] = STATE(620), - [sym_property_delegate] = STATE(692), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [546] = { + [sym_type_constraints] = STATE(621), + [sym_property_delegate] = STATE(686), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101537,99 +101784,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [545] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), + [547] = { + [sym_primary_constructor] = STATE(1332), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [548] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1848), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101653,104 +102016,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [546] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [549] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -101769,99 +102144,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [547] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [550] = { + [sym_type_constraints] = STATE(627), + [sym_property_delegate] = STATE(677), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101885,104 +102248,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [548] = { - [sym_type_constraints] = STATE(616), - [sym_property_delegate] = STATE(674), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [551] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -102001,43 +102376,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [549] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [552] = { + [sym_primary_constructor] = STATE(1289), + [sym_class_body] = STATE(1177), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(995), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [553] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_EQ] = ACTIONS(1752), @@ -102049,9 +102528,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1752), @@ -102117,8 +102596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -102136,85 +102615,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [550] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [554] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -102233,336 +102724,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), - }, - [551] = { - [sym_primary_constructor] = STATE(1368), - [sym_class_body] = STATE(1140), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(614), - [sym_type_constraints] = STATE(991), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [552] = { - [sym_primary_constructor] = STATE(1356), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(612), - [sym_type_constraints] = STATE(955), - [sym_enum_class_body] = STATE(1140), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), }, - [553] = { - [sym_type_constraints] = STATE(621), - [sym_property_delegate] = STATE(666), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3382), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [555] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -102581,331 +102840,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), - }, - [554] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, - [555] = { - [sym_primary_constructor] = STATE(1349), - [sym_class_body] = STATE(1069), - [sym__class_parameters] = STATE(976), - [sym_type_parameters] = STATE(613), - [sym_type_constraints] = STATE(966), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), }, [556] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_type_constraints] = STATE(614), + [sym_property_delegate] = STATE(664), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102929,99 +102944,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [557] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_type_constraints] = STATE(635), + [sym_property_delegate] = STATE(682), + [sym_getter] = STATE(3308), + [sym_setter] = STATE(3308), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103045,99 +103060,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, [558] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1852), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103161,215 +103176,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [559] = { - [sym_type_constraints] = STATE(631), - [sym_property_delegate] = STATE(698), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3386), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym_primary_constructor] = STATE(3957), + [sym_class_body] = STATE(3311), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(616), + [sym_type_constraints] = STATE(2999), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, [560] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_type_constraints] = STATE(637), + [sym_property_delegate] = STATE(661), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103393,99 +103408,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, [561] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103509,99 +103524,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [562] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1850), + [sym_primary_constructor] = STATE(1335), + [sym_class_body] = STATE(1140), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(986), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [563] = { + [sym_primary_constructor] = STATE(1376), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(638), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [564] = { + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1800), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103625,104 +103872,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [565] = { + [sym_primary_constructor] = STATE(1329), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(3200), }, - [563] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [566] = { + [sym_primary_constructor] = STATE(1381), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(629), + [sym_type_constraints] = STATE(985), + [sym_enum_class_body] = STATE(1141), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [567] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -103741,215 +104232,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [564] = { - [sym_primary_constructor] = STATE(3905), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(635), - [sym_type_constraints] = STATE(3081), - [sym_enum_class_body] = STATE(3223), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [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(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [568] = { + [sym_primary_constructor] = STATE(1382), + [sym_class_body] = STATE(1141), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(628), + [sym_type_constraints] = STATE(964), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), }, - [565] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [569] = { + [sym_type_constraints] = STATE(623), + [sym_property_delegate] = STATE(670), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103973,232 +104452,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [566] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_get] = ACTIONS(3402), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [570] = { + [sym_primary_constructor] = STATE(3699), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, - [567] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_get] = ACTIONS(3402), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [571] = { + [sym_getter] = STATE(3178), + [sym_setter] = STATE(3178), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -104217,53 +104684,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, - [568] = { - [sym_type_constraints] = STATE(626), - [sym_property_delegate] = STATE(694), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [572] = { + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3366), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), [anon_sym_object] = ACTIONS(1694), [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1694), [sym_label] = ACTIONS(1694), [anon_sym_in] = ACTIONS(1694), [anon_sym_DOT_DOT] = ACTIONS(1696), @@ -104280,6 +104754,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1694), [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), [anon_sym_BANG_EQ] = ACTIONS(1694), [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), [anon_sym_EQ_EQ] = ACTIONS(1694), @@ -104292,7 +104771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1694), [anon_sym_DASH] = ACTIONS(1694), [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1694), [anon_sym_as_QMARK] = ACTIONS(1696), [anon_sym_PLUS_PLUS] = ACTIONS(1696), [anon_sym_DASH_DASH] = ACTIONS(1696), @@ -104321,8 +104800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1696), [anon_sym_continue_AT] = ACTIONS(1696), @@ -104340,80 +104819,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1696), }, - [569] = { - [sym_type_constraints] = STATE(636), - [sym_property_delegate] = STATE(696), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [573] = { + [sym_type_constraints] = STATE(624), + [sym_property_delegate] = STATE(667), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104437,99 +104916,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [570] = { - [sym_type_constraints] = STATE(627), - [sym_property_delegate] = STATE(690), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [574] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104553,99 +105032,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [571] = { - [sym_type_constraints] = STATE(615), - [sym_property_delegate] = STATE(677), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [575] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104669,99 +105148,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [572] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [576] = { + [sym_primary_constructor] = STATE(1389), + [sym__class_parameters] = STATE(1002), + [sym_type_parameters] = STATE(619), + [sym_type_constraints] = STATE(996), + [sym_enum_class_body] = STATE(1195), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [577] = { + [sym_primary_constructor] = STATE(3935), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(631), + [sym_type_constraints] = STATE(3084), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [578] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104785,215 +105496,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [573] = { - [sym_primary_constructor] = STATE(3912), - [sym_class_body] = STATE(3465), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(630), - [sym_type_constraints] = STATE(2994), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [574] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1848), + [579] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105017,99 +105612,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [575] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [580] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105133,99 +105728,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [576] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [581] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105249,343 +105844,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), - }, - [577] = { - [sym_primary_constructor] = STATE(3909), - [sym_class_body] = STATE(3459), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(633), - [sym_type_constraints] = STATE(3043), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [578] = { - [sym_primary_constructor] = STATE(3911), - [sym__class_parameters] = STATE(3113), - [sym_type_parameters] = STATE(617), - [sym_type_constraints] = STATE(2992), - [sym_enum_class_body] = STATE(3459), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [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(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), - }, - [579] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [582] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3402), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105613,100 +105976,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [580] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3462), + [583] = { + [sym_type_constraints] = STATE(622), + [sym_property_delegate] = STATE(671), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1912), [anon_sym_get] = ACTIONS(3464), [anon_sym_set] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -105725,99 +106076,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [581] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [584] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105845,95 +106208,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [582] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [585] = { + [sym_primary_constructor] = STATE(3695), + [sym_class_body] = STATE(3230), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3081), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [586] = { + [sym_primary_constructor] = STATE(3693), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [587] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105961,95 +106556,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [583] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [588] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3410), [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(3392), + [anon_sym_as] = ACTIONS(3412), [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3416), [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3426), [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3440), [anon_sym_PLUS_EQ] = ACTIONS(1754), [anon_sym_DASH_EQ] = ACTIONS(1754), [anon_sym_STAR_EQ] = ACTIONS(1754), [anon_sym_SLASH_EQ] = ACTIONS(1754), [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106077,95 +106672,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [584] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [589] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106193,95 +106788,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [585] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [590] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106309,547 +106904,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [586] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), + [591] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1828), [anon_sym_get] = ACTIONS(3302), [anon_sym_set] = ACTIONS(3304), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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(1304), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [588] = { - [sym_primary_constructor] = STATE(1292), - [sym_class_body] = STATE(1181), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(1022), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [589] = { - [sym_primary_constructor] = STATE(1301), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [590] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106873,116 +107004,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [591] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(3392), + [592] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3402), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), [anon_sym_PLUS_EQ] = ACTIONS(1754), [anon_sym_DASH_EQ] = ACTIONS(1754), [anon_sym_STAR_EQ] = ACTIONS(1754), [anon_sym_SLASH_EQ] = ACTIONS(1754), [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -107001,104 +107120,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [592] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(3402), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [593] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -107117,203 +107236,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [593] = { - [sym_primary_constructor] = STATE(3765), - [sym_class_body] = STATE(3472), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3016), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [594] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_primary_constructor] = STATE(3959), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(632), + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3290), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [595] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107337,116 +107468,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [595] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3490), - [anon_sym_get] = ACTIONS(3402), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [596] = { + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -107465,87 +107584,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [596] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [597] = { + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107569,215 +107700,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [597] = { - [sym_primary_constructor] = STATE(1298), - [sym_class_body] = STATE(1139), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(957), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, [598] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107801,331 +107816,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), }, [599] = { - [sym_primary_constructor] = STATE(3719), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [600] = { - [sym_primary_constructor] = STATE(3721), - [sym_class_body] = STATE(3322), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3078), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [601] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3300), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), [anon_sym_get] = ACTIONS(3302), [anon_sym_set] = ACTIONS(3304), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108149,99 +107932,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [602] = { - [sym_type_constraints] = STATE(624), - [sym_property_delegate] = STATE(686), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [600] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108265,215 +108048,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), - }, - [603] = { - [sym_primary_constructor] = STATE(3729), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [604] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [601] = { + [sym_getter] = STATE(1139), + [sym_setter] = STATE(1139), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108497,99 +108164,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, - [605] = { - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(8864), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3304), - [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), + [602] = { + [sym_primary_constructor] = STATE(3952), + [sym_class_body] = STATE(3290), + [sym__class_parameters] = STATE(2998), + [sym_type_parameters] = STATE(630), + [sym_type_constraints] = STATE(3046), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [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(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [603] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108613,99 +108396,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [606] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3310), - [anon_sym_set] = ACTIONS(3312), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [604] = { + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8859), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108729,99 +108512,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [607] = { - [sym_type_constraints] = STATE(611), - [sym_property_delegate] = STATE(681), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [605] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108845,99 +108628,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [608] = { - [sym_getter] = STATE(3175), - [sym_setter] = STATE(3175), - [sym_modifiers] = STATE(8760), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), + [606] = { + [sym_primary_constructor] = STATE(3688), + [sym_class_body] = STATE(3293), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3019), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [607] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8872), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3320), [anon_sym_get] = ACTIONS(3310), [anon_sym_set] = ACTIONS(3312), - [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_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108961,98 +108860,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [609] = { - [sym_type_constraints] = STATE(642), - [sym_property_delegate] = STATE(719), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [608] = { + [sym_type_constraints] = STATE(618), + [sym_property_delegate] = STATE(669), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109076,61 +108976,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [610] = { - [sym_type_constraints] = STATE(637), - [sym_property_delegate] = STATE(717), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [609] = { + [sym_type_constraints] = STATE(611), + [sym_property_delegate] = STATE(688), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3516), + [anon_sym_EQ] = ACTIONS(3542), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3402), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -109191,8 +109092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -109210,79 +109111,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, + [610] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, [611] = { - [sym_property_delegate] = STATE(677), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_property_delegate] = STATE(694), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109306,170 +109323,860 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [612] = { - [sym_primary_constructor] = STATE(1374), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_type_constraints] = STATE(659), + [sym_property_delegate] = STATE(715), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [613] = { - [sym_primary_constructor] = STATE(1341), - [sym_class_body] = STATE(1139), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(957), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [sym_type_constraints] = STATE(642), + [sym_property_delegate] = STATE(729), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [614] = { + [sym_property_delegate] = STATE(669), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [615] = { + [sym_type_constraints] = STATE(657), + [sym_property_delegate] = STATE(717), + [sym_getter] = STATE(3308), + [sym_setter] = STATE(3308), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [616] = { + [sym_primary_constructor] = STATE(3963), + [sym_class_body] = STATE(3293), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3019), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [617] = { + [sym_type_constraints] = STATE(660), + [sym_property_delegate] = STATE(752), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [618] = { + [sym_property_delegate] = STATE(686), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [619] = { + [sym_primary_constructor] = STATE(1390), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3570), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3130), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(3196), [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), @@ -109513,31 +110220,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3200), [anon_sym_continue_AT] = ACTIONS(3200), @@ -109555,194 +110262,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3200), }, - [614] = { - [sym_primary_constructor] = STATE(1380), - [sym_class_body] = STATE(1181), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(1022), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [615] = { - [sym_property_delegate] = STATE(674), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [620] = { + [sym_type_constraints] = STATE(640), + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109766,61 +110358,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [616] = { - [sym_property_delegate] = STATE(666), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [621] = { + [sym_property_delegate] = STATE(688), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3382), + [anon_sym_EQ] = ACTIONS(3542), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3366), + [anon_sym_by] = ACTIONS(3402), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -109881,8 +110473,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -109900,194 +110492,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [617] = { - [sym_primary_constructor] = STATE(3908), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [622] = { + [sym_property_delegate] = STATE(676), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [618] = { - [sym_type_constraints] = STATE(648), - [sym_property_delegate] = STATE(740), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [623] = { + [sym_property_delegate] = STATE(667), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110111,857 +110703,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [619] = { - [sym_type_constraints] = STATE(647), - [sym_property_delegate] = STATE(728), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, - [620] = { - [sym_property_delegate] = STATE(659), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [621] = { - [sym_property_delegate] = STATE(685), - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [622] = { - [sym_type_constraints] = STATE(643), - [sym_property_delegate] = STATE(725), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [623] = { - [sym_type_constraints] = STATE(638), - [sym_property_delegate] = STATE(735), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3542), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [624] = { - [sym_property_delegate] = STATE(681), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3366), - [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(3506), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [625] = { - [sym_type_constraints] = STATE(658), - [sym_property_delegate] = STATE(726), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), - }, - [626] = { - [sym_property_delegate] = STATE(692), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_property_delegate] = STATE(671), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_EQ] = ACTIONS(3518), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3366), + [anon_sym_by] = ACTIONS(3402), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), @@ -110969,8 +110756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -111031,8 +110818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -111050,272 +110837,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [627] = { - [sym_property_delegate] = STATE(696), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3366), - [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(3446), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [628] = { - [sym_primary_constructor] = STATE(1388), - [sym__class_parameters] = STATE(976), - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym_modifiers] = STATE(9192), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [629] = { - [sym_type_constraints] = STATE(657), - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [625] = { + [sym_type_constraints] = STATE(644), + [sym_property_delegate] = STATE(733), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3550), + [anon_sym_EQ] = ACTIONS(3576), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3510), + [anon_sym_by] = ACTIONS(3550), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -111376,8 +110933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -111395,36 +110952,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, + [626] = { + [sym_type_constraints] = STATE(658), + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [627] = { + [sym_property_delegate] = STATE(670), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [628] = { + [sym_primary_constructor] = STATE(1388), + [sym_class_body] = STATE(1177), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(995), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [629] = { + [sym_primary_constructor] = STATE(1386), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, [630] = { - [sym_primary_constructor] = STATE(3915), - [sym_class_body] = STATE(3472), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3016), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [sym_primary_constructor] = STATE(3943), + [sym_class_body] = STATE(3230), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3081), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [631] = { + [sym_primary_constructor] = STATE(3941), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3588), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3174), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3176), [anon_sym_object] = ACTIONS(3196), [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), @@ -111468,31 +111600,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3200), [anon_sym_continue_AT] = ACTIONS(3200), @@ -111510,79 +111642,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3200), }, - [631] = { - [sym_property_delegate] = STATE(694), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [632] = { + [sym_primary_constructor] = STATE(3950), + [sym__class_parameters] = STATE(2998), + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym_modifiers] = STATE(9483), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [633] = { + [sym_type_constraints] = STATE(656), + [sym_property_delegate] = STATE(718), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111606,98 +111853,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, - [632] = { + [634] = { [sym_type_constraints] = STATE(639), - [sym_property_delegate] = STATE(714), - [sym_getter] = STATE(1074), - [sym_setter] = STATE(1074), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [sym_property_delegate] = STATE(737), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111721,213 +111968,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), - }, - [633] = { - [sym_primary_constructor] = STATE(3906), - [sym_class_body] = STATE(3322), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3078), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3558), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [634] = { - [sym_type_constraints] = STATE(652), - [sym_property_delegate] = STATE(741), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [635] = { + [sym_property_delegate] = STATE(677), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111951,213 +112083,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [635] = { - [sym_primary_constructor] = STATE(3960), - [sym__class_parameters] = STATE(3113), - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym_modifiers] = STATE(9209), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [636] = { - [sym_property_delegate] = STATE(698), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3386), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_type_constraints] = STATE(641), + [sym_property_delegate] = STATE(736), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112181,96 +112198,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, [637] = { - [sym_property_delegate] = STATE(721), - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3566), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_property_delegate] = STATE(664), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112294,209 +112313,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [638] = { - [sym_property_delegate] = STATE(719), - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [sym_primary_constructor] = STATE(1380), + [sym_class_body] = STATE(1140), + [sym__class_parameters] = STATE(1002), + [sym_type_constraints] = STATE(986), + [sym_modifiers] = STATE(9348), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, [639] = { - [sym_property_delegate] = STATE(725), - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_property_delegate] = STATE(752), + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112520,112 +112541,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, [640] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(729), + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112644,101 +112654,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [641] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(742), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112757,48 +112767,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [642] = { - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_property_delegate] = STATE(736), + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3550), + [anon_sym_EQ] = ACTIONS(3600), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3510), + [anon_sym_by] = ACTIONS(3550), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -112859,8 +112880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -112879,81 +112900,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1754), }, [643] = { - [sym_property_delegate] = STATE(735), - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3542), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -112972,112 +113004,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, [644] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [sym_property_delegate] = STATE(750), + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -113096,96 +113106,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [645] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113213,92 +113234,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [646] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113326,86 +113347,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [647] = { - [sym_property_delegate] = STATE(717), - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -113424,101 +113456,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), }, [648] = { - [sym_property_delegate] = STATE(728), - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -113537,107 +113569,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, [649] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113665,92 +113686,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [650] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113778,92 +113799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [651] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), + [anon_sym_GT] = ACTIONS(3612), [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3636), [anon_sym_PLUS_EQ] = ACTIONS(1754), [anon_sym_DASH_EQ] = ACTIONS(1754), [anon_sym_STAR_EQ] = ACTIONS(1754), [anon_sym_SLASH_EQ] = ACTIONS(1754), [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113892,204 +113913,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [652] = { - [sym_property_delegate] = STATE(740), - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [653] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), + [anon_sym_GT] = ACTIONS(3612), [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3636), [anon_sym_PLUS_EQ] = ACTIONS(1696), [anon_sym_DASH_EQ] = ACTIONS(1696), [anon_sym_STAR_EQ] = ACTIONS(1696), [anon_sym_SLASH_EQ] = ACTIONS(1696), [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114118,91 +114026,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [654] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [653] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114230,92 +114138,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [655] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [654] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114343,92 +114251,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [656] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [655] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(3580), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114456,81 +114364,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [657] = { - [sym_property_delegate] = STATE(743), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [656] = { + [sym_property_delegate] = STATE(737), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114554,96 +114462,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [658] = { - [sym_property_delegate] = STATE(741), - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [657] = { + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114667,95 +114575,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [659] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [658] = { + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114779,58 +114688,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [660] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [659] = { + [sym_property_delegate] = STATE(733), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(3576), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3550), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -114891,8 +114801,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -114910,93 +114820,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [661] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [660] = { + [sym_property_delegate] = STATE(715), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -115015,100 +114914,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [662] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [661] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -115127,95 +115026,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [663] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [662] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3688), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115243,96 +115154,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [664] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [663] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -115351,100 +115250,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [665] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [664] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -115463,83 +115362,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [666] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [665] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115563,655 +115474,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [667] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [668] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [669] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [670] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [671] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [672] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3280), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [666] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116235,155 +115586,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [673] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [674] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [667] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -116396,9 +115635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -116459,8 +115698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -116478,136 +115717,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [675] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3280), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [676] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [668] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -116621,8 +115748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -116683,8 +115810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -116702,76 +115829,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [677] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [669] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116795,95 +115922,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [678] = { - [sym_getter] = STATE(3175), - [sym_setter] = STATE(3175), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [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), + [670] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116907,95 +116034,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [679] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [671] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117019,107 +116146,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [680] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [672] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117147,79 +116274,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [681] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [673] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117243,100 +116370,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [682] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [674] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -117355,112 +116494,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [683] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [675] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -117479,83 +116594,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [684] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [676] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117579,95 +116706,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [685] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [677] = { + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117691,95 +116818,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [686] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3506), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [678] = { + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117803,95 +116930,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), }, - [687] = { - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [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), + [679] = { + [sym_getter] = STATE(3178), + [sym_setter] = STATE(3178), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117915,100 +117042,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, - [688] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [680] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_get] = ACTIONS(3688), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -118027,95 +117166,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [689] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [681] = { + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118139,95 +117266,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [690] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3446), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [682] = { + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118251,100 +117378,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [691] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [683] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym_get] = ACTIONS(3688), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -118363,95 +117502,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [692] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [684] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118475,100 +117602,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [693] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [685] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(3688), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -118587,43 +117726,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [694] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [686] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -118636,9 +117763,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -118699,8 +117826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -118718,76 +117845,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [695] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8787), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3374), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [687] = { + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118811,95 +117938,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [696] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [688] = { + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118923,100 +118050,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [697] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [689] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_get] = ACTIONS(3688), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -119035,43 +118174,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [698] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8715), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [690] = { + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8688), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [691] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [692] = { + [sym_getter] = STATE(1139), + [sym_setter] = STATE(1139), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), + }, + [693] = { + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), @@ -119084,9 +118547,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1694), [anon_sym_fun] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), [anon_sym_this] = ACTIONS(1694), [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1696), @@ -119147,8 +118610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1696), [anon_sym_continue_AT] = ACTIONS(1696), @@ -119166,91 +118629,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1696), }, - [699] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3704), - [anon_sym_get] = ACTIONS(3706), - [anon_sym_set] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [694] = { + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -119269,99 +118722,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [700] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_get] = ACTIONS(3734), - [anon_sym_set] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [695] = { + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8709), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3404), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -119380,94 +118834,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [701] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [696] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3738), - [anon_sym_get] = ACTIONS(3734), - [anon_sym_set] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(3688), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119495,90 +118962,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [702] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [697] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3740), - [anon_sym_get] = ACTIONS(3734), - [anon_sym_set] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119606,90 +119074,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [703] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [698] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3706), - [anon_sym_set] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119717,90 +119186,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [704] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [699] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(3706), - [anon_sym_set] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119828,90 +119298,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [705] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [700] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(3706), - [anon_sym_set] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119939,90 +119410,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [706] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [701] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3748), - [anon_sym_get] = ACTIONS(3706), - [anon_sym_set] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120050,90 +119520,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [707] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [702] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(3734), - [anon_sym_set] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_get] = ACTIONS(3772), + [anon_sym_set] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120161,90 +119631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [708] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [703] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3752), - [anon_sym_get] = ACTIONS(3706), - [anon_sym_set] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_get] = ACTIONS(3772), + [anon_sym_set] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120272,90 +119742,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [709] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [704] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3754), - [anon_sym_get] = ACTIONS(3734), - [anon_sym_set] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3778), + [anon_sym_get] = ACTIONS(3772), + [anon_sym_set] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120383,90 +119853,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [710] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [705] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(3734), - [anon_sym_set] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym_get] = ACTIONS(3772), + [anon_sym_set] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3636), [anon_sym_PLUS_EQ] = ACTIONS(1754), [anon_sym_DASH_EQ] = ACTIONS(1754), [anon_sym_STAR_EQ] = ACTIONS(1754), [anon_sym_SLASH_EQ] = ACTIONS(1754), [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120495,82 +119965,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [711] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [706] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3782), + [anon_sym_get] = ACTIONS(3772), + [anon_sym_set] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120589,98 +120071,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), }, - [712] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [707] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120699,105 +120182,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [713] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [708] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3760), - [anon_sym_get] = ACTIONS(3762), - [anon_sym_set] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3786), + [anon_sym_get] = ACTIONS(3772), + [anon_sym_set] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120825,82 +120297,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [714] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [709] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3788), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120919,105 +120404,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, - [715] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [710] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_get] = ACTIONS(3762), - [anon_sym_set] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121045,89 +120519,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [716] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [711] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(3762), - [anon_sym_set] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121155,77 +120630,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [717] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [712] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3794), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [713] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121249,105 +120836,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [718] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [714] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_get] = ACTIONS(3762), - [anon_sym_set] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3798), + [anon_sym_get] = ACTIONS(3800), + [anon_sym_set] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121375,27 +120962,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [719] = { - [sym_getter] = STATE(1155), - [sym_setter] = STATE(1155), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [715] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -121406,9 +120993,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -121469,8 +121056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -121488,91 +121075,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [720] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(3762), - [anon_sym_set] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [716] = { + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121591,81 +121166,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [721] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [717] = { + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121689,110 +121276,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [722] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(3762), - [anon_sym_set] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [718] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121811,81 +121386,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [723] = { - [sym_getter] = STATE(1142), - [sym_setter] = STATE(1142), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [719] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121909,93 +121496,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [724] = { - [sym_getter] = STATE(3163), - [sym_setter] = STATE(3163), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [720] = { + [sym_getter] = STATE(3220), + [sym_setter] = STATE(3220), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122019,93 +121606,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [725] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [721] = { + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122129,93 +121716,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [726] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [722] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122239,93 +121826,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [727] = { - [sym_getter] = STATE(3170), - [sym_setter] = STATE(3170), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [723] = { + [sym_getter] = STATE(3122), + [sym_setter] = STATE(3122), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122349,43 +121936,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [728] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [724] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -122396,9 +121983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -122459,8 +122046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -122478,79 +122065,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [729] = { - [sym_getter] = STATE(1188), - [sym_setter] = STATE(1188), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [725] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3828), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122569,98 +122168,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [730] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [726] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122679,98 +122278,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [731] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [727] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122789,98 +122388,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [732] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [728] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -122899,93 +122498,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [733] = { - [sym_getter] = STATE(3447), - [sym_setter] = STATE(3447), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [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(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(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [729] = { + [sym_getter] = STATE(3138), + [sym_setter] = STATE(3138), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123009,98 +122596,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [734] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [730] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123119,98 +122718,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [735] = { - [sym_getter] = STATE(1182), - [sym_setter] = STATE(1182), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [731] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123229,93 +122828,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [736] = { - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [732] = { + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123339,110 +122926,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [737] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(3802), - [anon_sym_set] = ACTIONS(3804), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [733] = { + [sym_getter] = STATE(1165), + [sym_setter] = STATE(1165), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -123461,81 +123036,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [738] = { - [sym_getter] = STATE(1116), - [sym_setter] = STATE(1116), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [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), + [734] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123559,93 +123146,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [739] = { - [sym_getter] = STATE(1120), - [sym_setter] = STATE(1120), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [735] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123669,93 +123256,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [740] = { - [sym_getter] = STATE(3184), - [sym_setter] = STATE(3184), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [736] = { + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123779,93 +123366,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [741] = { - [sym_getter] = STATE(3288), - [sym_setter] = STATE(3288), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [737] = { + [sym_getter] = STATE(1179), + [sym_setter] = STATE(1179), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123889,105 +123476,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [742] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [738] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3410), [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT] = ACTIONS(3796), [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3806), - [anon_sym_get] = ACTIONS(3802), - [anon_sym_set] = ACTIONS(3804), - [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_get] = ACTIONS(3800), + [anon_sym_set] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(3804), [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124015,77 +123602,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [743] = { - [sym_getter] = STATE(1128), - [sym_setter] = STATE(1128), - [sym_modifiers] = STATE(8753), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [739] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3846), + [anon_sym_get] = ACTIONS(3800), + [anon_sym_set] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [740] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(3800), + [anon_sym_set] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [741] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124109,105 +123916,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [744] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [742] = { + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), + }, + [743] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3410), [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT] = ACTIONS(3796), [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_get] = ACTIONS(3802), - [anon_sym_set] = ACTIONS(3804), - [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_get] = ACTIONS(3800), + [anon_sym_set] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(3804), [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124235,77 +124152,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [745] = { - [sym_getter] = STATE(3129), - [sym_setter] = STATE(3129), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [744] = { + [sym_getter] = STATE(3173), + [sym_setter] = STATE(3173), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124329,105 +124246,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [sym__string_start] = ACTIONS(1696), + }, + [745] = { + [sym_getter] = STATE(3178), + [sym_setter] = STATE(3178), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, [746] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3810), - [anon_sym_get] = ACTIONS(3802), - [anon_sym_set] = ACTIONS(3804), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(3800), + [anon_sym_set] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124455,77 +124482,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [747] = { - [sym_getter] = STATE(3151), - [sym_setter] = STATE(3151), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(3275), + [sym_setter] = STATE(3275), + [sym_modifiers] = STATE(8912), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124549,110 +124576,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, [748] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3812), - [anon_sym_get] = ACTIONS(3802), - [anon_sym_set] = ACTIONS(3804), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -124671,98 +124686,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, [749] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3814), - [anon_sym_get] = ACTIONS(3802), - [anon_sym_set] = ACTIONS(3804), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [sym_getter] = STATE(1139), + [sym_setter] = STATE(1139), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -124781,81 +124796,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, [750] = { - [sym_getter] = STATE(3175), - [sym_setter] = STATE(3175), - [sym_modifiers] = STATE(8884), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3520), - [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), + [sym_getter] = STATE(1151), + [sym_setter] = STATE(1151), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124879,4555 +124906,4557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, [751] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym_getter] = STATE(1146), + [sym_setter] = STATE(1146), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [752] = { + [sym_getter] = STATE(1200), + [sym_setter] = STATE(1200), + [sym_modifiers] = STATE(8796), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [753] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3854), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [752] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(3828), - [anon_sym_AT] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3842), - [anon_sym_object] = ACTIONS(3845), - [anon_sym_fun] = ACTIONS(3848), - [anon_sym_get] = ACTIONS(3828), - [anon_sym_set] = ACTIONS(3828), - [anon_sym_this] = ACTIONS(3851), - [anon_sym_super] = ACTIONS(3854), - [anon_sym_STAR] = ACTIONS(3857), - [sym_label] = ACTIONS(3860), - [anon_sym_in] = ACTIONS(3863), + [754] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3875), + [anon_sym_fun] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), [anon_sym_null] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3869), - [anon_sym_else] = ACTIONS(3872), - [anon_sym_when] = ACTIONS(3875), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3873), + [anon_sym_sealed] = ACTIONS(3873), + [anon_sym_annotation] = ACTIONS(3873), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3873), + [anon_sym_lateinit] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_internal] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_tailrec] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_infix] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym_external] = ACTIONS(3873), + [sym_property_modifier] = ACTIONS(3873), + [anon_sym_abstract] = ACTIONS(3873), + [anon_sym_final] = ACTIONS(3873), + [anon_sym_open] = ACTIONS(3873), + [anon_sym_vararg] = ACTIONS(3873), + [anon_sym_noinline] = ACTIONS(3873), + [anon_sym_crossinline] = ACTIONS(3873), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [755] = { + [sym_annotated_lambda] = STATE(1090), + [sym_lambda_literal] = STATE(1118), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_object] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_this] = ACTIONS(3878), + [anon_sym_super] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [sym_label] = ACTIONS(3878), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_when] = ACTIONS(3878), [anon_sym_try] = ACTIONS(3878), - [anon_sym_throw] = ACTIONS(3881), - [anon_sym_return] = ACTIONS(3884), - [anon_sym_continue] = ACTIONS(3887), - [anon_sym_break] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(3890), - [anon_sym_BANGin] = ACTIONS(3893), - [anon_sym_is] = ACTIONS(3896), - [anon_sym_BANGis] = ACTIONS(3899), - [anon_sym_PLUS] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3902), - [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_data] = ACTIONS(3828), - [anon_sym_inner] = ACTIONS(3828), - [anon_sym_expect] = ACTIONS(3828), - [anon_sym_actual] = ACTIONS(3828), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3905), - [anon_sym_continue_AT] = ACTIONS(3908), - [anon_sym_break_AT] = ACTIONS(3911), - [sym_real_literal] = ACTIONS(3914), - [sym_integer_literal] = ACTIONS(3917), - [sym_hex_literal] = ACTIONS(3920), - [sym_bin_literal] = ACTIONS(3920), - [anon_sym_true] = ACTIONS(3923), - [anon_sym_false] = ACTIONS(3923), - [anon_sym_SQUOTE] = ACTIONS(3926), - [sym__backtick_identifier] = ACTIONS(3929), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3932), + [anon_sym_throw] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_continue] = ACTIONS(3878), + [anon_sym_break] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_suspend] = ACTIONS(3878), + [anon_sym_sealed] = ACTIONS(3878), + [anon_sym_annotation] = ACTIONS(3878), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_override] = ACTIONS(3878), + [anon_sym_lateinit] = ACTIONS(3878), + [anon_sym_public] = ACTIONS(3878), + [anon_sym_private] = ACTIONS(3878), + [anon_sym_internal] = ACTIONS(3878), + [anon_sym_protected] = ACTIONS(3878), + [anon_sym_tailrec] = ACTIONS(3878), + [anon_sym_operator] = ACTIONS(3878), + [anon_sym_infix] = ACTIONS(3878), + [anon_sym_inline] = ACTIONS(3878), + [anon_sym_external] = ACTIONS(3878), + [sym_property_modifier] = ACTIONS(3878), + [anon_sym_abstract] = ACTIONS(3878), + [anon_sym_final] = ACTIONS(3878), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_vararg] = ACTIONS(3878), + [anon_sym_noinline] = ACTIONS(3878), + [anon_sym_crossinline] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3880), + [anon_sym_continue_AT] = ACTIONS(3880), + [anon_sym_break_AT] = ACTIONS(3880), + [sym_real_literal] = ACTIONS(3880), + [sym_integer_literal] = ACTIONS(3878), + [sym_hex_literal] = ACTIONS(3880), + [sym_bin_literal] = ACTIONS(3880), + [anon_sym_true] = ACTIONS(3878), + [anon_sym_false] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3880), + [sym__backtick_identifier] = ACTIONS(3880), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3880), }, - [753] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(772), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [756] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(763), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(772), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(763), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3882), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [754] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [757] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [755] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(754), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [758] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(769), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(754), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(769), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3939), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [756] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [759] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(753), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(753), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3939), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [757] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(756), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [760] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(757), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(756), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(757), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [758] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_interface] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3952), - [anon_sym_fun] = ACTIONS(3952), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3952), - [anon_sym_sealed] = ACTIONS(3952), - [anon_sym_annotation] = ACTIONS(3952), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_lateinit] = ACTIONS(3952), - [anon_sym_public] = ACTIONS(3952), - [anon_sym_private] = ACTIONS(3952), - [anon_sym_internal] = ACTIONS(3952), - [anon_sym_protected] = ACTIONS(3952), - [anon_sym_tailrec] = ACTIONS(3952), - [anon_sym_operator] = ACTIONS(3952), - [anon_sym_infix] = ACTIONS(3952), - [anon_sym_inline] = ACTIONS(3952), - [anon_sym_external] = ACTIONS(3952), - [sym_property_modifier] = ACTIONS(3952), - [anon_sym_abstract] = ACTIONS(3952), - [anon_sym_final] = ACTIONS(3952), - [anon_sym_open] = ACTIONS(3952), - [anon_sym_vararg] = ACTIONS(3952), - [anon_sym_noinline] = ACTIONS(3952), - [anon_sym_crossinline] = ACTIONS(3952), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [759] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_interface] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3958), - [anon_sym_var] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3960), - [anon_sym_fun] = ACTIONS(3960), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3958), - [anon_sym_sealed] = ACTIONS(3958), - [anon_sym_annotation] = ACTIONS(3958), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3958), - [anon_sym_lateinit] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_internal] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_tailrec] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_infix] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym_external] = ACTIONS(3958), - [sym_property_modifier] = ACTIONS(3958), - [anon_sym_abstract] = ACTIONS(3958), - [anon_sym_final] = ACTIONS(3958), - [anon_sym_open] = ACTIONS(3958), - [anon_sym_vararg] = ACTIONS(3958), - [anon_sym_noinline] = ACTIONS(3958), - [anon_sym_crossinline] = ACTIONS(3958), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [760] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_interface] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3958), - [anon_sym_var] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3960), - [anon_sym_fun] = ACTIONS(3960), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3960), - [anon_sym_sealed] = ACTIONS(3960), - [anon_sym_annotation] = ACTIONS(3960), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_lateinit] = ACTIONS(3960), - [anon_sym_public] = ACTIONS(3960), - [anon_sym_private] = ACTIONS(3960), - [anon_sym_internal] = ACTIONS(3960), - [anon_sym_protected] = ACTIONS(3960), - [anon_sym_tailrec] = ACTIONS(3960), - [anon_sym_operator] = ACTIONS(3960), - [anon_sym_infix] = ACTIONS(3960), - [anon_sym_inline] = ACTIONS(3960), - [anon_sym_external] = ACTIONS(3960), - [sym_property_modifier] = ACTIONS(3960), - [anon_sym_abstract] = ACTIONS(3960), - [anon_sym_final] = ACTIONS(3960), - [anon_sym_open] = ACTIONS(3960), - [anon_sym_vararg] = ACTIONS(3960), - [anon_sym_noinline] = ACTIONS(3960), - [anon_sym_crossinline] = ACTIONS(3960), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__string_start] = ACTIONS(199), }, [761] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_interface] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3952), - [anon_sym_fun] = ACTIONS(3952), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3950), - [anon_sym_sealed] = ACTIONS(3950), - [anon_sym_annotation] = ACTIONS(3950), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3950), - [anon_sym_lateinit] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_internal] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_tailrec] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_infix] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym_external] = ACTIONS(3950), - [sym_property_modifier] = ACTIONS(3950), - [anon_sym_abstract] = ACTIONS(3950), - [anon_sym_final] = ACTIONS(3950), - [anon_sym_open] = ACTIONS(3950), - [anon_sym_vararg] = ACTIONS(3950), - [anon_sym_noinline] = ACTIONS(3950), - [anon_sym_crossinline] = ACTIONS(3950), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [762] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(768), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(771), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(768), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(771), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3963), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), + }, + [762] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3875), + [anon_sym_fun] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3875), + [anon_sym_sealed] = ACTIONS(3875), + [anon_sym_annotation] = ACTIONS(3875), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3875), + [anon_sym_lateinit] = ACTIONS(3875), + [anon_sym_public] = ACTIONS(3875), + [anon_sym_private] = ACTIONS(3875), + [anon_sym_internal] = ACTIONS(3875), + [anon_sym_protected] = ACTIONS(3875), + [anon_sym_tailrec] = ACTIONS(3875), + [anon_sym_operator] = ACTIONS(3875), + [anon_sym_infix] = ACTIONS(3875), + [anon_sym_inline] = ACTIONS(3875), + [anon_sym_external] = ACTIONS(3875), + [sym_property_modifier] = ACTIONS(3875), + [anon_sym_abstract] = ACTIONS(3875), + [anon_sym_final] = ACTIONS(3875), + [anon_sym_open] = ACTIONS(3875), + [anon_sym_vararg] = ACTIONS(3875), + [anon_sym_noinline] = ACTIONS(3875), + [anon_sym_crossinline] = ACTIONS(3875), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [763] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(751), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(751), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3965), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [764] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3967), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3897), + [anon_sym_var] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3899), + [anon_sym_sealed] = ACTIONS(3899), + [anon_sym_annotation] = ACTIONS(3899), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3899), + [anon_sym_lateinit] = ACTIONS(3899), + [anon_sym_public] = ACTIONS(3899), + [anon_sym_private] = ACTIONS(3899), + [anon_sym_internal] = ACTIONS(3899), + [anon_sym_protected] = ACTIONS(3899), + [anon_sym_tailrec] = ACTIONS(3899), + [anon_sym_operator] = ACTIONS(3899), + [anon_sym_infix] = ACTIONS(3899), + [anon_sym_inline] = ACTIONS(3899), + [anon_sym_external] = ACTIONS(3899), + [sym_property_modifier] = ACTIONS(3899), + [anon_sym_abstract] = ACTIONS(3899), + [anon_sym_final] = ACTIONS(3899), + [anon_sym_open] = ACTIONS(3899), + [anon_sym_vararg] = ACTIONS(3899), + [anon_sym_noinline] = ACTIONS(3899), + [anon_sym_crossinline] = ACTIONS(3899), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [765] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_object] = ACTIONS(3969), - [anon_sym_fun] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_this] = ACTIONS(3969), - [anon_sym_super] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3969), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_null] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3969), - [anon_sym_throw] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_continue] = ACTIONS(3969), - [anon_sym_break] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(3985), - [anon_sym_DASH_EQ] = ACTIONS(3985), - [anon_sym_STAR_EQ] = ACTIONS(3985), - [anon_sym_SLASH_EQ] = ACTIONS(3985), - [anon_sym_PERCENT_EQ] = ACTIONS(3985), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3971), - [anon_sym_continue_AT] = ACTIONS(3971), - [anon_sym_break_AT] = ACTIONS(3971), - [sym_real_literal] = ACTIONS(3971), - [sym_integer_literal] = ACTIONS(3969), - [sym_hex_literal] = ACTIONS(3971), - [sym_bin_literal] = ACTIONS(3971), - [anon_sym_true] = ACTIONS(3969), - [anon_sym_false] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(3971), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3971), - }, - [766] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(780), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(766), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(780), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(766), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [767] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [766] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [768] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [767] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3904), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), + }, + [768] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3897), + [anon_sym_var] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3897), + [anon_sym_sealed] = ACTIONS(3897), + [anon_sym_annotation] = ACTIONS(3897), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3897), + [anon_sym_lateinit] = ACTIONS(3897), + [anon_sym_public] = ACTIONS(3897), + [anon_sym_private] = ACTIONS(3897), + [anon_sym_internal] = ACTIONS(3897), + [anon_sym_protected] = ACTIONS(3897), + [anon_sym_tailrec] = ACTIONS(3897), + [anon_sym_operator] = ACTIONS(3897), + [anon_sym_infix] = ACTIONS(3897), + [anon_sym_inline] = ACTIONS(3897), + [anon_sym_external] = ACTIONS(3897), + [sym_property_modifier] = ACTIONS(3897), + [anon_sym_abstract] = ACTIONS(3897), + [anon_sym_final] = ACTIONS(3897), + [anon_sym_open] = ACTIONS(3897), + [anon_sym_vararg] = ACTIONS(3897), + [anon_sym_noinline] = ACTIONS(3897), + [anon_sym_crossinline] = ACTIONS(3897), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [769] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(764), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(764), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [770] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [771] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(767), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(767), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [772] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym_annotated_lambda] = STATE(1054), + [sym_lambda_literal] = STATE(1118), + [sym_annotation] = STATE(7893), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_fun] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_this] = ACTIONS(3912), + [anon_sym_super] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [sym_label] = ACTIONS(3912), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_null] = ACTIONS(3912), + [anon_sym_if] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_when] = ACTIONS(3912), + [anon_sym_try] = ACTIONS(3912), + [anon_sym_throw] = ACTIONS(3912), + [anon_sym_return] = ACTIONS(3912), + [anon_sym_continue] = ACTIONS(3912), + [anon_sym_break] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_suspend] = ACTIONS(3912), + [anon_sym_sealed] = ACTIONS(3912), + [anon_sym_annotation] = ACTIONS(3912), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_override] = ACTIONS(3912), + [anon_sym_lateinit] = ACTIONS(3912), + [anon_sym_public] = ACTIONS(3912), + [anon_sym_private] = ACTIONS(3912), + [anon_sym_internal] = ACTIONS(3912), + [anon_sym_protected] = ACTIONS(3912), + [anon_sym_tailrec] = ACTIONS(3912), + [anon_sym_operator] = ACTIONS(3912), + [anon_sym_infix] = ACTIONS(3912), + [anon_sym_inline] = ACTIONS(3912), + [anon_sym_external] = ACTIONS(3912), + [sym_property_modifier] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3912), + [anon_sym_final] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3912), + [anon_sym_vararg] = ACTIONS(3912), + [anon_sym_noinline] = ACTIONS(3912), + [anon_sym_crossinline] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3914), + [anon_sym_continue_AT] = ACTIONS(3914), + [anon_sym_break_AT] = ACTIONS(3914), + [sym_real_literal] = ACTIONS(3914), + [sym_integer_literal] = ACTIONS(3912), + [sym_hex_literal] = ACTIONS(3914), + [sym_bin_literal] = ACTIONS(3914), + [anon_sym_true] = ACTIONS(3912), + [anon_sym_false] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3914), + [sym__backtick_identifier] = ACTIONS(3914), + [sym__automatic_semicolon] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3914), + }, + [773] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3999), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [773] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [774] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(770), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(770), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [774] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [775] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(4003), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [775] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), + [776] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), [sym_when_entry] = STATE(778), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [aux_sym_when_expression_repeat1] = STATE(778), - [sym__alpha_identifier] = ACTIONS(203), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3999), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [776] = { - [sym_annotated_lambda] = STATE(1097), - [sym_lambda_literal] = STATE(1056), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_object] = ACTIONS(4005), - [anon_sym_fun] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_this] = ACTIONS(4005), - [anon_sym_super] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [sym_label] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_null] = ACTIONS(4005), - [anon_sym_if] = ACTIONS(4005), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [anon_sym_try] = ACTIONS(4005), - [anon_sym_throw] = ACTIONS(4005), - [anon_sym_return] = ACTIONS(4005), - [anon_sym_continue] = ACTIONS(4005), - [anon_sym_break] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_suspend] = ACTIONS(4005), - [anon_sym_sealed] = ACTIONS(4005), - [anon_sym_annotation] = ACTIONS(4005), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_lateinit] = ACTIONS(4005), - [anon_sym_public] = ACTIONS(4005), - [anon_sym_private] = ACTIONS(4005), - [anon_sym_internal] = ACTIONS(4005), - [anon_sym_protected] = ACTIONS(4005), - [anon_sym_tailrec] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_infix] = ACTIONS(4005), - [anon_sym_inline] = ACTIONS(4005), - [anon_sym_external] = ACTIONS(4005), - [sym_property_modifier] = ACTIONS(4005), - [anon_sym_abstract] = ACTIONS(4005), - [anon_sym_final] = ACTIONS(4005), - [anon_sym_open] = ACTIONS(4005), - [anon_sym_vararg] = ACTIONS(4005), - [anon_sym_noinline] = ACTIONS(4005), - [anon_sym_crossinline] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4007), - [anon_sym_continue_AT] = ACTIONS(4007), - [anon_sym_break_AT] = ACTIONS(4007), - [sym_real_literal] = ACTIONS(4007), - [sym_integer_literal] = ACTIONS(4005), - [sym_hex_literal] = ACTIONS(4007), - [sym_bin_literal] = ACTIONS(4007), - [anon_sym_true] = ACTIONS(4005), - [anon_sym_false] = ACTIONS(4005), - [anon_sym_SQUOTE] = ACTIONS(4007), - [sym__backtick_identifier] = ACTIONS(4007), - [sym__automatic_semicolon] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4007), + [sym__string_start] = ACTIONS(199), }, [777] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_object] = ACTIONS(3969), - [anon_sym_fun] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_this] = ACTIONS(3969), - [anon_sym_super] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3969), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_null] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3969), - [anon_sym_throw] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_continue] = ACTIONS(3969), - [anon_sym_break] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(4011), - [anon_sym_DASH_EQ] = ACTIONS(4011), - [anon_sym_STAR_EQ] = ACTIONS(4011), - [anon_sym_SLASH_EQ] = ACTIONS(4011), - [anon_sym_PERCENT_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3971), - [anon_sym_continue_AT] = ACTIONS(3971), - [anon_sym_break_AT] = ACTIONS(3971), - [sym_real_literal] = ACTIONS(3971), - [sym_integer_literal] = ACTIONS(3969), - [sym_hex_literal] = ACTIONS(3971), - [sym_bin_literal] = ACTIONS(3971), - [anon_sym_true] = ACTIONS(3969), - [anon_sym_false] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(3971), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3971), - }, - [778] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(3918), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), + }, + [778] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(778), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(778), + [sym__alpha_identifier] = ACTIONS(3920), + [anon_sym_AT] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3932), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_object] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(3920), + [anon_sym_set] = ACTIONS(3920), + [anon_sym_this] = ACTIONS(3943), + [anon_sym_super] = ACTIONS(3946), + [anon_sym_STAR] = ACTIONS(3949), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3976), + [anon_sym_continue] = ACTIONS(3979), + [anon_sym_break] = ACTIONS(3979), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_BANGin] = ACTIONS(3985), + [anon_sym_is] = ACTIONS(3988), + [anon_sym_BANGis] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_data] = ACTIONS(3920), + [anon_sym_inner] = ACTIONS(3920), + [anon_sym_expect] = ACTIONS(3920), + [anon_sym_actual] = ACTIONS(3920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3997), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4003), + [sym_real_literal] = ACTIONS(4006), + [sym_integer_literal] = ACTIONS(4009), + [sym_hex_literal] = ACTIONS(4012), + [sym_bin_literal] = ACTIONS(4012), + [anon_sym_true] = ACTIONS(4015), + [anon_sym_false] = ACTIONS(4015), + [anon_sym_SQUOTE] = ACTIONS(4018), + [sym__backtick_identifier] = ACTIONS(4021), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4024), }, [779] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(774), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(775), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(774), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(775), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [780] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(752), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(767), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(752), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(767), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [781] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), [sym_when_entry] = STATE(773), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [aux_sym_when_expression_repeat1] = STATE(773), - [sym__alpha_identifier] = ACTIONS(203), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [782] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_entry] = STATE(770), - [sym_when_condition] = STATE(8381), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(776), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym_when_expression_repeat1] = STATE(770), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(776), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(3820), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [783] = { - [sym_annotated_lambda] = STATE(1160), - [sym_lambda_literal] = STATE(1056), - [sym_annotation] = STATE(7880), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7880), - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_object] = ACTIONS(4019), - [anon_sym_fun] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4019), - [anon_sym_super] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [sym_label] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_try] = ACTIONS(4019), - [anon_sym_throw] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4021), - [anon_sym_continue_AT] = ACTIONS(4021), - [anon_sym_break_AT] = ACTIONS(4021), - [sym_real_literal] = ACTIONS(4021), - [sym_integer_literal] = ACTIONS(4019), - [sym_hex_literal] = ACTIONS(4021), - [sym_bin_literal] = ACTIONS(4021), - [anon_sym_true] = ACTIONS(4019), - [anon_sym_false] = ACTIONS(4019), - [anon_sym_SQUOTE] = ACTIONS(4021), - [sym__backtick_identifier] = ACTIONS(4021), - [sym__automatic_semicolon] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_entry] = STATE(777), + [sym_when_condition] = STATE(8568), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__in_operator] = STATE(2273), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym_when_expression_repeat1] = STATE(777), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3904), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4021), + [sym__string_start] = ACTIONS(199), }, [784] = { - [sym_catch_block] = STATE(819), - [sym_finally_block] = STATE(1094), - [aux_sym_try_expression_repeat1] = STATE(819), - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_object] = ACTIONS(4023), - [anon_sym_fun] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_this] = ACTIONS(4023), - [anon_sym_super] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [sym_label] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_null] = ACTIONS(4023), - [anon_sym_if] = ACTIONS(4023), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(4023), - [anon_sym_catch] = ACTIONS(4027), - [anon_sym_finally] = ACTIONS(4029), - [anon_sym_throw] = ACTIONS(4023), - [anon_sym_return] = ACTIONS(4023), - [anon_sym_continue] = ACTIONS(4023), - [anon_sym_break] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [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_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(4025), - [anon_sym_continue_AT] = ACTIONS(4025), - [anon_sym_break_AT] = ACTIONS(4025), - [sym_real_literal] = ACTIONS(4025), - [sym_integer_literal] = ACTIONS(4023), - [sym_hex_literal] = ACTIONS(4025), - [sym_bin_literal] = ACTIONS(4025), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_SQUOTE] = ACTIONS(4025), - [sym__backtick_identifier] = ACTIONS(4025), - [sym__automatic_semicolon] = ACTIONS(4025), - [sym_safe_nav] = ACTIONS(4025), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4025), + [sym_catch_block] = STATE(800), + [sym_finally_block] = STATE(1081), + [aux_sym_try_expression_repeat1] = STATE(800), + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4035), + [anon_sym_fun] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_this] = ACTIONS(4035), + [anon_sym_super] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_when] = ACTIONS(4035), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_catch] = ACTIONS(4039), + [anon_sym_finally] = ACTIONS(4041), + [anon_sym_throw] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_suspend] = ACTIONS(4035), + [anon_sym_sealed] = ACTIONS(4035), + [anon_sym_annotation] = ACTIONS(4035), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_override] = ACTIONS(4035), + [anon_sym_lateinit] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_private] = ACTIONS(4035), + [anon_sym_internal] = ACTIONS(4035), + [anon_sym_protected] = ACTIONS(4035), + [anon_sym_tailrec] = ACTIONS(4035), + [anon_sym_operator] = ACTIONS(4035), + [anon_sym_infix] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_external] = ACTIONS(4035), + [sym_property_modifier] = ACTIONS(4035), + [anon_sym_abstract] = ACTIONS(4035), + [anon_sym_final] = ACTIONS(4035), + [anon_sym_open] = ACTIONS(4035), + [anon_sym_vararg] = ACTIONS(4035), + [anon_sym_noinline] = ACTIONS(4035), + [anon_sym_crossinline] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4037), + [anon_sym_continue_AT] = ACTIONS(4037), + [anon_sym_break_AT] = ACTIONS(4037), + [sym_real_literal] = ACTIONS(4037), + [sym_integer_literal] = ACTIONS(4035), + [sym_hex_literal] = ACTIONS(4037), + [sym_bin_literal] = ACTIONS(4037), + [anon_sym_true] = ACTIONS(4035), + [anon_sym_false] = ACTIONS(4035), + [anon_sym_SQUOTE] = ACTIONS(4037), + [sym__backtick_identifier] = ACTIONS(4037), + [sym__automatic_semicolon] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4037), }, [785] = { - [sym_type_constraints] = STATE(915), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, [786] = { - [sym__loop_statement] = STATE(3368), - [sym_for_statement] = STATE(3368), - [sym_while_statement] = STATE(3368), - [sym_do_while_statement] = STATE(3368), - [sym_assignment] = STATE(3368), - [sym__expression] = STATE(1431), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(2339), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7909), - [sym_annotation] = STATE(1376), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(5317), + [sym__loop_statement] = STATE(4666), + [sym_for_statement] = STATE(4666), + [sym_while_statement] = STATE(4666), + [sym_do_while_statement] = STATE(4666), + [sym_assignment] = STATE(4666), + [sym__expression] = STATE(3021), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(1656), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7903), + [sym_annotation] = STATE(1343), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(843), - [anon_sym_for] = ACTIONS(845), - [anon_sym_while] = ACTIONS(847), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [787] = { - [sym__loop_statement] = STATE(3457), - [sym_for_statement] = STATE(3457), - [sym_while_statement] = STATE(3457), - [sym_do_while_statement] = STATE(3457), - [sym_assignment] = STATE(3457), - [sym__expression] = STATE(2253), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_annotation] = STATE(1389), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(333), + [sym__loop_statement] = STATE(3315), + [sym_for_statement] = STATE(3315), + [sym_while_statement] = STATE(3315), + [sym_do_while_statement] = STATE(3315), + [sym_assignment] = STATE(3315), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(2190), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7938), + [sym_annotation] = STATE(1418), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(659), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(575), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(603), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(615), }, [788] = { - [sym_type_constraints] = STATE(902), - [sym_function_body] = STATE(1168), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), - }, - [789] = { - [sym_type_constraints] = STATE(906), - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4051), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [790] = { - [sym__loop_statement] = STATE(4574), - [sym_for_statement] = STATE(4574), - [sym_while_statement] = STATE(4574), - [sym_do_while_statement] = STATE(4574), - [sym_assignment] = STATE(4574), - [sym__expression] = STATE(4013), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1897), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7897), - [sym_annotation] = STATE(1392), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(203), + [sym__loop_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4951), + [sym_do_while_statement] = STATE(4951), + [sym_assignment] = STATE(4951), + [sym__expression] = STATE(3932), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(2203), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7935), + [sym_annotation] = STATE(1341), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(815), - [anon_sym_for] = ACTIONS(817), - [anon_sym_while] = ACTIONS(819), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(723), + [anon_sym_for] = ACTIONS(725), + [anon_sym_while] = ACTIONS(727), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [791] = { - [sym__loop_statement] = STATE(5355), - [sym_for_statement] = STATE(5355), - [sym_while_statement] = STATE(5355), - [sym_do_while_statement] = STATE(5355), - [sym_assignment] = STATE(5355), - [sym__expression] = STATE(2253), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(2070), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7926), - [sym_annotation] = STATE(1389), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(5317), + [789] = { + [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(372), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(1861), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7898), + [sym_annotation] = STATE(1347), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(363), + [anon_sym_for] = ACTIONS(365), + [anon_sym_while] = ACTIONS(367), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [790] = { + [sym__loop_statement] = STATE(3336), + [sym_for_statement] = STATE(3336), + [sym_while_statement] = STATE(3336), + [sym_do_while_statement] = STATE(3336), + [sym_assignment] = STATE(3336), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1695), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7910), + [sym_annotation] = STATE(1346), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(235), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [791] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4075), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), }, [792] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4055), - [anon_sym_get] = ACTIONS(4057), - [anon_sym_set] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4077), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129455,193 +129484,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [793] = { - [sym_type_constraints] = STATE(910), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(4089), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym_type_constraints] = STATE(924), + [sym_function_body] = STATE(1155), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(4083), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), }, [794] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_get] = ACTIONS(4093), - [anon_sym_set] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129669,193 +129698,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [795] = { - [sym__loop_statement] = STATE(4574), - [sym_for_statement] = STATE(4574), - [sym_while_statement] = STATE(4574), - [sym_do_while_statement] = STATE(4574), - [sym_assignment] = STATE(4574), - [sym__expression] = STATE(3756), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1630), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7896), - [sym_annotation] = STATE(1394), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(729), - [anon_sym_for] = ACTIONS(731), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, [796] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_get] = ACTIONS(4057), - [anon_sym_set] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4093), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129883,829 +129912,1257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [797] = { - [sym__loop_statement] = STATE(3368), - [sym_for_statement] = STATE(3368), - [sym_while_statement] = STATE(3368), - [sym_do_while_statement] = STATE(3368), - [sym_assignment] = STATE(3368), - [sym__expression] = STATE(946), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(1674), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7911), - [sym_annotation] = STATE(1395), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(111), + [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(385), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_collection_literal] = STATE(521), + [sym__literal_constant] = STATE(521), + [sym_string_literal] = STATE(521), + [sym_lambda_literal] = STATE(521), + [sym_anonymous_function] = STATE(521), + [sym__function_literal] = STATE(521), + [sym_object_literal] = STATE(521), + [sym_this_expression] = STATE(521), + [sym_super_expression] = STATE(521), + [sym_if_expression] = STATE(521), + [sym_when_expression] = STATE(521), + [sym_try_expression] = STATE(521), + [sym_jump_expression] = STATE(521), + [sym_callable_reference] = STATE(521), + [sym__prefix_unary_operator] = STATE(2071), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7924), + [sym_annotation] = STATE(1369), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(521), + [sym_long_literal] = STATE(521), + [sym_boolean_literal] = STATE(521), + [sym_character_literal] = STATE(521), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(151), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(781), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(369), + [anon_sym_null] = ACTIONS(371), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, [798] = { - [sym__loop_statement] = STATE(3457), - [sym_for_statement] = STATE(3457), - [sym_while_statement] = STATE(3457), - [sym_do_while_statement] = STATE(3457), - [sym_assignment] = STATE(3457), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(2247), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7931), - [sym_annotation] = STATE(1400), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(5317), + [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(470), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(1992), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7909), + [sym_annotation] = STATE(1344), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(697), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(875), + [anon_sym_for] = ACTIONS(877), + [anon_sym_while] = ACTIONS(879), [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(703), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [799] = { - [sym__loop_statement] = STATE(4942), - [sym_for_statement] = STATE(4942), - [sym_while_statement] = STATE(4942), - [sym_do_while_statement] = STATE(4942), - [sym_assignment] = STATE(4942), - [sym__expression] = STATE(3648), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1801), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7898), - [sym_annotation] = STATE(1365), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_while] = ACTIONS(437), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [800] = { - [sym__loop_statement] = STATE(1053), - [sym_for_statement] = STATE(1053), - [sym_while_statement] = STATE(1053), - [sym_do_while_statement] = STATE(1053), - [sym_assignment] = STATE(1053), - [sym__expression] = STATE(462), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2340), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7935), - [sym_annotation] = STATE(1417), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [799] = { + [sym__loop_statement] = STATE(3697), + [sym_for_statement] = STATE(3697), + [sym_while_statement] = STATE(3697), + [sym_do_while_statement] = STATE(3697), + [sym_assignment] = STATE(3697), + [sym__expression] = STATE(1342), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(2323), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7928), + [sym_annotation] = STATE(1395), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(907), - [anon_sym_for] = ACTIONS(909), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(691), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [800] = { + [sym_catch_block] = STATE(800), + [aux_sym_try_expression_repeat1] = STATE(800), + [sym__alpha_identifier] = ACTIONS(4095), + [anon_sym_AT] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4095), + [anon_sym_EQ] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_RBRACE] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_COMMA] = ACTIONS(4097), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_GT] = ACTIONS(4095), + [anon_sym_where] = ACTIONS(4095), + [anon_sym_object] = ACTIONS(4095), + [anon_sym_fun] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4095), + [anon_sym_SEMI] = ACTIONS(4097), + [anon_sym_get] = ACTIONS(4095), + [anon_sym_set] = ACTIONS(4095), + [anon_sym_this] = ACTIONS(4095), + [anon_sym_super] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4095), + [sym_label] = ACTIONS(4095), + [anon_sym_in] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_QMARK_COLON] = ACTIONS(4097), + [anon_sym_AMP_AMP] = ACTIONS(4097), + [anon_sym_PIPE_PIPE] = ACTIONS(4097), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_if] = ACTIONS(4095), + [anon_sym_else] = ACTIONS(4095), + [anon_sym_when] = ACTIONS(4095), + [anon_sym_try] = ACTIONS(4095), + [anon_sym_catch] = ACTIONS(4099), + [anon_sym_finally] = ACTIONS(4095), + [anon_sym_throw] = ACTIONS(4095), + [anon_sym_return] = ACTIONS(4095), + [anon_sym_continue] = ACTIONS(4095), + [anon_sym_break] = ACTIONS(4095), + [anon_sym_COLON_COLON] = ACTIONS(4097), + [anon_sym_PLUS_EQ] = ACTIONS(4097), + [anon_sym_DASH_EQ] = ACTIONS(4097), + [anon_sym_STAR_EQ] = ACTIONS(4097), + [anon_sym_SLASH_EQ] = ACTIONS(4097), + [anon_sym_PERCENT_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4097), + [anon_sym_LT_EQ] = ACTIONS(4097), + [anon_sym_GT_EQ] = ACTIONS(4097), + [anon_sym_BANGin] = ACTIONS(4097), + [anon_sym_is] = ACTIONS(4095), + [anon_sym_BANGis] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4095), + [anon_sym_DASH] = ACTIONS(4095), + [anon_sym_SLASH] = ACTIONS(4095), + [anon_sym_PERCENT] = ACTIONS(4095), + [anon_sym_as_QMARK] = ACTIONS(4097), + [anon_sym_PLUS_PLUS] = ACTIONS(4097), + [anon_sym_DASH_DASH] = ACTIONS(4097), + [anon_sym_BANG] = ACTIONS(4095), + [anon_sym_BANG_BANG] = ACTIONS(4097), + [anon_sym_suspend] = ACTIONS(4095), + [anon_sym_sealed] = ACTIONS(4095), + [anon_sym_annotation] = ACTIONS(4095), + [anon_sym_data] = ACTIONS(4095), + [anon_sym_inner] = ACTIONS(4095), + [anon_sym_override] = ACTIONS(4095), + [anon_sym_lateinit] = ACTIONS(4095), + [anon_sym_public] = ACTIONS(4095), + [anon_sym_private] = ACTIONS(4095), + [anon_sym_internal] = ACTIONS(4095), + [anon_sym_protected] = ACTIONS(4095), + [anon_sym_tailrec] = ACTIONS(4095), + [anon_sym_operator] = ACTIONS(4095), + [anon_sym_infix] = ACTIONS(4095), + [anon_sym_inline] = ACTIONS(4095), + [anon_sym_external] = ACTIONS(4095), + [sym_property_modifier] = ACTIONS(4095), + [anon_sym_abstract] = ACTIONS(4095), + [anon_sym_final] = ACTIONS(4095), + [anon_sym_open] = ACTIONS(4095), + [anon_sym_vararg] = ACTIONS(4095), + [anon_sym_noinline] = ACTIONS(4095), + [anon_sym_crossinline] = ACTIONS(4095), + [anon_sym_expect] = ACTIONS(4095), + [anon_sym_actual] = ACTIONS(4095), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4097), + [anon_sym_continue_AT] = ACTIONS(4097), + [anon_sym_break_AT] = ACTIONS(4097), + [sym_real_literal] = ACTIONS(4097), + [sym_integer_literal] = ACTIONS(4095), + [sym_hex_literal] = ACTIONS(4097), + [sym_bin_literal] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(4095), + [anon_sym_false] = ACTIONS(4095), + [anon_sym_SQUOTE] = ACTIONS(4097), + [sym__backtick_identifier] = ACTIONS(4097), + [sym__automatic_semicolon] = ACTIONS(4097), + [sym_safe_nav] = ACTIONS(4097), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4097), }, [801] = { - [sym__loop_statement] = STATE(3457), - [sym_for_statement] = STATE(3457), - [sym_while_statement] = STATE(3457), - [sym_do_while_statement] = STATE(3457), - [sym_assignment] = STATE(3457), - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_collection_literal] = STATE(2760), - [sym__literal_constant] = STATE(2760), - [sym_string_literal] = STATE(2760), - [sym_lambda_literal] = STATE(2760), - [sym_anonymous_function] = STATE(2760), - [sym__function_literal] = STATE(2760), - [sym_object_literal] = STATE(2760), - [sym_this_expression] = STATE(2760), - [sym_super_expression] = STATE(2760), - [sym_if_expression] = STATE(2760), - [sym_when_expression] = STATE(2760), - [sym_try_expression] = STATE(2760), - [sym_jump_expression] = STATE(2760), - [sym_callable_reference] = STATE(2760), - [sym__prefix_unary_operator] = STATE(1644), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7915), - [sym_annotation] = STATE(1393), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2760), - [sym_long_literal] = STATE(2760), - [sym_boolean_literal] = STATE(2760), - [sym_character_literal] = STATE(2760), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(5317), + [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(535), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_collection_literal] = STATE(528), + [sym__literal_constant] = STATE(528), + [sym_string_literal] = STATE(528), + [sym_lambda_literal] = STATE(528), + [sym_anonymous_function] = STATE(528), + [sym__function_literal] = STATE(528), + [sym_object_literal] = STATE(528), + [sym_this_expression] = STATE(528), + [sym_super_expression] = STATE(528), + [sym_if_expression] = STATE(528), + [sym_when_expression] = STATE(528), + [sym_try_expression] = STATE(528), + [sym_jump_expression] = STATE(528), + [sym_callable_reference] = STATE(528), + [sym__prefix_unary_operator] = STATE(2291), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7917), + [sym_annotation] = STATE(1411), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1077), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(528), + [sym_long_literal] = STATE(528), + [sym_boolean_literal] = STATE(528), + [sym_character_literal] = STATE(528), + [sym__lexical_identifier] = STATE(832), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(371), - [anon_sym_if] = ACTIONS(373), + [anon_sym_null] = ACTIONS(881), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [802] = { - [sym_type_constraints] = STATE(921), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym_type_constraints] = STATE(914), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [803] = { - [sym__loop_statement] = STATE(4942), - [sym_for_statement] = STATE(4942), - [sym_while_statement] = STATE(4942), - [sym_do_while_statement] = STATE(4942), - [sym_assignment] = STATE(4942), - [sym__expression] = STATE(3942), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4467), - [sym_parenthesized_expression] = STATE(4467), - [sym_collection_literal] = STATE(4467), - [sym__literal_constant] = STATE(4467), - [sym_string_literal] = STATE(4467), - [sym_lambda_literal] = STATE(4467), - [sym_anonymous_function] = STATE(4467), - [sym__function_literal] = STATE(4467), - [sym_object_literal] = STATE(4467), - [sym_this_expression] = STATE(4467), - [sym_super_expression] = STATE(4467), - [sym_if_expression] = STATE(4467), - [sym_when_expression] = STATE(4467), - [sym_try_expression] = STATE(4467), - [sym_jump_expression] = STATE(4467), - [sym_callable_reference] = STATE(4467), - [sym__prefix_unary_operator] = STATE(1665), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7907), - [sym_annotation] = STATE(1351), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4467), - [sym_long_literal] = STATE(4467), - [sym_boolean_literal] = STATE(4467), - [sym_character_literal] = STATE(4467), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(7), + [sym__loop_statement] = STATE(4666), + [sym_for_statement] = STATE(4666), + [sym_while_statement] = STATE(4666), + [sym_do_while_statement] = STATE(4666), + [sym_assignment] = STATE(4666), + [sym__expression] = STATE(3789), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4105), + [sym_parenthesized_expression] = STATE(4105), + [sym_collection_literal] = STATE(4105), + [sym__literal_constant] = STATE(4105), + [sym_string_literal] = STATE(4105), + [sym_lambda_literal] = STATE(4105), + [sym_anonymous_function] = STATE(4105), + [sym__function_literal] = STATE(4105), + [sym_object_literal] = STATE(4105), + [sym_this_expression] = STATE(4105), + [sym_super_expression] = STATE(4105), + [sym_if_expression] = STATE(4105), + [sym_when_expression] = STATE(4105), + [sym_try_expression] = STATE(4105), + [sym_jump_expression] = STATE(4105), + [sym_callable_reference] = STATE(4105), + [sym__prefix_unary_operator] = STATE(2318), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7925), + [sym_annotation] = STATE(1352), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4105), + [sym_long_literal] = STATE(4105), + [sym_boolean_literal] = STATE(4105), + [sym_character_literal] = STATE(4105), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(787), - [anon_sym_for] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(441), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(637), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(319), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(331), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, [804] = { - [sym__loop_statement] = STATE(1053), - [sym_for_statement] = STATE(1053), - [sym_while_statement] = STATE(1053), - [sym_do_while_statement] = STATE(1053), - [sym_assignment] = STATE(1053), - [sym__expression] = STATE(375), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(1703), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7900), - [sym_annotation] = STATE(1377), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(5317), + [sym__loop_statement] = STATE(3336), + [sym_for_statement] = STATE(3336), + [sym_while_statement] = STATE(3336), + [sym_do_while_statement] = STATE(3336), + [sym_assignment] = STATE(3336), + [sym__expression] = STATE(1295), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1956), + [sym_parenthesized_expression] = STATE(1956), + [sym_collection_literal] = STATE(1956), + [sym__literal_constant] = STATE(1956), + [sym_string_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [sym__function_literal] = STATE(1956), + [sym_object_literal] = STATE(1956), + [sym_this_expression] = STATE(1956), + [sym_super_expression] = STATE(1956), + [sym_if_expression] = STATE(1956), + [sym_when_expression] = STATE(1956), + [sym_try_expression] = STATE(1956), + [sym_jump_expression] = STATE(1956), + [sym_callable_reference] = STATE(1956), + [sym__prefix_unary_operator] = STATE(2149), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7920), + [sym_annotation] = STATE(1348), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1956), + [sym_long_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym_character_literal] = STATE(1956), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(749), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(243), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [805] = { + [sym_type_constraints] = STATE(920), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [806] = { + [sym__loop_statement] = STATE(3336), + [sym_for_statement] = STATE(3336), + [sym_while_statement] = STATE(3336), + [sym_do_while_statement] = STATE(3336), + [sym_assignment] = STATE(3336), + [sym__expression] = STATE(1482), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(2301), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7933), + [sym_annotation] = STATE(1375), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(815), + [anon_sym_for] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [807] = { + [sym_type_constraints] = STATE(910), + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [808] = { + [sym__loop_statement] = STATE(3315), + [sym_for_statement] = STATE(3315), + [sym_while_statement] = STATE(3315), + [sym_do_while_statement] = STATE(3315), + [sym_assignment] = STATE(3315), + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1655), + [sym_parenthesized_expression] = STATE(1655), + [sym_collection_literal] = STATE(1655), + [sym__literal_constant] = STATE(1655), + [sym_string_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [sym__function_literal] = STATE(1655), + [sym_object_literal] = STATE(1655), + [sym_this_expression] = STATE(1655), + [sym_super_expression] = STATE(1655), + [sym_if_expression] = STATE(1655), + [sym_when_expression] = STATE(1655), + [sym_try_expression] = STATE(1655), + [sym_jump_expression] = STATE(1655), + [sym_callable_reference] = STATE(1655), + [sym__prefix_unary_operator] = STATE(1947), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7927), + [sym_annotation] = STATE(1345), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1655), + [sym_long_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym_character_literal] = STATE(1655), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(567), [anon_sym_for] = ACTIONS(569), [anon_sym_while] = ACTIONS(571), @@ -130729,7 +131186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), [sym_real_literal] = ACTIONS(603), @@ -130743,94 +131200,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [805] = { - [sym__loop_statement] = STATE(4942), - [sym_for_statement] = STATE(4942), - [sym_while_statement] = STATE(4942), - [sym_do_while_statement] = STATE(4942), - [sym_assignment] = STATE(4942), - [sym__expression] = STATE(4189), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_annotation] = STATE(1369), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(5317), + [809] = { + [sym_type_constraints] = STATE(911), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [810] = { + [sym__loop_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4951), + [sym_do_while_statement] = STATE(4951), + [sym_assignment] = STATE(4951), + [sym__expression] = STATE(4153), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(2013), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7929), + [sym_annotation] = STATE(1391), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(521), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [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(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -130850,71 +131414,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [806] = { - [sym__loop_statement] = STATE(1053), - [sym_for_statement] = STATE(1053), - [sym_while_statement] = STATE(1053), - [sym_do_while_statement] = STATE(1053), - [sym_assignment] = STATE(1053), - [sym__expression] = STATE(541), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_collection_literal] = STATE(777), - [sym__literal_constant] = STATE(777), - [sym_string_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_anonymous_function] = STATE(777), - [sym__function_literal] = STATE(777), - [sym_object_literal] = STATE(777), - [sym_this_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_when_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_jump_expression] = STATE(777), - [sym_callable_reference] = STATE(777), - [sym__prefix_unary_operator] = STATE(2117), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7933), - [sym_annotation] = STATE(1371), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(777), - [sym_long_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym_character_literal] = STATE(777), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [811] = { + [sym__loop_statement] = STATE(3697), + [sym_for_statement] = STATE(3697), + [sym_while_statement] = STATE(3697), + [sym_do_while_statement] = STATE(3697), + [sym_assignment] = STATE(3697), + [sym__expression] = STATE(2420), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2255), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7918), + [sym_annotation] = STATE(1350), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(935), + [anon_sym_for] = ACTIONS(937), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [812] = { + [sym__loop_statement] = STATE(3315), + [sym_for_statement] = STATE(3315), + [sym_while_statement] = STATE(3315), + [sym_do_while_statement] = STATE(3315), + [sym_assignment] = STATE(3315), + [sym__expression] = STATE(2075), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7930), + [sym_annotation] = STATE(1392), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), @@ -130924,12 +131595,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(999), [anon_sym_while] = ACTIONS(1001), [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(913), - [anon_sym_if] = ACTIONS(639), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -130943,10 +131614,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(919), + [sym_real_literal] = ACTIONS(979), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -130957,736 +131628,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [807] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4105), - [anon_sym_get] = ACTIONS(4057), - [anon_sym_set] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [808] = { - [sym__loop_statement] = STATE(3368), - [sym_for_statement] = STATE(3368), - [sym_while_statement] = STATE(3368), - [sym_do_while_statement] = STATE(3368), - [sym_assignment] = STATE(3368), - [sym__expression] = STATE(2449), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_collection_literal] = STATE(2727), - [sym__literal_constant] = STATE(2727), - [sym_string_literal] = STATE(2727), - [sym_lambda_literal] = STATE(2727), - [sym_anonymous_function] = STATE(2727), - [sym__function_literal] = STATE(2727), - [sym_object_literal] = STATE(2727), - [sym_this_expression] = STATE(2727), - [sym_super_expression] = STATE(2727), - [sym_if_expression] = STATE(2727), - [sym_when_expression] = STATE(2727), - [sym_try_expression] = STATE(2727), - [sym_jump_expression] = STATE(2727), - [sym_callable_reference] = STATE(2727), - [sym__prefix_unary_operator] = STATE(1711), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7906), - [sym_annotation] = STATE(1367), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2727), - [sym_long_literal] = STATE(2727), - [sym_boolean_literal] = STATE(2727), - [sym_character_literal] = STATE(2727), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(5317), + [813] = { + [sym__loop_statement] = STATE(4666), + [sym_for_statement] = STATE(4666), + [sym_while_statement] = STATE(4666), + [sym_do_while_statement] = STATE(4666), + [sym_assignment] = STATE(4666), + [sym__expression] = STATE(4188), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_annotation] = STATE(1374), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(849), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(855), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [809] = { - [sym__loop_statement] = STATE(3684), - [sym_for_statement] = STATE(3684), - [sym_while_statement] = STATE(3684), - [sym_do_while_statement] = STATE(3684), - [sym_assignment] = STATE(3684), - [sym__expression] = STATE(2415), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2143), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7928), - [sym_annotation] = STATE(1397), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(875), - [anon_sym_for] = ACTIONS(877), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [814] = { + [sym__loop_statement] = STATE(3315), + [sym_for_statement] = STATE(3315), + [sym_while_statement] = STATE(3315), + [sym_do_while_statement] = STATE(3315), + [sym_assignment] = STATE(3315), + [sym__expression] = STATE(1508), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2042), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7905), + [sym_annotation] = STATE(1351), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(573), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(615), }, - [810] = { - [sym__loop_statement] = STATE(4574), - [sym_for_statement] = STATE(4574), - [sym_while_statement] = STATE(4574), - [sym_do_while_statement] = STATE(4574), - [sym_assignment] = STATE(4574), - [sym__expression] = STATE(3019), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4434), - [sym_parenthesized_expression] = STATE(4434), - [sym_collection_literal] = STATE(4434), - [sym__literal_constant] = STATE(4434), - [sym_string_literal] = STATE(4434), - [sym_lambda_literal] = STATE(4434), - [sym_anonymous_function] = STATE(4434), - [sym__function_literal] = STATE(4434), - [sym_object_literal] = STATE(4434), - [sym_this_expression] = STATE(4434), - [sym_super_expression] = STATE(4434), - [sym_if_expression] = STATE(4434), - [sym_when_expression] = STATE(4434), - [sym_try_expression] = STATE(4434), - [sym_jump_expression] = STATE(4434), - [sym_callable_reference] = STATE(4434), - [sym__prefix_unary_operator] = STATE(1893), - [sym__postfix_unary_expression] = STATE(7948), + [815] = { + [sym__loop_statement] = STATE(5308), + [sym_for_statement] = STATE(5308), + [sym_while_statement] = STATE(5308), + [sym_do_while_statement] = STATE(5308), + [sym_assignment] = STATE(5308), + [sym__expression] = STATE(2075), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_collection_literal] = STATE(1713), + [sym__literal_constant] = STATE(1713), + [sym_string_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [sym__function_literal] = STATE(1713), + [sym_object_literal] = STATE(1713), + [sym_this_expression] = STATE(1713), + [sym_super_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_when_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_jump_expression] = STATE(1713), + [sym_callable_reference] = STATE(1713), + [sym__prefix_unary_operator] = STATE(2073), + [sym__postfix_unary_expression] = STATE(7959), [sym_directly_assignable_expression] = STATE(7930), - [sym_annotation] = STATE(1342), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4434), - [sym_long_literal] = STATE(4434), - [sym_boolean_literal] = STATE(4434), - [sym_character_literal] = STATE(4434), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(271), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [811] = { - [sym__loop_statement] = STATE(8678), - [sym_for_statement] = STATE(8678), - [sym_while_statement] = STATE(8678), - [sym_do_while_statement] = STATE(8678), - [sym_assignment] = STATE(8678), - [sym__expression] = STATE(4189), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1926), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7921), - [sym_annotation] = STATE(1369), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(7), + [sym_annotation] = STATE(1392), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3414), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(1713), + [sym_long_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym_character_literal] = STATE(1713), + [sym__lexical_identifier] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(997), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_null] = ACTIONS(973), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [812] = { - [sym_type_arguments] = STATE(5112), - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_object] = ACTIONS(4107), - [anon_sym_fun] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [anon_sym_this] = ACTIONS(4107), - [anon_sym_super] = ACTIONS(4107), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4107), - [sym_label] = ACTIONS(4107), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_QMARK_COLON] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_PIPE_PIPE] = ACTIONS(4109), - [anon_sym_null] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_when] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_PLUS_EQ] = ACTIONS(4109), - [anon_sym_DASH_EQ] = ACTIONS(4109), - [anon_sym_STAR_EQ] = ACTIONS(4109), - [anon_sym_SLASH_EQ] = ACTIONS(4109), - [anon_sym_PERCENT_EQ] = ACTIONS(4109), - [anon_sym_BANG_EQ] = ACTIONS(4107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4109), - [anon_sym_EQ_EQ] = ACTIONS(4107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4109), - [anon_sym_LT_EQ] = ACTIONS(4109), - [anon_sym_GT_EQ] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_PERCENT] = ACTIONS(4107), - [anon_sym_as_QMARK] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4107), - [anon_sym_BANG_BANG] = ACTIONS(4109), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4109), - [anon_sym_continue_AT] = ACTIONS(4109), - [anon_sym_break_AT] = ACTIONS(4109), - [sym_real_literal] = ACTIONS(4109), - [sym_integer_literal] = ACTIONS(4107), - [sym_hex_literal] = ACTIONS(4109), - [sym_bin_literal] = ACTIONS(4109), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [anon_sym_SQUOTE] = ACTIONS(4109), - [sym__backtick_identifier] = ACTIONS(4109), - [sym__automatic_semicolon] = ACTIONS(4109), - [sym_safe_nav] = ACTIONS(4109), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4109), + [sym__string_start] = ACTIONS(615), }, - [813] = { - [sym__loop_statement] = STATE(4942), - [sym_for_statement] = STATE(4942), - [sym_while_statement] = STATE(4942), - [sym_do_while_statement] = STATE(4942), - [sym_assignment] = STATE(4942), - [sym__expression] = STATE(4155), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4470), - [sym_parenthesized_expression] = STATE(4470), - [sym_collection_literal] = STATE(4470), - [sym__literal_constant] = STATE(4470), - [sym_string_literal] = STATE(4470), - [sym_lambda_literal] = STATE(4470), - [sym_anonymous_function] = STATE(4470), - [sym__function_literal] = STATE(4470), - [sym_object_literal] = STATE(4470), - [sym_this_expression] = STATE(4470), - [sym_super_expression] = STATE(4470), - [sym_if_expression] = STATE(4470), - [sym_when_expression] = STATE(4470), - [sym_try_expression] = STATE(4470), - [sym_jump_expression] = STATE(4470), - [sym_callable_reference] = STATE(4470), - [sym__prefix_unary_operator] = STATE(1988), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7903), - [sym_annotation] = STATE(1382), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4920), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4470), - [sym_long_literal] = STATE(4470), - [sym_boolean_literal] = STATE(4470), - [sym_character_literal] = STATE(4470), - [sym__lexical_identifier] = STATE(4566), - [aux_sym__statement_repeat1] = STATE(5317), + [816] = { + [sym__loop_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4951), + [sym_do_while_statement] = STATE(4951), + [sym_assignment] = STATE(4951), + [sym__expression] = STATE(3571), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4197), + [sym_parenthesized_expression] = STATE(4197), + [sym_collection_literal] = STATE(4197), + [sym__literal_constant] = STATE(4197), + [sym_string_literal] = STATE(4197), + [sym_lambda_literal] = STATE(4197), + [sym_anonymous_function] = STATE(4197), + [sym__function_literal] = STATE(4197), + [sym_object_literal] = STATE(4197), + [sym_this_expression] = STATE(4197), + [sym_super_expression] = STATE(4197), + [sym_if_expression] = STATE(4197), + [sym_when_expression] = STATE(4197), + [sym_try_expression] = STATE(4197), + [sym_jump_expression] = STATE(4197), + [sym_callable_reference] = STATE(4197), + [sym__prefix_unary_operator] = STATE(1810), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7916), + [sym_annotation] = STATE(1417), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4197), + [sym_long_literal] = STATE(4197), + [sym_boolean_literal] = STATE(4197), + [sym_character_literal] = STATE(4197), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(939), - [anon_sym_for] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(439), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(515), + [anon_sym_for] = ACTIONS(517), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(521), + [anon_sym_null] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -131695,7 +132045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(97), + [sym_real_literal] = ACTIONS(535), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -131706,296 +132056,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [814] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4115), - [anon_sym_get] = ACTIONS(4057), - [anon_sym_set] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [817] = { + [sym__loop_statement] = STATE(4666), + [sym_for_statement] = STATE(4666), + [sym_while_statement] = STATE(4666), + [sym_do_while_statement] = STATE(4666), + [sym_assignment] = STATE(4666), + [sym__expression] = STATE(3995), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(1665), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7911), + [sym_annotation] = STATE(1420), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(847), + [anon_sym_for] = ACTIONS(849), + [anon_sym_while] = ACTIONS(851), + [anon_sym_do] = ACTIONS(317), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [815] = { - [sym__loop_statement] = STATE(3684), - [sym_for_statement] = STATE(3684), - [sym_while_statement] = STATE(3684), - [sym_do_while_statement] = STATE(3684), - [sym_assignment] = STATE(3684), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1807), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7923), - [sym_annotation] = STATE(1379), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(485), - [anon_sym_for] = ACTIONS(487), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [816] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [818] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym_get] = ACTIONS(4057), - [anon_sym_set] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132023,86 +132266,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [817] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [819] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4119), - [anon_sym_get] = ACTIONS(4057), - [anon_sym_set] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132130,300 +132373,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [818] = { - [sym__loop_statement] = STATE(1053), - [sym_for_statement] = STATE(1053), - [sym_while_statement] = STATE(1053), - [sym_do_while_statement] = STATE(1053), - [sym_assignment] = STATE(1053), - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(765), - [sym_parenthesized_expression] = STATE(765), - [sym_collection_literal] = STATE(765), - [sym__literal_constant] = STATE(765), - [sym_string_literal] = STATE(765), - [sym_lambda_literal] = STATE(765), - [sym_anonymous_function] = STATE(765), - [sym__function_literal] = STATE(765), - [sym_object_literal] = STATE(765), - [sym_this_expression] = STATE(765), - [sym_super_expression] = STATE(765), - [sym_if_expression] = STATE(765), - [sym_when_expression] = STATE(765), - [sym_try_expression] = STATE(765), - [sym_jump_expression] = STATE(765), - [sym_callable_reference] = STATE(765), - [sym__prefix_unary_operator] = STATE(2198), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7895), - [sym_annotation] = STATE(1407), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1103), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(765), - [sym_long_literal] = STATE(765), - [sym_boolean_literal] = STATE(765), - [sym_character_literal] = STATE(765), - [sym__lexical_identifier] = STATE(843), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(637), - [anon_sym_do] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(603), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [819] = { - [sym_catch_block] = STATE(819), - [aux_sym_try_expression_repeat1] = STATE(819), - [sym__alpha_identifier] = ACTIONS(4121), - [anon_sym_AT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_object] = ACTIONS(4121), - [anon_sym_fun] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4123), - [anon_sym_get] = ACTIONS(4121), - [anon_sym_set] = ACTIONS(4121), - [anon_sym_this] = ACTIONS(4121), - [anon_sym_super] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4121), - [sym_label] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4123), - [anon_sym_QMARK_COLON] = ACTIONS(4123), - [anon_sym_AMP_AMP] = ACTIONS(4123), - [anon_sym_PIPE_PIPE] = ACTIONS(4123), - [anon_sym_null] = ACTIONS(4121), - [anon_sym_if] = ACTIONS(4121), - [anon_sym_else] = ACTIONS(4121), - [anon_sym_when] = ACTIONS(4121), - [anon_sym_try] = ACTIONS(4121), - [anon_sym_catch] = ACTIONS(4125), - [anon_sym_finally] = ACTIONS(4121), - [anon_sym_throw] = ACTIONS(4121), - [anon_sym_return] = ACTIONS(4121), - [anon_sym_continue] = ACTIONS(4121), - [anon_sym_break] = ACTIONS(4121), - [anon_sym_COLON_COLON] = ACTIONS(4123), - [anon_sym_PLUS_EQ] = ACTIONS(4123), - [anon_sym_DASH_EQ] = ACTIONS(4123), - [anon_sym_STAR_EQ] = ACTIONS(4123), - [anon_sym_SLASH_EQ] = ACTIONS(4123), - [anon_sym_PERCENT_EQ] = ACTIONS(4123), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4123), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4123), - [anon_sym_LT_EQ] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4123), - [anon_sym_BANGin] = ACTIONS(4123), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_BANGis] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_as_QMARK] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4123), - [anon_sym_BANG] = ACTIONS(4121), - [anon_sym_BANG_BANG] = ACTIONS(4123), - [anon_sym_suspend] = ACTIONS(4121), - [anon_sym_sealed] = ACTIONS(4121), - [anon_sym_annotation] = ACTIONS(4121), - [anon_sym_data] = ACTIONS(4121), - [anon_sym_inner] = ACTIONS(4121), - [anon_sym_override] = ACTIONS(4121), - [anon_sym_lateinit] = ACTIONS(4121), - [anon_sym_public] = ACTIONS(4121), - [anon_sym_private] = ACTIONS(4121), - [anon_sym_internal] = ACTIONS(4121), - [anon_sym_protected] = ACTIONS(4121), - [anon_sym_tailrec] = ACTIONS(4121), - [anon_sym_operator] = ACTIONS(4121), - [anon_sym_infix] = ACTIONS(4121), - [anon_sym_inline] = ACTIONS(4121), - [anon_sym_external] = ACTIONS(4121), - [sym_property_modifier] = ACTIONS(4121), - [anon_sym_abstract] = ACTIONS(4121), - [anon_sym_final] = ACTIONS(4121), - [anon_sym_open] = ACTIONS(4121), - [anon_sym_vararg] = ACTIONS(4121), - [anon_sym_noinline] = ACTIONS(4121), - [anon_sym_crossinline] = ACTIONS(4121), - [anon_sym_expect] = ACTIONS(4121), - [anon_sym_actual] = ACTIONS(4121), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4123), - [anon_sym_continue_AT] = ACTIONS(4123), - [anon_sym_break_AT] = ACTIONS(4123), - [sym_real_literal] = ACTIONS(4123), - [sym_integer_literal] = ACTIONS(4121), - [sym_hex_literal] = ACTIONS(4123), - [sym_bin_literal] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4121), - [anon_sym_false] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4123), - [sym__backtick_identifier] = ACTIONS(4123), - [sym__automatic_semicolon] = ACTIONS(4123), - [sym_safe_nav] = ACTIONS(4123), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4123), }, [820] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4093), - [anon_sym_set] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132451,86 +132480,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [821] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(4093), - [anon_sym_set] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132558,193 +132587,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [822] = { - [sym__loop_statement] = STATE(4574), - [sym_for_statement] = STATE(4574), - [sym_while_statement] = STATE(4574), - [sym_do_while_statement] = STATE(4574), - [sym_assignment] = STATE(4574), - [sym__expression] = STATE(4168), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_annotation] = STATE(1375), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(203), + [sym__loop_statement] = STATE(4951), + [sym_for_statement] = STATE(4951), + [sym_while_statement] = STATE(4951), + [sym_do_while_statement] = STATE(4951), + [sym_assignment] = STATE(4951), + [sym__expression] = STATE(4199), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_annotation] = STATE(1353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(1067), [anon_sym_while] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_do] = ACTIONS(521), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, [823] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(4093), - [anon_sym_set] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132772,193 +132801,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [824] = { - [sym__loop_statement] = STATE(3684), - [sym_for_statement] = STATE(3684), - [sym_while_statement] = STATE(3684), - [sym_do_while_statement] = STATE(3684), - [sym_assignment] = STATE(3684), - [sym__expression] = STATE(2511), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2836), - [sym_parenthesized_expression] = STATE(2836), - [sym_collection_literal] = STATE(2836), - [sym__literal_constant] = STATE(2836), - [sym_string_literal] = STATE(2836), - [sym_lambda_literal] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [sym__function_literal] = STATE(2836), - [sym_object_literal] = STATE(2836), - [sym_this_expression] = STATE(2836), - [sym_super_expression] = STATE(2836), - [sym_if_expression] = STATE(2836), - [sym_when_expression] = STATE(2836), - [sym_try_expression] = STATE(2836), - [sym_jump_expression] = STATE(2836), - [sym_callable_reference] = STATE(2836), - [sym__prefix_unary_operator] = STATE(2362), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7922), - [sym_annotation] = STATE(1408), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2836), - [sym_long_literal] = STATE(2836), - [sym_boolean_literal] = STATE(2836), - [sym_character_literal] = STATE(2836), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(881), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [825] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(4093), - [anon_sym_set] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_get] = ACTIONS(4128), + [anon_sym_set] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132986,727 +132908,1258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [826] = { - [sym__loop_statement] = STATE(3457), - [sym_for_statement] = STATE(3457), - [sym_while_statement] = STATE(3457), - [sym_do_while_statement] = STATE(3457), - [sym_assignment] = STATE(3457), - [sym__expression] = STATE(1497), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(2743), - [sym_parenthesized_expression] = STATE(2743), - [sym_collection_literal] = STATE(2743), - [sym__literal_constant] = STATE(2743), - [sym_string_literal] = STATE(2743), - [sym_lambda_literal] = STATE(2743), - [sym_anonymous_function] = STATE(2743), - [sym__function_literal] = STATE(2743), - [sym_object_literal] = STATE(2743), - [sym_this_expression] = STATE(2743), - [sym_super_expression] = STATE(2743), - [sym_if_expression] = STATE(2743), - [sym_when_expression] = STATE(2743), - [sym_try_expression] = STATE(2743), - [sym_jump_expression] = STATE(2743), - [sym_callable_reference] = STATE(2743), - [sym__prefix_unary_operator] = STATE(1868), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7919), - [sym_annotation] = STATE(1415), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3279), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(2743), - [sym_long_literal] = STATE(2743), - [sym_boolean_literal] = STATE(2743), - [sym_character_literal] = STATE(2743), - [sym__lexical_identifier] = STATE(2837), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(333), + [825] = { + [sym__loop_statement] = STATE(3336), + [sym_for_statement] = STATE(3336), + [sym_while_statement] = STATE(3336), + [sym_do_while_statement] = STATE(3336), + [sym_assignment] = STATE(3336), + [sym__expression] = STATE(2491), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_collection_literal] = STATE(1702), + [sym__literal_constant] = STATE(1702), + [sym_string_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_anonymous_function] = STATE(1702), + [sym__function_literal] = STATE(1702), + [sym_object_literal] = STATE(1702), + [sym_this_expression] = STATE(1702), + [sym_super_expression] = STATE(1702), + [sym_if_expression] = STATE(1702), + [sym_when_expression] = STATE(1702), + [sym_try_expression] = STATE(1702), + [sym_jump_expression] = STATE(1702), + [sym_callable_reference] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1714), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7922), + [sym_annotation] = STATE(1419), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3326), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(1702), + [sym_long_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym_character_literal] = STATE(1702), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(967), - [anon_sym_for] = ACTIONS(969), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(369), - [anon_sym_null] = ACTIONS(973), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(241), + [anon_sym_null] = ACTIONS(821), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(285), + }, + [826] = { + [sym__loop_statement] = STATE(3697), + [sym_for_statement] = STATE(3697), + [sym_while_statement] = STATE(3697), + [sym_do_while_statement] = STATE(3697), + [sym_assignment] = STATE(3697), + [sym__expression] = STATE(1282), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2521), + [sym_parenthesized_expression] = STATE(2521), + [sym_collection_literal] = STATE(2521), + [sym__literal_constant] = STATE(2521), + [sym_string_literal] = STATE(2521), + [sym_lambda_literal] = STATE(2521), + [sym_anonymous_function] = STATE(2521), + [sym__function_literal] = STATE(2521), + [sym_object_literal] = STATE(2521), + [sym_this_expression] = STATE(2521), + [sym_super_expression] = STATE(2521), + [sym_if_expression] = STATE(2521), + [sym_when_expression] = STATE(2521), + [sym_try_expression] = STATE(2521), + [sym_jump_expression] = STATE(2521), + [sym_callable_reference] = STATE(2521), + [sym__prefix_unary_operator] = STATE(1796), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7926), + [sym_annotation] = STATE(1368), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2521), + [sym_long_literal] = STATE(2521), + [sym_boolean_literal] = STATE(2521), + [sym_character_literal] = STATE(2521), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(445), + [anon_sym_for] = ACTIONS(447), + [anon_sym_while] = ACTIONS(449), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(453), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [827] = { - [sym__loop_statement] = STATE(3684), - [sym_for_statement] = STATE(3684), - [sym_while_statement] = STATE(3684), - [sym_do_while_statement] = STATE(3684), - [sym_assignment] = STATE(3684), - [sym__expression] = STATE(1357), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(2895), - [sym_parenthesized_expression] = STATE(2895), - [sym_collection_literal] = STATE(2895), - [sym__literal_constant] = STATE(2895), - [sym_string_literal] = STATE(2895), - [sym_lambda_literal] = STATE(2895), - [sym_anonymous_function] = STATE(2895), - [sym__function_literal] = STATE(2895), - [sym_object_literal] = STATE(2895), - [sym_this_expression] = STATE(2895), - [sym_super_expression] = STATE(2895), - [sym_if_expression] = STATE(2895), - [sym_when_expression] = STATE(2895), - [sym_try_expression] = STATE(2895), - [sym_jump_expression] = STATE(2895), - [sym_callable_reference] = STATE(2895), - [sym__prefix_unary_operator] = STATE(1786), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7917), - [sym_annotation] = STATE(1345), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3725), + [sym__loop_statement] = STATE(3697), + [sym_for_statement] = STATE(3697), + [sym_while_statement] = STATE(3697), + [sym_do_while_statement] = STATE(3697), + [sym_assignment] = STATE(3697), + [sym__expression] = STATE(2520), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_collection_literal] = STATE(2558), + [sym__literal_constant] = STATE(2558), + [sym_string_literal] = STATE(2558), + [sym_lambda_literal] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [sym__function_literal] = STATE(2558), + [sym_object_literal] = STATE(2558), + [sym_this_expression] = STATE(2558), + [sym_super_expression] = STATE(2558), + [sym_if_expression] = STATE(2558), + [sym_when_expression] = STATE(2558), + [sym_try_expression] = STATE(2558), + [sym_jump_expression] = STATE(2558), + [sym_callable_reference] = STATE(2558), + [sym__prefix_unary_operator] = STATE(2272), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7914), + [sym_annotation] = STATE(1394), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3802), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(2895), - [sym_long_literal] = STATE(2895), - [sym_boolean_literal] = STATE(2895), - [sym_character_literal] = STATE(2895), - [sym__lexical_identifier] = STATE(3382), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(2558), + [sym_long_literal] = STATE(2558), + [sym_boolean_literal] = STATE(2558), + [sym_character_literal] = STATE(2558), + [sym__lexical_identifier] = STATE(3287), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(755), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(491), - [anon_sym_null] = ACTIONS(493), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(523), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(451), + [anon_sym_null] = ACTIONS(941), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, [828] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_get] = ACTIONS(4093), - [anon_sym_set] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [sym__loop_statement] = STATE(8740), + [sym_for_statement] = STATE(8740), + [sym_while_statement] = STATE(8740), + [sym_do_while_statement] = STATE(8740), + [sym_assignment] = STATE(8740), + [sym__expression] = STATE(4199), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(4206), + [sym_parenthesized_expression] = STATE(4206), + [sym_collection_literal] = STATE(4206), + [sym__literal_constant] = STATE(4206), + [sym_string_literal] = STATE(4206), + [sym_lambda_literal] = STATE(4206), + [sym_anonymous_function] = STATE(4206), + [sym__function_literal] = STATE(4206), + [sym_object_literal] = STATE(4206), + [sym_this_expression] = STATE(4206), + [sym_super_expression] = STATE(4206), + [sym_if_expression] = STATE(4206), + [sym_when_expression] = STATE(4206), + [sym_try_expression] = STATE(4206), + [sym_jump_expression] = STATE(4206), + [sym_callable_reference] = STATE(4206), + [sym__prefix_unary_operator] = STATE(1712), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7921), + [sym_annotation] = STATE(1353), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5018), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(4206), + [sym_long_literal] = STATE(4206), + [sym_boolean_literal] = STATE(4206), + [sym_character_literal] = STATE(4206), + [sym__lexical_identifier] = STATE(4558), + [aux_sym__statement_repeat1] = STATE(5372), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(97), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, [829] = { - [sym__loop_statement] = STATE(3368), - [sym_for_statement] = STATE(3368), - [sym_while_statement] = STATE(3368), - [sym_do_while_statement] = STATE(3368), - [sym_assignment] = STATE(3368), - [sym__expression] = STATE(1302), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_collection_literal] = STATE(2753), - [sym__literal_constant] = STATE(2753), - [sym_string_literal] = STATE(2753), - [sym_lambda_literal] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [sym__function_literal] = STATE(2753), - [sym_object_literal] = STATE(2753), - [sym_this_expression] = STATE(2753), - [sym_super_expression] = STATE(2753), - [sym_if_expression] = STATE(2753), - [sym_when_expression] = STATE(2753), - [sym_try_expression] = STATE(2753), - [sym_jump_expression] = STATE(2753), - [sym_callable_reference] = STATE(2753), - [sym__prefix_unary_operator] = STATE(2261), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7929), - [sym_annotation] = STATE(1403), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3410), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(2753), - [sym_long_literal] = STATE(2753), - [sym_boolean_literal] = STATE(2753), - [sym_character_literal] = STATE(2753), - [sym__lexical_identifier] = STATE(2858), - [aux_sym__statement_repeat1] = STATE(5317), + [sym__loop_statement] = STATE(9070), + [sym_for_statement] = STATE(9070), + [sym_while_statement] = STATE(9070), + [sym_do_while_statement] = STATE(9070), + [sym_assignment] = STATE(9070), + [sym__expression] = STATE(4188), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4100), + [sym_parenthesized_expression] = STATE(4100), + [sym_collection_literal] = STATE(4100), + [sym__literal_constant] = STATE(4100), + [sym_string_literal] = STATE(4100), + [sym_lambda_literal] = STATE(4100), + [sym_anonymous_function] = STATE(4100), + [sym__function_literal] = STATE(4100), + [sym_object_literal] = STATE(4100), + [sym_this_expression] = STATE(4100), + [sym_super_expression] = STATE(4100), + [sym_if_expression] = STATE(4100), + [sym_when_expression] = STATE(4100), + [sym_try_expression] = STATE(4100), + [sym_jump_expression] = STATE(4100), + [sym_callable_reference] = STATE(4100), + [sym__prefix_unary_operator] = STATE(2243), + [sym__postfix_unary_expression] = STATE(7959), + [sym_directly_assignable_expression] = STATE(7899), + [sym_annotation] = STATE(1374), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4749), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4100), + [sym_long_literal] = STATE(4100), + [sym_boolean_literal] = STATE(4100), + [sym_character_literal] = STATE(4100), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__statement_repeat1] = STATE(5372), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(153), - [anon_sym_null] = ACTIONS(155), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(185), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(187), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [830] = { - [sym__loop_statement] = STATE(8991), - [sym_for_statement] = STATE(8991), - [sym_while_statement] = STATE(8991), - [sym_do_while_statement] = STATE(8991), - [sym_assignment] = STATE(8991), - [sym__expression] = STATE(4168), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4435), - [sym_parenthesized_expression] = STATE(4435), - [sym_collection_literal] = STATE(4435), - [sym__literal_constant] = STATE(4435), - [sym_string_literal] = STATE(4435), - [sym_lambda_literal] = STATE(4435), - [sym_anonymous_function] = STATE(4435), - [sym__function_literal] = STATE(4435), - [sym_object_literal] = STATE(4435), - [sym_this_expression] = STATE(4435), - [sym_super_expression] = STATE(4435), - [sym_if_expression] = STATE(4435), - [sym_when_expression] = STATE(4435), - [sym_try_expression] = STATE(4435), - [sym_jump_expression] = STATE(4435), - [sym_callable_reference] = STATE(4435), - [sym__prefix_unary_operator] = STATE(1903), - [sym__postfix_unary_expression] = STATE(7948), - [sym_directly_assignable_expression] = STATE(7894), - [sym_annotation] = STATE(1375), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4608), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4435), - [sym_long_literal] = STATE(4435), - [sym_boolean_literal] = STATE(4435), - [sym_character_literal] = STATE(4435), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__statement_repeat1] = STATE(5317), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_do] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [831] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), + [sym_type_arguments] = STATE(5098), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4144), [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_object] = ACTIONS(4142), + [anon_sym_fun] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4142), [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_DASH_GT] = ACTIONS(4144), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_this] = ACTIONS(4142), + [anon_sym_super] = ACTIONS(4142), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4142), [anon_sym_DOT_DOT] = ACTIONS(4144), [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_when] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), [anon_sym_PLUS_EQ] = ACTIONS(4144), [anon_sym_DASH_EQ] = ACTIONS(4144), [anon_sym_STAR_EQ] = ACTIONS(4144), [anon_sym_SLASH_EQ] = ACTIONS(4144), [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4142), [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ] = ACTIONS(4142), [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), [anon_sym_LT_EQ] = ACTIONS(4144), [anon_sym_GT_EQ] = ACTIONS(4144), [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4142), [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4142), [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4144), + [anon_sym_continue_AT] = ACTIONS(4144), + [anon_sym_break_AT] = ACTIONS(4144), + [sym_real_literal] = ACTIONS(4144), + [sym_integer_literal] = ACTIONS(4142), + [sym_hex_literal] = ACTIONS(4144), + [sym_bin_literal] = ACTIONS(4144), + [anon_sym_true] = ACTIONS(4142), + [anon_sym_false] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__string_start] = ACTIONS(4144), + }, + [831] = { + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, [832] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [sym__quest] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [833] = { + [sym_function_body] = STATE(1059), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [834] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [835] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [836] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym_get] = ACTIONS(4156), - [anon_sym_set] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym_get] = ACTIONS(4172), + [anon_sym_set] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133734,297 +134187,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [833] = { - [sym_type_constraints] = STATE(962), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - [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), - }, - [834] = { - [sym_type_arguments] = STATE(941), - [sym__alpha_identifier] = ACTIONS(4113), - [anon_sym_AT] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_as] = ACTIONS(4113), - [anon_sym_EQ] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_COMMA] = ACTIONS(4190), - [anon_sym_by] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(4192), - [anon_sym_GT] = ACTIONS(4113), - [anon_sym_where] = ACTIONS(4113), - [anon_sym_object] = ACTIONS(4113), - [anon_sym_fun] = ACTIONS(4113), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [anon_sym_this] = ACTIONS(4113), - [anon_sym_super] = ACTIONS(4113), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [sym_label] = ACTIONS(4113), - [anon_sym_in] = ACTIONS(4113), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_QMARK_COLON] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_PIPE_PIPE] = ACTIONS(4190), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_if] = ACTIONS(4113), - [anon_sym_else] = ACTIONS(4113), - [anon_sym_when] = ACTIONS(4113), - [anon_sym_try] = ACTIONS(4113), - [anon_sym_throw] = ACTIONS(4113), - [anon_sym_return] = ACTIONS(4113), - [anon_sym_continue] = ACTIONS(4113), - [anon_sym_break] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4190), - [anon_sym_DASH_EQ] = ACTIONS(4190), - [anon_sym_STAR_EQ] = ACTIONS(4190), - [anon_sym_SLASH_EQ] = ACTIONS(4190), - [anon_sym_PERCENT_EQ] = ACTIONS(4190), - [anon_sym_BANG_EQ] = ACTIONS(4113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), - [anon_sym_LT_EQ] = ACTIONS(4190), - [anon_sym_GT_EQ] = ACTIONS(4190), - [anon_sym_BANGin] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4113), - [anon_sym_BANGis] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_SLASH] = ACTIONS(4113), - [anon_sym_PERCENT] = ACTIONS(4113), - [anon_sym_as_QMARK] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_BANG_BANG] = ACTIONS(4190), - [anon_sym_suspend] = ACTIONS(4113), - [anon_sym_sealed] = ACTIONS(4113), - [anon_sym_annotation] = ACTIONS(4113), - [anon_sym_data] = ACTIONS(4113), - [anon_sym_inner] = ACTIONS(4113), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_lateinit] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4113), - [anon_sym_private] = ACTIONS(4113), - [anon_sym_internal] = ACTIONS(4113), - [anon_sym_protected] = ACTIONS(4113), - [anon_sym_tailrec] = ACTIONS(4113), - [anon_sym_operator] = ACTIONS(4113), - [anon_sym_infix] = ACTIONS(4113), - [anon_sym_inline] = ACTIONS(4113), - [anon_sym_external] = ACTIONS(4113), - [sym_property_modifier] = ACTIONS(4113), - [anon_sym_abstract] = ACTIONS(4113), - [anon_sym_final] = ACTIONS(4113), - [anon_sym_open] = ACTIONS(4113), - [anon_sym_vararg] = ACTIONS(4113), - [anon_sym_noinline] = ACTIONS(4113), - [anon_sym_crossinline] = ACTIONS(4113), - [anon_sym_expect] = ACTIONS(4113), - [anon_sym_actual] = ACTIONS(4113), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4190), - [anon_sym_continue_AT] = ACTIONS(4190), - [anon_sym_break_AT] = ACTIONS(4190), - [sym_real_literal] = ACTIONS(4190), - [sym_integer_literal] = ACTIONS(4113), - [sym_hex_literal] = ACTIONS(4190), - [sym_bin_literal] = ACTIONS(4190), - [anon_sym_true] = ACTIONS(4113), - [anon_sym_false] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4190), - [sym__backtick_identifier] = ACTIONS(4190), - [sym__automatic_semicolon] = ACTIONS(4190), - [sym_safe_nav] = ACTIONS(4190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4190), - }, - [835] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [837] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym_get] = ACTIONS(4156), - [anon_sym_set] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym_get] = ACTIONS(4172), + [anon_sym_set] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134052,191 +134293,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [836] = { - [sym_function_body] = STATE(1105), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [837] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [838] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4204), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(4172), + [anon_sym_set] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134264,191 +134399,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [838] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, [839] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(4156), - [anon_sym_set] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4206), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134476,85 +134505,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [840] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_get] = ACTIONS(4156), - [anon_sym_set] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(4172), + [anon_sym_set] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134582,85 +134611,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [841] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4218), - [anon_sym_get] = ACTIONS(4156), - [anon_sym_set] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4172), + [anon_sym_set] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134688,297 +134717,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [842] = { - [aux_sym_user_type_repeat1] = STATE(854), - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [sym__quest] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_QMARK_COLON] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [anon_sym_try] = ACTIONS(4220), - [anon_sym_throw] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4222), - [anon_sym_PLUS_EQ] = ACTIONS(4222), - [anon_sym_DASH_EQ] = ACTIONS(4222), - [anon_sym_STAR_EQ] = ACTIONS(4222), - [anon_sym_SLASH_EQ] = ACTIONS(4222), - [anon_sym_PERCENT_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_BANGin] = ACTIONS(4222), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4220), - [anon_sym_as_QMARK] = ACTIONS(4222), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4222), - [anon_sym_suspend] = ACTIONS(4220), - [anon_sym_sealed] = ACTIONS(4220), - [anon_sym_annotation] = ACTIONS(4220), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4220), - [anon_sym_lateinit] = ACTIONS(4220), - [anon_sym_public] = ACTIONS(4220), - [anon_sym_private] = ACTIONS(4220), - [anon_sym_internal] = ACTIONS(4220), - [anon_sym_protected] = ACTIONS(4220), - [anon_sym_tailrec] = ACTIONS(4220), - [anon_sym_operator] = ACTIONS(4220), - [anon_sym_infix] = ACTIONS(4220), - [anon_sym_inline] = ACTIONS(4220), - [anon_sym_external] = ACTIONS(4220), - [sym_property_modifier] = ACTIONS(4220), - [anon_sym_abstract] = ACTIONS(4220), - [anon_sym_final] = ACTIONS(4220), - [anon_sym_open] = ACTIONS(4220), - [anon_sym_vararg] = ACTIONS(4220), - [anon_sym_noinline] = ACTIONS(4220), - [anon_sym_crossinline] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4222), - [anon_sym_continue_AT] = ACTIONS(4222), - [anon_sym_break_AT] = ACTIONS(4222), - [sym_real_literal] = ACTIONS(4222), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4222), - [sym_bin_literal] = ACTIONS(4222), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4222), - [sym__backtick_identifier] = ACTIONS(4222), - [sym__automatic_semicolon] = ACTIONS(4222), - [sym_safe_nav] = ACTIONS(4222), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4222), - }, - [843] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [sym__quest] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [844] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(4156), - [anon_sym_set] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4214), + [anon_sym_get] = ACTIONS(4172), + [anon_sym_set] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -135006,1675 +134823,2417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, + [843] = { + [aux_sym_user_type_repeat1] = STATE(844), + [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_by] = ACTIONS(4216), + [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(4220), + [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), + [sym__quest] = 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_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), + [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), + }, + [844] = { + [aux_sym_user_type_repeat1] = STATE(844), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [sym_label] = ACTIONS(4223), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), + }, [845] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1148), - [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(4229), - [anon_sym_LBRACE] = ACTIONS(3156), - [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(3160), - [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_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), - [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_type_arguments] = STATE(922), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [sym_label] = ACTIONS(4148), + [anon_sym_in] = ACTIONS(4148), + [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(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_when] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [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(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [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(4148), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4148), + [anon_sym_sealed] = ACTIONS(4148), + [anon_sym_annotation] = ACTIONS(4148), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_override] = ACTIONS(4148), + [anon_sym_lateinit] = ACTIONS(4148), + [anon_sym_public] = ACTIONS(4148), + [anon_sym_private] = ACTIONS(4148), + [anon_sym_internal] = ACTIONS(4148), + [anon_sym_protected] = ACTIONS(4148), + [anon_sym_tailrec] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_infix] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym_external] = ACTIONS(4148), + [sym_property_modifier] = ACTIONS(4148), + [anon_sym_abstract] = ACTIONS(4148), + [anon_sym_final] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4148), + [anon_sym_vararg] = ACTIONS(4148), + [anon_sym_noinline] = ACTIONS(4148), + [anon_sym_crossinline] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [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), }, [846] = { - [aux_sym_nullable_type_repeat1] = STATE(846), - [sym__alpha_identifier] = ACTIONS(4235), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(4235), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4235), - [anon_sym_LT] = ACTIONS(4235), - [anon_sym_GT] = ACTIONS(4235), - [anon_sym_where] = ACTIONS(4235), - [anon_sym_object] = ACTIONS(4235), - [anon_sym_fun] = ACTIONS(4235), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4235), - [anon_sym_set] = ACTIONS(4235), - [anon_sym_this] = ACTIONS(4235), - [anon_sym_super] = ACTIONS(4235), - [sym__quest] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4235), - [sym_label] = ACTIONS(4235), - [anon_sym_in] = ACTIONS(4235), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_QMARK_COLON] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_null] = ACTIONS(4235), - [anon_sym_if] = ACTIONS(4235), - [anon_sym_else] = ACTIONS(4235), - [anon_sym_when] = ACTIONS(4235), - [anon_sym_try] = ACTIONS(4235), - [anon_sym_throw] = ACTIONS(4235), - [anon_sym_return] = ACTIONS(4235), - [anon_sym_continue] = ACTIONS(4235), - [anon_sym_break] = ACTIONS(4235), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_BANGin] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4235), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_SLASH] = ACTIONS(4235), - [anon_sym_PERCENT] = ACTIONS(4235), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4235), - [anon_sym_sealed] = ACTIONS(4235), - [anon_sym_annotation] = ACTIONS(4235), - [anon_sym_data] = ACTIONS(4235), - [anon_sym_inner] = ACTIONS(4235), - [anon_sym_override] = ACTIONS(4235), - [anon_sym_lateinit] = ACTIONS(4235), - [anon_sym_public] = ACTIONS(4235), - [anon_sym_private] = ACTIONS(4235), - [anon_sym_internal] = ACTIONS(4235), - [anon_sym_protected] = ACTIONS(4235), - [anon_sym_tailrec] = ACTIONS(4235), - [anon_sym_operator] = ACTIONS(4235), - [anon_sym_infix] = ACTIONS(4235), - [anon_sym_inline] = ACTIONS(4235), - [anon_sym_external] = ACTIONS(4235), - [sym_property_modifier] = ACTIONS(4235), - [anon_sym_abstract] = ACTIONS(4235), - [anon_sym_final] = ACTIONS(4235), - [anon_sym_open] = ACTIONS(4235), - [anon_sym_vararg] = ACTIONS(4235), - [anon_sym_noinline] = ACTIONS(4235), - [anon_sym_crossinline] = ACTIONS(4235), - [anon_sym_expect] = ACTIONS(4235), - [anon_sym_actual] = ACTIONS(4235), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4235), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [sym_type_constraints] = STATE(1191), + [sym_function_body] = STATE(1155), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), }, [847] = { - [aux_sym_nullable_type_repeat1] = STATE(848), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [sym__quest] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym_type_constraints] = STATE(1124), + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, [848] = { - [aux_sym_nullable_type_repeat1] = STATE(846), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_by] = ACTIONS(4248), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [sym__quest] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4248), - [sym_label] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_QMARK_COLON] = ACTIONS(4250), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [anon_sym_null] = ACTIONS(4248), - [anon_sym_if] = ACTIONS(4248), - [anon_sym_else] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4248), - [anon_sym_try] = ACTIONS(4248), - [anon_sym_throw] = ACTIONS(4248), - [anon_sym_return] = ACTIONS(4248), - [anon_sym_continue] = ACTIONS(4248), - [anon_sym_break] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4250), - [anon_sym_PLUS_EQ] = ACTIONS(4250), - [anon_sym_DASH_EQ] = ACTIONS(4250), - [anon_sym_STAR_EQ] = ACTIONS(4250), - [anon_sym_SLASH_EQ] = ACTIONS(4250), - [anon_sym_PERCENT_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4248), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_BANGin] = ACTIONS(4250), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_BANGis] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4248), - [anon_sym_as_QMARK] = ACTIONS(4250), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_BANG_BANG] = ACTIONS(4250), - [anon_sym_suspend] = ACTIONS(4248), - [anon_sym_sealed] = ACTIONS(4248), - [anon_sym_annotation] = ACTIONS(4248), - [anon_sym_data] = ACTIONS(4248), - [anon_sym_inner] = ACTIONS(4248), - [anon_sym_override] = ACTIONS(4248), - [anon_sym_lateinit] = ACTIONS(4248), - [anon_sym_public] = ACTIONS(4248), - [anon_sym_private] = ACTIONS(4248), - [anon_sym_internal] = ACTIONS(4248), - [anon_sym_protected] = ACTIONS(4248), - [anon_sym_tailrec] = ACTIONS(4248), - [anon_sym_operator] = ACTIONS(4248), - [anon_sym_infix] = ACTIONS(4248), - [anon_sym_inline] = ACTIONS(4248), - [anon_sym_external] = ACTIONS(4248), - [sym_property_modifier] = ACTIONS(4248), - [anon_sym_abstract] = ACTIONS(4248), - [anon_sym_final] = ACTIONS(4248), - [anon_sym_open] = ACTIONS(4248), - [anon_sym_vararg] = ACTIONS(4248), - [anon_sym_noinline] = ACTIONS(4248), - [anon_sym_crossinline] = ACTIONS(4248), - [anon_sym_expect] = ACTIONS(4248), - [anon_sym_actual] = ACTIONS(4248), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4250), - [anon_sym_continue_AT] = ACTIONS(4250), - [anon_sym_break_AT] = ACTIONS(4250), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), + [sym_type_constraints] = STATE(1125), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [849] = { - [sym_type_constraints] = STATE(925), - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [sym_type_constraints] = STATE(1126), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [850] = { - [sym_type_constraints] = STATE(922), - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [aux_sym_nullable_type_repeat1] = STATE(850), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_by] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [sym__quest] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_null] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), }, [851] = { - [sym_type_constraints] = STATE(921), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [aux_sym_nullable_type_repeat1] = STATE(853), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [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_DOT] = 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), + [sym__quest] = ACTIONS(4255), + [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_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), + [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), }, [852] = { - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_object] = ACTIONS(4262), - [anon_sym_fun] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [anon_sym_this] = ACTIONS(4262), - [anon_sym_super] = ACTIONS(4262), - [sym__quest] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4264), - [anon_sym_continue_AT] = ACTIONS(4264), - [anon_sym_break_AT] = ACTIONS(4264), - [sym_real_literal] = ACTIONS(4264), - [sym_integer_literal] = ACTIONS(4262), - [sym_hex_literal] = ACTIONS(4264), - [sym_bin_literal] = ACTIONS(4264), - [anon_sym_true] = ACTIONS(4262), - [anon_sym_false] = ACTIONS(4262), - [anon_sym_SQUOTE] = ACTIONS(4264), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4264), + [sym_type_constraints] = STATE(1127), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, [853] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(4204), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(850), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_COMMA] = ACTIONS(4261), + [anon_sym_by] = ACTIONS(4259), + [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(4261), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [sym__quest] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4261), + [anon_sym_QMARK_COLON] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [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(4261), + [anon_sym_PLUS_EQ] = ACTIONS(4261), + [anon_sym_DASH_EQ] = ACTIONS(4261), + [anon_sym_STAR_EQ] = ACTIONS(4261), + [anon_sym_SLASH_EQ] = ACTIONS(4261), + [anon_sym_PERCENT_EQ] = ACTIONS(4261), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4261), + [anon_sym_LT_EQ] = ACTIONS(4261), + [anon_sym_GT_EQ] = ACTIONS(4261), + [anon_sym_BANGin] = ACTIONS(4261), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4261), + [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(4261), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4261), + [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_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(4261), + [anon_sym_continue_AT] = ACTIONS(4261), + [anon_sym_break_AT] = ACTIONS(4261), + [sym_real_literal] = ACTIONS(4261), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4261), + [sym_bin_literal] = ACTIONS(4261), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [sym__backtick_identifier] = ACTIONS(4261), + [sym__automatic_semicolon] = ACTIONS(4261), + [sym_safe_nav] = ACTIONS(4261), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4261), }, [854] = { - [aux_sym_user_type_repeat1] = STATE(854), - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), + [sym__alpha_identifier] = ACTIONS(4265), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_by] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4265), + [anon_sym_where] = ACTIONS(4265), + [anon_sym_object] = ACTIONS(4265), + [anon_sym_fun] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_get] = ACTIONS(4265), + [anon_sym_set] = ACTIONS(4265), + [anon_sym_this] = ACTIONS(4265), + [anon_sym_super] = ACTIONS(4265), + [sym__quest] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_QMARK_COLON] = ACTIONS(4267), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4267), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_if] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4265), + [anon_sym_when] = ACTIONS(4265), + [anon_sym_try] = ACTIONS(4265), + [anon_sym_throw] = ACTIONS(4265), + [anon_sym_return] = ACTIONS(4265), + [anon_sym_continue] = ACTIONS(4265), + [anon_sym_break] = ACTIONS(4265), + [anon_sym_COLON_COLON] = ACTIONS(4267), + [anon_sym_PLUS_EQ] = ACTIONS(4267), + [anon_sym_DASH_EQ] = ACTIONS(4267), + [anon_sym_STAR_EQ] = ACTIONS(4267), + [anon_sym_SLASH_EQ] = ACTIONS(4267), + [anon_sym_PERCENT_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4267), + [anon_sym_LT_EQ] = ACTIONS(4267), + [anon_sym_GT_EQ] = ACTIONS(4267), + [anon_sym_BANGin] = ACTIONS(4267), + [anon_sym_is] = ACTIONS(4265), + [anon_sym_BANGis] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4265), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4265), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4267), + [anon_sym_suspend] = ACTIONS(4265), + [anon_sym_sealed] = ACTIONS(4265), + [anon_sym_annotation] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4265), + [anon_sym_inner] = ACTIONS(4265), + [anon_sym_override] = ACTIONS(4265), + [anon_sym_lateinit] = ACTIONS(4265), + [anon_sym_public] = ACTIONS(4265), + [anon_sym_private] = ACTIONS(4265), + [anon_sym_internal] = ACTIONS(4265), + [anon_sym_protected] = ACTIONS(4265), + [anon_sym_tailrec] = ACTIONS(4265), + [anon_sym_operator] = ACTIONS(4265), + [anon_sym_infix] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym_external] = ACTIONS(4265), + [sym_property_modifier] = ACTIONS(4265), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_final] = ACTIONS(4265), + [anon_sym_open] = ACTIONS(4265), + [anon_sym_vararg] = ACTIONS(4265), + [anon_sym_noinline] = ACTIONS(4265), + [anon_sym_crossinline] = ACTIONS(4265), + [anon_sym_expect] = ACTIONS(4265), + [anon_sym_actual] = ACTIONS(4265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4267), + [anon_sym_continue_AT] = ACTIONS(4267), + [anon_sym_break_AT] = ACTIONS(4267), + [sym_real_literal] = ACTIONS(4267), + [sym_integer_literal] = ACTIONS(4265), + [sym_hex_literal] = ACTIONS(4267), + [sym_bin_literal] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4265), + [anon_sym_false] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4267), + [sym__backtick_identifier] = ACTIONS(4267), + [sym__automatic_semicolon] = ACTIONS(4267), + [sym_safe_nav] = ACTIONS(4267), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4267), }, [855] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(4204), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_user_type_repeat1] = STATE(843), + [sym__alpha_identifier] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_as] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_COMMA] = ACTIONS(4273), + [anon_sym_by] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_where] = ACTIONS(4271), + [anon_sym_object] = ACTIONS(4271), + [anon_sym_fun] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym_get] = ACTIONS(4271), + [anon_sym_set] = ACTIONS(4271), + [anon_sym_this] = ACTIONS(4271), + [anon_sym_super] = ACTIONS(4271), + [sym__quest] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [sym_label] = ACTIONS(4271), + [anon_sym_in] = ACTIONS(4271), + [anon_sym_DOT_DOT] = ACTIONS(4273), + [anon_sym_QMARK_COLON] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_PIPE_PIPE] = ACTIONS(4273), + [anon_sym_null] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_else] = ACTIONS(4271), + [anon_sym_when] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_PLUS_EQ] = ACTIONS(4273), + [anon_sym_DASH_EQ] = ACTIONS(4273), + [anon_sym_STAR_EQ] = ACTIONS(4273), + [anon_sym_SLASH_EQ] = ACTIONS(4273), + [anon_sym_PERCENT_EQ] = ACTIONS(4273), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4273), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4273), + [anon_sym_LT_EQ] = ACTIONS(4273), + [anon_sym_GT_EQ] = ACTIONS(4273), + [anon_sym_BANGin] = ACTIONS(4273), + [anon_sym_is] = ACTIONS(4271), + [anon_sym_BANGis] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_as_QMARK] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_BANG_BANG] = ACTIONS(4273), + [anon_sym_suspend] = ACTIONS(4271), + [anon_sym_sealed] = ACTIONS(4271), + [anon_sym_annotation] = ACTIONS(4271), + [anon_sym_data] = ACTIONS(4271), + [anon_sym_inner] = ACTIONS(4271), + [anon_sym_override] = ACTIONS(4271), + [anon_sym_lateinit] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_internal] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_tailrec] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_infix] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_external] = ACTIONS(4271), + [sym_property_modifier] = ACTIONS(4271), + [anon_sym_abstract] = ACTIONS(4271), + [anon_sym_final] = ACTIONS(4271), + [anon_sym_open] = ACTIONS(4271), + [anon_sym_vararg] = ACTIONS(4271), + [anon_sym_noinline] = ACTIONS(4271), + [anon_sym_crossinline] = ACTIONS(4271), + [anon_sym_expect] = ACTIONS(4271), + [anon_sym_actual] = ACTIONS(4271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4273), + [anon_sym_continue_AT] = ACTIONS(4273), + [anon_sym_break_AT] = ACTIONS(4273), + [sym_real_literal] = ACTIONS(4273), + [sym_integer_literal] = ACTIONS(4271), + [sym_hex_literal] = ACTIONS(4273), + [sym_bin_literal] = ACTIONS(4273), + [anon_sym_true] = ACTIONS(4271), + [anon_sym_false] = ACTIONS(4271), + [anon_sym_SQUOTE] = ACTIONS(4273), + [sym__backtick_identifier] = ACTIONS(4273), + [sym__automatic_semicolon] = ACTIONS(4273), + [sym_safe_nav] = ACTIONS(4273), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4273), }, [856] = { - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [aux_sym_nullable_type_repeat1] = STATE(853), + [sym__alpha_identifier] = ACTIONS(4278), + [anon_sym_AT] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_by] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4278), + [anon_sym_GT] = ACTIONS(4278), + [anon_sym_where] = ACTIONS(4278), + [anon_sym_object] = ACTIONS(4278), + [anon_sym_fun] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_this] = ACTIONS(4278), + [anon_sym_super] = ACTIONS(4278), + [sym__quest] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4278), + [anon_sym_DOT_DOT] = ACTIONS(4280), + [anon_sym_QMARK_COLON] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4278), + [anon_sym_when] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_PLUS_EQ] = ACTIONS(4280), + [anon_sym_DASH_EQ] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(4280), + [anon_sym_SLASH_EQ] = ACTIONS(4280), + [anon_sym_PERCENT_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4280), + [anon_sym_GT_EQ] = ACTIONS(4280), + [anon_sym_BANGin] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4278), + [anon_sym_BANGis] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_SLASH] = ACTIONS(4278), + [anon_sym_PERCENT] = ACTIONS(4278), + [anon_sym_as_QMARK] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4280), + [anon_sym_suspend] = ACTIONS(4278), + [anon_sym_sealed] = ACTIONS(4278), + [anon_sym_annotation] = ACTIONS(4278), + [anon_sym_data] = ACTIONS(4278), + [anon_sym_inner] = ACTIONS(4278), + [anon_sym_override] = ACTIONS(4278), + [anon_sym_lateinit] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_internal] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_tailrec] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_infix] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym_external] = ACTIONS(4278), + [sym_property_modifier] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_open] = ACTIONS(4278), + [anon_sym_vararg] = ACTIONS(4278), + [anon_sym_noinline] = ACTIONS(4278), + [anon_sym_crossinline] = ACTIONS(4278), + [anon_sym_expect] = ACTIONS(4278), + [anon_sym_actual] = ACTIONS(4278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4280), + [anon_sym_continue_AT] = ACTIONS(4280), + [anon_sym_break_AT] = ACTIONS(4280), + [sym_real_literal] = ACTIONS(4280), + [sym_integer_literal] = ACTIONS(4278), + [sym_hex_literal] = ACTIONS(4280), + [sym_bin_literal] = ACTIONS(4280), + [anon_sym_true] = ACTIONS(4278), + [anon_sym_false] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4280), + [sym__backtick_identifier] = ACTIONS(4280), + [sym__automatic_semicolon] = ACTIONS(4280), + [sym_safe_nav] = ACTIONS(4280), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4280), }, [857] = { - [sym__alpha_identifier] = ACTIONS(4279), - [anon_sym_AT] = ACTIONS(4281), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_RBRACK] = ACTIONS(4281), - [anon_sym_as] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4281), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_COMMA] = ACTIONS(4281), - [anon_sym_RPAREN] = ACTIONS(4281), - [anon_sym_LT] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4279), - [anon_sym_where] = ACTIONS(4279), - [anon_sym_object] = ACTIONS(4279), - [anon_sym_fun] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_SEMI] = ACTIONS(4281), - [anon_sym_get] = ACTIONS(4279), - [anon_sym_set] = ACTIONS(4279), - [anon_sym_this] = ACTIONS(4279), - [anon_sym_super] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [anon_sym_DASH_GT] = ACTIONS(4281), - [sym_label] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4279), - [anon_sym_while] = ACTIONS(4279), - [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(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_else] = ACTIONS(4279), - [anon_sym_when] = ACTIONS(4279), - [anon_sym_try] = ACTIONS(4279), - [anon_sym_throw] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [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(4279), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [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(4279), - [anon_sym_BANGis] = ACTIONS(4281), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_SLASH] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_as_QMARK] = ACTIONS(4281), - [anon_sym_PLUS_PLUS] = ACTIONS(4281), - [anon_sym_DASH_DASH] = ACTIONS(4281), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_BANG_BANG] = ACTIONS(4281), - [anon_sym_suspend] = ACTIONS(4279), - [anon_sym_sealed] = ACTIONS(4279), - [anon_sym_annotation] = ACTIONS(4279), - [anon_sym_data] = ACTIONS(4279), - [anon_sym_inner] = ACTIONS(4279), - [anon_sym_override] = ACTIONS(4279), - [anon_sym_lateinit] = ACTIONS(4279), - [anon_sym_public] = ACTIONS(4279), - [anon_sym_private] = ACTIONS(4279), - [anon_sym_internal] = ACTIONS(4279), - [anon_sym_protected] = ACTIONS(4279), - [anon_sym_tailrec] = ACTIONS(4279), - [anon_sym_operator] = ACTIONS(4279), - [anon_sym_infix] = ACTIONS(4279), - [anon_sym_inline] = ACTIONS(4279), - [anon_sym_external] = ACTIONS(4279), - [sym_property_modifier] = ACTIONS(4279), - [anon_sym_abstract] = ACTIONS(4279), - [anon_sym_final] = ACTIONS(4279), - [anon_sym_open] = ACTIONS(4279), - [anon_sym_vararg] = ACTIONS(4279), - [anon_sym_noinline] = ACTIONS(4279), - [anon_sym_crossinline] = ACTIONS(4279), - [anon_sym_expect] = ACTIONS(4279), - [anon_sym_actual] = ACTIONS(4279), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4281), - [anon_sym_continue_AT] = ACTIONS(4281), - [anon_sym_break_AT] = ACTIONS(4281), - [sym_real_literal] = ACTIONS(4281), - [sym_integer_literal] = ACTIONS(4279), - [sym_hex_literal] = ACTIONS(4281), - [sym_bin_literal] = ACTIONS(4281), - [anon_sym_true] = ACTIONS(4279), - [anon_sym_false] = ACTIONS(4279), - [anon_sym_SQUOTE] = ACTIONS(4281), - [sym__backtick_identifier] = ACTIONS(4281), - [sym_safe_nav] = ACTIONS(4281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4281), + [sym__alpha_identifier] = ACTIONS(4282), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4282), + [anon_sym_GT] = ACTIONS(4282), + [anon_sym_where] = ACTIONS(4282), + [anon_sym_object] = ACTIONS(4282), + [anon_sym_fun] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4282), + [anon_sym_set] = ACTIONS(4282), + [anon_sym_this] = ACTIONS(4282), + [anon_sym_super] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_label] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4282), + [anon_sym_while] = ACTIONS(4282), + [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(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4282), + [anon_sym_when] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [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(4282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [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(4282), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_PERCENT] = ACTIONS(4282), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4282), + [anon_sym_sealed] = ACTIONS(4282), + [anon_sym_annotation] = ACTIONS(4282), + [anon_sym_data] = ACTIONS(4282), + [anon_sym_inner] = ACTIONS(4282), + [anon_sym_override] = ACTIONS(4282), + [anon_sym_lateinit] = ACTIONS(4282), + [anon_sym_public] = ACTIONS(4282), + [anon_sym_private] = ACTIONS(4282), + [anon_sym_internal] = ACTIONS(4282), + [anon_sym_protected] = ACTIONS(4282), + [anon_sym_tailrec] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_infix] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym_external] = ACTIONS(4282), + [sym_property_modifier] = ACTIONS(4282), + [anon_sym_abstract] = ACTIONS(4282), + [anon_sym_final] = ACTIONS(4282), + [anon_sym_open] = ACTIONS(4282), + [anon_sym_vararg] = ACTIONS(4282), + [anon_sym_noinline] = ACTIONS(4282), + [anon_sym_crossinline] = ACTIONS(4282), + [anon_sym_expect] = ACTIONS(4282), + [anon_sym_actual] = ACTIONS(4282), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4282), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4282), + [anon_sym_false] = ACTIONS(4282), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [858] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_type_constraints] = STATE(920), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [859] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(4204), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(914), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [860] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_type_constraints] = STATE(911), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [861] = { + [sym_type_constraints] = STATE(908), + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [862] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(4300), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(4296), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [863] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4310), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [864] = { + [sym_type_constraints] = STATE(904), + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [865] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(4204), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4322), + [anon_sym_get] = ACTIONS(4206), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136702,615 +137261,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [861] = { - [sym_class_body] = STATE(1174), - [sym_type_constraints] = STATE(992), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), - }, - [862] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [863] = { - [sym_type_constraints] = STATE(915), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [864] = { - [sym_type_constraints] = STATE(910), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [865] = { - [aux_sym_user_type_repeat1] = STATE(842), - [sym__alpha_identifier] = ACTIONS(4307), - [anon_sym_AT] = ACTIONS(4309), - [anon_sym_LBRACK] = ACTIONS(4309), - [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_DOT] = ACTIONS(4311), - [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), - [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_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_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), - [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), - }, [866] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4314), - [anon_sym_get] = ACTIONS(4204), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4324), + [anon_sym_get] = ACTIONS(4206), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -137338,237 +137367,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [867] = { - [sym_type_constraints] = STATE(1066), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym_type_constraints] = STATE(973), + [sym_enum_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, [868] = { - [aux_sym_nullable_type_repeat1] = STATE(848), - [sym__alpha_identifier] = ACTIONS(4320), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4320), - [anon_sym_EQ] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_object] = ACTIONS(4320), - [anon_sym_fun] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_get] = ACTIONS(4320), - [anon_sym_set] = ACTIONS(4320), - [anon_sym_this] = ACTIONS(4320), - [anon_sym_super] = ACTIONS(4320), - [sym__quest] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4320), - [sym_label] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_QMARK_COLON] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [anon_sym_null] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_else] = ACTIONS(4320), - [anon_sym_when] = ACTIONS(4320), - [anon_sym_try] = ACTIONS(4320), - [anon_sym_throw] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(4322), - [anon_sym_PLUS_EQ] = ACTIONS(4322), - [anon_sym_DASH_EQ] = ACTIONS(4322), - [anon_sym_STAR_EQ] = ACTIONS(4322), - [anon_sym_SLASH_EQ] = ACTIONS(4322), - [anon_sym_PERCENT_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_BANGin] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_BANGis] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4320), - [anon_sym_as_QMARK] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_BANG_BANG] = ACTIONS(4322), - [anon_sym_suspend] = ACTIONS(4320), - [anon_sym_sealed] = ACTIONS(4320), - [anon_sym_annotation] = ACTIONS(4320), - [anon_sym_data] = ACTIONS(4320), - [anon_sym_inner] = ACTIONS(4320), - [anon_sym_override] = ACTIONS(4320), - [anon_sym_lateinit] = ACTIONS(4320), - [anon_sym_public] = ACTIONS(4320), - [anon_sym_private] = ACTIONS(4320), - [anon_sym_internal] = ACTIONS(4320), - [anon_sym_protected] = ACTIONS(4320), - [anon_sym_tailrec] = ACTIONS(4320), - [anon_sym_operator] = ACTIONS(4320), - [anon_sym_infix] = ACTIONS(4320), - [anon_sym_inline] = ACTIONS(4320), - [anon_sym_external] = ACTIONS(4320), - [sym_property_modifier] = ACTIONS(4320), - [anon_sym_abstract] = ACTIONS(4320), - [anon_sym_final] = ACTIONS(4320), - [anon_sym_open] = ACTIONS(4320), - [anon_sym_vararg] = ACTIONS(4320), - [anon_sym_noinline] = ACTIONS(4320), - [anon_sym_crossinline] = ACTIONS(4320), - [anon_sym_expect] = ACTIONS(4320), - [anon_sym_actual] = ACTIONS(4320), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4322), - [anon_sym_continue_AT] = ACTIONS(4322), - [anon_sym_break_AT] = ACTIONS(4322), - [sym_real_literal] = ACTIONS(4322), - [sym_integer_literal] = ACTIONS(4320), - [sym_hex_literal] = ACTIONS(4322), - [sym_bin_literal] = ACTIONS(4322), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [anon_sym_SQUOTE] = ACTIONS(4322), - [sym__backtick_identifier] = ACTIONS(4322), - [sym__automatic_semicolon] = ACTIONS(4322), - [sym_safe_nav] = ACTIONS(4322), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4322), - }, - [869] = { - [sym_class_body] = STATE(1139), - [sym_type_constraints] = STATE(957), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3198), + [anon_sym_COLON] = ACTIONS(3202), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3158), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(3196), [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), @@ -137659,1032 +137582,718 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3200), }, + [869] = { + [sym_class_body] = STATE(1198), + [sym_type_constraints] = STATE(988), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, [870] = { - [sym_function_body] = STATE(1198), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4338), + [anon_sym_get] = ACTIONS(4206), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, [871] = { - [sym_type_constraints] = STATE(1067), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_type_constraints] = STATE(1023), + [sym_enum_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [872] = { - [sym_type_constraints] = STATE(1071), - [sym_function_body] = STATE(1168), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4332), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), + [sym_class_body] = STATE(1177), + [sym_type_constraints] = STATE(995), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, [873] = { - [sym_type_constraints] = STATE(1059), - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4334), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), + [sym_class_body] = STATE(1166), + [sym_type_constraints] = STATE(963), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4346), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), }, [874] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(981), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(4336), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4348), + [anon_sym_get] = ACTIONS(4206), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), [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_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), - [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), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, [875] = { - [sym_class_body] = STATE(1181), - [sym_type_constraints] = STATE(1022), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [876] = { - [sym_type_constraints] = STATE(1068), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [877] = { - [sym_class_body] = STATE(1141), - [sym_type_constraints] = STATE(1007), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), - }, - [878] = { - [sym_type_constraints] = STATE(1036), - [sym_enum_class_body] = STATE(1131), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_this] = ACTIONS(4344), - [anon_sym_super] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4344), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_throw] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4346), - [anon_sym_continue_AT] = ACTIONS(4346), - [anon_sym_break_AT] = ACTIONS(4346), - [sym_real_literal] = ACTIONS(4346), - [sym_integer_literal] = ACTIONS(4344), - [sym_hex_literal] = ACTIONS(4346), - [sym_bin_literal] = ACTIONS(4346), - [anon_sym_true] = ACTIONS(4344), - [anon_sym_false] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4346), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4346), - }, - [879] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(1782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(4350), - [anon_sym_get] = ACTIONS(4352), - [anon_sym_set] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(4206), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138712,189 +138321,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [880] = { - [sym_type_constraints] = STATE(1068), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [876] = { + [sym_class_body] = STATE(1140), + [sym_type_constraints] = STATE(986), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, - [881] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [877] = { + [sym_type_constraints] = STATE(1132), + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [878] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym_get] = ACTIONS(4352), - [anon_sym_set] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4354), + [anon_sym_get] = ACTIONS(4356), + [anon_sym_set] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138922,84 +138636,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [882] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [879] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4382), - [anon_sym_get] = ACTIONS(4352), - [anon_sym_set] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139027,445 +138741,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [883] = { - [sym_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(4388), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), - }, - [884] = { - [sym_type_constraints] = STATE(1067), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [885] = { - [sym_type_constraints] = STATE(962), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - [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), - }, - [886] = { - [sym_type_constraints] = STATE(1066), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [887] = { - [sym_type_constraints] = STATE(1015), - [sym_enum_class_body] = STATE(1122), + [880] = { + [sym_class_body] = STATE(1115), [sym__alpha_identifier] = ACTIONS(4390), [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4394), [anon_sym_LBRACK] = ACTIONS(4392), [anon_sym_as] = ACTIONS(4390), [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3128), [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_LPAREN] = ACTIONS(4392), [anon_sym_COMMA] = ACTIONS(4392), [anon_sym_LT] = ACTIONS(4390), [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(4390), [anon_sym_object] = ACTIONS(4390), [anon_sym_fun] = ACTIONS(4390), [anon_sym_DOT] = ACTIONS(4390), @@ -139556,185 +138850,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4392), }, - [888] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_COLON] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4394), - [anon_sym_constructor] = ACTIONS(4394), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4394), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_override] = ACTIONS(4394), - [anon_sym_lateinit] = ACTIONS(4394), - [anon_sym_public] = ACTIONS(4394), - [anon_sym_private] = ACTIONS(4394), - [anon_sym_internal] = ACTIONS(4394), - [anon_sym_protected] = ACTIONS(4394), - [anon_sym_tailrec] = ACTIONS(4394), - [anon_sym_operator] = ACTIONS(4394), - [anon_sym_infix] = ACTIONS(4394), - [anon_sym_inline] = ACTIONS(4394), - [anon_sym_external] = ACTIONS(4394), - [sym_property_modifier] = ACTIONS(4394), - [anon_sym_abstract] = ACTIONS(4394), - [anon_sym_final] = ACTIONS(4394), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_vararg] = ACTIONS(4394), - [anon_sym_noinline] = ACTIONS(4394), - [anon_sym_crossinline] = ACTIONS(4394), - [anon_sym_expect] = ACTIONS(4394), - [anon_sym_actual] = ACTIONS(4394), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4396), - [anon_sym_continue_AT] = ACTIONS(4396), - [anon_sym_break_AT] = ACTIONS(4396), - [sym_real_literal] = ACTIONS(4396), - [sym_integer_literal] = ACTIONS(4394), - [sym_hex_literal] = ACTIONS(4396), - [sym_bin_literal] = ACTIONS(4396), - [anon_sym_true] = ACTIONS(4394), - [anon_sym_false] = ACTIONS(4394), - [anon_sym_SQUOTE] = ACTIONS(4396), - [sym__backtick_identifier] = ACTIONS(4396), - [sym__automatic_semicolon] = ACTIONS(4396), - [sym_safe_nav] = ACTIONS(4396), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4396), + [881] = { + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1180), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), }, - [889] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [882] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4398), - [anon_sym_get] = ACTIONS(4352), - [anon_sym_set] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_get] = ACTIONS(4356), + [anon_sym_set] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139762,964 +139056,857 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [890] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [891] = { - [sym_class_body] = STATE(1190), - [sym_type_constraints] = STATE(1023), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_this] = ACTIONS(4400), - [anon_sym_super] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4400), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_when] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_throw] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4402), - [anon_sym_continue_AT] = ACTIONS(4402), - [anon_sym_break_AT] = ACTIONS(4402), - [sym_real_literal] = ACTIONS(4402), - [sym_integer_literal] = ACTIONS(4400), - [sym_hex_literal] = ACTIONS(4402), - [sym_bin_literal] = ACTIONS(4402), - [anon_sym_true] = ACTIONS(4400), - [anon_sym_false] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4402), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4402), + [883] = { + [sym_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), }, - [892] = { - [sym_class_body] = STATE(1159), - [sym_type_constraints] = STATE(964), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4404), - [anon_sym_fun] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_this] = ACTIONS(4404), - [anon_sym_super] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4404), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_when] = ACTIONS(4404), - [anon_sym_try] = ACTIONS(4404), - [anon_sym_throw] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4406), - [anon_sym_continue_AT] = ACTIONS(4406), - [anon_sym_break_AT] = ACTIONS(4406), - [sym_real_literal] = ACTIONS(4406), - [sym_integer_literal] = ACTIONS(4404), - [sym_hex_literal] = ACTIONS(4406), - [sym_bin_literal] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4404), - [anon_sym_false] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4406), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4406), + [884] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, - [893] = { - [sym_type_constraints] = STATE(1065), - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [885] = { + [sym_class_body] = STATE(1038), + [sym_type_constraints] = STATE(980), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_this] = ACTIONS(4410), + [anon_sym_super] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4410), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_when] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_throw] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4412), + [anon_sym_continue_AT] = ACTIONS(4412), + [anon_sym_break_AT] = ACTIONS(4412), + [sym_real_literal] = ACTIONS(4412), + [sym_integer_literal] = ACTIONS(4410), + [sym_hex_literal] = ACTIONS(4412), + [sym_bin_literal] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4410), + [anon_sym_false] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4412), }, - [894] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(981), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - [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), + [886] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, - [895] = { - [sym_class_body] = STATE(1172), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), + [887] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, - [896] = { - [sym_value_arguments] = STATE(1109), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4418), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), + [888] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, - [897] = { - [sym_type_constraints] = STATE(1064), - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [889] = { + [sym__alpha_identifier] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(4418), + [anon_sym_constructor] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4420), + [anon_sym_LT] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4418), + [anon_sym_where] = ACTIONS(4418), + [anon_sym_object] = ACTIONS(4418), + [anon_sym_fun] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_SEMI] = ACTIONS(4420), + [anon_sym_get] = ACTIONS(4418), + [anon_sym_set] = ACTIONS(4418), + [anon_sym_this] = ACTIONS(4418), + [anon_sym_super] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4418), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_QMARK_COLON] = ACTIONS(4420), + [anon_sym_AMP_AMP] = ACTIONS(4420), + [anon_sym_PIPE_PIPE] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4418), + [anon_sym_if] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4418), + [anon_sym_when] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4418), + [anon_sym_throw] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4418), + [anon_sym_continue] = ACTIONS(4418), + [anon_sym_break] = ACTIONS(4418), + [anon_sym_COLON_COLON] = ACTIONS(4420), + [anon_sym_PLUS_EQ] = ACTIONS(4420), + [anon_sym_DASH_EQ] = ACTIONS(4420), + [anon_sym_STAR_EQ] = ACTIONS(4420), + [anon_sym_SLASH_EQ] = ACTIONS(4420), + [anon_sym_PERCENT_EQ] = ACTIONS(4420), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4420), + [anon_sym_BANGin] = ACTIONS(4420), + [anon_sym_is] = ACTIONS(4418), + [anon_sym_BANGis] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_SLASH] = ACTIONS(4418), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4420), + [anon_sym_PLUS_PLUS] = ACTIONS(4420), + [anon_sym_DASH_DASH] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4420), + [anon_sym_suspend] = ACTIONS(4418), + [anon_sym_sealed] = ACTIONS(4418), + [anon_sym_annotation] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4418), + [anon_sym_inner] = ACTIONS(4418), + [anon_sym_override] = ACTIONS(4418), + [anon_sym_lateinit] = ACTIONS(4418), + [anon_sym_public] = ACTIONS(4418), + [anon_sym_private] = ACTIONS(4418), + [anon_sym_internal] = ACTIONS(4418), + [anon_sym_protected] = ACTIONS(4418), + [anon_sym_tailrec] = ACTIONS(4418), + [anon_sym_operator] = ACTIONS(4418), + [anon_sym_infix] = ACTIONS(4418), + [anon_sym_inline] = ACTIONS(4418), + [anon_sym_external] = ACTIONS(4418), + [sym_property_modifier] = ACTIONS(4418), + [anon_sym_abstract] = ACTIONS(4418), + [anon_sym_final] = ACTIONS(4418), + [anon_sym_open] = ACTIONS(4418), + [anon_sym_vararg] = ACTIONS(4418), + [anon_sym_noinline] = ACTIONS(4418), + [anon_sym_crossinline] = ACTIONS(4418), + [anon_sym_expect] = ACTIONS(4418), + [anon_sym_actual] = ACTIONS(4418), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4420), + [anon_sym_continue_AT] = ACTIONS(4420), + [anon_sym_break_AT] = ACTIONS(4420), + [sym_real_literal] = ACTIONS(4420), + [sym_integer_literal] = ACTIONS(4418), + [sym_hex_literal] = ACTIONS(4420), + [sym_bin_literal] = ACTIONS(4420), + [anon_sym_true] = ACTIONS(4418), + [anon_sym_false] = ACTIONS(4418), + [anon_sym_SQUOTE] = ACTIONS(4420), + [sym__backtick_identifier] = ACTIONS(4420), + [sym__automatic_semicolon] = ACTIONS(4420), + [sym_safe_nav] = ACTIONS(4420), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4420), }, - [898] = { - [sym_function_body] = STATE(1150), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), + [890] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), }, - [899] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1087), + [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(4037), - [anon_sym_LBRACE] = ACTIONS(4039), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), [anon_sym_RBRACE] = ACTIONS(4426), [anon_sym_LPAREN] = ACTIONS(4426), [anon_sym_COMMA] = ACTIONS(4426), @@ -140807,6 +139994,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(4424), [sym_hex_literal] = ACTIONS(4426), [sym_bin_literal] = ACTIONS(4426), + [aux_sym_unsigned_literal_token1] = ACTIONS(4428), + [anon_sym_L] = ACTIONS(4430), [anon_sym_true] = ACTIONS(4424), [anon_sym_false] = ACTIONS(4424), [anon_sym_SQUOTE] = ACTIONS(4426), @@ -140816,395 +140005,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4426), }, - [900] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4428), - [anon_sym_get] = ACTIONS(4352), - [anon_sym_set] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [892] = { + [sym_class_body] = STATE(1166), + [sym_type_constraints] = STATE(963), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), }, - [901] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), + [893] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_when_condition] = STATE(8824), + [sym_range_test] = STATE(8645), + [sym_type_test] = STATE(8645), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4430), - [anon_sym_get] = ACTIONS(4432), - [anon_sym_set] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [sym__is_operator] = STATE(6173), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_in] = ACTIONS(3856), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANGin] = ACTIONS(3860), + [anon_sym_is] = ACTIONS(3862), + [anon_sym_BANGis] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [902] = { - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), + [894] = { + [sym__alpha_identifier] = ACTIONS(4432), + [anon_sym_AT] = ACTIONS(4434), + [anon_sym_COLON] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4434), + [anon_sym_as] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_constructor] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym_COMMA] = ACTIONS(4434), + [anon_sym_LT] = ACTIONS(4432), + [anon_sym_GT] = ACTIONS(4432), + [anon_sym_where] = ACTIONS(4432), + [anon_sym_object] = ACTIONS(4432), + [anon_sym_fun] = ACTIONS(4432), + [anon_sym_DOT] = ACTIONS(4432), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym_get] = ACTIONS(4432), + [anon_sym_set] = ACTIONS(4432), + [anon_sym_this] = ACTIONS(4432), + [anon_sym_super] = ACTIONS(4432), + [anon_sym_STAR] = ACTIONS(4432), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4432), + [anon_sym_DOT_DOT] = ACTIONS(4434), + [anon_sym_QMARK_COLON] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_PIPE_PIPE] = ACTIONS(4434), + [anon_sym_null] = ACTIONS(4432), + [anon_sym_if] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4432), + [anon_sym_when] = ACTIONS(4432), + [anon_sym_try] = ACTIONS(4432), + [anon_sym_throw] = ACTIONS(4432), + [anon_sym_return] = ACTIONS(4432), + [anon_sym_continue] = ACTIONS(4432), + [anon_sym_break] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_PLUS_EQ] = ACTIONS(4434), + [anon_sym_DASH_EQ] = ACTIONS(4434), + [anon_sym_STAR_EQ] = ACTIONS(4434), + [anon_sym_SLASH_EQ] = ACTIONS(4434), + [anon_sym_PERCENT_EQ] = ACTIONS(4434), + [anon_sym_BANG_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4434), + [anon_sym_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4434), + [anon_sym_LT_EQ] = ACTIONS(4434), + [anon_sym_GT_EQ] = ACTIONS(4434), + [anon_sym_BANGin] = ACTIONS(4434), + [anon_sym_is] = ACTIONS(4432), + [anon_sym_BANGis] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(4432), + [anon_sym_SLASH] = ACTIONS(4432), + [anon_sym_PERCENT] = ACTIONS(4432), + [anon_sym_as_QMARK] = ACTIONS(4434), + [anon_sym_PLUS_PLUS] = ACTIONS(4434), + [anon_sym_DASH_DASH] = ACTIONS(4434), + [anon_sym_BANG] = ACTIONS(4432), + [anon_sym_BANG_BANG] = ACTIONS(4434), + [anon_sym_suspend] = ACTIONS(4432), + [anon_sym_sealed] = ACTIONS(4432), + [anon_sym_annotation] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4432), + [anon_sym_inner] = ACTIONS(4432), + [anon_sym_override] = ACTIONS(4432), + [anon_sym_lateinit] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_internal] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_tailrec] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_infix] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym_external] = ACTIONS(4432), + [sym_property_modifier] = ACTIONS(4432), + [anon_sym_abstract] = ACTIONS(4432), + [anon_sym_final] = ACTIONS(4432), + [anon_sym_open] = ACTIONS(4432), + [anon_sym_vararg] = ACTIONS(4432), + [anon_sym_noinline] = ACTIONS(4432), + [anon_sym_crossinline] = ACTIONS(4432), + [anon_sym_expect] = ACTIONS(4432), + [anon_sym_actual] = ACTIONS(4432), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4434), + [anon_sym_continue_AT] = ACTIONS(4434), + [anon_sym_break_AT] = ACTIONS(4434), + [sym_real_literal] = ACTIONS(4434), + [sym_integer_literal] = ACTIONS(4432), + [sym_hex_literal] = ACTIONS(4434), + [sym_bin_literal] = ACTIONS(4434), + [anon_sym_true] = ACTIONS(4432), + [anon_sym_false] = ACTIONS(4432), + [anon_sym_SQUOTE] = ACTIONS(4434), + [sym__backtick_identifier] = ACTIONS(4434), + [sym__automatic_semicolon] = ACTIONS(4434), + [sym_safe_nav] = ACTIONS(4434), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4434), }, - [903] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [895] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_get] = ACTIONS(4432), - [anon_sym_set] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), + [anon_sym_get] = ACTIONS(4356), + [anon_sym_set] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -141233,83 +140422,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [904] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [896] = { + [sym_function_body] = STATE(1099), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), + }, + [897] = { + [sym_class_body] = STATE(1198), + [sym_type_constraints] = STATE(988), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [898] = { + [sym_function_body] = STATE(1102), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), + }, + [899] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4438), - [anon_sym_get] = ACTIONS(4432), - [anon_sym_set] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_get] = ACTIONS(4356), + [anon_sym_set] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -141338,818 +140842,2498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, + [900] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_constructor] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [901] = { + [sym_class_body] = STATE(1180), + [sym_type_constraints] = STATE(974), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), + }, + [902] = { + [sym_type_constraints] = STATE(973), + [sym_enum_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [903] = { + [sym__alpha_identifier] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_as] = ACTIONS(4448), + [anon_sym_EQ] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_COMMA] = ACTIONS(4450), + [anon_sym_by] = ACTIONS(4448), + [anon_sym_LT] = ACTIONS(4448), + [anon_sym_GT] = ACTIONS(4448), + [anon_sym_where] = ACTIONS(4448), + [anon_sym_object] = ACTIONS(4448), + [anon_sym_fun] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym_get] = ACTIONS(4448), + [anon_sym_set] = ACTIONS(4448), + [anon_sym_this] = ACTIONS(4448), + [anon_sym_super] = ACTIONS(4448), + [sym__quest] = ACTIONS(4448), + [anon_sym_STAR] = ACTIONS(4448), + [sym_label] = ACTIONS(4448), + [anon_sym_in] = ACTIONS(4448), + [anon_sym_DOT_DOT] = ACTIONS(4450), + [anon_sym_QMARK_COLON] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE_PIPE] = ACTIONS(4450), + [anon_sym_null] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4448), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_when] = ACTIONS(4448), + [anon_sym_try] = ACTIONS(4448), + [anon_sym_throw] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4448), + [anon_sym_continue] = ACTIONS(4448), + [anon_sym_break] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_PLUS_EQ] = ACTIONS(4450), + [anon_sym_DASH_EQ] = ACTIONS(4450), + [anon_sym_STAR_EQ] = ACTIONS(4450), + [anon_sym_SLASH_EQ] = ACTIONS(4450), + [anon_sym_PERCENT_EQ] = ACTIONS(4450), + [anon_sym_BANG_EQ] = ACTIONS(4448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4450), + [anon_sym_EQ_EQ] = ACTIONS(4448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4450), + [anon_sym_LT_EQ] = ACTIONS(4450), + [anon_sym_GT_EQ] = ACTIONS(4450), + [anon_sym_BANGin] = ACTIONS(4450), + [anon_sym_is] = ACTIONS(4448), + [anon_sym_BANGis] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_SLASH] = ACTIONS(4448), + [anon_sym_PERCENT] = ACTIONS(4448), + [anon_sym_as_QMARK] = ACTIONS(4450), + [anon_sym_PLUS_PLUS] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4448), + [anon_sym_BANG_BANG] = ACTIONS(4450), + [anon_sym_suspend] = ACTIONS(4448), + [anon_sym_sealed] = ACTIONS(4448), + [anon_sym_annotation] = ACTIONS(4448), + [anon_sym_data] = ACTIONS(4448), + [anon_sym_inner] = ACTIONS(4448), + [anon_sym_override] = ACTIONS(4448), + [anon_sym_lateinit] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_internal] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_tailrec] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_infix] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym_external] = ACTIONS(4448), + [sym_property_modifier] = ACTIONS(4448), + [anon_sym_abstract] = ACTIONS(4448), + [anon_sym_final] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4448), + [anon_sym_vararg] = ACTIONS(4448), + [anon_sym_noinline] = ACTIONS(4448), + [anon_sym_crossinline] = ACTIONS(4448), + [anon_sym_expect] = ACTIONS(4448), + [anon_sym_actual] = ACTIONS(4448), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4450), + [anon_sym_continue_AT] = ACTIONS(4450), + [anon_sym_break_AT] = ACTIONS(4450), + [sym_real_literal] = ACTIONS(4450), + [sym_integer_literal] = ACTIONS(4448), + [sym_hex_literal] = ACTIONS(4450), + [sym_bin_literal] = ACTIONS(4450), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [anon_sym_SQUOTE] = ACTIONS(4450), + [sym__backtick_identifier] = ACTIONS(4450), + [sym__automatic_semicolon] = ACTIONS(4450), + [sym_safe_nav] = ACTIONS(4450), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4450), + }, + [904] = { + [sym_function_body] = STATE(1138), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), + }, [905] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_constructor] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_type_constraints] = STATE(973), + [sym_enum_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, [906] = { - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, [907] = { - [aux_sym_type_constraints_repeat1] = STATE(914), - [sym__alpha_identifier] = ACTIONS(4440), - [anon_sym_AT] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_EQ] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4442), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4440), - [anon_sym_GT] = ACTIONS(4440), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_object] = ACTIONS(4440), - [anon_sym_fun] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_SEMI] = ACTIONS(4442), - [anon_sym_get] = ACTIONS(4440), - [anon_sym_set] = ACTIONS(4440), - [anon_sym_this] = ACTIONS(4440), - [anon_sym_super] = ACTIONS(4440), - [anon_sym_STAR] = ACTIONS(4440), - [sym_label] = ACTIONS(4440), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4442), - [anon_sym_QMARK_COLON] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4442), - [anon_sym_PIPE_PIPE] = ACTIONS(4442), - [anon_sym_null] = ACTIONS(4440), - [anon_sym_if] = ACTIONS(4440), - [anon_sym_else] = ACTIONS(4440), - [anon_sym_when] = ACTIONS(4440), - [anon_sym_try] = ACTIONS(4440), - [anon_sym_throw] = ACTIONS(4440), - [anon_sym_return] = ACTIONS(4440), - [anon_sym_continue] = ACTIONS(4440), - [anon_sym_break] = ACTIONS(4440), - [anon_sym_COLON_COLON] = ACTIONS(4442), - [anon_sym_PLUS_EQ] = ACTIONS(4442), - [anon_sym_DASH_EQ] = ACTIONS(4442), - [anon_sym_STAR_EQ] = ACTIONS(4442), - [anon_sym_SLASH_EQ] = ACTIONS(4442), - [anon_sym_PERCENT_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4442), - [anon_sym_LT_EQ] = ACTIONS(4442), - [anon_sym_GT_EQ] = ACTIONS(4442), - [anon_sym_BANGin] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_BANGis] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4440), - [anon_sym_DASH] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4440), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_as_QMARK] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4442), - [anon_sym_DASH_DASH] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4440), - [anon_sym_BANG_BANG] = ACTIONS(4442), - [anon_sym_suspend] = ACTIONS(4440), - [anon_sym_sealed] = ACTIONS(4440), - [anon_sym_annotation] = ACTIONS(4440), - [anon_sym_data] = ACTIONS(4440), - [anon_sym_inner] = ACTIONS(4440), - [anon_sym_override] = ACTIONS(4440), - [anon_sym_lateinit] = ACTIONS(4440), - [anon_sym_public] = ACTIONS(4440), - [anon_sym_private] = ACTIONS(4440), - [anon_sym_internal] = ACTIONS(4440), - [anon_sym_protected] = ACTIONS(4440), - [anon_sym_tailrec] = ACTIONS(4440), - [anon_sym_operator] = ACTIONS(4440), - [anon_sym_infix] = ACTIONS(4440), - [anon_sym_inline] = ACTIONS(4440), - [anon_sym_external] = ACTIONS(4440), - [sym_property_modifier] = ACTIONS(4440), - [anon_sym_abstract] = ACTIONS(4440), - [anon_sym_final] = ACTIONS(4440), - [anon_sym_open] = ACTIONS(4440), - [anon_sym_vararg] = ACTIONS(4440), - [anon_sym_noinline] = ACTIONS(4440), - [anon_sym_crossinline] = ACTIONS(4440), - [anon_sym_expect] = ACTIONS(4440), - [anon_sym_actual] = ACTIONS(4440), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4442), - [anon_sym_continue_AT] = ACTIONS(4442), - [anon_sym_break_AT] = ACTIONS(4442), - [sym_real_literal] = ACTIONS(4442), - [sym_integer_literal] = ACTIONS(4440), - [sym_hex_literal] = ACTIONS(4442), - [sym_bin_literal] = ACTIONS(4442), - [anon_sym_true] = ACTIONS(4440), - [anon_sym_false] = ACTIONS(4440), - [anon_sym_SQUOTE] = ACTIONS(4442), - [sym__backtick_identifier] = ACTIONS(4442), - [sym__automatic_semicolon] = ACTIONS(4442), - [sym_safe_nav] = ACTIONS(4442), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4442), + [sym_class_body] = STATE(1198), + [sym_type_constraints] = STATE(988), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [908] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1148), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym_LT] = ACTIONS(4229), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(3160), - [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_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), - [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_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, [909] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(4432), - [anon_sym_set] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4460), + [anon_sym_AT] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_COMMA] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_where] = ACTIONS(4460), + [anon_sym_object] = ACTIONS(4460), + [anon_sym_fun] = ACTIONS(4460), + [anon_sym_DOT] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym_get] = ACTIONS(4460), + [anon_sym_set] = ACTIONS(4460), + [anon_sym_this] = ACTIONS(4460), + [anon_sym_super] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4460), + [sym_label] = ACTIONS(4460), + [anon_sym_in] = ACTIONS(4460), + [anon_sym_DOT_DOT] = ACTIONS(4462), + [anon_sym_QMARK_COLON] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_PIPE_PIPE] = ACTIONS(4462), + [anon_sym_null] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_else] = ACTIONS(4460), + [anon_sym_when] = ACTIONS(4460), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_catch] = ACTIONS(4460), + [anon_sym_finally] = ACTIONS(4460), + [anon_sym_throw] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_PLUS_EQ] = ACTIONS(4462), + [anon_sym_DASH_EQ] = ACTIONS(4462), + [anon_sym_STAR_EQ] = ACTIONS(4462), + [anon_sym_SLASH_EQ] = ACTIONS(4462), + [anon_sym_PERCENT_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ] = ACTIONS(4460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ] = ACTIONS(4460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_BANGin] = ACTIONS(4462), + [anon_sym_is] = ACTIONS(4460), + [anon_sym_BANGis] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_SLASH] = ACTIONS(4460), + [anon_sym_PERCENT] = ACTIONS(4460), + [anon_sym_as_QMARK] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_BANG_BANG] = ACTIONS(4462), + [anon_sym_suspend] = ACTIONS(4460), + [anon_sym_sealed] = ACTIONS(4460), + [anon_sym_annotation] = ACTIONS(4460), + [anon_sym_data] = ACTIONS(4460), + [anon_sym_inner] = ACTIONS(4460), + [anon_sym_override] = ACTIONS(4460), + [anon_sym_lateinit] = ACTIONS(4460), + [anon_sym_public] = ACTIONS(4460), + [anon_sym_private] = ACTIONS(4460), + [anon_sym_internal] = ACTIONS(4460), + [anon_sym_protected] = ACTIONS(4460), + [anon_sym_tailrec] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_infix] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym_external] = ACTIONS(4460), + [sym_property_modifier] = ACTIONS(4460), + [anon_sym_abstract] = ACTIONS(4460), + [anon_sym_final] = ACTIONS(4460), + [anon_sym_open] = ACTIONS(4460), + [anon_sym_vararg] = ACTIONS(4460), + [anon_sym_noinline] = ACTIONS(4460), + [anon_sym_crossinline] = ACTIONS(4460), + [anon_sym_expect] = ACTIONS(4460), + [anon_sym_actual] = ACTIONS(4460), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4462), + [anon_sym_continue_AT] = ACTIONS(4462), + [anon_sym_break_AT] = ACTIONS(4462), + [sym_real_literal] = ACTIONS(4462), + [sym_integer_literal] = ACTIONS(4460), + [sym_hex_literal] = ACTIONS(4462), + [sym_bin_literal] = ACTIONS(4462), + [anon_sym_true] = ACTIONS(4460), + [anon_sym_false] = ACTIONS(4460), + [anon_sym_SQUOTE] = ACTIONS(4462), + [sym__backtick_identifier] = ACTIONS(4462), + [sym__automatic_semicolon] = ACTIONS(4462), + [sym_safe_nav] = ACTIONS(4462), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4462), }, [910] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [911] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), }, [912] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__alpha_identifier] = ACTIONS(4464), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_as] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4464), + [anon_sym_GT] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_object] = ACTIONS(4464), + [anon_sym_fun] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_get] = ACTIONS(4464), + [anon_sym_set] = ACTIONS(4464), + [anon_sym_this] = ACTIONS(4464), + [anon_sym_super] = ACTIONS(4464), + [sym__quest] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_QMARK_COLON] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_null] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4464), + [anon_sym_when] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_PERCENT_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4466), + [anon_sym_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4466), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_BANGin] = ACTIONS(4466), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_BANGis] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_SLASH] = ACTIONS(4464), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4466), + [anon_sym_suspend] = ACTIONS(4464), + [anon_sym_sealed] = ACTIONS(4464), + [anon_sym_annotation] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4464), + [anon_sym_inner] = ACTIONS(4464), + [anon_sym_override] = ACTIONS(4464), + [anon_sym_lateinit] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_internal] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_tailrec] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_infix] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym_external] = ACTIONS(4464), + [sym_property_modifier] = ACTIONS(4464), + [anon_sym_abstract] = ACTIONS(4464), + [anon_sym_final] = ACTIONS(4464), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_vararg] = ACTIONS(4464), + [anon_sym_noinline] = ACTIONS(4464), + [anon_sym_crossinline] = ACTIONS(4464), + [anon_sym_expect] = ACTIONS(4464), + [anon_sym_actual] = ACTIONS(4464), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4466), + [anon_sym_continue_AT] = ACTIONS(4466), + [anon_sym_break_AT] = ACTIONS(4466), + [sym_real_literal] = ACTIONS(4466), + [sym_integer_literal] = ACTIONS(4464), + [sym_hex_literal] = ACTIONS(4466), + [sym_bin_literal] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4464), + [anon_sym_false] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4466), + [sym__backtick_identifier] = ACTIONS(4466), + [sym__automatic_semicolon] = ACTIONS(4466), + [sym_safe_nav] = ACTIONS(4466), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4466), + }, + [913] = { + [sym_class_body] = STATE(1197), + [sym_type_constraints] = STATE(1021), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(3128), + [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(3134), + [anon_sym_object] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_DOT] = 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_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_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), + [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), + }, + [914] = { + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [915] = { + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [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_DOT] = 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_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), + [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), + }, + [916] = { + [sym_class_body] = STATE(1168), + [sym_type_constraints] = STATE(968), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [917] = { + [sym_type_constraints] = STATE(1023), + [sym_enum_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [918] = { + [sym_class_body] = STATE(1177), + [sym_type_constraints] = STATE(995), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [919] = { + [sym_type_constraints] = STATE(967), + [sym_enum_class_body] = STATE(1159), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4482), + [anon_sym_fun] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_this] = ACTIONS(4482), + [anon_sym_super] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4482), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_when] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_throw] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4484), + [anon_sym_continue_AT] = ACTIONS(4484), + [anon_sym_break_AT] = ACTIONS(4484), + [sym_real_literal] = ACTIONS(4484), + [sym_integer_literal] = ACTIONS(4482), + [sym_hex_literal] = ACTIONS(4484), + [sym_bin_literal] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4484), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4484), + }, + [920] = { + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [921] = { + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [sym_label] = ACTIONS(4223), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), + }, + [922] = { + [sym__alpha_identifier] = ACTIONS(4486), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_as] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_by] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_where] = ACTIONS(4486), + [anon_sym_object] = ACTIONS(4486), + [anon_sym_fun] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_get] = ACTIONS(4486), + [anon_sym_set] = ACTIONS(4486), + [anon_sym_this] = ACTIONS(4486), + [anon_sym_super] = ACTIONS(4486), + [sym__quest] = ACTIONS(4486), + [anon_sym_STAR] = ACTIONS(4486), + [sym_label] = ACTIONS(4486), + [anon_sym_in] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4488), + [anon_sym_QMARK_COLON] = ACTIONS(4488), + [anon_sym_AMP_AMP] = ACTIONS(4488), + [anon_sym_PIPE_PIPE] = ACTIONS(4488), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_when] = ACTIONS(4486), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_throw] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_COLON_COLON] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4488), + [anon_sym_EQ_EQ] = ACTIONS(4486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4488), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_BANGin] = ACTIONS(4488), + [anon_sym_is] = ACTIONS(4486), + [anon_sym_BANGis] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_PERCENT] = ACTIONS(4486), + [anon_sym_as_QMARK] = ACTIONS(4488), + [anon_sym_PLUS_PLUS] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_BANG_BANG] = ACTIONS(4488), + [anon_sym_suspend] = ACTIONS(4486), + [anon_sym_sealed] = ACTIONS(4486), + [anon_sym_annotation] = ACTIONS(4486), + [anon_sym_data] = ACTIONS(4486), + [anon_sym_inner] = ACTIONS(4486), + [anon_sym_override] = ACTIONS(4486), + [anon_sym_lateinit] = ACTIONS(4486), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_private] = ACTIONS(4486), + [anon_sym_internal] = ACTIONS(4486), + [anon_sym_protected] = ACTIONS(4486), + [anon_sym_tailrec] = ACTIONS(4486), + [anon_sym_operator] = ACTIONS(4486), + [anon_sym_infix] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym_external] = ACTIONS(4486), + [sym_property_modifier] = ACTIONS(4486), + [anon_sym_abstract] = ACTIONS(4486), + [anon_sym_final] = ACTIONS(4486), + [anon_sym_open] = ACTIONS(4486), + [anon_sym_vararg] = ACTIONS(4486), + [anon_sym_noinline] = ACTIONS(4486), + [anon_sym_crossinline] = ACTIONS(4486), + [anon_sym_expect] = ACTIONS(4486), + [anon_sym_actual] = ACTIONS(4486), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4488), + [anon_sym_continue_AT] = ACTIONS(4488), + [anon_sym_break_AT] = ACTIONS(4488), + [sym_real_literal] = ACTIONS(4488), + [sym_integer_literal] = ACTIONS(4486), + [sym_hex_literal] = ACTIONS(4488), + [sym_bin_literal] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4488), + [sym__backtick_identifier] = ACTIONS(4488), + [sym__automatic_semicolon] = ACTIONS(4488), + [sym_safe_nav] = ACTIONS(4488), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4488), + }, + [923] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_get] = ACTIONS(4432), - [anon_sym_set] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4490), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -142177,84 +143361,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [913] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [924] = { + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [925] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4452), - [anon_sym_get] = ACTIONS(4432), - [anon_sym_set] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_get] = ACTIONS(4356), + [anon_sym_set] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -142282,2079 +143571,1029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [914] = { - [aux_sym_type_constraints_repeat1] = STATE(917), - [sym__alpha_identifier] = ACTIONS(4454), - [anon_sym_AT] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_EQ] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_object] = ACTIONS(4454), - [anon_sym_fun] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_get] = ACTIONS(4454), - [anon_sym_set] = ACTIONS(4454), - [anon_sym_this] = ACTIONS(4454), - [anon_sym_super] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_QMARK_COLON] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [anon_sym_null] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [anon_sym_try] = ACTIONS(4454), - [anon_sym_throw] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_PLUS_EQ] = ACTIONS(4456), - [anon_sym_DASH_EQ] = ACTIONS(4456), - [anon_sym_STAR_EQ] = ACTIONS(4456), - [anon_sym_SLASH_EQ] = ACTIONS(4456), - [anon_sym_PERCENT_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_BANGin] = ACTIONS(4456), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_BANGis] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4456), - [anon_sym_suspend] = ACTIONS(4454), - [anon_sym_sealed] = ACTIONS(4454), - [anon_sym_annotation] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4454), - [anon_sym_inner] = ACTIONS(4454), - [anon_sym_override] = ACTIONS(4454), - [anon_sym_lateinit] = ACTIONS(4454), - [anon_sym_public] = ACTIONS(4454), - [anon_sym_private] = ACTIONS(4454), - [anon_sym_internal] = ACTIONS(4454), - [anon_sym_protected] = ACTIONS(4454), - [anon_sym_tailrec] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_infix] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym_external] = ACTIONS(4454), - [sym_property_modifier] = ACTIONS(4454), - [anon_sym_abstract] = ACTIONS(4454), - [anon_sym_final] = ACTIONS(4454), - [anon_sym_open] = ACTIONS(4454), - [anon_sym_vararg] = ACTIONS(4454), - [anon_sym_noinline] = ACTIONS(4454), - [anon_sym_crossinline] = ACTIONS(4454), - [anon_sym_expect] = ACTIONS(4454), - [anon_sym_actual] = ACTIONS(4454), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4456), - [anon_sym_continue_AT] = ACTIONS(4456), - [anon_sym_break_AT] = ACTIONS(4456), - [sym_real_literal] = ACTIONS(4456), - [sym_integer_literal] = ACTIONS(4454), - [sym_hex_literal] = ACTIONS(4456), - [sym_bin_literal] = ACTIONS(4456), - [anon_sym_true] = ACTIONS(4454), - [anon_sym_false] = ACTIONS(4454), - [anon_sym_SQUOTE] = ACTIONS(4456), - [sym__backtick_identifier] = ACTIONS(4456), - [sym__automatic_semicolon] = ACTIONS(4456), - [sym_safe_nav] = ACTIONS(4456), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4456), - }, - [915] = { - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [916] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_constructor] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_object] = ACTIONS(4458), - [anon_sym_fun] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_this] = ACTIONS(4458), - [anon_sym_super] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [sym_label] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_null] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_when] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4460), - [anon_sym_continue_AT] = ACTIONS(4460), - [anon_sym_break_AT] = ACTIONS(4460), - [sym_real_literal] = ACTIONS(4460), - [sym_integer_literal] = ACTIONS(4458), - [sym_hex_literal] = ACTIONS(4460), - [sym_bin_literal] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4458), - [anon_sym_false] = ACTIONS(4458), - [anon_sym_SQUOTE] = ACTIONS(4460), - [sym__backtick_identifier] = ACTIONS(4460), - [sym__automatic_semicolon] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4460), - }, - [917] = { - [aux_sym_type_constraints_repeat1] = STATE(917), - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [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(4466), - [anon_sym_by] = ACTIONS(4462), - [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_DOT] = 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_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), - [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), - }, - [918] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_by] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [sym__quest] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), - }, - [919] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(981), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - [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), - }, - [920] = { - [sym__alpha_identifier] = ACTIONS(4475), - [anon_sym_AT] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_as] = ACTIONS(4475), - [anon_sym_EQ] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_where] = ACTIONS(4475), - [anon_sym_object] = ACTIONS(4475), - [anon_sym_fun] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_SEMI] = ACTIONS(4477), - [anon_sym_get] = ACTIONS(4475), - [anon_sym_set] = ACTIONS(4475), - [anon_sym_this] = ACTIONS(4475), - [anon_sym_super] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [sym_label] = ACTIONS(4475), - [anon_sym_in] = ACTIONS(4475), - [anon_sym_DOT_DOT] = ACTIONS(4477), - [anon_sym_QMARK_COLON] = ACTIONS(4477), - [anon_sym_AMP_AMP] = ACTIONS(4477), - [anon_sym_PIPE_PIPE] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4475), - [anon_sym_if] = ACTIONS(4475), - [anon_sym_else] = ACTIONS(4475), - [anon_sym_when] = ACTIONS(4475), - [anon_sym_try] = ACTIONS(4475), - [anon_sym_throw] = ACTIONS(4475), - [anon_sym_return] = ACTIONS(4475), - [anon_sym_continue] = ACTIONS(4475), - [anon_sym_break] = ACTIONS(4475), - [anon_sym_COLON_COLON] = ACTIONS(4477), - [anon_sym_PLUS_EQ] = ACTIONS(4477), - [anon_sym_DASH_EQ] = ACTIONS(4477), - [anon_sym_STAR_EQ] = ACTIONS(4477), - [anon_sym_SLASH_EQ] = ACTIONS(4477), - [anon_sym_PERCENT_EQ] = ACTIONS(4477), - [anon_sym_BANG_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4477), - [anon_sym_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4477), - [anon_sym_LT_EQ] = ACTIONS(4477), - [anon_sym_GT_EQ] = ACTIONS(4477), - [anon_sym_BANGin] = ACTIONS(4477), - [anon_sym_is] = ACTIONS(4475), - [anon_sym_BANGis] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_PERCENT] = ACTIONS(4475), - [anon_sym_as_QMARK] = ACTIONS(4477), - [anon_sym_PLUS_PLUS] = ACTIONS(4477), - [anon_sym_DASH_DASH] = ACTIONS(4477), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_BANG_BANG] = ACTIONS(4477), - [anon_sym_suspend] = ACTIONS(4475), - [anon_sym_sealed] = ACTIONS(4475), - [anon_sym_annotation] = ACTIONS(4475), - [anon_sym_data] = ACTIONS(4475), - [anon_sym_inner] = ACTIONS(4475), - [anon_sym_override] = ACTIONS(4475), - [anon_sym_lateinit] = ACTIONS(4475), - [anon_sym_public] = ACTIONS(4475), - [anon_sym_private] = ACTIONS(4475), - [anon_sym_internal] = ACTIONS(4475), - [anon_sym_protected] = ACTIONS(4475), - [anon_sym_tailrec] = ACTIONS(4475), - [anon_sym_operator] = ACTIONS(4475), - [anon_sym_infix] = ACTIONS(4475), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_external] = ACTIONS(4475), - [sym_property_modifier] = ACTIONS(4475), - [anon_sym_abstract] = ACTIONS(4475), - [anon_sym_final] = ACTIONS(4475), - [anon_sym_open] = ACTIONS(4475), - [anon_sym_vararg] = ACTIONS(4475), - [anon_sym_noinline] = ACTIONS(4475), - [anon_sym_crossinline] = ACTIONS(4475), - [anon_sym_expect] = ACTIONS(4475), - [anon_sym_actual] = ACTIONS(4475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4477), - [anon_sym_continue_AT] = ACTIONS(4477), - [anon_sym_break_AT] = ACTIONS(4477), - [sym_real_literal] = ACTIONS(4477), - [sym_integer_literal] = ACTIONS(4475), - [sym_hex_literal] = ACTIONS(4477), - [sym_bin_literal] = ACTIONS(4477), - [aux_sym_unsigned_literal_token1] = ACTIONS(4479), - [anon_sym_L] = ACTIONS(4481), - [anon_sym_true] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4477), - [sym__backtick_identifier] = ACTIONS(4477), - [sym__automatic_semicolon] = ACTIONS(4477), - [sym_safe_nav] = ACTIONS(4477), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4477), - }, - [921] = { - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [922] = { - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [923] = { - [sym_type_constraints] = STATE(962), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - [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), - }, - [924] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1148), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3156), - [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(3160), - [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_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), - [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), - }, - [925] = { - [sym_function_body] = STATE(1115), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4039), - [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_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_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), - [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), - }, [926] = { - [sym__alpha_identifier] = ACTIONS(4489), - [anon_sym_AT] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_as] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_by] = ACTIONS(4489), - [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), - [sym__quest] = 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_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), - [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), + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_catch] = ACTIONS(4494), + [anon_sym_finally] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, [927] = { - [sym_class_body] = STATE(1181), - [sym_type_constraints] = STATE(1022), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_type_constraints] = STATE(966), + [sym_enum_class_body] = STATE(1147), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4498), + [anon_sym_fun] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_this] = ACTIONS(4498), + [anon_sym_super] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4498), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_when] = ACTIONS(4498), + [anon_sym_try] = ACTIONS(4498), + [anon_sym_throw] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4500), + [anon_sym_continue_AT] = ACTIONS(4500), + [anon_sym_break_AT] = ACTIONS(4500), + [sym_real_literal] = ACTIONS(4500), + [sym_integer_literal] = ACTIONS(4498), + [sym_hex_literal] = ACTIONS(4500), + [sym_bin_literal] = ACTIONS(4500), + [anon_sym_true] = ACTIONS(4498), + [anon_sym_false] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4500), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4500), }, [928] = { - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4502), + [anon_sym_finally] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, [929] = { - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_type_constraints] = STATE(1125), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [930] = { - [sym_class_body] = STATE(1174), - [sym_type_constraints] = STATE(992), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_object] = ACTIONS(4142), + [anon_sym_fun] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_this] = ACTIONS(4142), + [anon_sym_super] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_QMARK_COLON] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_null] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_when] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4144), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4144), + [anon_sym_continue_AT] = ACTIONS(4144), + [anon_sym_break_AT] = ACTIONS(4144), + [sym_real_literal] = ACTIONS(4144), + [sym_integer_literal] = ACTIONS(4142), + [sym_hex_literal] = ACTIONS(4144), + [sym_bin_literal] = ACTIONS(4144), + [anon_sym_true] = ACTIONS(4142), + [anon_sym_false] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(4144), + [sym_safe_nav] = ACTIONS(4144), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4144), }, [931] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_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_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_catch] = ACTIONS(4495), - [anon_sym_finally] = 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_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), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), + [sym_type_constraints] = STATE(1126), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [932] = { - [sym__expression] = STATE(4268), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_when_condition] = STATE(8729), - [sym_range_test] = STATE(8860), - [sym_type_test] = STATE(8860), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__in_operator] = STATE(2157), - [sym__is_operator] = STATE(5802), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_in] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_BANGin] = ACTIONS(3822), - [anon_sym_is] = ACTIONS(3824), - [anon_sym_BANGis] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [aux_sym_type_constraints_repeat1] = STATE(932), + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(4510), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_object] = ACTIONS(4506), + [anon_sym_fun] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_this] = ACTIONS(4506), + [anon_sym_super] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [sym_label] = ACTIONS(4506), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_null] = ACTIONS(4506), + [anon_sym_if] = ACTIONS(4506), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_when] = ACTIONS(4506), + [anon_sym_try] = ACTIONS(4506), + [anon_sym_throw] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4506), + [anon_sym_continue] = ACTIONS(4506), + [anon_sym_break] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4508), + [anon_sym_continue_AT] = ACTIONS(4508), + [anon_sym_break_AT] = ACTIONS(4508), + [sym_real_literal] = ACTIONS(4508), + [sym_integer_literal] = ACTIONS(4506), + [sym_hex_literal] = ACTIONS(4508), + [sym_bin_literal] = ACTIONS(4508), + [anon_sym_true] = ACTIONS(4506), + [anon_sym_false] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4508), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4508), }, [933] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_constraints] = STATE(1128), + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [934] = { + [sym_type_constraints] = STATE(1023), + [sym_enum_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [935] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4499), - [anon_sym_get] = ACTIONS(4352), - [anon_sym_set] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4356), + [anon_sym_set] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -144382,1071 +144621,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [934] = { - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_object] = ACTIONS(4107), - [anon_sym_fun] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [anon_sym_this] = ACTIONS(4107), - [anon_sym_super] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4107), - [sym_label] = ACTIONS(4107), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_QMARK_COLON] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_PIPE_PIPE] = ACTIONS(4109), - [anon_sym_null] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_when] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_PLUS_EQ] = ACTIONS(4109), - [anon_sym_DASH_EQ] = ACTIONS(4109), - [anon_sym_STAR_EQ] = ACTIONS(4109), - [anon_sym_SLASH_EQ] = ACTIONS(4109), - [anon_sym_PERCENT_EQ] = ACTIONS(4109), - [anon_sym_BANG_EQ] = ACTIONS(4107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4109), - [anon_sym_EQ_EQ] = ACTIONS(4107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4109), - [anon_sym_LT_EQ] = ACTIONS(4109), - [anon_sym_GT_EQ] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_PERCENT] = ACTIONS(4107), - [anon_sym_as_QMARK] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4107), - [anon_sym_BANG_BANG] = ACTIONS(4109), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4109), - [anon_sym_continue_AT] = ACTIONS(4109), - [anon_sym_break_AT] = ACTIONS(4109), - [sym_real_literal] = ACTIONS(4109), - [sym_integer_literal] = ACTIONS(4107), - [sym_hex_literal] = ACTIONS(4109), - [sym_bin_literal] = ACTIONS(4109), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [anon_sym_SQUOTE] = ACTIONS(4109), - [sym__backtick_identifier] = ACTIONS(4109), - [sym__automatic_semicolon] = ACTIONS(4109), - [sym_safe_nav] = ACTIONS(4109), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4109), - }, - [935] = { - [sym_class_body] = STATE(1139), - [sym_type_constraints] = STATE(957), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), }, [936] = { - [sym_class_body] = STATE(1158), - [sym_type_constraints] = STATE(947), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), + [aux_sym_type_constraints_repeat1] = STATE(939), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [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(4519), + [anon_sym_by] = ACTIONS(4515), + [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_DOT] = 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_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), + [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), }, [937] = { - [sym_type_constraints] = STATE(1020), - [sym_enum_class_body] = STATE(1141), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), + [sym_class_body] = STATE(1140), + [sym_type_constraints] = STATE(986), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, [938] = { - [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_catch] = ACTIONS(4505), - [anon_sym_finally] = 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_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), - [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_type_constraints] = STATE(1127), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, [939] = { - [sym_class_body] = STATE(1174), - [sym_type_constraints] = STATE(992), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), - }, - [940] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_catch] = ACTIONS(4509), - [anon_sym_finally] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), - }, - [941] = { - [sym__alpha_identifier] = ACTIONS(4513), - [anon_sym_AT] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_as] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_COMMA] = ACTIONS(4515), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_object] = ACTIONS(4513), - [anon_sym_fun] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_SEMI] = ACTIONS(4515), - [anon_sym_get] = ACTIONS(4513), - [anon_sym_set] = ACTIONS(4513), - [anon_sym_this] = ACTIONS(4513), - [anon_sym_super] = ACTIONS(4513), - [sym__quest] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [sym_label] = ACTIONS(4513), - [anon_sym_in] = ACTIONS(4513), - [anon_sym_DOT_DOT] = ACTIONS(4515), - [anon_sym_QMARK_COLON] = ACTIONS(4515), - [anon_sym_AMP_AMP] = ACTIONS(4515), - [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_if] = ACTIONS(4513), - [anon_sym_else] = ACTIONS(4513), - [anon_sym_when] = ACTIONS(4513), - [anon_sym_try] = ACTIONS(4513), - [anon_sym_throw] = ACTIONS(4513), - [anon_sym_return] = ACTIONS(4513), - [anon_sym_continue] = ACTIONS(4513), - [anon_sym_break] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(4515), - [anon_sym_PLUS_EQ] = ACTIONS(4515), - [anon_sym_DASH_EQ] = ACTIONS(4515), - [anon_sym_STAR_EQ] = ACTIONS(4515), - [anon_sym_SLASH_EQ] = ACTIONS(4515), - [anon_sym_PERCENT_EQ] = ACTIONS(4515), - [anon_sym_BANG_EQ] = ACTIONS(4513), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4515), - [anon_sym_EQ_EQ] = ACTIONS(4513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4515), - [anon_sym_LT_EQ] = ACTIONS(4515), - [anon_sym_GT_EQ] = ACTIONS(4515), - [anon_sym_BANGin] = ACTIONS(4515), - [anon_sym_is] = ACTIONS(4513), - [anon_sym_BANGis] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_as_QMARK] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_BANG_BANG] = ACTIONS(4515), - [anon_sym_suspend] = ACTIONS(4513), - [anon_sym_sealed] = ACTIONS(4513), - [anon_sym_annotation] = ACTIONS(4513), - [anon_sym_data] = ACTIONS(4513), - [anon_sym_inner] = ACTIONS(4513), - [anon_sym_override] = ACTIONS(4513), - [anon_sym_lateinit] = ACTIONS(4513), - [anon_sym_public] = ACTIONS(4513), - [anon_sym_private] = ACTIONS(4513), - [anon_sym_internal] = ACTIONS(4513), - [anon_sym_protected] = ACTIONS(4513), - [anon_sym_tailrec] = ACTIONS(4513), - [anon_sym_operator] = ACTIONS(4513), - [anon_sym_infix] = ACTIONS(4513), - [anon_sym_inline] = ACTIONS(4513), - [anon_sym_external] = ACTIONS(4513), - [sym_property_modifier] = ACTIONS(4513), - [anon_sym_abstract] = ACTIONS(4513), - [anon_sym_final] = ACTIONS(4513), - [anon_sym_open] = ACTIONS(4513), - [anon_sym_vararg] = ACTIONS(4513), - [anon_sym_noinline] = ACTIONS(4513), - [anon_sym_crossinline] = ACTIONS(4513), - [anon_sym_expect] = ACTIONS(4513), - [anon_sym_actual] = ACTIONS(4513), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4515), - [anon_sym_continue_AT] = ACTIONS(4515), - [anon_sym_break_AT] = ACTIONS(4515), - [sym_real_literal] = ACTIONS(4515), - [sym_integer_literal] = ACTIONS(4513), - [sym_hex_literal] = ACTIONS(4515), - [sym_bin_literal] = ACTIONS(4515), - [anon_sym_true] = ACTIONS(4513), - [anon_sym_false] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4515), - [sym__backtick_identifier] = ACTIONS(4515), - [sym__automatic_semicolon] = ACTIONS(4515), - [sym_safe_nav] = ACTIONS(4515), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4515), - }, - [942] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_catch] = ACTIONS(4517), - [anon_sym_finally] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), - }, - [943] = { - [sym_type_constraints] = STATE(963), - [sym_enum_class_body] = STATE(1158), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), - }, - [944] = { + [aux_sym_type_constraints_repeat1] = STATE(932), [sym__alpha_identifier] = ACTIONS(4521), [anon_sym_AT] = ACTIONS(4523), - [anon_sym_COLON] = ACTIONS(4521), [anon_sym_LBRACK] = ACTIONS(4523), [anon_sym_as] = ACTIONS(4521), [anon_sym_EQ] = ACTIONS(4521), [anon_sym_LBRACE] = ACTIONS(4523), [anon_sym_RBRACE] = ACTIONS(4523), [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_by] = ACTIONS(4521), [anon_sym_LT] = ACTIONS(4521), [anon_sym_GT] = ACTIONS(4521), [anon_sym_where] = ACTIONS(4521), @@ -145540,7 +145045,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4523), }, - [945] = { + [940] = { + [sym_value_arguments] = STATE(1129), [sym__alpha_identifier] = ACTIONS(4525), [anon_sym_AT] = ACTIONS(4527), [anon_sym_LBRACK] = ACTIONS(4527), @@ -145550,7 +145056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4527), [anon_sym_LPAREN] = ACTIONS(4527), [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_by] = ACTIONS(4525), + [anon_sym_by] = ACTIONS(4529), [anon_sym_LT] = ACTIONS(4525), [anon_sym_GT] = ACTIONS(4525), [anon_sym_where] = ACTIONS(4525), @@ -145644,496 +145150,915 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4527), }, - [946] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [941] = { + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [942] = { + [sym_class_body] = STATE(1166), + [sym_type_constraints] = STATE(963), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [943] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1168), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [944] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(4539), [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_fun] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(4541), [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3084), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3082), + [anon_sym_super] = ACTIONS(3082), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(4557), [anon_sym_PLUS_EQ] = ACTIONS(3084), [anon_sym_DASH_EQ] = ACTIONS(3084), [anon_sym_STAR_EQ] = ACTIONS(3084), [anon_sym_SLASH_EQ] = ACTIONS(3084), [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3084), + [anon_sym_continue_AT] = ACTIONS(3084), + [anon_sym_break_AT] = ACTIONS(3084), + [sym_real_literal] = ACTIONS(3084), + [sym_integer_literal] = ACTIONS(3082), + [sym_hex_literal] = ACTIONS(3084), + [sym_bin_literal] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3084), }, - [947] = { - [sym_class_body] = STATE(1141), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), - }, - [948] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4531), - [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_DOT] = 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_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), - [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), - }, - [949] = { - [sym_class_body] = STATE(1197), - [sym__alpha_identifier] = ACTIONS(4533), - [anon_sym_AT] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_object] = ACTIONS(4533), - [anon_sym_fun] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SEMI] = ACTIONS(4535), - [anon_sym_get] = ACTIONS(4533), - [anon_sym_set] = ACTIONS(4533), - [anon_sym_this] = ACTIONS(4533), - [anon_sym_super] = ACTIONS(4533), - [anon_sym_STAR] = ACTIONS(4533), - [sym_label] = ACTIONS(4533), - [anon_sym_in] = ACTIONS(4533), - [anon_sym_DOT_DOT] = ACTIONS(4535), - [anon_sym_QMARK_COLON] = ACTIONS(4535), - [anon_sym_AMP_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4535), - [anon_sym_null] = ACTIONS(4533), - [anon_sym_if] = ACTIONS(4533), - [anon_sym_else] = ACTIONS(4533), - [anon_sym_when] = ACTIONS(4533), - [anon_sym_try] = ACTIONS(4533), - [anon_sym_throw] = ACTIONS(4533), - [anon_sym_return] = ACTIONS(4533), - [anon_sym_continue] = ACTIONS(4533), - [anon_sym_break] = ACTIONS(4533), - [anon_sym_COLON_COLON] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ] = ACTIONS(4533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4535), - [anon_sym_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_EQ] = ACTIONS(4535), - [anon_sym_BANGin] = ACTIONS(4535), - [anon_sym_is] = ACTIONS(4533), - [anon_sym_BANGis] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4533), - [anon_sym_PERCENT] = ACTIONS(4533), - [anon_sym_as_QMARK] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4533), - [anon_sym_BANG_BANG] = ACTIONS(4535), - [anon_sym_suspend] = ACTIONS(4533), - [anon_sym_sealed] = ACTIONS(4533), - [anon_sym_annotation] = ACTIONS(4533), - [anon_sym_data] = ACTIONS(4533), - [anon_sym_inner] = ACTIONS(4533), - [anon_sym_override] = ACTIONS(4533), - [anon_sym_lateinit] = ACTIONS(4533), - [anon_sym_public] = ACTIONS(4533), - [anon_sym_private] = ACTIONS(4533), - [anon_sym_internal] = ACTIONS(4533), - [anon_sym_protected] = ACTIONS(4533), - [anon_sym_tailrec] = ACTIONS(4533), - [anon_sym_operator] = ACTIONS(4533), - [anon_sym_infix] = ACTIONS(4533), - [anon_sym_inline] = ACTIONS(4533), - [anon_sym_external] = ACTIONS(4533), - [sym_property_modifier] = ACTIONS(4533), - [anon_sym_abstract] = ACTIONS(4533), - [anon_sym_final] = ACTIONS(4533), - [anon_sym_open] = ACTIONS(4533), - [anon_sym_vararg] = ACTIONS(4533), - [anon_sym_noinline] = ACTIONS(4533), - [anon_sym_crossinline] = ACTIONS(4533), - [anon_sym_expect] = ACTIONS(4533), - [anon_sym_actual] = ACTIONS(4533), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4535), - [anon_sym_continue_AT] = ACTIONS(4535), - [anon_sym_break_AT] = ACTIONS(4535), - [sym_real_literal] = ACTIONS(4535), - [sym_integer_literal] = ACTIONS(4533), - [sym_hex_literal] = ACTIONS(4535), - [sym_bin_literal] = ACTIONS(4535), - [anon_sym_true] = ACTIONS(4533), - [anon_sym_false] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4535), - [sym__backtick_identifier] = ACTIONS(4535), - [sym__automatic_semicolon] = ACTIONS(4535), - [sym_safe_nav] = ACTIONS(4535), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4535), + [945] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_object] = ACTIONS(4577), + [anon_sym_fun] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_this] = ACTIONS(4577), + [anon_sym_super] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4577), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_when] = ACTIONS(4577), + [anon_sym_try] = ACTIONS(4577), + [anon_sym_throw] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_suspend] = ACTIONS(4577), + [anon_sym_sealed] = ACTIONS(4577), + [anon_sym_annotation] = ACTIONS(4577), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_override] = ACTIONS(4577), + [anon_sym_lateinit] = ACTIONS(4577), + [anon_sym_public] = ACTIONS(4577), + [anon_sym_private] = ACTIONS(4577), + [anon_sym_internal] = ACTIONS(4577), + [anon_sym_protected] = ACTIONS(4577), + [anon_sym_tailrec] = ACTIONS(4577), + [anon_sym_operator] = ACTIONS(4577), + [anon_sym_infix] = ACTIONS(4577), + [anon_sym_inline] = ACTIONS(4577), + [anon_sym_external] = ACTIONS(4577), + [sym_property_modifier] = ACTIONS(4577), + [anon_sym_abstract] = ACTIONS(4577), + [anon_sym_final] = ACTIONS(4577), + [anon_sym_open] = ACTIONS(4577), + [anon_sym_vararg] = ACTIONS(4577), + [anon_sym_noinline] = ACTIONS(4577), + [anon_sym_crossinline] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4579), + [anon_sym_continue_AT] = ACTIONS(4579), + [anon_sym_break_AT] = ACTIONS(4579), + [sym_real_literal] = ACTIONS(4579), + [sym_integer_literal] = ACTIONS(4577), + [sym_hex_literal] = ACTIONS(4579), + [sym_bin_literal] = ACTIONS(4579), + [anon_sym_true] = ACTIONS(4577), + [anon_sym_false] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4579), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4579), }, - [950] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [946] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2990), + }, + [947] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [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_DOT] = 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_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), + [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), + }, + [948] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [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_by] = ACTIONS(4581), + [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_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_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4583), + [anon_sym_continue_AT] = ACTIONS(4583), + [anon_sym_break_AT] = ACTIONS(4583), + [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), + }, + [949] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3410), [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3392), + [anon_sym_as] = ACTIONS(3412), [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_COMMA] = ACTIONS(3061), [anon_sym_RPAREN] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3416), [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3426), [anon_sym_DASH_GT] = ACTIONS(3061), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3440), [anon_sym_PLUS_EQ] = ACTIONS(3061), [anon_sym_DASH_EQ] = ACTIONS(3061), [anon_sym_STAR_EQ] = ACTIONS(3061), [anon_sym_SLASH_EQ] = ACTIONS(3061), [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(3059), [anon_sym_sealed] = ACTIONS(3059), [anon_sym_annotation] = ACTIONS(3059), @@ -146161,741 +146086,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [951] = { - [sym__alpha_identifier] = ACTIONS(4537), - [anon_sym_AT] = ACTIONS(4539), - [anon_sym_COLON] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4537), - [anon_sym_EQ] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_COMMA] = ACTIONS(4539), - [anon_sym_LT] = ACTIONS(4537), - [anon_sym_GT] = ACTIONS(4537), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_object] = ACTIONS(4537), - [anon_sym_fun] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4537), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(4537), - [anon_sym_set] = ACTIONS(4537), - [anon_sym_this] = ACTIONS(4537), - [anon_sym_super] = ACTIONS(4537), - [anon_sym_STAR] = ACTIONS(4537), - [sym_label] = ACTIONS(4537), - [anon_sym_in] = ACTIONS(4537), - [anon_sym_DOT_DOT] = ACTIONS(4539), - [anon_sym_QMARK_COLON] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4539), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4537), - [anon_sym_if] = ACTIONS(4537), - [anon_sym_else] = ACTIONS(4537), - [anon_sym_when] = ACTIONS(4537), - [anon_sym_try] = ACTIONS(4537), - [anon_sym_throw] = ACTIONS(4537), - [anon_sym_return] = ACTIONS(4537), - [anon_sym_continue] = ACTIONS(4537), - [anon_sym_break] = ACTIONS(4537), - [anon_sym_COLON_COLON] = ACTIONS(4539), - [anon_sym_PLUS_EQ] = ACTIONS(4539), - [anon_sym_DASH_EQ] = ACTIONS(4539), - [anon_sym_STAR_EQ] = ACTIONS(4539), - [anon_sym_SLASH_EQ] = ACTIONS(4539), - [anon_sym_PERCENT_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4539), - [anon_sym_LT_EQ] = ACTIONS(4539), - [anon_sym_GT_EQ] = ACTIONS(4539), - [anon_sym_BANGin] = ACTIONS(4539), - [anon_sym_is] = ACTIONS(4537), - [anon_sym_BANGis] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_SLASH] = ACTIONS(4537), - [anon_sym_PERCENT] = ACTIONS(4537), - [anon_sym_as_QMARK] = ACTIONS(4539), - [anon_sym_PLUS_PLUS] = ACTIONS(4539), - [anon_sym_DASH_DASH] = ACTIONS(4539), - [anon_sym_BANG] = ACTIONS(4537), - [anon_sym_BANG_BANG] = ACTIONS(4539), - [anon_sym_suspend] = ACTIONS(4537), - [anon_sym_sealed] = ACTIONS(4537), - [anon_sym_annotation] = ACTIONS(4537), - [anon_sym_data] = ACTIONS(4537), - [anon_sym_inner] = ACTIONS(4537), - [anon_sym_override] = ACTIONS(4537), - [anon_sym_lateinit] = ACTIONS(4537), - [anon_sym_public] = ACTIONS(4537), - [anon_sym_private] = ACTIONS(4537), - [anon_sym_internal] = ACTIONS(4537), - [anon_sym_protected] = ACTIONS(4537), - [anon_sym_tailrec] = ACTIONS(4537), - [anon_sym_operator] = ACTIONS(4537), - [anon_sym_infix] = ACTIONS(4537), - [anon_sym_inline] = ACTIONS(4537), - [anon_sym_external] = ACTIONS(4537), - [sym_property_modifier] = ACTIONS(4537), - [anon_sym_abstract] = ACTIONS(4537), - [anon_sym_final] = ACTIONS(4537), - [anon_sym_open] = ACTIONS(4537), - [anon_sym_vararg] = ACTIONS(4537), - [anon_sym_noinline] = ACTIONS(4537), - [anon_sym_crossinline] = ACTIONS(4537), - [anon_sym_expect] = ACTIONS(4537), - [anon_sym_actual] = ACTIONS(4537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4539), - [anon_sym_continue_AT] = ACTIONS(4539), - [anon_sym_break_AT] = ACTIONS(4539), - [sym_real_literal] = ACTIONS(4539), - [sym_integer_literal] = ACTIONS(4537), - [sym_hex_literal] = ACTIONS(4539), - [sym_bin_literal] = ACTIONS(4539), - [anon_sym_true] = ACTIONS(4537), - [anon_sym_false] = ACTIONS(4537), - [anon_sym_SQUOTE] = ACTIONS(4539), - [sym__backtick_identifier] = ACTIONS(4539), - [sym__automatic_semicolon] = ACTIONS(4539), - [sym_safe_nav] = ACTIONS(4539), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4539), - }, - [952] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3020), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_RPAREN] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3020), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [953] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3005), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [954] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_object] = ACTIONS(3059), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3059), - [anon_sym_super] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_when] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3061), - [anon_sym_continue_AT] = ACTIONS(3061), - [anon_sym_break_AT] = ACTIONS(3061), - [sym_real_literal] = ACTIONS(3061), - [sym_integer_literal] = ACTIONS(3059), - [sym_hex_literal] = ACTIONS(3061), - [sym_bin_literal] = ACTIONS(3061), - [anon_sym_true] = ACTIONS(3059), - [anon_sym_false] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3061), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3061), - }, - [955] = { - [sym_enum_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [956] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(2994), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [957] = { - [sym_class_body] = STATE(1174), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [950] = { + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(4508), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_object] = ACTIONS(4506), + [anon_sym_fun] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_this] = ACTIONS(4506), + [anon_sym_super] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [sym_label] = ACTIONS(4506), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_null] = ACTIONS(4506), + [anon_sym_if] = ACTIONS(4506), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_when] = ACTIONS(4506), + [anon_sym_try] = ACTIONS(4506), + [anon_sym_throw] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4506), + [anon_sym_continue] = ACTIONS(4506), + [anon_sym_break] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4508), + [anon_sym_continue_AT] = ACTIONS(4508), + [anon_sym_break_AT] = ACTIONS(4508), + [sym_real_literal] = ACTIONS(4508), + [sym_integer_literal] = ACTIONS(4506), + [sym_hex_literal] = ACTIONS(4508), + [sym_bin_literal] = ACTIONS(4508), + [anon_sym_true] = ACTIONS(4506), + [anon_sym_false] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4508), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4508), }, - [958] = { + [951] = { [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), @@ -146903,6 +146203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4587), [anon_sym_LPAREN] = ACTIONS(4587), [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_by] = ACTIONS(4585), [anon_sym_LT] = ACTIONS(4585), [anon_sym_GT] = ACTIONS(4585), [anon_sym_where] = ACTIONS(4585), @@ -146996,10 +146297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4587), }, - [959] = { + [952] = { [sym__alpha_identifier] = ACTIONS(4589), [anon_sym_AT] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4589), [anon_sym_LBRACK] = ACTIONS(4591), [anon_sym_as] = ACTIONS(4589), [anon_sym_EQ] = ACTIONS(4589), @@ -147007,6 +146307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4591), [anon_sym_LPAREN] = ACTIONS(4591), [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_by] = ACTIONS(4589), [anon_sym_LT] = ACTIONS(4589), [anon_sym_GT] = ACTIONS(4589), [anon_sym_where] = ACTIONS(4589), @@ -147100,433 +146401,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4591), }, - [960] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3013), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [961] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3001), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(2999), - [anon_sym_sealed] = ACTIONS(2999), - [anon_sym_annotation] = ACTIONS(2999), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_lateinit] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_tailrec] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2999), - [sym_property_modifier] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_vararg] = ACTIONS(2999), - [anon_sym_noinline] = ACTIONS(2999), - [anon_sym_crossinline] = ACTIONS(2999), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [962] = { - [sym_enum_class_body] = STATE(1158), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), - }, - [963] = { - [sym_enum_class_body] = STATE(1141), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), - }, - [964] = { - [sym_class_body] = STATE(1146), + [953] = { [sym__alpha_identifier] = ACTIONS(4593), [anon_sym_AT] = ACTIONS(4595), [anon_sym_LBRACK] = ACTIONS(4595), [anon_sym_as] = ACTIONS(4593), [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(4595), [anon_sym_RBRACE] = ACTIONS(4595), [anon_sym_LPAREN] = ACTIONS(4595), [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_by] = ACTIONS(4593), [anon_sym_LT] = ACTIONS(4593), [anon_sym_GT] = ACTIONS(4593), [anon_sym_where] = ACTIONS(4593), @@ -147620,7 +146505,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4595), }, - [965] = { + [954] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(4529), + [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_DOT] = 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_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), + [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), + }, + [955] = { [sym__alpha_identifier] = ACTIONS(4597), [anon_sym_AT] = ACTIONS(4599), [anon_sym_COLON] = ACTIONS(4597), @@ -147724,217 +146713,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4599), }, - [966] = { - [sym_class_body] = STATE(1139), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), - }, - [967] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3022), + [956] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3024), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), + [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(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3015), }, - [968] = { + [957] = { [sym__alpha_identifier] = ACTIONS(4601), [anon_sym_AT] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4601), [anon_sym_LBRACK] = ACTIONS(4603), [anon_sym_as] = ACTIONS(4601), [anon_sym_EQ] = ACTIONS(4601), @@ -147942,7 +146828,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4603), [anon_sym_LPAREN] = ACTIONS(4603), [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_by] = ACTIONS(4601), [anon_sym_LT] = ACTIONS(4601), [anon_sym_GT] = ACTIONS(4601), [anon_sym_where] = ACTIONS(4601), @@ -148036,391 +146921,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4603), }, - [969] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3084), - [anon_sym_continue_AT] = ACTIONS(3084), - [anon_sym_break_AT] = ACTIONS(3084), - [sym_real_literal] = ACTIONS(3084), - [sym_integer_literal] = ACTIONS(3082), - [sym_hex_literal] = ACTIONS(3084), - [sym_bin_literal] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3084), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3084), - }, - [970] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), - }, - [971] = { - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [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_DOT] = 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_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), - [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), + [958] = { + [sym__alpha_identifier] = ACTIONS(4605), + [anon_sym_AT] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4605), + [anon_sym_LBRACK] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4605), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_where] = ACTIONS(4605), + [anon_sym_object] = ACTIONS(4605), + [anon_sym_fun] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4605), + [anon_sym_set] = ACTIONS(4605), + [anon_sym_this] = ACTIONS(4605), + [anon_sym_super] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4605), + [sym_label] = ACTIONS(4605), + [anon_sym_in] = ACTIONS(4605), + [anon_sym_DOT_DOT] = ACTIONS(4607), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4607), + [anon_sym_PIPE_PIPE] = ACTIONS(4607), + [anon_sym_null] = ACTIONS(4605), + [anon_sym_if] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(4605), + [anon_sym_when] = ACTIONS(4605), + [anon_sym_try] = ACTIONS(4605), + [anon_sym_throw] = ACTIONS(4605), + [anon_sym_return] = ACTIONS(4605), + [anon_sym_continue] = ACTIONS(4605), + [anon_sym_break] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(4607), + [anon_sym_PLUS_EQ] = ACTIONS(4607), + [anon_sym_DASH_EQ] = ACTIONS(4607), + [anon_sym_STAR_EQ] = ACTIONS(4607), + [anon_sym_SLASH_EQ] = ACTIONS(4607), + [anon_sym_PERCENT_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4607), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_BANGin] = ACTIONS(4607), + [anon_sym_is] = ACTIONS(4605), + [anon_sym_BANGis] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4605), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4605), + [anon_sym_PERCENT] = ACTIONS(4605), + [anon_sym_as_QMARK] = ACTIONS(4607), + [anon_sym_PLUS_PLUS] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4605), + [anon_sym_BANG_BANG] = ACTIONS(4607), + [anon_sym_suspend] = ACTIONS(4605), + [anon_sym_sealed] = ACTIONS(4605), + [anon_sym_annotation] = ACTIONS(4605), + [anon_sym_data] = ACTIONS(4605), + [anon_sym_inner] = ACTIONS(4605), + [anon_sym_override] = ACTIONS(4605), + [anon_sym_lateinit] = ACTIONS(4605), + [anon_sym_public] = ACTIONS(4605), + [anon_sym_private] = ACTIONS(4605), + [anon_sym_internal] = ACTIONS(4605), + [anon_sym_protected] = ACTIONS(4605), + [anon_sym_tailrec] = ACTIONS(4605), + [anon_sym_operator] = ACTIONS(4605), + [anon_sym_infix] = ACTIONS(4605), + [anon_sym_inline] = ACTIONS(4605), + [anon_sym_external] = ACTIONS(4605), + [sym_property_modifier] = ACTIONS(4605), + [anon_sym_abstract] = ACTIONS(4605), + [anon_sym_final] = ACTIONS(4605), + [anon_sym_open] = ACTIONS(4605), + [anon_sym_vararg] = ACTIONS(4605), + [anon_sym_noinline] = ACTIONS(4605), + [anon_sym_crossinline] = ACTIONS(4605), + [anon_sym_expect] = ACTIONS(4605), + [anon_sym_actual] = ACTIONS(4605), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4607), + [anon_sym_continue_AT] = ACTIONS(4607), + [anon_sym_break_AT] = ACTIONS(4607), + [sym_real_literal] = ACTIONS(4607), + [sym_integer_literal] = ACTIONS(4605), + [sym_hex_literal] = ACTIONS(4607), + [sym_bin_literal] = ACTIONS(4607), + [anon_sym_true] = ACTIONS(4605), + [anon_sym_false] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4607), + [sym__backtick_identifier] = ACTIONS(4607), + [sym__automatic_semicolon] = ACTIONS(4607), + [sym_safe_nav] = ACTIONS(4607), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4607), }, - [972] = { - [sym_getter] = STATE(8867), - [sym_setter] = STATE(8867), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8834), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [959] = { + [sym_getter] = STATE(8697), + [sym_setter] = STATE(8697), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8820), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4605), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -148448,947 +147125,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [973] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), - }, - [974] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3031), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [975] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3038), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [976] = { - [sym__alpha_identifier] = ACTIONS(4611), - [anon_sym_AT] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4611), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_where] = ACTIONS(4611), - [anon_sym_object] = ACTIONS(4611), - [anon_sym_fun] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_get] = ACTIONS(4611), - [anon_sym_set] = ACTIONS(4611), - [anon_sym_this] = ACTIONS(4611), - [anon_sym_super] = ACTIONS(4611), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4611), - [anon_sym_in] = ACTIONS(4611), - [anon_sym_DOT_DOT] = ACTIONS(4613), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4613), - [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), - [anon_sym_if] = ACTIONS(4611), - [anon_sym_else] = ACTIONS(4611), - [anon_sym_when] = ACTIONS(4611), - [anon_sym_try] = ACTIONS(4611), - [anon_sym_throw] = ACTIONS(4611), - [anon_sym_return] = ACTIONS(4611), - [anon_sym_continue] = ACTIONS(4611), - [anon_sym_break] = ACTIONS(4611), - [anon_sym_COLON_COLON] = ACTIONS(4613), - [anon_sym_PLUS_EQ] = ACTIONS(4613), - [anon_sym_DASH_EQ] = ACTIONS(4613), - [anon_sym_STAR_EQ] = ACTIONS(4613), - [anon_sym_SLASH_EQ] = ACTIONS(4613), - [anon_sym_PERCENT_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4613), - [anon_sym_LT_EQ] = ACTIONS(4613), - [anon_sym_GT_EQ] = ACTIONS(4613), - [anon_sym_BANGin] = ACTIONS(4613), - [anon_sym_is] = ACTIONS(4611), - [anon_sym_BANGis] = ACTIONS(4613), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4611), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4613), - [anon_sym_PLUS_PLUS] = ACTIONS(4613), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4611), - [anon_sym_BANG_BANG] = ACTIONS(4613), - [anon_sym_suspend] = ACTIONS(4611), - [anon_sym_sealed] = ACTIONS(4611), - [anon_sym_annotation] = ACTIONS(4611), - [anon_sym_data] = ACTIONS(4611), - [anon_sym_inner] = ACTIONS(4611), - [anon_sym_override] = ACTIONS(4611), - [anon_sym_lateinit] = ACTIONS(4611), - [anon_sym_public] = ACTIONS(4611), - [anon_sym_private] = ACTIONS(4611), - [anon_sym_internal] = ACTIONS(4611), - [anon_sym_protected] = ACTIONS(4611), - [anon_sym_tailrec] = ACTIONS(4611), - [anon_sym_operator] = ACTIONS(4611), - [anon_sym_infix] = ACTIONS(4611), - [anon_sym_inline] = ACTIONS(4611), - [anon_sym_external] = ACTIONS(4611), - [sym_property_modifier] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4611), - [anon_sym_final] = ACTIONS(4611), - [anon_sym_open] = ACTIONS(4611), - [anon_sym_vararg] = ACTIONS(4611), - [anon_sym_noinline] = ACTIONS(4611), - [anon_sym_crossinline] = ACTIONS(4611), - [anon_sym_expect] = ACTIONS(4611), - [anon_sym_actual] = ACTIONS(4611), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4613), - [anon_sym_continue_AT] = ACTIONS(4613), - [anon_sym_break_AT] = ACTIONS(4613), - [sym_real_literal] = ACTIONS(4613), - [sym_integer_literal] = ACTIONS(4611), - [sym_hex_literal] = ACTIONS(4613), - [sym_bin_literal] = ACTIONS(4613), - [anon_sym_true] = ACTIONS(4611), - [anon_sym_false] = ACTIONS(4611), - [anon_sym_SQUOTE] = ACTIONS(4613), - [sym__backtick_identifier] = ACTIONS(4613), - [sym__automatic_semicolon] = ACTIONS(4613), - [sym_safe_nav] = ACTIONS(4613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4613), - }, - [977] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3065), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3063), - [anon_sym_sealed] = ACTIONS(3063), - [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_lateinit] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_tailrec] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym_external] = ACTIONS(3063), - [sym_property_modifier] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_vararg] = ACTIONS(3063), - [anon_sym_noinline] = ACTIONS(3063), - [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [978] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), - }, - [979] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [980] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), - }, - [981] = { - [sym_class_body] = STATE(1158), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), }, - [982] = { + [960] = { [sym__alpha_identifier] = ACTIONS(4615), [anon_sym_AT] = ACTIONS(4617), [anon_sym_COLON] = ACTIONS(4615), @@ -149492,17 +147233,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4617), }, - [983] = { + [961] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3026), + }, + [962] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3004), + }, + [963] = { + [sym_class_body] = STATE(1197), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(3128), + [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_DOT] = 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_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_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), + [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), + }, + [964] = { + [sym_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [965] = { + [sym_enum_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [966] = { + [sym_enum_class_body] = STATE(1142), [sym__alpha_identifier] = ACTIONS(4619), [anon_sym_AT] = ACTIONS(4621), [anon_sym_LBRACK] = ACTIONS(4621), [anon_sym_as] = ACTIONS(4619), [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4621), + [anon_sym_LBRACE] = ACTIONS(3158), [anon_sym_RBRACE] = ACTIONS(4621), [anon_sym_LPAREN] = ACTIONS(4621), [anon_sym_COMMA] = ACTIONS(4621), - [anon_sym_by] = ACTIONS(4619), [anon_sym_LT] = ACTIONS(4619), [anon_sym_GT] = ACTIONS(4619), [anon_sym_where] = ACTIONS(4619), @@ -149596,160 +147857,1304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4621), }, - [984] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [967] = { + [sym_enum_class_body] = STATE(1147), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_object] = ACTIONS(4498), + [anon_sym_fun] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_this] = ACTIONS(4498), + [anon_sym_super] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4498), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_when] = ACTIONS(4498), + [anon_sym_try] = ACTIONS(4498), + [anon_sym_throw] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4500), + [anon_sym_continue_AT] = ACTIONS(4500), + [anon_sym_break_AT] = ACTIONS(4500), + [sym_real_literal] = ACTIONS(4500), + [sym_integer_literal] = ACTIONS(4498), + [sym_hex_literal] = ACTIONS(4500), + [sym_bin_literal] = ACTIONS(4500), + [anon_sym_true] = ACTIONS(4498), + [anon_sym_false] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4500), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4500), + }, + [968] = { + [sym_class_body] = STATE(1154), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_object] = ACTIONS(4623), + [anon_sym_fun] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_this] = ACTIONS(4623), + [anon_sym_super] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_null] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_try] = ACTIONS(4623), + [anon_sym_throw] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4625), + [anon_sym_continue_AT] = ACTIONS(4625), + [anon_sym_break_AT] = ACTIONS(4625), + [sym_real_literal] = ACTIONS(4625), + [sym_integer_literal] = ACTIONS(4623), + [sym_hex_literal] = ACTIONS(4625), + [sym_bin_literal] = ACTIONS(4625), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4625), + }, + [969] = { + [sym_enum_class_body] = STATE(1154), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_object] = ACTIONS(4623), + [anon_sym_fun] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_this] = ACTIONS(4623), + [anon_sym_super] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_null] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_try] = ACTIONS(4623), + [anon_sym_throw] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4625), + [anon_sym_continue_AT] = ACTIONS(4625), + [anon_sym_break_AT] = ACTIONS(4625), + [sym_real_literal] = ACTIONS(4625), + [sym_integer_literal] = ACTIONS(4623), + [sym_hex_literal] = ACTIONS(4625), + [sym_bin_literal] = ACTIONS(4625), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4625), + }, + [970] = { + [sym__alpha_identifier] = ACTIONS(4627), + [anon_sym_AT] = ACTIONS(4629), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_as] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4629), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [anon_sym_COMMA] = ACTIONS(4629), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_where] = ACTIONS(4627), + [anon_sym_object] = ACTIONS(4627), + [anon_sym_fun] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(4627), + [anon_sym_set] = ACTIONS(4627), + [anon_sym_this] = ACTIONS(4627), + [anon_sym_super] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [sym_label] = ACTIONS(4627), + [anon_sym_in] = ACTIONS(4627), + [anon_sym_DOT_DOT] = ACTIONS(4629), + [anon_sym_QMARK_COLON] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [anon_sym_null] = ACTIONS(4627), + [anon_sym_if] = ACTIONS(4627), + [anon_sym_else] = ACTIONS(4627), + [anon_sym_when] = ACTIONS(4627), + [anon_sym_try] = ACTIONS(4627), + [anon_sym_throw] = ACTIONS(4627), + [anon_sym_return] = ACTIONS(4627), + [anon_sym_continue] = ACTIONS(4627), + [anon_sym_break] = ACTIONS(4627), + [anon_sym_COLON_COLON] = ACTIONS(4629), + [anon_sym_PLUS_EQ] = ACTIONS(4629), + [anon_sym_DASH_EQ] = ACTIONS(4629), + [anon_sym_STAR_EQ] = ACTIONS(4629), + [anon_sym_SLASH_EQ] = ACTIONS(4629), + [anon_sym_PERCENT_EQ] = ACTIONS(4629), + [anon_sym_BANG_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_BANGin] = ACTIONS(4629), + [anon_sym_is] = ACTIONS(4627), + [anon_sym_BANGis] = ACTIONS(4629), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4629), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_BANG_BANG] = ACTIONS(4629), + [anon_sym_suspend] = ACTIONS(4627), + [anon_sym_sealed] = ACTIONS(4627), + [anon_sym_annotation] = ACTIONS(4627), + [anon_sym_data] = ACTIONS(4627), + [anon_sym_inner] = ACTIONS(4627), + [anon_sym_override] = ACTIONS(4627), + [anon_sym_lateinit] = ACTIONS(4627), + [anon_sym_public] = ACTIONS(4627), + [anon_sym_private] = ACTIONS(4627), + [anon_sym_internal] = ACTIONS(4627), + [anon_sym_protected] = ACTIONS(4627), + [anon_sym_tailrec] = ACTIONS(4627), + [anon_sym_operator] = ACTIONS(4627), + [anon_sym_infix] = ACTIONS(4627), + [anon_sym_inline] = ACTIONS(4627), + [anon_sym_external] = ACTIONS(4627), + [sym_property_modifier] = ACTIONS(4627), + [anon_sym_abstract] = ACTIONS(4627), + [anon_sym_final] = ACTIONS(4627), + [anon_sym_open] = ACTIONS(4627), + [anon_sym_vararg] = ACTIONS(4627), + [anon_sym_noinline] = ACTIONS(4627), + [anon_sym_crossinline] = ACTIONS(4627), + [anon_sym_expect] = ACTIONS(4627), + [anon_sym_actual] = ACTIONS(4627), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4629), + [anon_sym_continue_AT] = ACTIONS(4629), + [anon_sym_break_AT] = ACTIONS(4629), + [sym_real_literal] = ACTIONS(4629), + [sym_integer_literal] = ACTIONS(4627), + [sym_hex_literal] = ACTIONS(4629), + [sym_bin_literal] = ACTIONS(4629), + [anon_sym_true] = ACTIONS(4627), + [anon_sym_false] = ACTIONS(4627), + [anon_sym_SQUOTE] = ACTIONS(4629), + [sym__backtick_identifier] = ACTIONS(4629), + [sym__automatic_semicolon] = ACTIONS(4629), + [sym_safe_nav] = ACTIONS(4629), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4629), + }, + [971] = { + [sym_function_body] = STATE(1059), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [972] = { + [sym_getter] = STATE(8911), + [sym_setter] = STATE(8911), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8820), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4633), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [973] = { + [sym_enum_class_body] = STATE(1159), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_object] = ACTIONS(4482), + [anon_sym_fun] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_this] = ACTIONS(4482), + [anon_sym_super] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4482), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_when] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_throw] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4484), + [anon_sym_continue_AT] = ACTIONS(4484), + [anon_sym_break_AT] = ACTIONS(4484), + [sym_real_literal] = ACTIONS(4484), + [sym_integer_literal] = ACTIONS(4482), + [sym_hex_literal] = ACTIONS(4484), + [sym_bin_literal] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4484), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4484), + }, + [974] = { + [sym_class_body] = STATE(1168), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [975] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2997), }, - [985] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [976] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), + [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(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3045), + }, + [977] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(977), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [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(4639), + [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_DOT] = 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_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), + [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), + }, + [978] = { + [sym_enum_class_body] = STATE(1168), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [979] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), [anon_sym_where] = ACTIONS(3063), [anon_sym_object] = ACTIONS(3063), [anon_sym_fun] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4541), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), [anon_sym_this] = ACTIONS(3063), [anon_sym_super] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_null] = ACTIONS(3063), [anon_sym_if] = ACTIONS(3063), [anon_sym_else] = ACTIONS(3063), @@ -149759,34 +149164,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3063), [anon_sym_continue] = ACTIONS(3063), [anon_sym_break] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_COLON_COLON] = ACTIONS(4557), [anon_sym_PLUS_EQ] = ACTIONS(3065), [anon_sym_DASH_EQ] = ACTIONS(3065), [anon_sym_STAR_EQ] = ACTIONS(3065), [anon_sym_SLASH_EQ] = ACTIONS(3065), [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3065), [anon_sym_continue_AT] = ACTIONS(3065), @@ -149798,2207 +149203,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3063), [anon_sym_false] = ACTIONS(3063), [anon_sym_SQUOTE] = ACTIONS(3065), - [sym__backtick_identifier] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(3065), [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3065), }, - [986] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), - }, - [987] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [988] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3042), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [989] = { - [sym_enum_class_body] = STATE(1148), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3156), - [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_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), - [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), - }, - [990] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), - }, - [991] = { - [sym_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [992] = { - [sym_class_body] = STATE(1190), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_object] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_this] = ACTIONS(4400), - [anon_sym_super] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4400), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_when] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_throw] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4402), - [anon_sym_continue_AT] = ACTIONS(4402), - [anon_sym_break_AT] = ACTIONS(4402), - [sym_real_literal] = ACTIONS(4402), - [sym_integer_literal] = ACTIONS(4400), - [sym_hex_literal] = ACTIONS(4402), - [sym_bin_literal] = ACTIONS(4402), - [anon_sym_true] = ACTIONS(4400), - [anon_sym_false] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4402), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4402), - }, - [993] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(993), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [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(4629), - [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_DOT] = 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_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), - [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), - }, - [994] = { - [sym_function_body] = STATE(1105), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(4632), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [995] = { - [sym__alpha_identifier] = ACTIONS(4634), - [anon_sym_AT] = ACTIONS(4636), - [anon_sym_LBRACK] = ACTIONS(4636), - [anon_sym_as] = ACTIONS(4634), - [anon_sym_EQ] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4636), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4636), - [anon_sym_COMMA] = ACTIONS(4636), - [anon_sym_by] = ACTIONS(4634), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_where] = ACTIONS(4634), - [anon_sym_object] = ACTIONS(4634), - [anon_sym_fun] = ACTIONS(4634), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_SEMI] = ACTIONS(4636), - [anon_sym_get] = ACTIONS(4634), - [anon_sym_set] = ACTIONS(4634), - [anon_sym_this] = ACTIONS(4634), - [anon_sym_super] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4634), - [sym_label] = ACTIONS(4634), - [anon_sym_in] = ACTIONS(4634), - [anon_sym_DOT_DOT] = ACTIONS(4636), - [anon_sym_QMARK_COLON] = ACTIONS(4636), - [anon_sym_AMP_AMP] = ACTIONS(4636), - [anon_sym_PIPE_PIPE] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(4634), - [anon_sym_if] = ACTIONS(4634), - [anon_sym_else] = ACTIONS(4634), - [anon_sym_when] = ACTIONS(4634), - [anon_sym_try] = ACTIONS(4634), - [anon_sym_throw] = ACTIONS(4634), - [anon_sym_return] = ACTIONS(4634), - [anon_sym_continue] = ACTIONS(4634), - [anon_sym_break] = ACTIONS(4634), - [anon_sym_COLON_COLON] = ACTIONS(4636), - [anon_sym_PLUS_EQ] = ACTIONS(4636), - [anon_sym_DASH_EQ] = ACTIONS(4636), - [anon_sym_STAR_EQ] = ACTIONS(4636), - [anon_sym_SLASH_EQ] = ACTIONS(4636), - [anon_sym_PERCENT_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ] = ACTIONS(4634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4636), - [anon_sym_LT_EQ] = ACTIONS(4636), - [anon_sym_GT_EQ] = ACTIONS(4636), - [anon_sym_BANGin] = ACTIONS(4636), - [anon_sym_is] = ACTIONS(4634), - [anon_sym_BANGis] = ACTIONS(4636), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_SLASH] = ACTIONS(4634), - [anon_sym_PERCENT] = ACTIONS(4634), - [anon_sym_as_QMARK] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_BANG] = ACTIONS(4634), - [anon_sym_BANG_BANG] = ACTIONS(4636), - [anon_sym_suspend] = ACTIONS(4634), - [anon_sym_sealed] = ACTIONS(4634), - [anon_sym_annotation] = ACTIONS(4634), - [anon_sym_data] = ACTIONS(4634), - [anon_sym_inner] = ACTIONS(4634), - [anon_sym_override] = ACTIONS(4634), - [anon_sym_lateinit] = ACTIONS(4634), - [anon_sym_public] = ACTIONS(4634), - [anon_sym_private] = ACTIONS(4634), - [anon_sym_internal] = ACTIONS(4634), - [anon_sym_protected] = ACTIONS(4634), - [anon_sym_tailrec] = ACTIONS(4634), - [anon_sym_operator] = ACTIONS(4634), - [anon_sym_infix] = ACTIONS(4634), - [anon_sym_inline] = ACTIONS(4634), - [anon_sym_external] = ACTIONS(4634), - [sym_property_modifier] = ACTIONS(4634), - [anon_sym_abstract] = ACTIONS(4634), - [anon_sym_final] = ACTIONS(4634), - [anon_sym_open] = ACTIONS(4634), - [anon_sym_vararg] = ACTIONS(4634), - [anon_sym_noinline] = ACTIONS(4634), - [anon_sym_crossinline] = ACTIONS(4634), - [anon_sym_expect] = ACTIONS(4634), - [anon_sym_actual] = ACTIONS(4634), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4636), - [anon_sym_continue_AT] = ACTIONS(4636), - [anon_sym_break_AT] = ACTIONS(4636), - [sym_real_literal] = ACTIONS(4636), - [sym_integer_literal] = ACTIONS(4634), - [sym_hex_literal] = ACTIONS(4636), - [sym_bin_literal] = ACTIONS(4636), - [anon_sym_true] = ACTIONS(4634), - [anon_sym_false] = ACTIONS(4634), - [anon_sym_SQUOTE] = ACTIONS(4636), - [sym__backtick_identifier] = ACTIONS(4636), - [sym__automatic_semicolon] = ACTIONS(4636), - [sym_safe_nav] = ACTIONS(4636), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4636), - }, - [996] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), - }, - [997] = { - [sym__alpha_identifier] = ACTIONS(4638), - [anon_sym_AT] = ACTIONS(4640), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_as] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_COMMA] = ACTIONS(4640), - [anon_sym_LT] = ACTIONS(4638), - [anon_sym_GT] = ACTIONS(4638), - [anon_sym_where] = ACTIONS(4638), - [anon_sym_object] = ACTIONS(4638), - [anon_sym_fun] = ACTIONS(4638), - [anon_sym_DOT] = ACTIONS(4638), - [anon_sym_SEMI] = ACTIONS(4640), - [anon_sym_get] = ACTIONS(4638), - [anon_sym_set] = ACTIONS(4638), - [anon_sym_this] = ACTIONS(4638), - [anon_sym_super] = ACTIONS(4638), - [anon_sym_STAR] = ACTIONS(4638), - [sym_label] = ACTIONS(4638), - [anon_sym_in] = ACTIONS(4638), - [anon_sym_DOT_DOT] = ACTIONS(4640), - [anon_sym_QMARK_COLON] = ACTIONS(4640), - [anon_sym_AMP_AMP] = ACTIONS(4640), - [anon_sym_PIPE_PIPE] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4638), - [anon_sym_if] = ACTIONS(4638), - [anon_sym_else] = ACTIONS(4638), - [anon_sym_when] = ACTIONS(4638), - [anon_sym_try] = ACTIONS(4638), - [anon_sym_throw] = ACTIONS(4638), - [anon_sym_return] = ACTIONS(4638), - [anon_sym_continue] = ACTIONS(4638), - [anon_sym_break] = ACTIONS(4638), - [anon_sym_COLON_COLON] = ACTIONS(4640), - [anon_sym_PLUS_EQ] = ACTIONS(4640), - [anon_sym_DASH_EQ] = ACTIONS(4640), - [anon_sym_STAR_EQ] = ACTIONS(4640), - [anon_sym_SLASH_EQ] = ACTIONS(4640), - [anon_sym_PERCENT_EQ] = ACTIONS(4640), - [anon_sym_BANG_EQ] = ACTIONS(4638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4640), - [anon_sym_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4640), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_BANGin] = ACTIONS(4640), - [anon_sym_is] = ACTIONS(4638), - [anon_sym_BANGis] = ACTIONS(4640), - [anon_sym_PLUS] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_SLASH] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_as_QMARK] = ACTIONS(4640), - [anon_sym_PLUS_PLUS] = ACTIONS(4640), - [anon_sym_DASH_DASH] = ACTIONS(4640), - [anon_sym_BANG] = ACTIONS(4638), - [anon_sym_BANG_BANG] = ACTIONS(4640), - [anon_sym_suspend] = ACTIONS(4638), - [anon_sym_sealed] = ACTIONS(4638), - [anon_sym_annotation] = ACTIONS(4638), - [anon_sym_data] = ACTIONS(4638), - [anon_sym_inner] = ACTIONS(4638), - [anon_sym_override] = ACTIONS(4638), - [anon_sym_lateinit] = ACTIONS(4638), - [anon_sym_public] = ACTIONS(4638), - [anon_sym_private] = ACTIONS(4638), - [anon_sym_internal] = ACTIONS(4638), - [anon_sym_protected] = ACTIONS(4638), - [anon_sym_tailrec] = ACTIONS(4638), - [anon_sym_operator] = ACTIONS(4638), - [anon_sym_infix] = ACTIONS(4638), - [anon_sym_inline] = ACTIONS(4638), - [anon_sym_external] = ACTIONS(4638), - [sym_property_modifier] = ACTIONS(4638), - [anon_sym_abstract] = ACTIONS(4638), - [anon_sym_final] = ACTIONS(4638), - [anon_sym_open] = ACTIONS(4638), - [anon_sym_vararg] = ACTIONS(4638), - [anon_sym_noinline] = ACTIONS(4638), - [anon_sym_crossinline] = ACTIONS(4638), - [anon_sym_expect] = ACTIONS(4638), - [anon_sym_actual] = ACTIONS(4638), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4640), - [anon_sym_continue_AT] = ACTIONS(4640), - [anon_sym_break_AT] = ACTIONS(4640), - [sym_real_literal] = ACTIONS(4640), - [sym_integer_literal] = ACTIONS(4638), - [sym_hex_literal] = ACTIONS(4640), - [sym_bin_literal] = ACTIONS(4640), - [anon_sym_L] = ACTIONS(4642), - [anon_sym_true] = ACTIONS(4638), - [anon_sym_false] = ACTIONS(4638), - [anon_sym_SQUOTE] = ACTIONS(4640), - [sym__backtick_identifier] = ACTIONS(4640), - [sym__automatic_semicolon] = ACTIONS(4640), - [sym_safe_nav] = ACTIONS(4640), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4640), - }, - [998] = { - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [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(4462), - [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_DOT] = 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_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), - [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), - }, - [999] = { - [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_by] = ACTIONS(4644), - [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_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), - [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), - }, - [1000] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), - }, - [1001] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), - }, - [1002] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), - }, - [1003] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), - }, - [1004] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), - }, - [1005] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [980] = { + [sym_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_object] = ACTIONS(4642), + [anon_sym_fun] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_this] = ACTIONS(4642), + [anon_sym_super] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4642), + [anon_sym_if] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_when] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4642), + [anon_sym_throw] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_continue] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_suspend] = ACTIONS(4642), + [anon_sym_sealed] = ACTIONS(4642), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_lateinit] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_tailrec] = ACTIONS(4642), + [anon_sym_operator] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_inline] = ACTIONS(4642), + [anon_sym_external] = ACTIONS(4642), + [sym_property_modifier] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_vararg] = ACTIONS(4642), + [anon_sym_noinline] = ACTIONS(4642), + [anon_sym_crossinline] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4644), + [anon_sym_continue_AT] = ACTIONS(4644), + [anon_sym_break_AT] = ACTIONS(4644), + [sym_real_literal] = ACTIONS(4644), + [sym_integer_literal] = ACTIONS(4642), + [sym_hex_literal] = ACTIONS(4644), + [sym_bin_literal] = ACTIONS(4644), + [anon_sym_true] = ACTIONS(4642), + [anon_sym_false] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym__backtick_identifier] = ACTIONS(4644), + [sym__automatic_semicolon] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4644), }, - [1006] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_as] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(4648), - [anon_sym_LBRACE] = ACTIONS(4650), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4650), + [981] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(982), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), [anon_sym_COMMA] = ACTIONS(4650), - [anon_sym_LT] = ACTIONS(4648), - [anon_sym_GT] = ACTIONS(4648), - [anon_sym_where] = ACTIONS(4648), - [anon_sym_object] = ACTIONS(4648), - [anon_sym_fun] = ACTIONS(4648), - [anon_sym_DOT] = ACTIONS(4648), - [anon_sym_SEMI] = ACTIONS(4650), - [anon_sym_get] = ACTIONS(4648), - [anon_sym_set] = ACTIONS(4648), - [anon_sym_this] = ACTIONS(4648), - [anon_sym_super] = ACTIONS(4648), - [anon_sym_STAR] = ACTIONS(4648), - [sym_label] = ACTIONS(4648), - [anon_sym_in] = ACTIONS(4648), - [anon_sym_DOT_DOT] = ACTIONS(4650), - [anon_sym_QMARK_COLON] = ACTIONS(4650), - [anon_sym_AMP_AMP] = ACTIONS(4650), - [anon_sym_PIPE_PIPE] = ACTIONS(4650), - [anon_sym_null] = ACTIONS(4648), - [anon_sym_if] = ACTIONS(4648), - [anon_sym_else] = ACTIONS(4648), - [anon_sym_when] = ACTIONS(4648), - [anon_sym_try] = ACTIONS(4648), - [anon_sym_throw] = ACTIONS(4648), - [anon_sym_return] = ACTIONS(4648), - [anon_sym_continue] = ACTIONS(4648), - [anon_sym_break] = ACTIONS(4648), - [anon_sym_COLON_COLON] = ACTIONS(4650), - [anon_sym_PLUS_EQ] = ACTIONS(4650), - [anon_sym_DASH_EQ] = ACTIONS(4650), - [anon_sym_STAR_EQ] = ACTIONS(4650), - [anon_sym_SLASH_EQ] = ACTIONS(4650), - [anon_sym_PERCENT_EQ] = ACTIONS(4650), - [anon_sym_BANG_EQ] = ACTIONS(4648), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), - [anon_sym_EQ_EQ] = ACTIONS(4648), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), - [anon_sym_LT_EQ] = ACTIONS(4650), - [anon_sym_GT_EQ] = ACTIONS(4650), - [anon_sym_BANGin] = ACTIONS(4650), - [anon_sym_is] = ACTIONS(4648), - [anon_sym_BANGis] = ACTIONS(4650), - [anon_sym_PLUS] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_as_QMARK] = ACTIONS(4650), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_BANG] = ACTIONS(4648), - [anon_sym_BANG_BANG] = ACTIONS(4650), - [anon_sym_suspend] = ACTIONS(4648), - [anon_sym_sealed] = ACTIONS(4648), - [anon_sym_annotation] = ACTIONS(4648), - [anon_sym_data] = ACTIONS(4648), - [anon_sym_inner] = ACTIONS(4648), - [anon_sym_override] = ACTIONS(4648), - [anon_sym_lateinit] = ACTIONS(4648), - [anon_sym_public] = ACTIONS(4648), - [anon_sym_private] = ACTIONS(4648), - [anon_sym_internal] = ACTIONS(4648), - [anon_sym_protected] = ACTIONS(4648), - [anon_sym_tailrec] = ACTIONS(4648), - [anon_sym_operator] = ACTIONS(4648), - [anon_sym_infix] = ACTIONS(4648), - [anon_sym_inline] = ACTIONS(4648), - [anon_sym_external] = ACTIONS(4648), - [sym_property_modifier] = ACTIONS(4648), - [anon_sym_abstract] = ACTIONS(4648), - [anon_sym_final] = ACTIONS(4648), - [anon_sym_open] = ACTIONS(4648), - [anon_sym_vararg] = ACTIONS(4648), - [anon_sym_noinline] = ACTIONS(4648), - [anon_sym_crossinline] = ACTIONS(4648), - [anon_sym_expect] = ACTIONS(4648), - [anon_sym_actual] = ACTIONS(4648), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4650), - [anon_sym_continue_AT] = ACTIONS(4650), - [anon_sym_break_AT] = ACTIONS(4650), - [sym_real_literal] = ACTIONS(4650), - [sym_integer_literal] = ACTIONS(4648), - [sym_hex_literal] = ACTIONS(4650), - [sym_bin_literal] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4648), - [anon_sym_false] = ACTIONS(4648), - [anon_sym_SQUOTE] = ACTIONS(4650), - [sym__backtick_identifier] = ACTIONS(4650), - [sym__automatic_semicolon] = ACTIONS(4650), - [sym_safe_nav] = ACTIONS(4650), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4650), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_object] = ACTIONS(4646), + [anon_sym_fun] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_this] = ACTIONS(4646), + [anon_sym_super] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4646), + [anon_sym_if] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_when] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4646), + [anon_sym_throw] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4646), + [anon_sym_continue] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4648), + [anon_sym_DASH_EQ] = ACTIONS(4648), + [anon_sym_STAR_EQ] = ACTIONS(4648), + [anon_sym_SLASH_EQ] = ACTIONS(4648), + [anon_sym_PERCENT_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4646), + [anon_sym_sealed] = ACTIONS(4646), + [anon_sym_annotation] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_lateinit] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_protected] = ACTIONS(4646), + [anon_sym_tailrec] = ACTIONS(4646), + [anon_sym_operator] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_inline] = ACTIONS(4646), + [anon_sym_external] = ACTIONS(4646), + [sym_property_modifier] = ACTIONS(4646), + [anon_sym_abstract] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_vararg] = ACTIONS(4646), + [anon_sym_noinline] = ACTIONS(4646), + [anon_sym_crossinline] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4648), + [anon_sym_continue_AT] = ACTIONS(4648), + [anon_sym_break_AT] = ACTIONS(4648), + [sym_real_literal] = ACTIONS(4648), + [sym_integer_literal] = ACTIONS(4646), + [sym_hex_literal] = ACTIONS(4648), + [sym_bin_literal] = ACTIONS(4648), + [anon_sym_true] = ACTIONS(4646), + [anon_sym_false] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4648), + [sym__automatic_semicolon] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4648), }, - [1007] = { - [sym_class_body] = STATE(1129), + [982] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(977), [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(3180), + [anon_sym_LBRACE] = ACTIONS(4654), [anon_sym_RBRACE] = ACTIONS(4654), [anon_sym_LPAREN] = ACTIONS(4654), - [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4650), [anon_sym_LT] = ACTIONS(4652), [anon_sym_GT] = ACTIONS(4652), [anon_sym_where] = ACTIONS(4652), @@ -152092,17 +149521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4654), }, - [1008] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1010), + [983] = { [sym__alpha_identifier] = ACTIONS(4656), [anon_sym_AT] = ACTIONS(4658), + [anon_sym_COLON] = ACTIONS(4656), [anon_sym_LBRACK] = ACTIONS(4658), [anon_sym_as] = ACTIONS(4656), [anon_sym_EQ] = ACTIONS(4656), [anon_sym_LBRACE] = ACTIONS(4658), [anon_sym_RBRACE] = ACTIONS(4658), [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4658), [anon_sym_LT] = ACTIONS(4656), [anon_sym_GT] = ACTIONS(4656), [anon_sym_where] = ACTIONS(4656), @@ -152196,121 +149625,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4658), }, - [1009] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [984] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(977), + [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_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), + [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), + }, + [985] = { + [sym_enum_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [986] = { + [sym_class_body] = STATE(1166), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [987] = { + [sym_enum_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [988] = { + [sym_class_body] = STATE(1180), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), + }, + [989] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3046), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3076), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1010] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(993), + [990] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3065), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3063), + [anon_sym_sealed] = ACTIONS(3063), + [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3063), + [anon_sym_lateinit] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_internal] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_tailrec] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_infix] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_external] = ACTIONS(3063), + [sym_property_modifier] = ACTIONS(3063), + [anon_sym_abstract] = ACTIONS(3063), + [anon_sym_final] = ACTIONS(3063), + [anon_sym_open] = ACTIONS(3063), + [anon_sym_vararg] = ACTIONS(3063), + [anon_sym_noinline] = ACTIONS(3063), + [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [991] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3049), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [992] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [993] = { + [sym_class_body] = STATE(1188), [sym__alpha_identifier] = ACTIONS(4662), [anon_sym_AT] = ACTIONS(4664), [anon_sym_LBRACK] = ACTIONS(4664), [anon_sym_as] = ACTIONS(4662), [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(3128), [anon_sym_RBRACE] = ACTIONS(4664), [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4664), [anon_sym_LT] = ACTIONS(4662), [anon_sym_GT] = ACTIONS(4662), [anon_sym_where] = ACTIONS(4662), @@ -152404,911 +150665,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4664), }, - [1011] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [994] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_RPAREN] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3050), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1012] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3054), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3088), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3086), + [anon_sym_sealed] = ACTIONS(3086), + [anon_sym_annotation] = ACTIONS(3086), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_lateinit] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_internal] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_tailrec] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_infix] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_external] = ACTIONS(3086), + [sym_property_modifier] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_open] = ACTIONS(3086), + [anon_sym_vararg] = ACTIONS(3086), + [anon_sym_noinline] = ACTIONS(3086), + [anon_sym_crossinline] = ACTIONS(3086), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1013] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3077), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1014] = { - [sym__alpha_identifier] = ACTIONS(4666), - [anon_sym_AT] = ACTIONS(4668), - [anon_sym_COLON] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4666), - [anon_sym_EQ] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4668), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_LPAREN] = ACTIONS(4668), - [anon_sym_COMMA] = ACTIONS(4668), - [anon_sym_LT] = ACTIONS(4666), - [anon_sym_GT] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_object] = ACTIONS(4666), - [anon_sym_fun] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_SEMI] = ACTIONS(4668), - [anon_sym_get] = ACTIONS(4666), - [anon_sym_set] = ACTIONS(4666), - [anon_sym_this] = ACTIONS(4666), - [anon_sym_super] = ACTIONS(4666), - [anon_sym_STAR] = ACTIONS(4666), - [sym_label] = ACTIONS(4666), - [anon_sym_in] = ACTIONS(4666), - [anon_sym_DOT_DOT] = ACTIONS(4668), - [anon_sym_QMARK_COLON] = ACTIONS(4668), - [anon_sym_AMP_AMP] = ACTIONS(4668), - [anon_sym_PIPE_PIPE] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(4666), - [anon_sym_if] = ACTIONS(4666), - [anon_sym_else] = ACTIONS(4666), - [anon_sym_when] = ACTIONS(4666), - [anon_sym_try] = ACTIONS(4666), - [anon_sym_throw] = ACTIONS(4666), - [anon_sym_return] = ACTIONS(4666), - [anon_sym_continue] = ACTIONS(4666), - [anon_sym_break] = ACTIONS(4666), - [anon_sym_COLON_COLON] = ACTIONS(4668), - [anon_sym_PLUS_EQ] = ACTIONS(4668), - [anon_sym_DASH_EQ] = ACTIONS(4668), - [anon_sym_STAR_EQ] = ACTIONS(4668), - [anon_sym_SLASH_EQ] = ACTIONS(4668), - [anon_sym_PERCENT_EQ] = ACTIONS(4668), - [anon_sym_BANG_EQ] = ACTIONS(4666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4668), - [anon_sym_EQ_EQ] = ACTIONS(4666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4668), - [anon_sym_LT_EQ] = ACTIONS(4668), - [anon_sym_GT_EQ] = ACTIONS(4668), - [anon_sym_BANGin] = ACTIONS(4668), - [anon_sym_is] = ACTIONS(4666), - [anon_sym_BANGis] = ACTIONS(4668), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_SLASH] = ACTIONS(4666), - [anon_sym_PERCENT] = ACTIONS(4666), - [anon_sym_as_QMARK] = ACTIONS(4668), - [anon_sym_PLUS_PLUS] = ACTIONS(4668), - [anon_sym_DASH_DASH] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(4666), - [anon_sym_BANG_BANG] = ACTIONS(4668), - [anon_sym_suspend] = ACTIONS(4666), - [anon_sym_sealed] = ACTIONS(4666), - [anon_sym_annotation] = ACTIONS(4666), - [anon_sym_data] = ACTIONS(4666), - [anon_sym_inner] = ACTIONS(4666), - [anon_sym_override] = ACTIONS(4666), - [anon_sym_lateinit] = ACTIONS(4666), - [anon_sym_public] = ACTIONS(4666), - [anon_sym_private] = ACTIONS(4666), - [anon_sym_internal] = ACTIONS(4666), - [anon_sym_protected] = ACTIONS(4666), - [anon_sym_tailrec] = ACTIONS(4666), - [anon_sym_operator] = ACTIONS(4666), - [anon_sym_infix] = ACTIONS(4666), - [anon_sym_inline] = ACTIONS(4666), - [anon_sym_external] = ACTIONS(4666), - [sym_property_modifier] = ACTIONS(4666), - [anon_sym_abstract] = ACTIONS(4666), - [anon_sym_final] = ACTIONS(4666), - [anon_sym_open] = ACTIONS(4666), - [anon_sym_vararg] = ACTIONS(4666), - [anon_sym_noinline] = ACTIONS(4666), - [anon_sym_crossinline] = ACTIONS(4666), - [anon_sym_expect] = ACTIONS(4666), - [anon_sym_actual] = ACTIONS(4666), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4668), - [anon_sym_continue_AT] = ACTIONS(4668), - [anon_sym_break_AT] = ACTIONS(4668), - [sym_real_literal] = ACTIONS(4668), - [sym_integer_literal] = ACTIONS(4666), - [sym_hex_literal] = ACTIONS(4668), - [sym_bin_literal] = ACTIONS(4668), - [anon_sym_true] = ACTIONS(4666), - [anon_sym_false] = ACTIONS(4666), - [anon_sym_SQUOTE] = ACTIONS(4668), - [sym__backtick_identifier] = ACTIONS(4668), - [sym__automatic_semicolon] = ACTIONS(4668), - [sym_safe_nav] = ACTIONS(4668), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4668), - }, - [1015] = { - [sym_enum_class_body] = STATE(1118), - [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(3156), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [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_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), - [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), - }, - [1016] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(2054), - [sym__in_operator] = STATE(1615), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1617), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1618), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_DASH_GT] = ACTIONS(3009), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_QMARK_COLON] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_PIPE_PIPE] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [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(3426), - [anon_sym_GT_EQ] = ACTIONS(3426), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [995] = { + [sym_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, - [1017] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_fun] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(2999), - [anon_sym_super] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_when] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(2999), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [996] = { + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3001), - [anon_sym_continue_AT] = ACTIONS(3001), - [anon_sym_break_AT] = ACTIONS(3001), - [sym_real_literal] = ACTIONS(3001), - [sym_integer_literal] = ACTIONS(2999), - [sym_hex_literal] = ACTIONS(3001), - [sym_bin_literal] = ACTIONS(3001), - [anon_sym_true] = ACTIONS(2999), - [anon_sym_false] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(3001), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), - [sym_safe_nav] = ACTIONS(4565), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3001), - }, - [1018] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4418), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), + [sym__string_start] = ACTIONS(3200), }, - [1019] = { - [sym_getter] = STATE(8838), - [sym_setter] = STATE(8838), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8834), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [997] = { + [sym_getter] = STATE(8874), + [sym_setter] = STATE(8874), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8820), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -153336,187 +151077,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1020] = { - [sym_enum_class_body] = STATE(1129), - [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(3156), - [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_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), - [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), + [998] = { + [sym__alpha_identifier] = ACTIONS(4668), + [anon_sym_AT] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_by] = ACTIONS(4668), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_where] = ACTIONS(4668), + [anon_sym_object] = ACTIONS(4668), + [anon_sym_fun] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(4668), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_this] = ACTIONS(4668), + [anon_sym_super] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4668), + [sym_label] = ACTIONS(4668), + [anon_sym_in] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4670), + [anon_sym_QMARK_COLON] = ACTIONS(4670), + [anon_sym_AMP_AMP] = ACTIONS(4670), + [anon_sym_PIPE_PIPE] = ACTIONS(4670), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_when] = ACTIONS(4668), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_throw] = ACTIONS(4668), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_COLON_COLON] = ACTIONS(4670), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_PERCENT_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4668), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ] = ACTIONS(4668), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4670), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_BANGin] = ACTIONS(4670), + [anon_sym_is] = ACTIONS(4668), + [anon_sym_BANGis] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_SLASH] = ACTIONS(4668), + [anon_sym_PERCENT] = ACTIONS(4668), + [anon_sym_as_QMARK] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4670), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_BANG_BANG] = ACTIONS(4670), + [anon_sym_suspend] = ACTIONS(4668), + [anon_sym_sealed] = ACTIONS(4668), + [anon_sym_annotation] = ACTIONS(4668), + [anon_sym_data] = ACTIONS(4668), + [anon_sym_inner] = ACTIONS(4668), + [anon_sym_override] = ACTIONS(4668), + [anon_sym_lateinit] = ACTIONS(4668), + [anon_sym_public] = ACTIONS(4668), + [anon_sym_private] = ACTIONS(4668), + [anon_sym_internal] = ACTIONS(4668), + [anon_sym_protected] = ACTIONS(4668), + [anon_sym_tailrec] = ACTIONS(4668), + [anon_sym_operator] = ACTIONS(4668), + [anon_sym_infix] = ACTIONS(4668), + [anon_sym_inline] = ACTIONS(4668), + [anon_sym_external] = ACTIONS(4668), + [sym_property_modifier] = ACTIONS(4668), + [anon_sym_abstract] = ACTIONS(4668), + [anon_sym_final] = ACTIONS(4668), + [anon_sym_open] = ACTIONS(4668), + [anon_sym_vararg] = ACTIONS(4668), + [anon_sym_noinline] = ACTIONS(4668), + [anon_sym_crossinline] = ACTIONS(4668), + [anon_sym_expect] = ACTIONS(4668), + [anon_sym_actual] = ACTIONS(4668), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4670), + [anon_sym_continue_AT] = ACTIONS(4670), + [anon_sym_break_AT] = ACTIONS(4670), + [sym_real_literal] = ACTIONS(4670), + [sym_integer_literal] = ACTIONS(4668), + [sym_hex_literal] = ACTIONS(4670), + [sym_bin_literal] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_SQUOTE] = ACTIONS(4670), + [sym__backtick_identifier] = ACTIONS(4670), + [sym__automatic_semicolon] = ACTIONS(4670), + [sym_safe_nav] = ACTIONS(4670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4670), }, - [1021] = { - [sym_getter] = STATE(8906), - [sym_setter] = STATE(8906), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8834), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), + [999] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), + [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(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3092), + }, + [1000] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [1001] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(2997), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1002] = { + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_COLON] = ACTIONS(4674), + [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_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(4607), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [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_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), + [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), + }, + [1003] = { + [sym_getter] = STATE(8927), + [sym_setter] = STATE(8927), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8820), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -153544,291 +151701,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1022] = { - [sym_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [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_DOT] = 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_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), - [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), + [1004] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3041), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [1023] = { - [sym_class_body] = STATE(1159), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_object] = ACTIONS(4404), - [anon_sym_fun] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_this] = ACTIONS(4404), - [anon_sym_super] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4404), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_when] = ACTIONS(4404), - [anon_sym_try] = ACTIONS(4404), - [anon_sym_throw] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4406), - [anon_sym_continue_AT] = ACTIONS(4406), - [anon_sym_break_AT] = ACTIONS(4406), - [sym_real_literal] = ACTIONS(4406), - [sym_integer_literal] = ACTIONS(4404), - [sym_hex_literal] = ACTIONS(4406), - [sym_bin_literal] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4404), - [anon_sym_false] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4406), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4406), + [1005] = { + [sym_class_body] = STATE(1140), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, - [1024] = { - [sym_getter] = STATE(8826), - [sym_setter] = STATE(8826), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8834), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1006] = { + [sym_getter] = STATE(8811), + [sym_setter] = STATE(8811), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8820), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4680), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -153856,434 +152013,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1025] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1007] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_RPAREN] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(4559), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [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(4571), - [anon_sym_GT_EQ] = ACTIONS(4571), - [anon_sym_BANGin] = ACTIONS(4573), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3092), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), }, - [1026] = { - [sym_enum_class_body] = STATE(1038), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [1008] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_object] = ACTIONS(4682), + [anon_sym_fun] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_this] = ACTIONS(4682), + [anon_sym_super] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_when] = ACTIONS(4682), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_throw] = ACTIONS(4682), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4684), + [anon_sym_continue_AT] = ACTIONS(4684), + [anon_sym_break_AT] = ACTIONS(4684), + [sym_real_literal] = ACTIONS(4684), + [sym_integer_literal] = ACTIONS(4682), + [sym_hex_literal] = ACTIONS(4684), + [sym_bin_literal] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_SQUOTE] = ACTIONS(4684), + [sym__backtick_identifier] = ACTIONS(4684), + [sym__automatic_semicolon] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4684), }, - [1027] = { - [sym_class_body] = STATE(1162), - [sym__alpha_identifier] = ACTIONS(4680), - [anon_sym_AT] = ACTIONS(4682), - [anon_sym_LBRACK] = ACTIONS(4682), - [anon_sym_as] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(4680), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_LPAREN] = ACTIONS(4682), - [anon_sym_COMMA] = ACTIONS(4682), - [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_DOT] = 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_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), - [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), + [1009] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3004), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [1028] = { - [sym_getter] = STATE(8659), - [sym_setter] = STATE(8659), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8834), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1010] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4684), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3045), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1029] = { + [1011] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3015), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1012] = { + [sym_class_body] = STATE(1182), [sym__alpha_identifier] = ACTIONS(4686), [anon_sym_AT] = ACTIONS(4688), - [anon_sym_COLON] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4688), [anon_sym_as] = ACTIONS(4686), [anon_sym_EQ] = ACTIONS(4686), - [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(3128), [anon_sym_RBRACE] = ACTIONS(4688), [anon_sym_LPAREN] = ACTIONS(4688), [anon_sym_COMMA] = ACTIONS(4688), @@ -154380,215 +152641,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4688), }, - [1030] = { - [sym_getter] = STATE(8897), - [sym_setter] = STATE(8897), - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_modifiers] = STATE(8834), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1013] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(4690), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(2990), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1031] = { - [sym_function_body] = STATE(1198), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4692), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), + [1014] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [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_by] = ACTIONS(4690), + [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_DOT] = 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_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), + [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), }, - [1032] = { + [1015] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3008), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1016] = { [sym__alpha_identifier] = ACTIONS(4694), [anon_sym_AT] = ACTIONS(4696), [anon_sym_LBRACK] = ACTIONS(4696), @@ -154692,9 +153057,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4696), }, - [1033] = { + [1017] = { [sym__alpha_identifier] = ACTIONS(4698), [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), [anon_sym_LBRACK] = ACTIONS(4700), [anon_sym_as] = ACTIONS(4698), [anon_sym_EQ] = ACTIONS(4698), @@ -154702,7 +153068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4700), [anon_sym_LPAREN] = ACTIONS(4700), [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_by] = ACTIONS(4698), [anon_sym_LT] = ACTIONS(4698), [anon_sym_GT] = ACTIONS(4698), [anon_sym_where] = ACTIONS(4698), @@ -154796,228 +153161,2305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4700), }, + [1018] = { + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4702), + [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_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_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), + [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), + }, + [1019] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3019), + }, + [1020] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(2986), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1021] = { + [sym_class_body] = STATE(1038), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_object] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_this] = ACTIONS(4410), + [anon_sym_super] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4410), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_when] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_throw] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4412), + [anon_sym_continue_AT] = ACTIONS(4412), + [anon_sym_break_AT] = ACTIONS(4412), + [sym_real_literal] = ACTIONS(4412), + [sym_integer_literal] = ACTIONS(4410), + [sym_hex_literal] = ACTIONS(4412), + [sym_bin_literal] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4410), + [anon_sym_false] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4412), + }, + [1022] = { + [sym_getter] = STATE(8881), + [sym_setter] = STATE(8881), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_modifiers] = STATE(8820), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1023] = { + [sym_enum_class_body] = STATE(1180), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), + }, + [1024] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_DASH_GT] = ACTIONS(3019), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1025] = { + [sym__alpha_identifier] = ACTIONS(4708), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_where] = ACTIONS(4708), + [anon_sym_object] = ACTIONS(4708), + [anon_sym_fun] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(4708), + [anon_sym_set] = ACTIONS(4708), + [anon_sym_this] = ACTIONS(4708), + [anon_sym_super] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4708), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_QMARK_COLON] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4708), + [anon_sym_if] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4708), + [anon_sym_when] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4708), + [anon_sym_throw] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4708), + [anon_sym_continue] = ACTIONS(4708), + [anon_sym_break] = ACTIONS(4708), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_STAR_EQ] = ACTIONS(4710), + [anon_sym_SLASH_EQ] = ACTIONS(4710), + [anon_sym_PERCENT_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_BANGin] = ACTIONS(4710), + [anon_sym_is] = ACTIONS(4708), + [anon_sym_BANGis] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_PERCENT] = ACTIONS(4708), + [anon_sym_as_QMARK] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4710), + [anon_sym_suspend] = ACTIONS(4708), + [anon_sym_sealed] = ACTIONS(4708), + [anon_sym_annotation] = ACTIONS(4708), + [anon_sym_data] = ACTIONS(4708), + [anon_sym_inner] = ACTIONS(4708), + [anon_sym_override] = ACTIONS(4708), + [anon_sym_lateinit] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(4708), + [anon_sym_internal] = ACTIONS(4708), + [anon_sym_protected] = ACTIONS(4708), + [anon_sym_tailrec] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(4708), + [anon_sym_infix] = ACTIONS(4708), + [anon_sym_inline] = ACTIONS(4708), + [anon_sym_external] = ACTIONS(4708), + [sym_property_modifier] = ACTIONS(4708), + [anon_sym_abstract] = ACTIONS(4708), + [anon_sym_final] = ACTIONS(4708), + [anon_sym_open] = ACTIONS(4708), + [anon_sym_vararg] = ACTIONS(4708), + [anon_sym_noinline] = ACTIONS(4708), + [anon_sym_crossinline] = ACTIONS(4708), + [anon_sym_expect] = ACTIONS(4708), + [anon_sym_actual] = ACTIONS(4708), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4710), + [anon_sym_continue_AT] = ACTIONS(4710), + [anon_sym_break_AT] = ACTIONS(4710), + [sym_real_literal] = ACTIONS(4710), + [sym_integer_literal] = ACTIONS(4708), + [sym_hex_literal] = ACTIONS(4710), + [sym_bin_literal] = ACTIONS(4710), + [anon_sym_L] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4708), + [anon_sym_false] = ACTIONS(4708), + [anon_sym_SQUOTE] = ACTIONS(4710), + [sym__backtick_identifier] = ACTIONS(4710), + [sym__automatic_semicolon] = ACTIONS(4710), + [sym_safe_nav] = ACTIONS(4710), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4710), + }, + [1026] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3026), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1027] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3072), + }, + [1028] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_fun] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3086), + [anon_sym_super] = ACTIONS(3086), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_when] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3088), + [anon_sym_continue_AT] = ACTIONS(3088), + [anon_sym_break_AT] = ACTIONS(3088), + [sym_real_literal] = ACTIONS(3088), + [sym_integer_literal] = ACTIONS(3086), + [sym_hex_literal] = ACTIONS(3088), + [sym_bin_literal] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3088), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3088), + }, + [1029] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2986), + }, + [1030] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3041), + }, + [1031] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3072), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1032] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3008), + }, + [1033] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3080), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, [1034] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(993), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4662), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_PLUS_EQ] = ACTIONS(4664), - [anon_sym_DASH_EQ] = ACTIONS(4664), - [anon_sym_STAR_EQ] = ACTIONS(4664), - [anon_sym_SLASH_EQ] = ACTIONS(4664), - [anon_sym_PERCENT_EQ] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4662), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_object] = ACTIONS(3059), + [anon_sym_fun] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3059), + [anon_sym_super] = ACTIONS(3059), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_when] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [anon_sym_return_AT] = ACTIONS(3061), + [anon_sym_continue_AT] = ACTIONS(3061), + [anon_sym_break_AT] = ACTIONS(3061), + [sym_real_literal] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(3059), + [sym_hex_literal] = ACTIONS(3061), + [sym_bin_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(3059), + [anon_sym_false] = ACTIONS(3059), + [anon_sym_SQUOTE] = ACTIONS(3061), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4664), + [sym__string_start] = ACTIONS(3061), }, [1035] = { - [sym_enum_class_body] = STATE(1131), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_object] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_this] = ACTIONS(4344), - [anon_sym_super] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4344), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_throw] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4346), - [anon_sym_continue_AT] = ACTIONS(4346), - [anon_sym_break_AT] = ACTIONS(4346), - [sym_real_literal] = ACTIONS(4346), - [sym_integer_literal] = ACTIONS(4344), - [sym_hex_literal] = ACTIONS(4346), - [sym_bin_literal] = ACTIONS(4346), - [anon_sym_true] = ACTIONS(4344), - [anon_sym_false] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4346), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4346), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1738), + [sym__in_operator] = STATE(1785), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1790), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1795), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_DASH_GT] = ACTIONS(3084), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_QMARK_COLON] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, [1036] = { - [sym_enum_class_body] = STATE(1122), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3076), + }, + [1037] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2194), + [sym__in_operator] = STATE(2205), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2215), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2242), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), + [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(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [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(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3049), + }, + [1038] = { + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4644), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_object] = ACTIONS(4642), + [anon_sym_fun] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_this] = ACTIONS(4642), + [anon_sym_super] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4642), + [anon_sym_if] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_when] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4642), + [anon_sym_throw] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_continue] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_suspend] = ACTIONS(4642), + [anon_sym_sealed] = ACTIONS(4642), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_lateinit] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_tailrec] = ACTIONS(4642), + [anon_sym_operator] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_inline] = ACTIONS(4642), + [anon_sym_external] = ACTIONS(4642), + [sym_property_modifier] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_vararg] = ACTIONS(4642), + [anon_sym_noinline] = ACTIONS(4642), + [anon_sym_crossinline] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4644), + [anon_sym_continue_AT] = ACTIONS(4644), + [anon_sym_break_AT] = ACTIONS(4644), + [sym_real_literal] = ACTIONS(4644), + [sym_integer_literal] = ACTIONS(4642), + [sym_hex_literal] = ACTIONS(4644), + [sym_bin_literal] = ACTIONS(4644), + [anon_sym_true] = ACTIONS(4642), + [anon_sym_false] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym__backtick_identifier] = ACTIONS(4644), + [sym__automatic_semicolon] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4644), + }, + [1039] = { + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [1040] = { + [sym_class_body] = STATE(1115), [sym__alpha_identifier] = ACTIONS(4390), [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4714), [anon_sym_LBRACK] = ACTIONS(4392), [anon_sym_as] = ACTIONS(4390), [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3128), [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), [anon_sym_LT] = ACTIONS(4390), [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), [anon_sym_object] = ACTIONS(4390), [anon_sym_fun] = ACTIONS(4390), [anon_sym_DOT] = ACTIONS(4390), @@ -155108,1038 +155550,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4392), }, - [1037] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1652), - [sym__in_operator] = STATE(1654), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1656), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1657), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(4557), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), - }, - [1038] = { - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4231), - [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_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), - [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), - }, - [1039] = { - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [1040] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, [1041] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), + [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_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_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), + [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), }, [1042] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(4710), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_suspend] = ACTIONS(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), + [sym__alpha_identifier] = ACTIONS(4282), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4282), + [anon_sym_GT] = ACTIONS(4282), + [anon_sym_where] = ACTIONS(4282), + [anon_sym_object] = ACTIONS(4282), + [anon_sym_fun] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4282), + [anon_sym_set] = ACTIONS(4282), + [anon_sym_this] = ACTIONS(4282), + [anon_sym_super] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [sym_label] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4282), + [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(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4282), + [anon_sym_when] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [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(4282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [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(4282), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_PERCENT] = ACTIONS(4282), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_suspend] = ACTIONS(4282), + [anon_sym_sealed] = ACTIONS(4282), + [anon_sym_annotation] = ACTIONS(4282), + [anon_sym_data] = ACTIONS(4282), + [anon_sym_inner] = ACTIONS(4282), + [anon_sym_override] = ACTIONS(4282), + [anon_sym_lateinit] = ACTIONS(4282), + [anon_sym_public] = ACTIONS(4282), + [anon_sym_private] = ACTIONS(4282), + [anon_sym_internal] = ACTIONS(4282), + [anon_sym_protected] = ACTIONS(4282), + [anon_sym_tailrec] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_infix] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym_external] = ACTIONS(4282), + [sym_property_modifier] = ACTIONS(4282), + [anon_sym_abstract] = ACTIONS(4282), + [anon_sym_final] = ACTIONS(4282), + [anon_sym_open] = ACTIONS(4282), + [anon_sym_vararg] = ACTIONS(4282), + [anon_sym_noinline] = ACTIONS(4282), + [anon_sym_crossinline] = ACTIONS(4282), + [anon_sym_expect] = ACTIONS(4282), + [anon_sym_actual] = ACTIONS(4282), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4282), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4282), + [anon_sym_false] = ACTIONS(4282), + [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), }, [1043] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_object] = ACTIONS(4714), - [anon_sym_fun] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_this] = ACTIONS(4714), - [anon_sym_super] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [sym_label] = ACTIONS(4714), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4714), - [anon_sym_if] = ACTIONS(4714), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_when] = ACTIONS(4714), - [anon_sym_try] = ACTIONS(4714), - [anon_sym_throw] = ACTIONS(4714), - [anon_sym_return] = ACTIONS(4714), - [anon_sym_continue] = ACTIONS(4714), - [anon_sym_break] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG] = ACTIONS(4714), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_suspend] = ACTIONS(4714), - [anon_sym_sealed] = ACTIONS(4714), - [anon_sym_annotation] = ACTIONS(4714), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_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), - [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), + [sym__alpha_identifier] = ACTIONS(4720), + [anon_sym_AT] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_as] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_where] = ACTIONS(4720), + [anon_sym_object] = ACTIONS(4720), + [anon_sym_fun] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_get] = ACTIONS(4720), + [anon_sym_set] = ACTIONS(4720), + [anon_sym_this] = ACTIONS(4720), + [anon_sym_super] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [sym_label] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4720), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_QMARK_COLON] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4720), + [anon_sym_if] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4720), + [anon_sym_when] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4720), + [anon_sym_throw] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4720), + [anon_sym_continue] = ACTIONS(4720), + [anon_sym_break] = ACTIONS(4720), + [anon_sym_COLON_COLON] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4722), + [anon_sym_DASH_EQ] = ACTIONS(4722), + [anon_sym_STAR_EQ] = ACTIONS(4722), + [anon_sym_SLASH_EQ] = ACTIONS(4722), + [anon_sym_PERCENT_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_BANGin] = ACTIONS(4722), + [anon_sym_is] = ACTIONS(4720), + [anon_sym_BANGis] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_as_QMARK] = ACTIONS(4722), + [anon_sym_PLUS_PLUS] = ACTIONS(4722), + [anon_sym_DASH_DASH] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4720), + [anon_sym_BANG_BANG] = ACTIONS(4722), + [anon_sym_suspend] = ACTIONS(4720), + [anon_sym_sealed] = ACTIONS(4720), + [anon_sym_annotation] = ACTIONS(4720), + [anon_sym_data] = ACTIONS(4720), + [anon_sym_inner] = ACTIONS(4720), + [anon_sym_override] = ACTIONS(4720), + [anon_sym_lateinit] = ACTIONS(4720), + [anon_sym_public] = ACTIONS(4720), + [anon_sym_private] = ACTIONS(4720), + [anon_sym_internal] = ACTIONS(4720), + [anon_sym_protected] = ACTIONS(4720), + [anon_sym_tailrec] = ACTIONS(4720), + [anon_sym_operator] = ACTIONS(4720), + [anon_sym_infix] = ACTIONS(4720), + [anon_sym_inline] = ACTIONS(4720), + [anon_sym_external] = ACTIONS(4720), + [sym_property_modifier] = ACTIONS(4720), + [anon_sym_abstract] = ACTIONS(4720), + [anon_sym_final] = ACTIONS(4720), + [anon_sym_open] = ACTIONS(4720), + [anon_sym_vararg] = ACTIONS(4720), + [anon_sym_noinline] = ACTIONS(4720), + [anon_sym_crossinline] = ACTIONS(4720), + [anon_sym_expect] = ACTIONS(4720), + [anon_sym_actual] = ACTIONS(4720), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4722), + [anon_sym_continue_AT] = ACTIONS(4722), + [anon_sym_break_AT] = ACTIONS(4722), + [sym_real_literal] = ACTIONS(4722), + [sym_integer_literal] = ACTIONS(4720), + [sym_hex_literal] = ACTIONS(4722), + [sym_bin_literal] = ACTIONS(4722), + [anon_sym_true] = ACTIONS(4720), + [anon_sym_false] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4722), + [sym__backtick_identifier] = ACTIONS(4722), + [sym__automatic_semicolon] = ACTIONS(4722), + [sym_safe_nav] = ACTIONS(4722), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4722), }, [1044] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_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_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_this] = ACTIONS(4718), - [anon_sym_super] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4718), - [anon_sym_if] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_when] = ACTIONS(4718), - [anon_sym_try] = ACTIONS(4718), - [anon_sym_throw] = ACTIONS(4718), - [anon_sym_return] = ACTIONS(4718), - [anon_sym_continue] = ACTIONS(4718), - [anon_sym_break] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4720), - [anon_sym_continue_AT] = ACTIONS(4720), - [anon_sym_break_AT] = ACTIONS(4720), - [sym_real_literal] = ACTIONS(4720), - [sym_integer_literal] = ACTIONS(4718), - [sym_hex_literal] = ACTIONS(4720), - [sym_bin_literal] = ACTIONS(4720), - [anon_sym_true] = ACTIONS(4718), - [anon_sym_false] = ACTIONS(4718), - [anon_sym_SQUOTE] = ACTIONS(4720), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4720), + [sym_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), }, [1045] = { - [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_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_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), - [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), - }, - [1046] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_COMMA] = ACTIONS(4286), - [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_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, - [1047] = { + [1046] = { [sym__alpha_identifier] = ACTIONS(4730), [anon_sym_AT] = ACTIONS(4732), [anon_sym_LBRACK] = ACTIONS(4732), @@ -156242,316 +156168,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4732), }, + [1047] = { + [sym__alpha_identifier] = ACTIONS(4734), + [anon_sym_AT] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4736), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_object] = ACTIONS(4734), + [anon_sym_fun] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_get] = ACTIONS(4734), + [anon_sym_set] = ACTIONS(4734), + [anon_sym_this] = ACTIONS(4734), + [anon_sym_super] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(4734), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_QMARK_COLON] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_when] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_throw] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_BANGin] = ACTIONS(4736), + [anon_sym_is] = ACTIONS(4734), + [anon_sym_BANGis] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_as_QMARK] = ACTIONS(4736), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4736), + [anon_sym_suspend] = ACTIONS(4734), + [anon_sym_sealed] = ACTIONS(4734), + [anon_sym_annotation] = ACTIONS(4734), + [anon_sym_data] = ACTIONS(4734), + [anon_sym_inner] = ACTIONS(4734), + [anon_sym_override] = ACTIONS(4734), + [anon_sym_lateinit] = ACTIONS(4734), + [anon_sym_public] = ACTIONS(4734), + [anon_sym_private] = ACTIONS(4734), + [anon_sym_internal] = ACTIONS(4734), + [anon_sym_protected] = ACTIONS(4734), + [anon_sym_tailrec] = ACTIONS(4734), + [anon_sym_operator] = ACTIONS(4734), + [anon_sym_infix] = ACTIONS(4734), + [anon_sym_inline] = ACTIONS(4734), + [anon_sym_external] = ACTIONS(4734), + [sym_property_modifier] = ACTIONS(4734), + [anon_sym_abstract] = ACTIONS(4734), + [anon_sym_final] = ACTIONS(4734), + [anon_sym_open] = ACTIONS(4734), + [anon_sym_vararg] = ACTIONS(4734), + [anon_sym_noinline] = ACTIONS(4734), + [anon_sym_crossinline] = ACTIONS(4734), + [anon_sym_expect] = ACTIONS(4734), + [anon_sym_actual] = ACTIONS(4734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4736), + [anon_sym_continue_AT] = ACTIONS(4736), + [anon_sym_break_AT] = ACTIONS(4736), + [sym_real_literal] = ACTIONS(4736), + [sym_integer_literal] = ACTIONS(4734), + [sym_hex_literal] = ACTIONS(4736), + [sym_bin_literal] = ACTIONS(4736), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_SQUOTE] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4736), + [sym__automatic_semicolon] = ACTIONS(4736), + [sym_safe_nav] = ACTIONS(4736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4736), + }, [1048] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4734), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [1049] = { - [sym__alpha_identifier] = ACTIONS(4738), - [anon_sym_AT] = ACTIONS(4740), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(4738), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_LPAREN] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_LT] = ACTIONS(4738), - [anon_sym_GT] = ACTIONS(4738), - [anon_sym_where] = ACTIONS(4738), - [anon_sym_object] = ACTIONS(4738), - [anon_sym_fun] = ACTIONS(4738), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(4738), - [anon_sym_set] = ACTIONS(4738), - [anon_sym_this] = ACTIONS(4738), - [anon_sym_super] = ACTIONS(4738), - [anon_sym_STAR] = ACTIONS(4738), - [sym_label] = ACTIONS(4738), - [anon_sym_in] = ACTIONS(4738), - [anon_sym_DOT_DOT] = ACTIONS(4740), - [anon_sym_QMARK_COLON] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_null] = ACTIONS(4738), - [anon_sym_if] = ACTIONS(4738), - [anon_sym_else] = ACTIONS(4738), - [anon_sym_when] = ACTIONS(4738), - [anon_sym_try] = ACTIONS(4738), - [anon_sym_throw] = ACTIONS(4738), - [anon_sym_return] = ACTIONS(4738), - [anon_sym_continue] = ACTIONS(4738), - [anon_sym_break] = ACTIONS(4738), - [anon_sym_COLON_COLON] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_BANGin] = ACTIONS(4740), - [anon_sym_is] = ACTIONS(4738), - [anon_sym_BANGis] = ACTIONS(4740), - [anon_sym_PLUS] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [anon_sym_SLASH] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4738), - [anon_sym_as_QMARK] = ACTIONS(4740), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_BANG] = ACTIONS(4738), - [anon_sym_BANG_BANG] = ACTIONS(4740), - [anon_sym_suspend] = ACTIONS(4738), - [anon_sym_sealed] = ACTIONS(4738), - [anon_sym_annotation] = ACTIONS(4738), - [anon_sym_data] = ACTIONS(4738), - [anon_sym_inner] = ACTIONS(4738), - [anon_sym_override] = ACTIONS(4738), - [anon_sym_lateinit] = ACTIONS(4738), - [anon_sym_public] = ACTIONS(4738), - [anon_sym_private] = ACTIONS(4738), - [anon_sym_internal] = ACTIONS(4738), - [anon_sym_protected] = ACTIONS(4738), - [anon_sym_tailrec] = ACTIONS(4738), - [anon_sym_operator] = ACTIONS(4738), - [anon_sym_infix] = ACTIONS(4738), - [anon_sym_inline] = ACTIONS(4738), - [anon_sym_external] = ACTIONS(4738), - [sym_property_modifier] = ACTIONS(4738), - [anon_sym_abstract] = ACTIONS(4738), - [anon_sym_final] = ACTIONS(4738), - [anon_sym_open] = ACTIONS(4738), - [anon_sym_vararg] = ACTIONS(4738), - [anon_sym_noinline] = ACTIONS(4738), - [anon_sym_crossinline] = ACTIONS(4738), - [anon_sym_expect] = ACTIONS(4738), - [anon_sym_actual] = ACTIONS(4738), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4740), - [anon_sym_continue_AT] = ACTIONS(4740), - [anon_sym_break_AT] = ACTIONS(4740), - [sym_real_literal] = ACTIONS(4740), - [sym_integer_literal] = ACTIONS(4738), - [sym_hex_literal] = ACTIONS(4740), - [sym_bin_literal] = ACTIONS(4740), - [anon_sym_true] = ACTIONS(4738), - [anon_sym_false] = ACTIONS(4738), - [anon_sym_SQUOTE] = ACTIONS(4740), - [sym__backtick_identifier] = ACTIONS(4740), - [sym__automatic_semicolon] = ACTIONS(4740), - [sym_safe_nav] = ACTIONS(4740), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4740), + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [1050] = { - [sym__alpha_identifier] = ACTIONS(4742), - [anon_sym_AT] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4744), - [anon_sym_as] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LBRACE] = ACTIONS(4744), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_LPAREN] = ACTIONS(4744), - [anon_sym_COMMA] = ACTIONS(4744), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_object] = ACTIONS(4742), - [anon_sym_fun] = ACTIONS(4742), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(4742), - [anon_sym_set] = ACTIONS(4742), - [anon_sym_this] = ACTIONS(4742), - [anon_sym_super] = ACTIONS(4742), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(4744), - [anon_sym_QMARK_COLON] = ACTIONS(4744), - [anon_sym_AMP_AMP] = ACTIONS(4744), - [anon_sym_PIPE_PIPE] = ACTIONS(4744), - [anon_sym_null] = ACTIONS(4742), - [anon_sym_if] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4742), - [anon_sym_when] = ACTIONS(4742), - [anon_sym_try] = ACTIONS(4742), - [anon_sym_throw] = ACTIONS(4742), - [anon_sym_return] = ACTIONS(4742), - [anon_sym_continue] = ACTIONS(4742), - [anon_sym_break] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(4744), - [anon_sym_PLUS_EQ] = ACTIONS(4744), - [anon_sym_DASH_EQ] = ACTIONS(4744), - [anon_sym_STAR_EQ] = ACTIONS(4744), - [anon_sym_SLASH_EQ] = ACTIONS(4744), - [anon_sym_PERCENT_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4744), - [anon_sym_LT_EQ] = ACTIONS(4744), - [anon_sym_GT_EQ] = ACTIONS(4744), - [anon_sym_BANGin] = ACTIONS(4744), - [anon_sym_is] = ACTIONS(4742), - [anon_sym_BANGis] = ACTIONS(4744), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4744), - [anon_sym_PLUS_PLUS] = ACTIONS(4744), - [anon_sym_DASH_DASH] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4744), - [anon_sym_suspend] = ACTIONS(4742), - [anon_sym_sealed] = ACTIONS(4742), - [anon_sym_annotation] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4742), - [anon_sym_inner] = ACTIONS(4742), - [anon_sym_override] = ACTIONS(4742), - [anon_sym_lateinit] = ACTIONS(4742), - [anon_sym_public] = ACTIONS(4742), - [anon_sym_private] = ACTIONS(4742), - [anon_sym_internal] = ACTIONS(4742), - [anon_sym_protected] = ACTIONS(4742), - [anon_sym_tailrec] = ACTIONS(4742), - [anon_sym_operator] = ACTIONS(4742), - [anon_sym_infix] = ACTIONS(4742), - [anon_sym_inline] = ACTIONS(4742), - [anon_sym_external] = ACTIONS(4742), - [sym_property_modifier] = ACTIONS(4742), - [anon_sym_abstract] = ACTIONS(4742), - [anon_sym_final] = ACTIONS(4742), - [anon_sym_open] = ACTIONS(4742), - [anon_sym_vararg] = ACTIONS(4742), - [anon_sym_noinline] = ACTIONS(4742), - [anon_sym_crossinline] = ACTIONS(4742), - [anon_sym_expect] = ACTIONS(4742), - [anon_sym_actual] = ACTIONS(4742), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4744), - [anon_sym_continue_AT] = ACTIONS(4744), - [anon_sym_break_AT] = ACTIONS(4744), - [sym_real_literal] = ACTIONS(4744), - [sym_integer_literal] = ACTIONS(4742), - [sym_hex_literal] = ACTIONS(4744), - [sym_bin_literal] = ACTIONS(4744), - [anon_sym_true] = ACTIONS(4742), - [anon_sym_false] = ACTIONS(4742), - [anon_sym_SQUOTE] = ACTIONS(4744), - [sym__backtick_identifier] = ACTIONS(4744), - [sym__automatic_semicolon] = ACTIONS(4744), - [sym_safe_nav] = ACTIONS(4744), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4744), - }, - [1051] = { [sym__alpha_identifier] = ACTIONS(4746), [anon_sym_AT] = ACTIONS(4748), [anon_sym_LBRACK] = ACTIONS(4748), @@ -156654,213 +156580,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4748), }, + [1051] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(4750), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), + }, [1052] = { - [sym__alpha_identifier] = ACTIONS(4750), - [anon_sym_AT] = ACTIONS(4752), - [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), + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), [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_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), - [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), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), }, [1053] = { - [sym__alpha_identifier] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [sym_label] = ACTIONS(3082), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3084), - [anon_sym_QMARK_COLON] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_as_QMARK] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_BANG_BANG] = ACTIONS(3084), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), - [anon_sym_data] = ACTIONS(3082), - [anon_sym_inner] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(3082), - [anon_sym_actual] = ACTIONS(3082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3084), - [anon_sym_continue_AT] = ACTIONS(3084), - [anon_sym_break_AT] = ACTIONS(3084), - [sym_real_literal] = ACTIONS(3084), - [sym_integer_literal] = ACTIONS(3082), - [sym_hex_literal] = ACTIONS(3084), - [sym_bin_literal] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3084), - [sym__backtick_identifier] = ACTIONS(3084), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3084), + [sym__alpha_identifier] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [sym_label] = ACTIONS(2988), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_QMARK_COLON] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_as_QMARK] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(2990), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(2988), + [anon_sym_inner] = ACTIONS(2988), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(2988), + [anon_sym_actual] = ACTIONS(2988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [sym__backtick_identifier] = ACTIONS(2990), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(2990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2990), }, [1054] = { + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_object] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_this] = ACTIONS(3878), + [anon_sym_super] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [sym_label] = ACTIONS(3878), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_when] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_throw] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_continue] = ACTIONS(3878), + [anon_sym_break] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_suspend] = ACTIONS(3878), + [anon_sym_sealed] = ACTIONS(3878), + [anon_sym_annotation] = ACTIONS(3878), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_override] = ACTIONS(3878), + [anon_sym_lateinit] = ACTIONS(3878), + [anon_sym_public] = ACTIONS(3878), + [anon_sym_private] = ACTIONS(3878), + [anon_sym_internal] = ACTIONS(3878), + [anon_sym_protected] = ACTIONS(3878), + [anon_sym_tailrec] = ACTIONS(3878), + [anon_sym_operator] = ACTIONS(3878), + [anon_sym_infix] = ACTIONS(3878), + [anon_sym_inline] = ACTIONS(3878), + [anon_sym_external] = ACTIONS(3878), + [sym_property_modifier] = ACTIONS(3878), + [anon_sym_abstract] = ACTIONS(3878), + [anon_sym_final] = ACTIONS(3878), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_vararg] = ACTIONS(3878), + [anon_sym_noinline] = ACTIONS(3878), + [anon_sym_crossinline] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3880), + [anon_sym_continue_AT] = ACTIONS(3880), + [anon_sym_break_AT] = ACTIONS(3880), + [sym_real_literal] = ACTIONS(3880), + [sym_integer_literal] = ACTIONS(3878), + [sym_hex_literal] = ACTIONS(3880), + [sym_bin_literal] = ACTIONS(3880), + [anon_sym_true] = ACTIONS(3878), + [anon_sym_false] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3880), + [sym__backtick_identifier] = ACTIONS(3880), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3880), + }, + [1055] = { [sym__alpha_identifier] = ACTIONS(4754), [anon_sym_AT] = ACTIONS(4756), [anon_sym_LBRACK] = ACTIONS(4756), @@ -156963,7 +157095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4756), }, - [1055] = { + [1056] = { [sym__alpha_identifier] = ACTIONS(4758), [anon_sym_AT] = ACTIONS(4760), [anon_sym_LBRACK] = ACTIONS(4760), @@ -157066,7 +157198,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4760), }, - [1056] = { + [1057] = { + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4035), + [anon_sym_fun] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_this] = ACTIONS(4035), + [anon_sym_super] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_when] = ACTIONS(4035), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_throw] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_suspend] = ACTIONS(4035), + [anon_sym_sealed] = ACTIONS(4035), + [anon_sym_annotation] = ACTIONS(4035), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_override] = ACTIONS(4035), + [anon_sym_lateinit] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_private] = ACTIONS(4035), + [anon_sym_internal] = ACTIONS(4035), + [anon_sym_protected] = ACTIONS(4035), + [anon_sym_tailrec] = ACTIONS(4035), + [anon_sym_operator] = ACTIONS(4035), + [anon_sym_infix] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_external] = ACTIONS(4035), + [sym_property_modifier] = ACTIONS(4035), + [anon_sym_abstract] = ACTIONS(4035), + [anon_sym_final] = ACTIONS(4035), + [anon_sym_open] = ACTIONS(4035), + [anon_sym_vararg] = ACTIONS(4035), + [anon_sym_noinline] = ACTIONS(4035), + [anon_sym_crossinline] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4037), + [anon_sym_continue_AT] = ACTIONS(4037), + [anon_sym_break_AT] = ACTIONS(4037), + [sym_real_literal] = ACTIONS(4037), + [sym_integer_literal] = ACTIONS(4035), + [sym_hex_literal] = ACTIONS(4037), + [sym_bin_literal] = ACTIONS(4037), + [anon_sym_true] = ACTIONS(4035), + [anon_sym_false] = ACTIONS(4035), + [anon_sym_SQUOTE] = ACTIONS(4037), + [sym__backtick_identifier] = ACTIONS(4037), + [sym__automatic_semicolon] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4037), + }, + [1058] = { [sym__alpha_identifier] = ACTIONS(4762), [anon_sym_AT] = ACTIONS(4764), [anon_sym_LBRACK] = ACTIONS(4764), @@ -157169,7 +157404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4764), }, - [1057] = { + [1059] = { [sym__alpha_identifier] = ACTIONS(4766), [anon_sym_AT] = ACTIONS(4768), [anon_sym_LBRACK] = ACTIONS(4768), @@ -157272,212 +157507,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4768), }, - [1058] = { - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_object] = ACTIONS(4019), - [anon_sym_fun] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4019), - [anon_sym_super] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [sym_label] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_try] = ACTIONS(4019), - [anon_sym_throw] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4021), - [anon_sym_continue_AT] = ACTIONS(4021), - [anon_sym_break_AT] = ACTIONS(4021), - [sym_real_literal] = ACTIONS(4021), - [sym_integer_literal] = ACTIONS(4019), - [sym_hex_literal] = ACTIONS(4021), - [sym_bin_literal] = ACTIONS(4021), - [anon_sym_true] = ACTIONS(4019), - [anon_sym_false] = ACTIONS(4019), - [anon_sym_SQUOTE] = ACTIONS(4021), - [sym__backtick_identifier] = ACTIONS(4021), - [sym__automatic_semicolon] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4021), - }, - [1059] = { - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, [1060] = { [sym__alpha_identifier] = ACTIONS(4770), [anon_sym_AT] = ACTIONS(4772), @@ -157582,212 +157611,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(4772), }, [1061] = { - [sym_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4774), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [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), }, [1062] = { - [sym_class_body] = STATE(1172), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(4776), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), - }, - [1063] = { [sym__alpha_identifier] = ACTIONS(4778), [anon_sym_AT] = ACTIONS(4780), [anon_sym_LBRACK] = ACTIONS(4780), @@ -157890,625 +157816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4780), }, - [1064] = { - [sym_function_body] = STATE(1115), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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_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_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), - [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), - }, - [1065] = { - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [1066] = { - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [1067] = { - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [1068] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [1069] = { - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), - }, - [1070] = { + [1063] = { [sym__alpha_identifier] = ACTIONS(4782), [anon_sym_AT] = ACTIONS(4784), [anon_sym_LBRACK] = ACTIONS(4784), @@ -158611,110 +157919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4784), }, - [1071] = { - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [1072] = { + [1064] = { [sym__alpha_identifier] = ACTIONS(4786), [anon_sym_AT] = ACTIONS(4788), [anon_sym_LBRACK] = ACTIONS(4788), @@ -158817,7 +158022,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4788), }, - [1073] = { + [1065] = { + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_fun] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_this] = ACTIONS(3912), + [anon_sym_super] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [sym_label] = ACTIONS(3912), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_null] = ACTIONS(3912), + [anon_sym_if] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_when] = ACTIONS(3912), + [anon_sym_try] = ACTIONS(3912), + [anon_sym_throw] = ACTIONS(3912), + [anon_sym_return] = ACTIONS(3912), + [anon_sym_continue] = ACTIONS(3912), + [anon_sym_break] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_suspend] = ACTIONS(3912), + [anon_sym_sealed] = ACTIONS(3912), + [anon_sym_annotation] = ACTIONS(3912), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_override] = ACTIONS(3912), + [anon_sym_lateinit] = ACTIONS(3912), + [anon_sym_public] = ACTIONS(3912), + [anon_sym_private] = ACTIONS(3912), + [anon_sym_internal] = ACTIONS(3912), + [anon_sym_protected] = ACTIONS(3912), + [anon_sym_tailrec] = ACTIONS(3912), + [anon_sym_operator] = ACTIONS(3912), + [anon_sym_infix] = ACTIONS(3912), + [anon_sym_inline] = ACTIONS(3912), + [anon_sym_external] = ACTIONS(3912), + [sym_property_modifier] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3912), + [anon_sym_final] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3912), + [anon_sym_vararg] = ACTIONS(3912), + [anon_sym_noinline] = ACTIONS(3912), + [anon_sym_crossinline] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3914), + [anon_sym_continue_AT] = ACTIONS(3914), + [anon_sym_break_AT] = ACTIONS(3914), + [sym_real_literal] = ACTIONS(3914), + [sym_integer_literal] = ACTIONS(3912), + [sym_hex_literal] = ACTIONS(3914), + [sym_bin_literal] = ACTIONS(3914), + [anon_sym_true] = ACTIONS(3912), + [anon_sym_false] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3914), + [sym__backtick_identifier] = ACTIONS(3914), + [sym__automatic_semicolon] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3914), + }, + [1066] = { [sym__alpha_identifier] = ACTIONS(4790), [anon_sym_AT] = ACTIONS(4792), [anon_sym_LBRACK] = ACTIONS(4792), @@ -158833,7 +158141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(4790), [anon_sym_fun] = ACTIONS(4790), [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4792), [anon_sym_get] = ACTIONS(4790), [anon_sym_set] = ACTIONS(4790), [anon_sym_this] = ACTIONS(4790), @@ -158847,7 +158155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4792), [anon_sym_null] = ACTIONS(4790), [anon_sym_if] = ACTIONS(4790), - [anon_sym_else] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4790), [anon_sym_when] = ACTIONS(4790), [anon_sym_try] = ACTIONS(4790), [anon_sym_throw] = ACTIONS(4790), @@ -158920,419 +158228,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4792), }, - [1074] = { - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3280), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [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_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(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [1075] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), - }, - [1076] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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_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), - [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), + [1067] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_when] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4794), + [anon_sym_throw] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4794), + [anon_sym_continue] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4796), + [anon_sym_continue_AT] = ACTIONS(4796), + [anon_sym_break_AT] = ACTIONS(4796), + [sym_real_literal] = ACTIONS(4796), + [sym_integer_literal] = ACTIONS(4794), + [sym_hex_literal] = ACTIONS(4796), + [sym_bin_literal] = ACTIONS(4796), + [anon_sym_true] = ACTIONS(4794), + [anon_sym_false] = ACTIONS(4794), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), }, - [1077] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [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(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [1068] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_object] = ACTIONS(4798), + [anon_sym_fun] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_this] = ACTIONS(4798), + [anon_sym_super] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4798), + [anon_sym_throw] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_continue] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4800), + [anon_sym_continue_AT] = ACTIONS(4800), + [anon_sym_break_AT] = ACTIONS(4800), + [sym_real_literal] = ACTIONS(4800), + [sym_integer_literal] = ACTIONS(4798), + [sym_hex_literal] = ACTIONS(4800), + [sym_bin_literal] = ACTIONS(4800), + [anon_sym_true] = ACTIONS(4798), + [anon_sym_false] = ACTIONS(4798), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4800), }, - [1078] = { + [1069] = { [sym__alpha_identifier] = ACTIONS(4802), [anon_sym_AT] = ACTIONS(4804), [anon_sym_LBRACK] = ACTIONS(4804), @@ -159435,316 +158537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4804), }, - [1079] = { - [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(4796), - [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_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_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), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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), - }, - [1080] = { - [sym_function_body] = STATE(1150), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), - }, - [1081] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), - }, - [1082] = { + [1070] = { [sym__alpha_identifier] = ACTIONS(4806), [anon_sym_AT] = ACTIONS(4808), [anon_sym_LBRACK] = ACTIONS(4808), @@ -159847,110 +158640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4808), }, - [1083] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), - }, - [1084] = { + [1071] = { [sym__alpha_identifier] = ACTIONS(4810), [anon_sym_AT] = ACTIONS(4812), [anon_sym_LBRACK] = ACTIONS(4812), @@ -160053,7 +158743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4812), }, - [1085] = { + [1072] = { [sym__alpha_identifier] = ACTIONS(4814), [anon_sym_AT] = ACTIONS(4816), [anon_sym_LBRACK] = ACTIONS(4816), @@ -160156,7 +158846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4816), }, - [1086] = { + [1073] = { [sym__alpha_identifier] = ACTIONS(4818), [anon_sym_AT] = ACTIONS(4820), [anon_sym_LBRACK] = ACTIONS(4820), @@ -160259,7 +158949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4820), }, - [1087] = { + [1074] = { [sym__alpha_identifier] = ACTIONS(4822), [anon_sym_AT] = ACTIONS(4824), [anon_sym_LBRACK] = ACTIONS(4824), @@ -160362,728 +159052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4824), }, - [1088] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [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(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), - }, - [1089] = { - [sym__alpha_identifier] = ACTIONS(4830), - [anon_sym_AT] = ACTIONS(4832), - [anon_sym_LBRACK] = ACTIONS(4832), - [anon_sym_as] = ACTIONS(4830), - [anon_sym_EQ] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(4832), - [anon_sym_RBRACE] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4832), - [anon_sym_COMMA] = ACTIONS(4832), - [anon_sym_LT] = ACTIONS(4830), - [anon_sym_GT] = ACTIONS(4830), - [anon_sym_where] = ACTIONS(4830), - [anon_sym_object] = ACTIONS(4830), - [anon_sym_fun] = ACTIONS(4830), - [anon_sym_DOT] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(4830), - [anon_sym_set] = ACTIONS(4830), - [anon_sym_this] = ACTIONS(4830), - [anon_sym_super] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4830), - [sym_label] = ACTIONS(4830), - [anon_sym_in] = ACTIONS(4830), - [anon_sym_DOT_DOT] = ACTIONS(4832), - [anon_sym_QMARK_COLON] = ACTIONS(4832), - [anon_sym_AMP_AMP] = ACTIONS(4832), - [anon_sym_PIPE_PIPE] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(4830), - [anon_sym_if] = ACTIONS(4830), - [anon_sym_else] = ACTIONS(4830), - [anon_sym_when] = ACTIONS(4830), - [anon_sym_try] = ACTIONS(4830), - [anon_sym_throw] = ACTIONS(4830), - [anon_sym_return] = ACTIONS(4830), - [anon_sym_continue] = ACTIONS(4830), - [anon_sym_break] = ACTIONS(4830), - [anon_sym_COLON_COLON] = ACTIONS(4832), - [anon_sym_PLUS_EQ] = ACTIONS(4832), - [anon_sym_DASH_EQ] = ACTIONS(4832), - [anon_sym_STAR_EQ] = ACTIONS(4832), - [anon_sym_SLASH_EQ] = ACTIONS(4832), - [anon_sym_PERCENT_EQ] = ACTIONS(4832), - [anon_sym_BANG_EQ] = ACTIONS(4830), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4832), - [anon_sym_EQ_EQ] = ACTIONS(4830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4832), - [anon_sym_LT_EQ] = ACTIONS(4832), - [anon_sym_GT_EQ] = ACTIONS(4832), - [anon_sym_BANGin] = ACTIONS(4832), - [anon_sym_is] = ACTIONS(4830), - [anon_sym_BANGis] = ACTIONS(4832), - [anon_sym_PLUS] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_SLASH] = ACTIONS(4830), - [anon_sym_PERCENT] = ACTIONS(4830), - [anon_sym_as_QMARK] = ACTIONS(4832), - [anon_sym_PLUS_PLUS] = ACTIONS(4832), - [anon_sym_DASH_DASH] = ACTIONS(4832), - [anon_sym_BANG] = ACTIONS(4830), - [anon_sym_BANG_BANG] = ACTIONS(4832), - [anon_sym_suspend] = ACTIONS(4830), - [anon_sym_sealed] = ACTIONS(4830), - [anon_sym_annotation] = ACTIONS(4830), - [anon_sym_data] = ACTIONS(4830), - [anon_sym_inner] = ACTIONS(4830), - [anon_sym_override] = ACTIONS(4830), - [anon_sym_lateinit] = ACTIONS(4830), - [anon_sym_public] = ACTIONS(4830), - [anon_sym_private] = ACTIONS(4830), - [anon_sym_internal] = ACTIONS(4830), - [anon_sym_protected] = ACTIONS(4830), - [anon_sym_tailrec] = ACTIONS(4830), - [anon_sym_operator] = ACTIONS(4830), - [anon_sym_infix] = ACTIONS(4830), - [anon_sym_inline] = ACTIONS(4830), - [anon_sym_external] = ACTIONS(4830), - [sym_property_modifier] = ACTIONS(4830), - [anon_sym_abstract] = ACTIONS(4830), - [anon_sym_final] = ACTIONS(4830), - [anon_sym_open] = ACTIONS(4830), - [anon_sym_vararg] = ACTIONS(4830), - [anon_sym_noinline] = ACTIONS(4830), - [anon_sym_crossinline] = ACTIONS(4830), - [anon_sym_expect] = ACTIONS(4830), - [anon_sym_actual] = ACTIONS(4830), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4832), - [anon_sym_continue_AT] = ACTIONS(4832), - [anon_sym_break_AT] = ACTIONS(4832), - [sym_real_literal] = ACTIONS(4832), - [sym_integer_literal] = ACTIONS(4830), - [sym_hex_literal] = ACTIONS(4832), - [sym_bin_literal] = ACTIONS(4832), - [anon_sym_true] = ACTIONS(4830), - [anon_sym_false] = ACTIONS(4830), - [anon_sym_SQUOTE] = ACTIONS(4832), - [sym__backtick_identifier] = ACTIONS(4832), - [sym__automatic_semicolon] = ACTIONS(4832), - [sym_safe_nav] = ACTIONS(4832), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4832), - }, - [1090] = { - [sym_getter] = STATE(9055), - [sym_setter] = STATE(9055), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4834), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1091] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_object] = ACTIONS(4840), - [anon_sym_fun] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_this] = ACTIONS(4840), - [anon_sym_super] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_when] = ACTIONS(4840), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_throw] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4844), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4842), - [anon_sym_continue_AT] = ACTIONS(4842), - [anon_sym_break_AT] = ACTIONS(4842), - [sym_real_literal] = ACTIONS(4842), - [sym_integer_literal] = ACTIONS(4840), - [sym_hex_literal] = ACTIONS(4842), - [sym_bin_literal] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4842), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4842), - }, - [1092] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [1093] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [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(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), - }, - [1094] = { - [sym__alpha_identifier] = ACTIONS(4847), - [anon_sym_AT] = ACTIONS(4849), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4847), - [anon_sym_GT] = ACTIONS(4847), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_object] = ACTIONS(4847), - [anon_sym_fun] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_this] = ACTIONS(4847), - [anon_sym_super] = ACTIONS(4847), - [anon_sym_STAR] = ACTIONS(4847), - [sym_label] = ACTIONS(4847), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4849), - [anon_sym_QMARK_COLON] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(4847), - [anon_sym_if] = ACTIONS(4847), - [anon_sym_else] = ACTIONS(4847), - [anon_sym_when] = ACTIONS(4847), - [anon_sym_try] = ACTIONS(4847), - [anon_sym_throw] = ACTIONS(4847), - [anon_sym_return] = ACTIONS(4847), - [anon_sym_continue] = ACTIONS(4847), - [anon_sym_break] = ACTIONS(4847), - [anon_sym_COLON_COLON] = ACTIONS(4849), - [anon_sym_PLUS_EQ] = ACTIONS(4849), - [anon_sym_DASH_EQ] = ACTIONS(4849), - [anon_sym_STAR_EQ] = ACTIONS(4849), - [anon_sym_SLASH_EQ] = ACTIONS(4849), - [anon_sym_PERCENT_EQ] = ACTIONS(4849), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), - [anon_sym_LT_EQ] = ACTIONS(4849), - [anon_sym_GT_EQ] = ACTIONS(4849), - [anon_sym_BANGin] = ACTIONS(4849), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_BANGis] = ACTIONS(4849), - [anon_sym_PLUS] = ACTIONS(4847), - [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4847), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_as_QMARK] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4847), - [anon_sym_BANG_BANG] = ACTIONS(4849), - [anon_sym_suspend] = ACTIONS(4847), - [anon_sym_sealed] = ACTIONS(4847), - [anon_sym_annotation] = ACTIONS(4847), - [anon_sym_data] = ACTIONS(4847), - [anon_sym_inner] = ACTIONS(4847), - [anon_sym_override] = ACTIONS(4847), - [anon_sym_lateinit] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_internal] = ACTIONS(4847), - [anon_sym_protected] = ACTIONS(4847), - [anon_sym_tailrec] = ACTIONS(4847), - [anon_sym_operator] = ACTIONS(4847), - [anon_sym_infix] = ACTIONS(4847), - [anon_sym_inline] = ACTIONS(4847), - [anon_sym_external] = ACTIONS(4847), - [sym_property_modifier] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_open] = ACTIONS(4847), - [anon_sym_vararg] = ACTIONS(4847), - [anon_sym_noinline] = ACTIONS(4847), - [anon_sym_crossinline] = ACTIONS(4847), - [anon_sym_expect] = ACTIONS(4847), - [anon_sym_actual] = ACTIONS(4847), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4849), - [anon_sym_continue_AT] = ACTIONS(4849), - [anon_sym_break_AT] = ACTIONS(4849), - [sym_real_literal] = ACTIONS(4849), - [sym_integer_literal] = ACTIONS(4847), - [sym_hex_literal] = ACTIONS(4849), - [sym_bin_literal] = ACTIONS(4849), - [anon_sym_true] = ACTIONS(4847), - [anon_sym_false] = ACTIONS(4847), - [anon_sym_SQUOTE] = ACTIONS(4849), - [sym__backtick_identifier] = ACTIONS(4849), - [sym__automatic_semicolon] = ACTIONS(4849), - [sym_safe_nav] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4849), - }, - [1095] = { + [1075] = { [sym__alpha_identifier] = ACTIONS(4826), [anon_sym_AT] = ACTIONS(4828), [anon_sym_LBRACK] = ACTIONS(4828), @@ -161120,7 +159089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4826), [anon_sym_continue] = ACTIONS(4826), [anon_sym_break] = ACTIONS(4826), - [anon_sym_COLON_COLON] = ACTIONS(4828), + [anon_sym_COLON_COLON] = ACTIONS(4830), [anon_sym_PLUS_EQ] = ACTIONS(4828), [anon_sym_DASH_EQ] = ACTIONS(4828), [anon_sym_STAR_EQ] = ACTIONS(4828), @@ -161186,110 +159155,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4828), }, - [1096] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), + [1076] = { + [sym__alpha_identifier] = ACTIONS(4833), + [anon_sym_AT] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_as] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4833), + [anon_sym_LBRACE] = ACTIONS(4835), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_object] = ACTIONS(4833), + [anon_sym_fun] = ACTIONS(4833), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4835), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_this] = ACTIONS(4833), + [anon_sym_super] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [sym_label] = ACTIONS(4833), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_DOT_DOT] = ACTIONS(4835), + [anon_sym_QMARK_COLON] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(4833), + [anon_sym_if] = ACTIONS(4833), + [anon_sym_else] = ACTIONS(4833), + [anon_sym_when] = ACTIONS(4833), + [anon_sym_try] = ACTIONS(4833), + [anon_sym_throw] = ACTIONS(4833), + [anon_sym_return] = ACTIONS(4833), + [anon_sym_continue] = ACTIONS(4833), + [anon_sym_break] = ACTIONS(4833), + [anon_sym_COLON_COLON] = ACTIONS(4835), + [anon_sym_PLUS_EQ] = ACTIONS(4835), + [anon_sym_DASH_EQ] = ACTIONS(4835), + [anon_sym_STAR_EQ] = ACTIONS(4835), + [anon_sym_SLASH_EQ] = ACTIONS(4835), + [anon_sym_PERCENT_EQ] = ACTIONS(4835), + [anon_sym_BANG_EQ] = ACTIONS(4833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), + [anon_sym_EQ_EQ] = ACTIONS(4833), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), + [anon_sym_LT_EQ] = ACTIONS(4835), + [anon_sym_GT_EQ] = ACTIONS(4835), + [anon_sym_BANGin] = ACTIONS(4835), + [anon_sym_is] = ACTIONS(4833), + [anon_sym_BANGis] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4833), + [anon_sym_as_QMARK] = ACTIONS(4835), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_BANG_BANG] = ACTIONS(4835), + [anon_sym_suspend] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_annotation] = ACTIONS(4833), + [anon_sym_data] = ACTIONS(4833), + [anon_sym_inner] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_lateinit] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_tailrec] = ACTIONS(4833), + [anon_sym_operator] = ACTIONS(4833), + [anon_sym_infix] = ACTIONS(4833), + [anon_sym_inline] = ACTIONS(4833), + [anon_sym_external] = ACTIONS(4833), + [sym_property_modifier] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_open] = ACTIONS(4833), + [anon_sym_vararg] = ACTIONS(4833), + [anon_sym_noinline] = ACTIONS(4833), + [anon_sym_crossinline] = ACTIONS(4833), + [anon_sym_expect] = ACTIONS(4833), + [anon_sym_actual] = ACTIONS(4833), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4835), + [anon_sym_continue_AT] = ACTIONS(4835), + [anon_sym_break_AT] = ACTIONS(4835), + [sym_real_literal] = ACTIONS(4835), + [sym_integer_literal] = ACTIONS(4833), + [sym_hex_literal] = ACTIONS(4835), + [sym_bin_literal] = ACTIONS(4835), + [anon_sym_true] = ACTIONS(4833), + [anon_sym_false] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4835), + [sym__backtick_identifier] = ACTIONS(4835), + [sym__automatic_semicolon] = ACTIONS(4835), + [sym_safe_nav] = ACTIONS(4835), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4835), }, - [1097] = { + [1077] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4837), + [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(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4839), + [anon_sym_DASH_EQ] = ACTIONS(4839), + [anon_sym_STAR_EQ] = ACTIONS(4839), + [anon_sym_SLASH_EQ] = ACTIONS(4839), + [anon_sym_PERCENT_EQ] = ACTIONS(4839), + [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_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), + [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), + }, + [1078] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(4845), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), + }, + [1079] = { + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_fun] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3346), + [anon_sym_super] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [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(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3346), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [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), + }, + [1080] = { + [sym__alpha_identifier] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(4849), + [anon_sym_as] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4849), + [anon_sym_COMMA] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_GT] = ACTIONS(4847), + [anon_sym_where] = ACTIONS(4847), + [anon_sym_object] = ACTIONS(4847), + [anon_sym_fun] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(4849), + [anon_sym_get] = ACTIONS(4847), + [anon_sym_set] = ACTIONS(4847), + [anon_sym_this] = ACTIONS(4847), + [anon_sym_super] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4847), + [sym_label] = ACTIONS(4847), + [anon_sym_in] = ACTIONS(4847), + [anon_sym_DOT_DOT] = ACTIONS(4849), + [anon_sym_QMARK_COLON] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_null] = ACTIONS(4847), + [anon_sym_if] = ACTIONS(4847), + [anon_sym_else] = ACTIONS(4847), + [anon_sym_when] = ACTIONS(4847), + [anon_sym_try] = ACTIONS(4847), + [anon_sym_throw] = ACTIONS(4847), + [anon_sym_return] = ACTIONS(4847), + [anon_sym_continue] = ACTIONS(4847), + [anon_sym_break] = ACTIONS(4847), + [anon_sym_COLON_COLON] = ACTIONS(4849), + [anon_sym_PLUS_EQ] = ACTIONS(4849), + [anon_sym_DASH_EQ] = ACTIONS(4849), + [anon_sym_STAR_EQ] = ACTIONS(4849), + [anon_sym_SLASH_EQ] = ACTIONS(4849), + [anon_sym_PERCENT_EQ] = ACTIONS(4849), + [anon_sym_BANG_EQ] = ACTIONS(4847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), + [anon_sym_EQ_EQ] = ACTIONS(4847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), + [anon_sym_LT_EQ] = ACTIONS(4849), + [anon_sym_GT_EQ] = ACTIONS(4849), + [anon_sym_BANGin] = ACTIONS(4849), + [anon_sym_is] = ACTIONS(4847), + [anon_sym_BANGis] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(4847), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_SLASH] = ACTIONS(4847), + [anon_sym_PERCENT] = ACTIONS(4847), + [anon_sym_as_QMARK] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_BANG_BANG] = ACTIONS(4849), + [anon_sym_suspend] = ACTIONS(4847), + [anon_sym_sealed] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4847), + [anon_sym_data] = ACTIONS(4847), + [anon_sym_inner] = ACTIONS(4847), + [anon_sym_override] = ACTIONS(4847), + [anon_sym_lateinit] = ACTIONS(4847), + [anon_sym_public] = ACTIONS(4847), + [anon_sym_private] = ACTIONS(4847), + [anon_sym_internal] = ACTIONS(4847), + [anon_sym_protected] = ACTIONS(4847), + [anon_sym_tailrec] = ACTIONS(4847), + [anon_sym_operator] = ACTIONS(4847), + [anon_sym_infix] = ACTIONS(4847), + [anon_sym_inline] = ACTIONS(4847), + [anon_sym_external] = ACTIONS(4847), + [sym_property_modifier] = ACTIONS(4847), + [anon_sym_abstract] = ACTIONS(4847), + [anon_sym_final] = ACTIONS(4847), + [anon_sym_open] = ACTIONS(4847), + [anon_sym_vararg] = ACTIONS(4847), + [anon_sym_noinline] = ACTIONS(4847), + [anon_sym_crossinline] = ACTIONS(4847), + [anon_sym_expect] = ACTIONS(4847), + [anon_sym_actual] = ACTIONS(4847), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4849), + [anon_sym_continue_AT] = ACTIONS(4849), + [anon_sym_break_AT] = ACTIONS(4849), + [sym_real_literal] = ACTIONS(4849), + [sym_integer_literal] = ACTIONS(4847), + [sym_hex_literal] = ACTIONS(4849), + [sym_bin_literal] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4847), + [anon_sym_false] = ACTIONS(4847), + [anon_sym_SQUOTE] = ACTIONS(4849), + [sym__backtick_identifier] = ACTIONS(4849), + [sym__automatic_semicolon] = ACTIONS(4849), + [sym_safe_nav] = ACTIONS(4849), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4849), + }, + [1081] = { [sym__alpha_identifier] = ACTIONS(4851), [anon_sym_AT] = ACTIONS(4853), [anon_sym_LBRACK] = ACTIONS(4853), @@ -161392,7 +159773,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4853), }, - [1098] = { + [1082] = { + [sym__alpha_identifier] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(1596), + [anon_sym_super] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [sym_label] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [anon_sym_throw] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1594), + [anon_sym_continue_AT] = ACTIONS(1594), + [anon_sym_break_AT] = ACTIONS(1594), + [sym_real_literal] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1596), + [sym_hex_literal] = ACTIONS(1594), + [sym_bin_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1594), + [sym__backtick_identifier] = ACTIONS(1594), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1594), + }, + [1083] = { [sym__alpha_identifier] = ACTIONS(4855), [anon_sym_AT] = ACTIONS(4857), [anon_sym_LBRACK] = ACTIONS(4857), @@ -161495,7 +159979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4857), }, - [1099] = { + [1084] = { [sym__alpha_identifier] = ACTIONS(4859), [anon_sym_AT] = ACTIONS(4861), [anon_sym_LBRACK] = ACTIONS(4861), @@ -161503,7 +159987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(4859), [anon_sym_LBRACE] = ACTIONS(4861), [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4863), [anon_sym_COMMA] = ACTIONS(4861), [anon_sym_LT] = ACTIONS(4859), [anon_sym_GT] = ACTIONS(4859), @@ -161598,1212 +160082,903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4861), }, - [1100] = { - [sym__alpha_identifier] = ACTIONS(4863), - [anon_sym_AT] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4865), - [anon_sym_as] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4865), - [anon_sym_LPAREN] = ACTIONS(4865), - [anon_sym_COMMA] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_where] = ACTIONS(4863), - [anon_sym_object] = ACTIONS(4863), - [anon_sym_fun] = ACTIONS(4863), - [anon_sym_DOT] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4865), - [anon_sym_get] = ACTIONS(4863), - [anon_sym_set] = ACTIONS(4863), - [anon_sym_this] = ACTIONS(4863), - [anon_sym_super] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4863), - [sym_label] = ACTIONS(4863), - [anon_sym_in] = ACTIONS(4863), - [anon_sym_DOT_DOT] = ACTIONS(4865), - [anon_sym_QMARK_COLON] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(4863), - [anon_sym_if] = ACTIONS(4863), - [anon_sym_else] = ACTIONS(4863), - [anon_sym_when] = ACTIONS(4863), - [anon_sym_try] = ACTIONS(4863), - [anon_sym_throw] = ACTIONS(4863), - [anon_sym_return] = ACTIONS(4863), - [anon_sym_continue] = ACTIONS(4863), - [anon_sym_break] = ACTIONS(4863), - [anon_sym_COLON_COLON] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4865), - [anon_sym_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_EQ] = ACTIONS(4865), - [anon_sym_BANGin] = ACTIONS(4865), - [anon_sym_is] = ACTIONS(4863), - [anon_sym_BANGis] = ACTIONS(4865), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_SLASH] = ACTIONS(4863), - [anon_sym_PERCENT] = ACTIONS(4863), - [anon_sym_as_QMARK] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4865), - [anon_sym_DASH_DASH] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4863), - [anon_sym_BANG_BANG] = ACTIONS(4865), - [anon_sym_suspend] = ACTIONS(4863), - [anon_sym_sealed] = ACTIONS(4863), - [anon_sym_annotation] = ACTIONS(4863), - [anon_sym_data] = ACTIONS(4863), - [anon_sym_inner] = ACTIONS(4863), - [anon_sym_override] = ACTIONS(4863), - [anon_sym_lateinit] = ACTIONS(4863), - [anon_sym_public] = ACTIONS(4863), - [anon_sym_private] = ACTIONS(4863), - [anon_sym_internal] = ACTIONS(4863), - [anon_sym_protected] = ACTIONS(4863), - [anon_sym_tailrec] = ACTIONS(4863), - [anon_sym_operator] = ACTIONS(4863), - [anon_sym_infix] = ACTIONS(4863), - [anon_sym_inline] = ACTIONS(4863), - [anon_sym_external] = ACTIONS(4863), - [sym_property_modifier] = ACTIONS(4863), - [anon_sym_abstract] = ACTIONS(4863), - [anon_sym_final] = ACTIONS(4863), - [anon_sym_open] = ACTIONS(4863), - [anon_sym_vararg] = ACTIONS(4863), - [anon_sym_noinline] = ACTIONS(4863), - [anon_sym_crossinline] = ACTIONS(4863), - [anon_sym_expect] = ACTIONS(4863), - [anon_sym_actual] = ACTIONS(4863), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4865), - [anon_sym_continue_AT] = ACTIONS(4865), - [anon_sym_break_AT] = ACTIONS(4865), - [sym_real_literal] = ACTIONS(4865), - [sym_integer_literal] = ACTIONS(4863), - [sym_hex_literal] = ACTIONS(4865), - [sym_bin_literal] = ACTIONS(4865), - [anon_sym_true] = ACTIONS(4863), - [anon_sym_false] = ACTIONS(4863), - [anon_sym_SQUOTE] = ACTIONS(4865), - [sym__backtick_identifier] = ACTIONS(4865), - [sym__automatic_semicolon] = ACTIONS(4865), - [sym_safe_nav] = ACTIONS(4865), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4865), - }, - [1101] = { - [sym__alpha_identifier] = ACTIONS(4867), - [anon_sym_AT] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_as] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_COMMA] = ACTIONS(4869), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_where] = ACTIONS(4867), - [anon_sym_object] = ACTIONS(4867), - [anon_sym_fun] = ACTIONS(4867), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_get] = ACTIONS(4867), - [anon_sym_set] = ACTIONS(4867), - [anon_sym_this] = ACTIONS(4867), - [anon_sym_super] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4867), - [sym_label] = ACTIONS(4867), - [anon_sym_in] = ACTIONS(4867), - [anon_sym_DOT_DOT] = ACTIONS(4869), - [anon_sym_QMARK_COLON] = ACTIONS(4869), - [anon_sym_AMP_AMP] = ACTIONS(4869), - [anon_sym_PIPE_PIPE] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(4867), - [anon_sym_if] = ACTIONS(4867), - [anon_sym_else] = ACTIONS(4867), - [anon_sym_when] = ACTIONS(4867), - [anon_sym_try] = ACTIONS(4867), - [anon_sym_throw] = ACTIONS(4867), - [anon_sym_return] = ACTIONS(4867), - [anon_sym_continue] = ACTIONS(4867), - [anon_sym_break] = ACTIONS(4867), - [anon_sym_COLON_COLON] = ACTIONS(4869), - [anon_sym_PLUS_EQ] = ACTIONS(4869), - [anon_sym_DASH_EQ] = ACTIONS(4869), - [anon_sym_STAR_EQ] = ACTIONS(4869), - [anon_sym_SLASH_EQ] = ACTIONS(4869), - [anon_sym_PERCENT_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), - [anon_sym_LT_EQ] = ACTIONS(4869), - [anon_sym_GT_EQ] = ACTIONS(4869), - [anon_sym_BANGin] = ACTIONS(4869), - [anon_sym_is] = ACTIONS(4867), - [anon_sym_BANGis] = ACTIONS(4869), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_as_QMARK] = ACTIONS(4869), - [anon_sym_PLUS_PLUS] = ACTIONS(4869), - [anon_sym_DASH_DASH] = ACTIONS(4869), - [anon_sym_BANG] = ACTIONS(4867), - [anon_sym_BANG_BANG] = ACTIONS(4869), - [anon_sym_suspend] = ACTIONS(4867), - [anon_sym_sealed] = ACTIONS(4867), - [anon_sym_annotation] = ACTIONS(4867), - [anon_sym_data] = ACTIONS(4867), - [anon_sym_inner] = ACTIONS(4867), - [anon_sym_override] = ACTIONS(4867), - [anon_sym_lateinit] = ACTIONS(4867), - [anon_sym_public] = ACTIONS(4867), - [anon_sym_private] = ACTIONS(4867), - [anon_sym_internal] = ACTIONS(4867), - [anon_sym_protected] = ACTIONS(4867), - [anon_sym_tailrec] = ACTIONS(4867), - [anon_sym_operator] = ACTIONS(4867), - [anon_sym_infix] = ACTIONS(4867), - [anon_sym_inline] = ACTIONS(4867), - [anon_sym_external] = ACTIONS(4867), - [sym_property_modifier] = ACTIONS(4867), - [anon_sym_abstract] = ACTIONS(4867), - [anon_sym_final] = ACTIONS(4867), - [anon_sym_open] = ACTIONS(4867), - [anon_sym_vararg] = ACTIONS(4867), - [anon_sym_noinline] = ACTIONS(4867), - [anon_sym_crossinline] = ACTIONS(4867), - [anon_sym_expect] = ACTIONS(4867), - [anon_sym_actual] = ACTIONS(4867), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4869), - [anon_sym_continue_AT] = ACTIONS(4869), - [anon_sym_break_AT] = ACTIONS(4869), - [sym_real_literal] = ACTIONS(4869), - [sym_integer_literal] = ACTIONS(4867), - [sym_hex_literal] = ACTIONS(4869), - [sym_bin_literal] = ACTIONS(4869), - [anon_sym_true] = ACTIONS(4867), - [anon_sym_false] = ACTIONS(4867), - [anon_sym_SQUOTE] = ACTIONS(4869), - [sym__backtick_identifier] = ACTIONS(4869), - [sym__automatic_semicolon] = ACTIONS(4869), - [sym_safe_nav] = ACTIONS(4869), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4869), + [1085] = { + [sym__alpha_identifier] = ACTIONS(4865), + [anon_sym_AT] = ACTIONS(4867), + [anon_sym_LBRACK] = ACTIONS(4867), + [anon_sym_as] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4867), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4867), + [anon_sym_COMMA] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_where] = ACTIONS(4865), + [anon_sym_object] = ACTIONS(4865), + [anon_sym_fun] = ACTIONS(4865), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_get] = ACTIONS(4865), + [anon_sym_set] = ACTIONS(4865), + [anon_sym_this] = ACTIONS(4865), + [anon_sym_super] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [sym_label] = ACTIONS(4865), + [anon_sym_in] = ACTIONS(4865), + [anon_sym_DOT_DOT] = ACTIONS(4867), + [anon_sym_QMARK_COLON] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_null] = ACTIONS(4865), + [anon_sym_if] = ACTIONS(4865), + [anon_sym_else] = ACTIONS(4865), + [anon_sym_when] = ACTIONS(4865), + [anon_sym_try] = ACTIONS(4865), + [anon_sym_throw] = ACTIONS(4865), + [anon_sym_return] = ACTIONS(4865), + [anon_sym_continue] = ACTIONS(4865), + [anon_sym_break] = ACTIONS(4865), + [anon_sym_COLON_COLON] = ACTIONS(4867), + [anon_sym_PLUS_EQ] = ACTIONS(4867), + [anon_sym_DASH_EQ] = ACTIONS(4867), + [anon_sym_STAR_EQ] = ACTIONS(4867), + [anon_sym_SLASH_EQ] = ACTIONS(4867), + [anon_sym_PERCENT_EQ] = ACTIONS(4867), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), + [anon_sym_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), + [anon_sym_LT_EQ] = ACTIONS(4867), + [anon_sym_GT_EQ] = ACTIONS(4867), + [anon_sym_BANGin] = ACTIONS(4867), + [anon_sym_is] = ACTIONS(4865), + [anon_sym_BANGis] = ACTIONS(4867), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_as_QMARK] = ACTIONS(4867), + [anon_sym_PLUS_PLUS] = ACTIONS(4867), + [anon_sym_DASH_DASH] = ACTIONS(4867), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_BANG_BANG] = ACTIONS(4867), + [anon_sym_suspend] = ACTIONS(4865), + [anon_sym_sealed] = ACTIONS(4865), + [anon_sym_annotation] = ACTIONS(4865), + [anon_sym_data] = ACTIONS(4865), + [anon_sym_inner] = ACTIONS(4865), + [anon_sym_override] = ACTIONS(4865), + [anon_sym_lateinit] = ACTIONS(4865), + [anon_sym_public] = ACTIONS(4865), + [anon_sym_private] = ACTIONS(4865), + [anon_sym_internal] = ACTIONS(4865), + [anon_sym_protected] = ACTIONS(4865), + [anon_sym_tailrec] = ACTIONS(4865), + [anon_sym_operator] = ACTIONS(4865), + [anon_sym_infix] = ACTIONS(4865), + [anon_sym_inline] = ACTIONS(4865), + [anon_sym_external] = ACTIONS(4865), + [sym_property_modifier] = ACTIONS(4865), + [anon_sym_abstract] = ACTIONS(4865), + [anon_sym_final] = ACTIONS(4865), + [anon_sym_open] = ACTIONS(4865), + [anon_sym_vararg] = ACTIONS(4865), + [anon_sym_noinline] = ACTIONS(4865), + [anon_sym_crossinline] = ACTIONS(4865), + [anon_sym_expect] = ACTIONS(4865), + [anon_sym_actual] = ACTIONS(4865), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4867), + [anon_sym_continue_AT] = ACTIONS(4867), + [anon_sym_break_AT] = ACTIONS(4867), + [sym_real_literal] = ACTIONS(4867), + [sym_integer_literal] = ACTIONS(4865), + [sym_hex_literal] = ACTIONS(4867), + [sym_bin_literal] = ACTIONS(4867), + [anon_sym_true] = ACTIONS(4865), + [anon_sym_false] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4867), + [sym__backtick_identifier] = ACTIONS(4867), + [sym__automatic_semicolon] = ACTIONS(4867), + [sym_safe_nav] = ACTIONS(4867), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4867), }, - [1102] = { - [sym__alpha_identifier] = ACTIONS(4871), - [anon_sym_AT] = ACTIONS(4873), - [anon_sym_LBRACK] = ACTIONS(4873), - [anon_sym_as] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(4873), - [anon_sym_RBRACE] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4873), - [anon_sym_COMMA] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4871), - [anon_sym_GT] = ACTIONS(4871), - [anon_sym_where] = ACTIONS(4871), - [anon_sym_object] = ACTIONS(4871), - [anon_sym_fun] = ACTIONS(4871), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_this] = ACTIONS(4871), - [anon_sym_super] = ACTIONS(4871), - [anon_sym_STAR] = ACTIONS(4871), - [sym_label] = ACTIONS(4871), - [anon_sym_in] = ACTIONS(4871), - [anon_sym_DOT_DOT] = ACTIONS(4873), - [anon_sym_QMARK_COLON] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_null] = ACTIONS(4871), - [anon_sym_if] = ACTIONS(4871), - [anon_sym_else] = ACTIONS(4871), - [anon_sym_when] = ACTIONS(4871), - [anon_sym_try] = ACTIONS(4871), - [anon_sym_throw] = ACTIONS(4871), - [anon_sym_return] = ACTIONS(4871), - [anon_sym_continue] = ACTIONS(4871), - [anon_sym_break] = ACTIONS(4871), - [anon_sym_COLON_COLON] = ACTIONS(4873), - [anon_sym_PLUS_EQ] = ACTIONS(4873), - [anon_sym_DASH_EQ] = ACTIONS(4873), - [anon_sym_STAR_EQ] = ACTIONS(4873), - [anon_sym_SLASH_EQ] = ACTIONS(4873), - [anon_sym_PERCENT_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT_EQ] = ACTIONS(4873), - [anon_sym_GT_EQ] = ACTIONS(4873), - [anon_sym_BANGin] = ACTIONS(4873), - [anon_sym_is] = ACTIONS(4871), - [anon_sym_BANGis] = ACTIONS(4873), - [anon_sym_PLUS] = ACTIONS(4871), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_SLASH] = ACTIONS(4871), - [anon_sym_PERCENT] = ACTIONS(4871), - [anon_sym_as_QMARK] = ACTIONS(4873), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_BANG] = ACTIONS(4871), - [anon_sym_BANG_BANG] = ACTIONS(4873), - [anon_sym_suspend] = ACTIONS(4871), - [anon_sym_sealed] = ACTIONS(4871), - [anon_sym_annotation] = ACTIONS(4871), - [anon_sym_data] = ACTIONS(4871), - [anon_sym_inner] = ACTIONS(4871), - [anon_sym_override] = ACTIONS(4871), - [anon_sym_lateinit] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_internal] = ACTIONS(4871), - [anon_sym_protected] = ACTIONS(4871), - [anon_sym_tailrec] = ACTIONS(4871), - [anon_sym_operator] = ACTIONS(4871), - [anon_sym_infix] = ACTIONS(4871), - [anon_sym_inline] = ACTIONS(4871), - [anon_sym_external] = ACTIONS(4871), - [sym_property_modifier] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_open] = ACTIONS(4871), - [anon_sym_vararg] = ACTIONS(4871), - [anon_sym_noinline] = ACTIONS(4871), - [anon_sym_crossinline] = ACTIONS(4871), - [anon_sym_expect] = ACTIONS(4871), - [anon_sym_actual] = ACTIONS(4871), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4873), - [anon_sym_continue_AT] = ACTIONS(4873), - [anon_sym_break_AT] = ACTIONS(4873), - [sym_real_literal] = ACTIONS(4873), - [sym_integer_literal] = ACTIONS(4871), - [sym_hex_literal] = ACTIONS(4873), - [sym_bin_literal] = ACTIONS(4873), - [anon_sym_true] = ACTIONS(4871), - [anon_sym_false] = ACTIONS(4871), - [anon_sym_SQUOTE] = ACTIONS(4873), - [sym__backtick_identifier] = ACTIONS(4873), - [sym__automatic_semicolon] = ACTIONS(4873), - [sym_safe_nav] = ACTIONS(4873), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4873), + [1086] = { + [sym__alpha_identifier] = ACTIONS(4869), + [anon_sym_AT] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_where] = ACTIONS(4869), + [anon_sym_object] = ACTIONS(4869), + [anon_sym_fun] = ACTIONS(4869), + [anon_sym_DOT] = ACTIONS(4869), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4869), + [anon_sym_set] = ACTIONS(4869), + [anon_sym_this] = ACTIONS(4869), + [anon_sym_super] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [sym_label] = ACTIONS(4869), + [anon_sym_in] = ACTIONS(4869), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_QMARK_COLON] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_null] = ACTIONS(4869), + [anon_sym_if] = ACTIONS(4869), + [anon_sym_else] = ACTIONS(4869), + [anon_sym_when] = ACTIONS(4869), + [anon_sym_try] = ACTIONS(4869), + [anon_sym_throw] = ACTIONS(4869), + [anon_sym_return] = ACTIONS(4869), + [anon_sym_continue] = ACTIONS(4869), + [anon_sym_break] = ACTIONS(4869), + [anon_sym_COLON_COLON] = ACTIONS(4871), + [anon_sym_PLUS_EQ] = ACTIONS(4871), + [anon_sym_DASH_EQ] = ACTIONS(4871), + [anon_sym_STAR_EQ] = ACTIONS(4871), + [anon_sym_SLASH_EQ] = ACTIONS(4871), + [anon_sym_PERCENT_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_BANGin] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4869), + [anon_sym_BANGis] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_as_QMARK] = ACTIONS(4871), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_BANG] = ACTIONS(4869), + [anon_sym_BANG_BANG] = ACTIONS(4871), + [anon_sym_suspend] = ACTIONS(4869), + [anon_sym_sealed] = ACTIONS(4869), + [anon_sym_annotation] = ACTIONS(4869), + [anon_sym_data] = ACTIONS(4869), + [anon_sym_inner] = ACTIONS(4869), + [anon_sym_override] = ACTIONS(4869), + [anon_sym_lateinit] = ACTIONS(4869), + [anon_sym_public] = ACTIONS(4869), + [anon_sym_private] = ACTIONS(4869), + [anon_sym_internal] = ACTIONS(4869), + [anon_sym_protected] = ACTIONS(4869), + [anon_sym_tailrec] = ACTIONS(4869), + [anon_sym_operator] = ACTIONS(4869), + [anon_sym_infix] = ACTIONS(4869), + [anon_sym_inline] = ACTIONS(4869), + [anon_sym_external] = ACTIONS(4869), + [sym_property_modifier] = ACTIONS(4869), + [anon_sym_abstract] = ACTIONS(4869), + [anon_sym_final] = ACTIONS(4869), + [anon_sym_open] = ACTIONS(4869), + [anon_sym_vararg] = ACTIONS(4869), + [anon_sym_noinline] = ACTIONS(4869), + [anon_sym_crossinline] = ACTIONS(4869), + [anon_sym_expect] = ACTIONS(4869), + [anon_sym_actual] = ACTIONS(4869), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4871), + [anon_sym_continue_AT] = ACTIONS(4871), + [anon_sym_break_AT] = ACTIONS(4871), + [sym_real_literal] = ACTIONS(4871), + [sym_integer_literal] = ACTIONS(4869), + [sym_hex_literal] = ACTIONS(4871), + [sym_bin_literal] = ACTIONS(4871), + [anon_sym_true] = ACTIONS(4869), + [anon_sym_false] = ACTIONS(4869), + [anon_sym_SQUOTE] = ACTIONS(4871), + [sym__backtick_identifier] = ACTIONS(4871), + [sym__automatic_semicolon] = ACTIONS(4871), + [sym_safe_nav] = ACTIONS(4871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4871), }, - [1103] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_object] = ACTIONS(4840), - [anon_sym_fun] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_this] = ACTIONS(4840), - [anon_sym_super] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_when] = ACTIONS(4840), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_throw] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4844), - [anon_sym_PLUS_EQ] = ACTIONS(4877), - [anon_sym_DASH_EQ] = ACTIONS(4877), - [anon_sym_STAR_EQ] = ACTIONS(4877), - [anon_sym_SLASH_EQ] = ACTIONS(4877), - [anon_sym_PERCENT_EQ] = ACTIONS(4877), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4842), - [anon_sym_continue_AT] = ACTIONS(4842), - [anon_sym_break_AT] = ACTIONS(4842), - [sym_real_literal] = ACTIONS(4842), - [sym_integer_literal] = ACTIONS(4840), - [sym_hex_literal] = ACTIONS(4842), - [sym_bin_literal] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4842), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4842), + [1087] = { + [sym__alpha_identifier] = ACTIONS(4873), + [anon_sym_AT] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_where] = ACTIONS(4873), + [anon_sym_object] = ACTIONS(4873), + [anon_sym_fun] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_get] = ACTIONS(4873), + [anon_sym_set] = ACTIONS(4873), + [anon_sym_this] = ACTIONS(4873), + [anon_sym_super] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [sym_label] = ACTIONS(4873), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_QMARK_COLON] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_null] = ACTIONS(4873), + [anon_sym_if] = ACTIONS(4873), + [anon_sym_else] = ACTIONS(4873), + [anon_sym_when] = ACTIONS(4873), + [anon_sym_try] = ACTIONS(4873), + [anon_sym_throw] = ACTIONS(4873), + [anon_sym_return] = ACTIONS(4873), + [anon_sym_continue] = ACTIONS(4873), + [anon_sym_break] = ACTIONS(4873), + [anon_sym_COLON_COLON] = ACTIONS(4875), + [anon_sym_PLUS_EQ] = ACTIONS(4875), + [anon_sym_DASH_EQ] = ACTIONS(4875), + [anon_sym_STAR_EQ] = ACTIONS(4875), + [anon_sym_SLASH_EQ] = ACTIONS(4875), + [anon_sym_PERCENT_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_BANGin] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4873), + [anon_sym_BANGis] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_as_QMARK] = ACTIONS(4875), + [anon_sym_PLUS_PLUS] = ACTIONS(4875), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_BANG_BANG] = ACTIONS(4875), + [anon_sym_suspend] = ACTIONS(4873), + [anon_sym_sealed] = ACTIONS(4873), + [anon_sym_annotation] = ACTIONS(4873), + [anon_sym_data] = ACTIONS(4873), + [anon_sym_inner] = ACTIONS(4873), + [anon_sym_override] = ACTIONS(4873), + [anon_sym_lateinit] = ACTIONS(4873), + [anon_sym_public] = ACTIONS(4873), + [anon_sym_private] = ACTIONS(4873), + [anon_sym_internal] = ACTIONS(4873), + [anon_sym_protected] = ACTIONS(4873), + [anon_sym_tailrec] = ACTIONS(4873), + [anon_sym_operator] = ACTIONS(4873), + [anon_sym_infix] = ACTIONS(4873), + [anon_sym_inline] = ACTIONS(4873), + [anon_sym_external] = ACTIONS(4873), + [sym_property_modifier] = ACTIONS(4873), + [anon_sym_abstract] = ACTIONS(4873), + [anon_sym_final] = ACTIONS(4873), + [anon_sym_open] = ACTIONS(4873), + [anon_sym_vararg] = ACTIONS(4873), + [anon_sym_noinline] = ACTIONS(4873), + [anon_sym_crossinline] = ACTIONS(4873), + [anon_sym_expect] = ACTIONS(4873), + [anon_sym_actual] = ACTIONS(4873), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4875), + [anon_sym_continue_AT] = ACTIONS(4875), + [anon_sym_break_AT] = ACTIONS(4875), + [sym_real_literal] = ACTIONS(4875), + [sym_integer_literal] = ACTIONS(4873), + [sym_hex_literal] = ACTIONS(4875), + [sym_bin_literal] = ACTIONS(4875), + [anon_sym_true] = ACTIONS(4873), + [anon_sym_false] = ACTIONS(4873), + [anon_sym_SQUOTE] = ACTIONS(4875), + [sym__backtick_identifier] = ACTIONS(4875), + [sym__automatic_semicolon] = ACTIONS(4875), + [sym_safe_nav] = ACTIONS(4875), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4875), }, - [1104] = { - [sym__alpha_identifier] = ACTIONS(4879), - [anon_sym_AT] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_where] = ACTIONS(4879), - [anon_sym_object] = ACTIONS(4879), - [anon_sym_fun] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4881), - [anon_sym_get] = ACTIONS(4879), - [anon_sym_set] = ACTIONS(4879), - [anon_sym_this] = ACTIONS(4879), - [anon_sym_super] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [sym_label] = ACTIONS(4879), - [anon_sym_in] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4881), - [anon_sym_QMARK_COLON] = ACTIONS(4881), - [anon_sym_AMP_AMP] = ACTIONS(4881), - [anon_sym_PIPE_PIPE] = ACTIONS(4881), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_if] = ACTIONS(4879), - [anon_sym_else] = ACTIONS(4879), - [anon_sym_when] = ACTIONS(4879), - [anon_sym_try] = ACTIONS(4879), - [anon_sym_throw] = ACTIONS(4879), - [anon_sym_return] = ACTIONS(4879), - [anon_sym_continue] = ACTIONS(4879), - [anon_sym_break] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4881), - [anon_sym_PLUS_EQ] = ACTIONS(4881), - [anon_sym_DASH_EQ] = ACTIONS(4881), - [anon_sym_STAR_EQ] = ACTIONS(4881), - [anon_sym_SLASH_EQ] = ACTIONS(4881), - [anon_sym_PERCENT_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4881), - [anon_sym_LT_EQ] = ACTIONS(4881), - [anon_sym_GT_EQ] = ACTIONS(4881), - [anon_sym_BANGin] = ACTIONS(4881), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_BANGis] = ACTIONS(4881), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_as_QMARK] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4881), - [anon_sym_DASH_DASH] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_BANG_BANG] = ACTIONS(4881), - [anon_sym_suspend] = ACTIONS(4879), - [anon_sym_sealed] = ACTIONS(4879), - [anon_sym_annotation] = ACTIONS(4879), - [anon_sym_data] = ACTIONS(4879), - [anon_sym_inner] = ACTIONS(4879), - [anon_sym_override] = ACTIONS(4879), - [anon_sym_lateinit] = ACTIONS(4879), - [anon_sym_public] = ACTIONS(4879), - [anon_sym_private] = ACTIONS(4879), - [anon_sym_internal] = ACTIONS(4879), - [anon_sym_protected] = ACTIONS(4879), - [anon_sym_tailrec] = ACTIONS(4879), - [anon_sym_operator] = ACTIONS(4879), - [anon_sym_infix] = ACTIONS(4879), - [anon_sym_inline] = ACTIONS(4879), - [anon_sym_external] = ACTIONS(4879), - [sym_property_modifier] = ACTIONS(4879), - [anon_sym_abstract] = ACTIONS(4879), - [anon_sym_final] = ACTIONS(4879), - [anon_sym_open] = ACTIONS(4879), - [anon_sym_vararg] = ACTIONS(4879), - [anon_sym_noinline] = ACTIONS(4879), - [anon_sym_crossinline] = ACTIONS(4879), - [anon_sym_expect] = ACTIONS(4879), - [anon_sym_actual] = ACTIONS(4879), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4881), - [anon_sym_continue_AT] = ACTIONS(4881), - [anon_sym_break_AT] = ACTIONS(4881), - [sym_real_literal] = ACTIONS(4881), - [sym_integer_literal] = ACTIONS(4879), - [sym_hex_literal] = ACTIONS(4881), - [sym_bin_literal] = ACTIONS(4881), - [anon_sym_true] = ACTIONS(4879), - [anon_sym_false] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4881), - [sym__backtick_identifier] = ACTIONS(4881), - [sym__automatic_semicolon] = ACTIONS(4881), - [sym_safe_nav] = ACTIONS(4881), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4881), + [1088] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(4881), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, - [1105] = { - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), + [1089] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4883), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(4881), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, - [1106] = { - [sym__alpha_identifier] = ACTIONS(4883), - [anon_sym_AT] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_as] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4883), - [anon_sym_GT] = ACTIONS(4883), - [anon_sym_where] = ACTIONS(4883), - [anon_sym_object] = ACTIONS(4883), - [anon_sym_fun] = ACTIONS(4883), - [anon_sym_DOT] = ACTIONS(4883), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_get] = ACTIONS(4883), - [anon_sym_set] = ACTIONS(4883), - [anon_sym_this] = ACTIONS(4883), - [anon_sym_super] = ACTIONS(4883), - [anon_sym_STAR] = ACTIONS(4883), - [sym_label] = ACTIONS(4883), - [anon_sym_in] = ACTIONS(4883), - [anon_sym_DOT_DOT] = ACTIONS(4885), - [anon_sym_QMARK_COLON] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [anon_sym_null] = ACTIONS(4883), - [anon_sym_if] = ACTIONS(4883), - [anon_sym_else] = ACTIONS(4883), - [anon_sym_when] = ACTIONS(4883), - [anon_sym_try] = ACTIONS(4883), - [anon_sym_throw] = ACTIONS(4883), - [anon_sym_return] = ACTIONS(4883), - [anon_sym_continue] = ACTIONS(4883), - [anon_sym_break] = ACTIONS(4883), - [anon_sym_COLON_COLON] = ACTIONS(4885), - [anon_sym_PLUS_EQ] = ACTIONS(4885), - [anon_sym_DASH_EQ] = ACTIONS(4885), - [anon_sym_STAR_EQ] = ACTIONS(4885), - [anon_sym_SLASH_EQ] = ACTIONS(4885), - [anon_sym_PERCENT_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT_EQ] = ACTIONS(4885), - [anon_sym_GT_EQ] = ACTIONS(4885), - [anon_sym_BANGin] = ACTIONS(4885), - [anon_sym_is] = ACTIONS(4883), - [anon_sym_BANGis] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_SLASH] = ACTIONS(4883), - [anon_sym_PERCENT] = ACTIONS(4883), - [anon_sym_as_QMARK] = ACTIONS(4885), - [anon_sym_PLUS_PLUS] = ACTIONS(4885), - [anon_sym_DASH_DASH] = ACTIONS(4885), - [anon_sym_BANG] = ACTIONS(4883), - [anon_sym_BANG_BANG] = ACTIONS(4885), - [anon_sym_suspend] = ACTIONS(4883), - [anon_sym_sealed] = ACTIONS(4883), - [anon_sym_annotation] = ACTIONS(4883), - [anon_sym_data] = ACTIONS(4883), - [anon_sym_inner] = ACTIONS(4883), - [anon_sym_override] = ACTIONS(4883), - [anon_sym_lateinit] = ACTIONS(4883), - [anon_sym_public] = ACTIONS(4883), - [anon_sym_private] = ACTIONS(4883), - [anon_sym_internal] = ACTIONS(4883), - [anon_sym_protected] = ACTIONS(4883), - [anon_sym_tailrec] = ACTIONS(4883), - [anon_sym_operator] = ACTIONS(4883), - [anon_sym_infix] = ACTIONS(4883), - [anon_sym_inline] = ACTIONS(4883), - [anon_sym_external] = ACTIONS(4883), - [sym_property_modifier] = ACTIONS(4883), - [anon_sym_abstract] = ACTIONS(4883), - [anon_sym_final] = ACTIONS(4883), - [anon_sym_open] = ACTIONS(4883), - [anon_sym_vararg] = ACTIONS(4883), - [anon_sym_noinline] = ACTIONS(4883), - [anon_sym_crossinline] = ACTIONS(4883), - [anon_sym_expect] = ACTIONS(4883), - [anon_sym_actual] = ACTIONS(4883), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4885), - [anon_sym_continue_AT] = ACTIONS(4885), - [anon_sym_break_AT] = ACTIONS(4885), - [sym_real_literal] = ACTIONS(4885), - [sym_integer_literal] = ACTIONS(4883), - [sym_hex_literal] = ACTIONS(4885), - [sym_bin_literal] = ACTIONS(4885), - [anon_sym_true] = ACTIONS(4883), - [anon_sym_false] = ACTIONS(4883), - [anon_sym_SQUOTE] = ACTIONS(4885), - [sym__backtick_identifier] = ACTIONS(4885), - [sym__automatic_semicolon] = ACTIONS(4885), - [sym_safe_nav] = ACTIONS(4885), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4885), + [1090] = { + [sym__alpha_identifier] = ACTIONS(4885), + [anon_sym_AT] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_where] = ACTIONS(4885), + [anon_sym_object] = ACTIONS(4885), + [anon_sym_fun] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_get] = ACTIONS(4885), + [anon_sym_set] = ACTIONS(4885), + [anon_sym_this] = ACTIONS(4885), + [anon_sym_super] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4885), + [sym_label] = ACTIONS(4885), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_QMARK_COLON] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_null] = ACTIONS(4885), + [anon_sym_if] = ACTIONS(4885), + [anon_sym_else] = ACTIONS(4885), + [anon_sym_when] = ACTIONS(4885), + [anon_sym_try] = ACTIONS(4885), + [anon_sym_throw] = ACTIONS(4885), + [anon_sym_return] = ACTIONS(4885), + [anon_sym_continue] = ACTIONS(4885), + [anon_sym_break] = ACTIONS(4885), + [anon_sym_COLON_COLON] = ACTIONS(4887), + [anon_sym_PLUS_EQ] = ACTIONS(4887), + [anon_sym_DASH_EQ] = ACTIONS(4887), + [anon_sym_STAR_EQ] = ACTIONS(4887), + [anon_sym_SLASH_EQ] = ACTIONS(4887), + [anon_sym_PERCENT_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_BANGin] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_BANGis] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4885), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_as_QMARK] = ACTIONS(4887), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4885), + [anon_sym_BANG_BANG] = ACTIONS(4887), + [anon_sym_suspend] = ACTIONS(4885), + [anon_sym_sealed] = ACTIONS(4885), + [anon_sym_annotation] = ACTIONS(4885), + [anon_sym_data] = ACTIONS(4885), + [anon_sym_inner] = ACTIONS(4885), + [anon_sym_override] = ACTIONS(4885), + [anon_sym_lateinit] = ACTIONS(4885), + [anon_sym_public] = ACTIONS(4885), + [anon_sym_private] = ACTIONS(4885), + [anon_sym_internal] = ACTIONS(4885), + [anon_sym_protected] = ACTIONS(4885), + [anon_sym_tailrec] = ACTIONS(4885), + [anon_sym_operator] = ACTIONS(4885), + [anon_sym_infix] = ACTIONS(4885), + [anon_sym_inline] = ACTIONS(4885), + [anon_sym_external] = ACTIONS(4885), + [sym_property_modifier] = ACTIONS(4885), + [anon_sym_abstract] = ACTIONS(4885), + [anon_sym_final] = ACTIONS(4885), + [anon_sym_open] = ACTIONS(4885), + [anon_sym_vararg] = ACTIONS(4885), + [anon_sym_noinline] = ACTIONS(4885), + [anon_sym_crossinline] = ACTIONS(4885), + [anon_sym_expect] = ACTIONS(4885), + [anon_sym_actual] = ACTIONS(4885), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4887), + [anon_sym_continue_AT] = ACTIONS(4887), + [anon_sym_break_AT] = ACTIONS(4887), + [sym_real_literal] = ACTIONS(4887), + [sym_integer_literal] = ACTIONS(4885), + [sym_hex_literal] = ACTIONS(4887), + [sym_bin_literal] = ACTIONS(4887), + [anon_sym_true] = ACTIONS(4885), + [anon_sym_false] = ACTIONS(4885), + [anon_sym_SQUOTE] = ACTIONS(4887), + [sym__backtick_identifier] = ACTIONS(4887), + [sym__automatic_semicolon] = ACTIONS(4887), + [sym_safe_nav] = ACTIONS(4887), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4887), }, - [1107] = { - [sym__alpha_identifier] = ACTIONS(4887), - [anon_sym_AT] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_as] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4887), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), + [1091] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_where] = ACTIONS(4887), - [anon_sym_object] = ACTIONS(4887), - [anon_sym_fun] = ACTIONS(4887), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_get] = ACTIONS(4887), - [anon_sym_set] = ACTIONS(4887), - [anon_sym_this] = ACTIONS(4887), - [anon_sym_super] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [sym_label] = ACTIONS(4887), - [anon_sym_in] = ACTIONS(4887), - [anon_sym_DOT_DOT] = ACTIONS(4889), - [anon_sym_QMARK_COLON] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_null] = ACTIONS(4887), - [anon_sym_if] = ACTIONS(4887), - [anon_sym_else] = ACTIONS(4887), - [anon_sym_when] = ACTIONS(4887), - [anon_sym_try] = ACTIONS(4887), - [anon_sym_throw] = ACTIONS(4887), - [anon_sym_return] = ACTIONS(4887), - [anon_sym_continue] = ACTIONS(4887), - [anon_sym_break] = ACTIONS(4887), - [anon_sym_COLON_COLON] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(4889), - [anon_sym_DASH_EQ] = ACTIONS(4889), - [anon_sym_STAR_EQ] = ACTIONS(4889), - [anon_sym_SLASH_EQ] = ACTIONS(4889), - [anon_sym_PERCENT_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4889), - [anon_sym_LT_EQ] = ACTIONS(4889), - [anon_sym_GT_EQ] = ACTIONS(4889), - [anon_sym_BANGin] = ACTIONS(4889), - [anon_sym_is] = ACTIONS(4887), - [anon_sym_BANGis] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_PERCENT] = ACTIONS(4887), - [anon_sym_as_QMARK] = ACTIONS(4889), - [anon_sym_PLUS_PLUS] = ACTIONS(4889), - [anon_sym_DASH_DASH] = ACTIONS(4889), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_BANG_BANG] = ACTIONS(4889), - [anon_sym_suspend] = ACTIONS(4887), - [anon_sym_sealed] = ACTIONS(4887), - [anon_sym_annotation] = ACTIONS(4887), - [anon_sym_data] = ACTIONS(4887), - [anon_sym_inner] = ACTIONS(4887), - [anon_sym_override] = ACTIONS(4887), - [anon_sym_lateinit] = ACTIONS(4887), - [anon_sym_public] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4887), - [anon_sym_internal] = ACTIONS(4887), - [anon_sym_protected] = ACTIONS(4887), - [anon_sym_tailrec] = ACTIONS(4887), - [anon_sym_operator] = ACTIONS(4887), - [anon_sym_infix] = ACTIONS(4887), - [anon_sym_inline] = ACTIONS(4887), - [anon_sym_external] = ACTIONS(4887), - [sym_property_modifier] = ACTIONS(4887), - [anon_sym_abstract] = ACTIONS(4887), - [anon_sym_final] = ACTIONS(4887), - [anon_sym_open] = ACTIONS(4887), - [anon_sym_vararg] = ACTIONS(4887), - [anon_sym_noinline] = ACTIONS(4887), - [anon_sym_crossinline] = ACTIONS(4887), - [anon_sym_expect] = ACTIONS(4887), - [anon_sym_actual] = ACTIONS(4887), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4889), - [anon_sym_continue_AT] = ACTIONS(4889), - [anon_sym_break_AT] = ACTIONS(4889), - [sym_real_literal] = ACTIONS(4889), - [sym_integer_literal] = ACTIONS(4887), - [sym_hex_literal] = ACTIONS(4889), - [sym_bin_literal] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4887), - [anon_sym_false] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4889), - [sym__backtick_identifier] = ACTIONS(4889), - [sym__automatic_semicolon] = ACTIONS(4889), - [sym_safe_nav] = ACTIONS(4889), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, - [1108] = { - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_object] = ACTIONS(3969), - [anon_sym_fun] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_this] = ACTIONS(3969), - [anon_sym_super] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3969), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_null] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3969), - [anon_sym_throw] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_continue] = ACTIONS(3969), - [anon_sym_break] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3971), - [anon_sym_PLUS_EQ] = ACTIONS(3971), - [anon_sym_DASH_EQ] = ACTIONS(3971), - [anon_sym_STAR_EQ] = ACTIONS(3971), - [anon_sym_SLASH_EQ] = ACTIONS(3971), - [anon_sym_PERCENT_EQ] = ACTIONS(3971), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3971), - [anon_sym_DASH_DASH] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_BANG_BANG] = ACTIONS(3971), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3971), - [anon_sym_continue_AT] = ACTIONS(3971), - [anon_sym_break_AT] = ACTIONS(3971), - [sym_real_literal] = ACTIONS(3971), - [sym_integer_literal] = ACTIONS(3969), - [sym_hex_literal] = ACTIONS(3971), - [sym_bin_literal] = ACTIONS(3971), - [anon_sym_true] = ACTIONS(3969), - [anon_sym_false] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(3971), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3971), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3971), - }, - [1109] = { - [sym__alpha_identifier] = ACTIONS(4891), - [anon_sym_AT] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_as] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4893), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_LPAREN] = ACTIONS(4893), - [anon_sym_COMMA] = ACTIONS(4893), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_where] = ACTIONS(4891), - [anon_sym_object] = ACTIONS(4891), - [anon_sym_fun] = ACTIONS(4891), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4893), - [anon_sym_get] = ACTIONS(4891), - [anon_sym_set] = ACTIONS(4891), - [anon_sym_this] = ACTIONS(4891), - [anon_sym_super] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [sym_label] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_DOT_DOT] = ACTIONS(4893), - [anon_sym_QMARK_COLON] = ACTIONS(4893), - [anon_sym_AMP_AMP] = ACTIONS(4893), - [anon_sym_PIPE_PIPE] = ACTIONS(4893), - [anon_sym_null] = ACTIONS(4891), - [anon_sym_if] = ACTIONS(4891), - [anon_sym_else] = ACTIONS(4891), - [anon_sym_when] = ACTIONS(4891), - [anon_sym_try] = ACTIONS(4891), - [anon_sym_throw] = ACTIONS(4891), - [anon_sym_return] = ACTIONS(4891), - [anon_sym_continue] = ACTIONS(4891), - [anon_sym_break] = ACTIONS(4891), - [anon_sym_COLON_COLON] = ACTIONS(4893), - [anon_sym_PLUS_EQ] = ACTIONS(4893), - [anon_sym_DASH_EQ] = ACTIONS(4893), - [anon_sym_STAR_EQ] = ACTIONS(4893), - [anon_sym_SLASH_EQ] = ACTIONS(4893), - [anon_sym_PERCENT_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), - [anon_sym_LT_EQ] = ACTIONS(4893), - [anon_sym_GT_EQ] = ACTIONS(4893), - [anon_sym_BANGin] = ACTIONS(4893), - [anon_sym_is] = ACTIONS(4891), - [anon_sym_BANGis] = ACTIONS(4893), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4891), - [anon_sym_as_QMARK] = ACTIONS(4893), - [anon_sym_PLUS_PLUS] = ACTIONS(4893), - [anon_sym_DASH_DASH] = ACTIONS(4893), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_BANG_BANG] = ACTIONS(4893), - [anon_sym_suspend] = ACTIONS(4891), - [anon_sym_sealed] = ACTIONS(4891), - [anon_sym_annotation] = ACTIONS(4891), - [anon_sym_data] = ACTIONS(4891), - [anon_sym_inner] = ACTIONS(4891), - [anon_sym_override] = ACTIONS(4891), - [anon_sym_lateinit] = ACTIONS(4891), - [anon_sym_public] = ACTIONS(4891), - [anon_sym_private] = ACTIONS(4891), - [anon_sym_internal] = ACTIONS(4891), - [anon_sym_protected] = ACTIONS(4891), - [anon_sym_tailrec] = ACTIONS(4891), - [anon_sym_operator] = ACTIONS(4891), - [anon_sym_infix] = ACTIONS(4891), - [anon_sym_inline] = ACTIONS(4891), - [anon_sym_external] = ACTIONS(4891), - [sym_property_modifier] = ACTIONS(4891), - [anon_sym_abstract] = ACTIONS(4891), - [anon_sym_final] = ACTIONS(4891), - [anon_sym_open] = ACTIONS(4891), - [anon_sym_vararg] = ACTIONS(4891), - [anon_sym_noinline] = ACTIONS(4891), - [anon_sym_crossinline] = ACTIONS(4891), - [anon_sym_expect] = ACTIONS(4891), - [anon_sym_actual] = ACTIONS(4891), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4893), - [anon_sym_continue_AT] = ACTIONS(4893), - [anon_sym_break_AT] = ACTIONS(4893), - [sym_real_literal] = ACTIONS(4893), - [sym_integer_literal] = ACTIONS(4891), - [sym_hex_literal] = ACTIONS(4893), - [sym_bin_literal] = ACTIONS(4893), - [anon_sym_true] = ACTIONS(4891), - [anon_sym_false] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4893), - [sym__backtick_identifier] = ACTIONS(4893), - [sym__automatic_semicolon] = ACTIONS(4893), - [sym_safe_nav] = ACTIONS(4893), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4893), - }, - [1110] = { - [sym__alpha_identifier] = ACTIONS(4895), - [anon_sym_AT] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4897), - [anon_sym_as] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4897), - [anon_sym_COMMA] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4895), - [anon_sym_GT] = ACTIONS(4895), - [anon_sym_where] = ACTIONS(4895), - [anon_sym_object] = ACTIONS(4895), - [anon_sym_fun] = ACTIONS(4895), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_get] = ACTIONS(4895), - [anon_sym_set] = ACTIONS(4895), - [anon_sym_this] = ACTIONS(4895), - [anon_sym_super] = ACTIONS(4895), - [anon_sym_STAR] = ACTIONS(4895), - [sym_label] = ACTIONS(4895), - [anon_sym_in] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(4897), - [anon_sym_QMARK_COLON] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_null] = ACTIONS(4895), - [anon_sym_if] = ACTIONS(4895), - [anon_sym_else] = ACTIONS(4895), - [anon_sym_when] = ACTIONS(4895), - [anon_sym_try] = ACTIONS(4895), - [anon_sym_throw] = ACTIONS(4895), - [anon_sym_return] = ACTIONS(4895), - [anon_sym_continue] = ACTIONS(4895), - [anon_sym_break] = ACTIONS(4895), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_PLUS_EQ] = ACTIONS(4897), - [anon_sym_DASH_EQ] = ACTIONS(4897), - [anon_sym_STAR_EQ] = ACTIONS(4897), - [anon_sym_SLASH_EQ] = ACTIONS(4897), - [anon_sym_PERCENT_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT_EQ] = ACTIONS(4897), - [anon_sym_GT_EQ] = ACTIONS(4897), - [anon_sym_BANGin] = ACTIONS(4897), - [anon_sym_is] = ACTIONS(4895), - [anon_sym_BANGis] = ACTIONS(4897), - [anon_sym_PLUS] = ACTIONS(4895), - [anon_sym_DASH] = ACTIONS(4895), - [anon_sym_SLASH] = ACTIONS(4895), - [anon_sym_PERCENT] = ACTIONS(4895), - [anon_sym_as_QMARK] = ACTIONS(4897), - [anon_sym_PLUS_PLUS] = ACTIONS(4897), - [anon_sym_DASH_DASH] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4895), - [anon_sym_BANG_BANG] = ACTIONS(4897), - [anon_sym_suspend] = ACTIONS(4895), - [anon_sym_sealed] = ACTIONS(4895), - [anon_sym_annotation] = ACTIONS(4895), - [anon_sym_data] = ACTIONS(4895), - [anon_sym_inner] = ACTIONS(4895), - [anon_sym_override] = ACTIONS(4895), - [anon_sym_lateinit] = ACTIONS(4895), - [anon_sym_public] = ACTIONS(4895), - [anon_sym_private] = ACTIONS(4895), - [anon_sym_internal] = ACTIONS(4895), - [anon_sym_protected] = ACTIONS(4895), - [anon_sym_tailrec] = ACTIONS(4895), - [anon_sym_operator] = ACTIONS(4895), - [anon_sym_infix] = ACTIONS(4895), - [anon_sym_inline] = ACTIONS(4895), - [anon_sym_external] = ACTIONS(4895), - [sym_property_modifier] = ACTIONS(4895), - [anon_sym_abstract] = ACTIONS(4895), - [anon_sym_final] = ACTIONS(4895), - [anon_sym_open] = ACTIONS(4895), - [anon_sym_vararg] = ACTIONS(4895), - [anon_sym_noinline] = ACTIONS(4895), - [anon_sym_crossinline] = ACTIONS(4895), - [anon_sym_expect] = ACTIONS(4895), - [anon_sym_actual] = ACTIONS(4895), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4897), - [anon_sym_continue_AT] = ACTIONS(4897), - [anon_sym_break_AT] = ACTIONS(4897), - [sym_real_literal] = ACTIONS(4897), - [sym_integer_literal] = ACTIONS(4895), - [sym_hex_literal] = ACTIONS(4897), - [sym_bin_literal] = ACTIONS(4897), - [anon_sym_true] = ACTIONS(4895), - [anon_sym_false] = ACTIONS(4895), - [anon_sym_SQUOTE] = ACTIONS(4897), - [sym__backtick_identifier] = ACTIONS(4897), - [sym__automatic_semicolon] = ACTIONS(4897), - [sym_safe_nav] = ACTIONS(4897), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4897), + [1092] = { + [sym__alpha_identifier] = ACTIONS(4893), + [anon_sym_AT] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_as] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_where] = ACTIONS(4893), + [anon_sym_object] = ACTIONS(4893), + [anon_sym_fun] = ACTIONS(4893), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_get] = ACTIONS(4893), + [anon_sym_set] = ACTIONS(4893), + [anon_sym_this] = ACTIONS(4893), + [anon_sym_super] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [sym_label] = ACTIONS(4893), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_DOT_DOT] = ACTIONS(4895), + [anon_sym_QMARK_COLON] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_null] = ACTIONS(4893), + [anon_sym_if] = ACTIONS(4893), + [anon_sym_else] = ACTIONS(4893), + [anon_sym_when] = ACTIONS(4893), + [anon_sym_try] = ACTIONS(4893), + [anon_sym_throw] = ACTIONS(4893), + [anon_sym_return] = ACTIONS(4893), + [anon_sym_continue] = ACTIONS(4893), + [anon_sym_break] = ACTIONS(4893), + [anon_sym_COLON_COLON] = ACTIONS(4895), + [anon_sym_PLUS_EQ] = ACTIONS(4895), + [anon_sym_DASH_EQ] = ACTIONS(4895), + [anon_sym_STAR_EQ] = ACTIONS(4895), + [anon_sym_SLASH_EQ] = ACTIONS(4895), + [anon_sym_PERCENT_EQ] = ACTIONS(4895), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), + [anon_sym_LT_EQ] = ACTIONS(4895), + [anon_sym_GT_EQ] = ACTIONS(4895), + [anon_sym_BANGin] = ACTIONS(4895), + [anon_sym_is] = ACTIONS(4893), + [anon_sym_BANGis] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_as_QMARK] = ACTIONS(4895), + [anon_sym_PLUS_PLUS] = ACTIONS(4895), + [anon_sym_DASH_DASH] = ACTIONS(4895), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_BANG_BANG] = ACTIONS(4895), + [anon_sym_suspend] = ACTIONS(4893), + [anon_sym_sealed] = ACTIONS(4893), + [anon_sym_annotation] = ACTIONS(4893), + [anon_sym_data] = ACTIONS(4893), + [anon_sym_inner] = ACTIONS(4893), + [anon_sym_override] = ACTIONS(4893), + [anon_sym_lateinit] = ACTIONS(4893), + [anon_sym_public] = ACTIONS(4893), + [anon_sym_private] = ACTIONS(4893), + [anon_sym_internal] = ACTIONS(4893), + [anon_sym_protected] = ACTIONS(4893), + [anon_sym_tailrec] = ACTIONS(4893), + [anon_sym_operator] = ACTIONS(4893), + [anon_sym_infix] = ACTIONS(4893), + [anon_sym_inline] = ACTIONS(4893), + [anon_sym_external] = ACTIONS(4893), + [sym_property_modifier] = ACTIONS(4893), + [anon_sym_abstract] = ACTIONS(4893), + [anon_sym_final] = ACTIONS(4893), + [anon_sym_open] = ACTIONS(4893), + [anon_sym_vararg] = ACTIONS(4893), + [anon_sym_noinline] = ACTIONS(4893), + [anon_sym_crossinline] = ACTIONS(4893), + [anon_sym_expect] = ACTIONS(4893), + [anon_sym_actual] = ACTIONS(4893), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4895), + [anon_sym_continue_AT] = ACTIONS(4895), + [anon_sym_break_AT] = ACTIONS(4895), + [sym_real_literal] = ACTIONS(4895), + [sym_integer_literal] = ACTIONS(4893), + [sym_hex_literal] = ACTIONS(4895), + [sym_bin_literal] = ACTIONS(4895), + [anon_sym_true] = ACTIONS(4893), + [anon_sym_false] = ACTIONS(4893), + [anon_sym_SQUOTE] = ACTIONS(4895), + [sym__backtick_identifier] = ACTIONS(4895), + [sym__automatic_semicolon] = ACTIONS(4895), + [sym_safe_nav] = ACTIONS(4895), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4895), }, - [1111] = { - [sym_getter] = STATE(9127), - [sym_setter] = STATE(9127), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1093] = { + [sym_getter] = STATE(9209), + [sym_setter] = STATE(9209), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8642), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_get] = ACTIONS(4899), + [anon_sym_set] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -162831,113 +161006,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1112] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_object] = ACTIONS(4901), - [anon_sym_fun] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), + [1094] = { + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [1095] = { + [sym_getter] = STATE(9302), + [sym_setter] = STATE(9302), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8642), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), + [anon_sym_get] = ACTIONS(4899), [anon_sym_set] = ACTIONS(4901), - [anon_sym_this] = ACTIONS(4901), - [anon_sym_super] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [sym_label] = ACTIONS(4901), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_null] = ACTIONS(4901), - [anon_sym_if] = ACTIONS(4901), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_when] = ACTIONS(4901), - [anon_sym_try] = ACTIONS(4901), - [anon_sym_throw] = ACTIONS(4901), - [anon_sym_return] = ACTIONS(4901), - [anon_sym_continue] = ACTIONS(4901), - [anon_sym_break] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_suspend] = ACTIONS(4901), - [anon_sym_sealed] = ACTIONS(4901), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_override] = ACTIONS(4901), - [anon_sym_lateinit] = ACTIONS(4901), - [anon_sym_public] = ACTIONS(4901), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_internal] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_tailrec] = ACTIONS(4901), - [anon_sym_operator] = ACTIONS(4901), - [anon_sym_infix] = ACTIONS(4901), - [anon_sym_inline] = ACTIONS(4901), - [anon_sym_external] = ACTIONS(4901), - [sym_property_modifier] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_final] = ACTIONS(4901), - [anon_sym_open] = ACTIONS(4901), - [anon_sym_vararg] = ACTIONS(4901), - [anon_sym_noinline] = ACTIONS(4901), - [anon_sym_crossinline] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4903), - [anon_sym_continue_AT] = ACTIONS(4903), - [anon_sym_break_AT] = ACTIONS(4903), - [sym_real_literal] = ACTIONS(4903), - [sym_integer_literal] = ACTIONS(4901), - [sym_hex_literal] = ACTIONS(4903), - [sym_bin_literal] = ACTIONS(4903), - [anon_sym_true] = ACTIONS(4901), - [anon_sym_false] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4903), - [sym__backtick_identifier] = ACTIONS(4903), - [sym__automatic_semicolon] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4903), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [1113] = { + [1096] = { [sym__alpha_identifier] = ACTIONS(4905), [anon_sym_AT] = ACTIONS(4907), [anon_sym_LBRACK] = ACTIONS(4907), @@ -163040,110 +161318,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4907), }, - [1114] = { - [sym__alpha_identifier] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [anon_sym_fun] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_this] = ACTIONS(1401), - [anon_sym_super] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [sym_label] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_throw] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(1401), - [anon_sym_inner] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(1401), - [anon_sym_actual] = ACTIONS(1401), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1399), - [anon_sym_continue_AT] = ACTIONS(1399), - [anon_sym_break_AT] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [sym_hex_literal] = ACTIONS(1399), - [sym_bin_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1399), - [sym__backtick_identifier] = ACTIONS(1399), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1399), + [1097] = { + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, - [1115] = { + [1098] = { [sym__alpha_identifier] = ACTIONS(4909), [anon_sym_AT] = ACTIONS(4911), [anon_sym_LBRACK] = ACTIONS(4911), @@ -163246,7 +161524,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4911), }, - [1116] = { + [1099] = { + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), + }, + [1100] = { [sym__alpha_identifier] = ACTIONS(4913), [anon_sym_AT] = ACTIONS(4915), [anon_sym_LBRACK] = ACTIONS(4915), @@ -163349,7 +161730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4915), }, - [1117] = { + [1101] = { [sym__alpha_identifier] = ACTIONS(4917), [anon_sym_AT] = ACTIONS(4919), [anon_sym_LBRACK] = ACTIONS(4919), @@ -163452,7 +161833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4919), }, - [1118] = { + [1102] = { [sym__alpha_identifier] = ACTIONS(4921), [anon_sym_AT] = ACTIONS(4923), [anon_sym_LBRACK] = ACTIONS(4923), @@ -163555,213 +161936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4923), }, - [1119] = { - [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_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_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), - [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), - }, - [1120] = { - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = 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_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), - [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), - }, - [1121] = { + [1103] = { [sym__alpha_identifier] = ACTIONS(4925), [anon_sym_AT] = ACTIONS(4927), [anon_sym_LBRACK] = ACTIONS(4927), @@ -163864,1346 +162039,1037 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4927), }, - [1122] = { - [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_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_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), - [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), - }, - [1123] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [1104] = { + [sym__alpha_identifier] = ACTIONS(4929), + [anon_sym_AT] = ACTIONS(4931), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_as] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4929), + [anon_sym_LBRACE] = ACTIONS(4931), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_LPAREN] = ACTIONS(4931), + [anon_sym_COMMA] = ACTIONS(4931), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_where] = ACTIONS(4929), + [anon_sym_object] = ACTIONS(4929), + [anon_sym_fun] = ACTIONS(4929), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_get] = ACTIONS(4929), + [anon_sym_set] = ACTIONS(4929), + [anon_sym_this] = ACTIONS(4929), + [anon_sym_super] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [sym_label] = ACTIONS(4929), + [anon_sym_in] = ACTIONS(4929), + [anon_sym_DOT_DOT] = ACTIONS(4931), + [anon_sym_QMARK_COLON] = ACTIONS(4931), + [anon_sym_AMP_AMP] = ACTIONS(4931), + [anon_sym_PIPE_PIPE] = ACTIONS(4931), + [anon_sym_null] = ACTIONS(4929), + [anon_sym_if] = ACTIONS(4929), + [anon_sym_else] = ACTIONS(4929), + [anon_sym_when] = ACTIONS(4929), + [anon_sym_try] = ACTIONS(4929), + [anon_sym_throw] = ACTIONS(4929), + [anon_sym_return] = ACTIONS(4929), + [anon_sym_continue] = ACTIONS(4929), + [anon_sym_break] = ACTIONS(4929), + [anon_sym_COLON_COLON] = ACTIONS(4931), + [anon_sym_PLUS_EQ] = ACTIONS(4931), + [anon_sym_DASH_EQ] = ACTIONS(4931), + [anon_sym_STAR_EQ] = ACTIONS(4931), + [anon_sym_SLASH_EQ] = ACTIONS(4931), + [anon_sym_PERCENT_EQ] = ACTIONS(4931), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4931), + [anon_sym_EQ_EQ] = ACTIONS(4929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4931), + [anon_sym_LT_EQ] = ACTIONS(4931), + [anon_sym_GT_EQ] = ACTIONS(4931), + [anon_sym_BANGin] = ACTIONS(4931), + [anon_sym_is] = ACTIONS(4929), + [anon_sym_BANGis] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_as_QMARK] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4931), + [anon_sym_DASH_DASH] = ACTIONS(4931), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_BANG_BANG] = ACTIONS(4931), + [anon_sym_suspend] = ACTIONS(4929), + [anon_sym_sealed] = ACTIONS(4929), + [anon_sym_annotation] = ACTIONS(4929), + [anon_sym_data] = ACTIONS(4929), + [anon_sym_inner] = ACTIONS(4929), + [anon_sym_override] = ACTIONS(4929), + [anon_sym_lateinit] = ACTIONS(4929), + [anon_sym_public] = ACTIONS(4929), + [anon_sym_private] = ACTIONS(4929), + [anon_sym_internal] = ACTIONS(4929), + [anon_sym_protected] = ACTIONS(4929), + [anon_sym_tailrec] = ACTIONS(4929), + [anon_sym_operator] = ACTIONS(4929), + [anon_sym_infix] = ACTIONS(4929), + [anon_sym_inline] = ACTIONS(4929), + [anon_sym_external] = ACTIONS(4929), + [sym_property_modifier] = ACTIONS(4929), + [anon_sym_abstract] = ACTIONS(4929), + [anon_sym_final] = ACTIONS(4929), + [anon_sym_open] = ACTIONS(4929), + [anon_sym_vararg] = ACTIONS(4929), + [anon_sym_noinline] = ACTIONS(4929), + [anon_sym_crossinline] = ACTIONS(4929), + [anon_sym_expect] = ACTIONS(4929), + [anon_sym_actual] = ACTIONS(4929), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4931), + [anon_sym_continue_AT] = ACTIONS(4931), + [anon_sym_break_AT] = ACTIONS(4931), + [sym_real_literal] = ACTIONS(4931), + [sym_integer_literal] = ACTIONS(4929), + [sym_hex_literal] = ACTIONS(4931), + [sym_bin_literal] = ACTIONS(4931), + [anon_sym_true] = ACTIONS(4929), + [anon_sym_false] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4931), + [sym__backtick_identifier] = ACTIONS(4931), + [sym__automatic_semicolon] = ACTIONS(4931), + [sym_safe_nav] = ACTIONS(4931), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4931), }, - [1124] = { - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4256), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [1105] = { + [sym__alpha_identifier] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [sym_label] = ACTIONS(3074), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3076), + [anon_sym_QMARK_COLON] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_as_QMARK] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(3076), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(3074), + [anon_sym_inner] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(3074), + [anon_sym_actual] = ACTIONS(3074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [sym__backtick_identifier] = ACTIONS(3076), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3076), }, - [1125] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [1106] = { + [sym__alpha_identifier] = ACTIONS(4933), + [anon_sym_AT] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_COMMA] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4933), + [anon_sym_GT] = ACTIONS(4933), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_object] = ACTIONS(4933), + [anon_sym_fun] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), + [anon_sym_this] = ACTIONS(4933), + [anon_sym_super] = ACTIONS(4933), + [anon_sym_STAR] = ACTIONS(4933), + [sym_label] = ACTIONS(4933), + [anon_sym_in] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4935), + [anon_sym_QMARK_COLON] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4935), + [anon_sym_PIPE_PIPE] = ACTIONS(4935), + [anon_sym_null] = ACTIONS(4933), + [anon_sym_if] = ACTIONS(4933), + [anon_sym_else] = ACTIONS(4933), + [anon_sym_when] = ACTIONS(4933), + [anon_sym_try] = ACTIONS(4933), + [anon_sym_throw] = ACTIONS(4933), + [anon_sym_return] = ACTIONS(4933), + [anon_sym_continue] = ACTIONS(4933), + [anon_sym_break] = ACTIONS(4933), + [anon_sym_COLON_COLON] = ACTIONS(4935), + [anon_sym_PLUS_EQ] = ACTIONS(4935), + [anon_sym_DASH_EQ] = ACTIONS(4935), + [anon_sym_STAR_EQ] = ACTIONS(4935), + [anon_sym_SLASH_EQ] = ACTIONS(4935), + [anon_sym_PERCENT_EQ] = ACTIONS(4935), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4935), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4935), + [anon_sym_LT_EQ] = ACTIONS(4935), + [anon_sym_GT_EQ] = ACTIONS(4935), + [anon_sym_BANGin] = ACTIONS(4935), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_BANGis] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(4933), + [anon_sym_DASH] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4933), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_as_QMARK] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4935), + [anon_sym_DASH_DASH] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4933), + [anon_sym_BANG_BANG] = ACTIONS(4935), + [anon_sym_suspend] = ACTIONS(4933), + [anon_sym_sealed] = ACTIONS(4933), + [anon_sym_annotation] = ACTIONS(4933), + [anon_sym_data] = ACTIONS(4933), + [anon_sym_inner] = ACTIONS(4933), + [anon_sym_override] = ACTIONS(4933), + [anon_sym_lateinit] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_internal] = ACTIONS(4933), + [anon_sym_protected] = ACTIONS(4933), + [anon_sym_tailrec] = ACTIONS(4933), + [anon_sym_operator] = ACTIONS(4933), + [anon_sym_infix] = ACTIONS(4933), + [anon_sym_inline] = ACTIONS(4933), + [anon_sym_external] = ACTIONS(4933), + [sym_property_modifier] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_open] = ACTIONS(4933), + [anon_sym_vararg] = ACTIONS(4933), + [anon_sym_noinline] = ACTIONS(4933), + [anon_sym_crossinline] = ACTIONS(4933), + [anon_sym_expect] = ACTIONS(4933), + [anon_sym_actual] = ACTIONS(4933), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4935), + [anon_sym_continue_AT] = ACTIONS(4935), + [anon_sym_break_AT] = ACTIONS(4935), + [sym_real_literal] = ACTIONS(4935), + [sym_integer_literal] = ACTIONS(4933), + [sym_hex_literal] = ACTIONS(4935), + [sym_bin_literal] = ACTIONS(4935), + [anon_sym_true] = ACTIONS(4933), + [anon_sym_false] = ACTIONS(4933), + [anon_sym_SQUOTE] = ACTIONS(4935), + [sym__backtick_identifier] = ACTIONS(4935), + [sym__automatic_semicolon] = ACTIONS(4935), + [sym_safe_nav] = ACTIONS(4935), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4935), }, - [1126] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_object] = ACTIONS(4931), - [anon_sym_fun] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_this] = ACTIONS(4931), - [anon_sym_super] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [sym_label] = ACTIONS(4931), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_null] = ACTIONS(4931), - [anon_sym_if] = ACTIONS(4931), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_try] = ACTIONS(4931), - [anon_sym_throw] = ACTIONS(4931), - [anon_sym_return] = ACTIONS(4931), - [anon_sym_continue] = ACTIONS(4931), - [anon_sym_break] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_suspend] = ACTIONS(4931), - [anon_sym_sealed] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4931), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), - [anon_sym_lateinit] = ACTIONS(4931), - [anon_sym_public] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4931), - [anon_sym_internal] = ACTIONS(4931), - [anon_sym_protected] = ACTIONS(4931), - [anon_sym_tailrec] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_infix] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym_external] = ACTIONS(4931), - [sym_property_modifier] = ACTIONS(4931), - [anon_sym_abstract] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_open] = ACTIONS(4931), - [anon_sym_vararg] = ACTIONS(4931), - [anon_sym_noinline] = ACTIONS(4931), - [anon_sym_crossinline] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4933), - [anon_sym_continue_AT] = ACTIONS(4933), - [anon_sym_break_AT] = ACTIONS(4933), - [sym_real_literal] = ACTIONS(4933), - [sym_integer_literal] = ACTIONS(4931), - [sym_hex_literal] = ACTIONS(4933), - [sym_bin_literal] = ACTIONS(4933), - [anon_sym_true] = ACTIONS(4931), - [anon_sym_false] = ACTIONS(4931), - [anon_sym_SQUOTE] = ACTIONS(4933), - [sym__backtick_identifier] = ACTIONS(4933), - [sym__automatic_semicolon] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4933), + [1107] = { + [sym__alpha_identifier] = ACTIONS(4937), + [anon_sym_AT] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4937), + [anon_sym_GT] = ACTIONS(4937), + [anon_sym_where] = ACTIONS(4937), + [anon_sym_object] = ACTIONS(4937), + [anon_sym_fun] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4937), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_get] = ACTIONS(4937), + [anon_sym_set] = ACTIONS(4937), + [anon_sym_this] = ACTIONS(4937), + [anon_sym_super] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [sym_label] = ACTIONS(4937), + [anon_sym_in] = ACTIONS(4937), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_QMARK_COLON] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_null] = ACTIONS(4937), + [anon_sym_if] = ACTIONS(4937), + [anon_sym_else] = ACTIONS(4937), + [anon_sym_when] = ACTIONS(4937), + [anon_sym_try] = ACTIONS(4937), + [anon_sym_throw] = ACTIONS(4937), + [anon_sym_return] = ACTIONS(4937), + [anon_sym_continue] = ACTIONS(4937), + [anon_sym_break] = ACTIONS(4937), + [anon_sym_COLON_COLON] = ACTIONS(4939), + [anon_sym_PLUS_EQ] = ACTIONS(4939), + [anon_sym_DASH_EQ] = ACTIONS(4939), + [anon_sym_STAR_EQ] = ACTIONS(4939), + [anon_sym_SLASH_EQ] = ACTIONS(4939), + [anon_sym_PERCENT_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4937), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_BANGin] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4937), + [anon_sym_BANGis] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_as_QMARK] = ACTIONS(4939), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4937), + [anon_sym_BANG_BANG] = ACTIONS(4939), + [anon_sym_suspend] = ACTIONS(4937), + [anon_sym_sealed] = ACTIONS(4937), + [anon_sym_annotation] = ACTIONS(4937), + [anon_sym_data] = ACTIONS(4937), + [anon_sym_inner] = ACTIONS(4937), + [anon_sym_override] = ACTIONS(4937), + [anon_sym_lateinit] = ACTIONS(4937), + [anon_sym_public] = ACTIONS(4937), + [anon_sym_private] = ACTIONS(4937), + [anon_sym_internal] = ACTIONS(4937), + [anon_sym_protected] = ACTIONS(4937), + [anon_sym_tailrec] = ACTIONS(4937), + [anon_sym_operator] = ACTIONS(4937), + [anon_sym_infix] = ACTIONS(4937), + [anon_sym_inline] = ACTIONS(4937), + [anon_sym_external] = ACTIONS(4937), + [sym_property_modifier] = ACTIONS(4937), + [anon_sym_abstract] = ACTIONS(4937), + [anon_sym_final] = ACTIONS(4937), + [anon_sym_open] = ACTIONS(4937), + [anon_sym_vararg] = ACTIONS(4937), + [anon_sym_noinline] = ACTIONS(4937), + [anon_sym_crossinline] = ACTIONS(4937), + [anon_sym_expect] = ACTIONS(4937), + [anon_sym_actual] = ACTIONS(4937), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4939), + [anon_sym_continue_AT] = ACTIONS(4939), + [anon_sym_break_AT] = ACTIONS(4939), + [sym_real_literal] = ACTIONS(4939), + [sym_integer_literal] = ACTIONS(4937), + [sym_hex_literal] = ACTIONS(4939), + [sym_bin_literal] = ACTIONS(4939), + [anon_sym_true] = ACTIONS(4937), + [anon_sym_false] = ACTIONS(4937), + [anon_sym_SQUOTE] = ACTIONS(4939), + [sym__backtick_identifier] = ACTIONS(4939), + [sym__automatic_semicolon] = ACTIONS(4939), + [sym_safe_nav] = ACTIONS(4939), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4939), }, - [1127] = { - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), + [1108] = { + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, - [1128] = { - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(1778), - [anon_sym_set] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(1778), - [anon_sym_sealed] = ACTIONS(1778), - [anon_sym_annotation] = ACTIONS(1778), - [anon_sym_data] = ACTIONS(1778), - [anon_sym_inner] = ACTIONS(1778), - [anon_sym_override] = ACTIONS(1778), - [anon_sym_lateinit] = ACTIONS(1778), - [anon_sym_public] = ACTIONS(1778), - [anon_sym_private] = ACTIONS(1778), - [anon_sym_internal] = ACTIONS(1778), - [anon_sym_protected] = ACTIONS(1778), - [anon_sym_tailrec] = ACTIONS(1778), - [anon_sym_operator] = ACTIONS(1778), - [anon_sym_infix] = ACTIONS(1778), - [anon_sym_inline] = ACTIONS(1778), - [anon_sym_external] = ACTIONS(1778), - [sym_property_modifier] = ACTIONS(1778), - [anon_sym_abstract] = ACTIONS(1778), - [anon_sym_final] = ACTIONS(1778), - [anon_sym_open] = ACTIONS(1778), - [anon_sym_vararg] = ACTIONS(1778), - [anon_sym_noinline] = ACTIONS(1778), - [anon_sym_crossinline] = ACTIONS(1778), - [anon_sym_expect] = ACTIONS(1778), - [anon_sym_actual] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [1109] = { + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(3264), + [anon_sym_sealed] = ACTIONS(3264), + [anon_sym_annotation] = ACTIONS(3264), + [anon_sym_data] = ACTIONS(3264), + [anon_sym_inner] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_lateinit] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_internal] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_tailrec] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_infix] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym_external] = ACTIONS(3264), + [sym_property_modifier] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3264), + [anon_sym_vararg] = ACTIONS(3264), + [anon_sym_noinline] = ACTIONS(3264), + [anon_sym_crossinline] = ACTIONS(3264), + [anon_sym_expect] = ACTIONS(3264), + [anon_sym_actual] = ACTIONS(3264), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [1129] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_object] = ACTIONS(4935), - [anon_sym_fun] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_this] = ACTIONS(4935), - [anon_sym_super] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [sym_label] = ACTIONS(4935), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(4935), - [anon_sym_if] = ACTIONS(4935), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_when] = ACTIONS(4935), - [anon_sym_try] = ACTIONS(4935), - [anon_sym_throw] = ACTIONS(4935), - [anon_sym_return] = ACTIONS(4935), - [anon_sym_continue] = ACTIONS(4935), - [anon_sym_break] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_suspend] = ACTIONS(4935), - [anon_sym_sealed] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4935), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_override] = ACTIONS(4935), - [anon_sym_lateinit] = ACTIONS(4935), - [anon_sym_public] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4935), - [anon_sym_internal] = ACTIONS(4935), - [anon_sym_protected] = ACTIONS(4935), - [anon_sym_tailrec] = ACTIONS(4935), - [anon_sym_operator] = ACTIONS(4935), - [anon_sym_infix] = ACTIONS(4935), - [anon_sym_inline] = ACTIONS(4935), - [anon_sym_external] = ACTIONS(4935), - [sym_property_modifier] = ACTIONS(4935), - [anon_sym_abstract] = ACTIONS(4935), - [anon_sym_final] = ACTIONS(4935), - [anon_sym_open] = ACTIONS(4935), - [anon_sym_vararg] = ACTIONS(4935), - [anon_sym_noinline] = ACTIONS(4935), - [anon_sym_crossinline] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4937), - [anon_sym_continue_AT] = ACTIONS(4937), - [anon_sym_break_AT] = ACTIONS(4937), - [sym_real_literal] = ACTIONS(4937), - [sym_integer_literal] = ACTIONS(4935), - [sym_hex_literal] = ACTIONS(4937), - [sym_bin_literal] = ACTIONS(4937), - [anon_sym_true] = ACTIONS(4935), - [anon_sym_false] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4937), - [sym__backtick_identifier] = ACTIONS(4937), - [sym__automatic_semicolon] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4937), + [1110] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, - [1130] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_object] = ACTIONS(4939), - [anon_sym_fun] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_this] = ACTIONS(4939), - [anon_sym_super] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [sym_label] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_null] = ACTIONS(4939), - [anon_sym_if] = ACTIONS(4939), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_when] = ACTIONS(4939), - [anon_sym_try] = ACTIONS(4939), - [anon_sym_throw] = ACTIONS(4939), - [anon_sym_return] = ACTIONS(4939), - [anon_sym_continue] = ACTIONS(4939), - [anon_sym_break] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_suspend] = ACTIONS(4939), - [anon_sym_sealed] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4939), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_override] = ACTIONS(4939), - [anon_sym_lateinit] = ACTIONS(4939), - [anon_sym_public] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4939), - [anon_sym_internal] = ACTIONS(4939), - [anon_sym_protected] = ACTIONS(4939), - [anon_sym_tailrec] = ACTIONS(4939), - [anon_sym_operator] = ACTIONS(4939), - [anon_sym_infix] = ACTIONS(4939), - [anon_sym_inline] = ACTIONS(4939), - [anon_sym_external] = ACTIONS(4939), - [sym_property_modifier] = ACTIONS(4939), - [anon_sym_abstract] = ACTIONS(4939), - [anon_sym_final] = ACTIONS(4939), - [anon_sym_open] = ACTIONS(4939), - [anon_sym_vararg] = ACTIONS(4939), - [anon_sym_noinline] = ACTIONS(4939), - [anon_sym_crossinline] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4941), - [anon_sym_continue_AT] = ACTIONS(4941), - [anon_sym_break_AT] = ACTIONS(4941), - [sym_real_literal] = ACTIONS(4941), - [sym_integer_literal] = ACTIONS(4939), - [sym_hex_literal] = ACTIONS(4941), - [sym_bin_literal] = ACTIONS(4941), - [anon_sym_true] = ACTIONS(4939), - [anon_sym_false] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4941), - [sym__backtick_identifier] = ACTIONS(4941), - [sym__automatic_semicolon] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4941), + [1111] = { + [sym__alpha_identifier] = ACTIONS(4941), + [anon_sym_AT] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_where] = ACTIONS(4941), + [anon_sym_object] = ACTIONS(4941), + [anon_sym_fun] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_get] = ACTIONS(4941), + [anon_sym_set] = ACTIONS(4941), + [anon_sym_this] = ACTIONS(4941), + [anon_sym_super] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4941), + [sym_label] = ACTIONS(4941), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_QMARK_COLON] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_null] = ACTIONS(4941), + [anon_sym_if] = ACTIONS(4941), + [anon_sym_else] = ACTIONS(4941), + [anon_sym_when] = ACTIONS(4941), + [anon_sym_try] = ACTIONS(4941), + [anon_sym_throw] = ACTIONS(4941), + [anon_sym_return] = ACTIONS(4941), + [anon_sym_continue] = ACTIONS(4941), + [anon_sym_break] = ACTIONS(4941), + [anon_sym_COLON_COLON] = ACTIONS(4943), + [anon_sym_PLUS_EQ] = ACTIONS(4943), + [anon_sym_DASH_EQ] = ACTIONS(4943), + [anon_sym_STAR_EQ] = ACTIONS(4943), + [anon_sym_SLASH_EQ] = ACTIONS(4943), + [anon_sym_PERCENT_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_BANGin] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_BANGis] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_as_QMARK] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4941), + [anon_sym_BANG_BANG] = ACTIONS(4943), + [anon_sym_suspend] = ACTIONS(4941), + [anon_sym_sealed] = ACTIONS(4941), + [anon_sym_annotation] = ACTIONS(4941), + [anon_sym_data] = ACTIONS(4941), + [anon_sym_inner] = ACTIONS(4941), + [anon_sym_override] = ACTIONS(4941), + [anon_sym_lateinit] = ACTIONS(4941), + [anon_sym_public] = ACTIONS(4941), + [anon_sym_private] = ACTIONS(4941), + [anon_sym_internal] = ACTIONS(4941), + [anon_sym_protected] = ACTIONS(4941), + [anon_sym_tailrec] = ACTIONS(4941), + [anon_sym_operator] = ACTIONS(4941), + [anon_sym_infix] = ACTIONS(4941), + [anon_sym_inline] = ACTIONS(4941), + [anon_sym_external] = ACTIONS(4941), + [sym_property_modifier] = ACTIONS(4941), + [anon_sym_abstract] = ACTIONS(4941), + [anon_sym_final] = ACTIONS(4941), + [anon_sym_open] = ACTIONS(4941), + [anon_sym_vararg] = ACTIONS(4941), + [anon_sym_noinline] = ACTIONS(4941), + [anon_sym_crossinline] = ACTIONS(4941), + [anon_sym_expect] = ACTIONS(4941), + [anon_sym_actual] = ACTIONS(4941), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4943), + [anon_sym_continue_AT] = ACTIONS(4943), + [anon_sym_break_AT] = ACTIONS(4943), + [sym_real_literal] = ACTIONS(4943), + [sym_integer_literal] = ACTIONS(4941), + [sym_hex_literal] = ACTIONS(4943), + [sym_bin_literal] = ACTIONS(4943), + [anon_sym_true] = ACTIONS(4941), + [anon_sym_false] = ACTIONS(4941), + [anon_sym_SQUOTE] = ACTIONS(4943), + [sym__backtick_identifier] = ACTIONS(4943), + [sym__automatic_semicolon] = ACTIONS(4943), + [sym_safe_nav] = ACTIONS(4943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4943), }, - [1131] = { - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(4392), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_object] = ACTIONS(4390), - [anon_sym_fun] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_this] = ACTIONS(4390), - [anon_sym_super] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [sym_label] = ACTIONS(4390), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_when] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_throw] = ACTIONS(4390), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_continue] = ACTIONS(4390), - [anon_sym_break] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG] = ACTIONS(4390), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_suspend] = ACTIONS(4390), - [anon_sym_sealed] = ACTIONS(4390), - [anon_sym_annotation] = ACTIONS(4390), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_override] = ACTIONS(4390), - [anon_sym_lateinit] = ACTIONS(4390), - [anon_sym_public] = ACTIONS(4390), - [anon_sym_private] = ACTIONS(4390), - [anon_sym_internal] = ACTIONS(4390), - [anon_sym_protected] = ACTIONS(4390), - [anon_sym_tailrec] = ACTIONS(4390), - [anon_sym_operator] = ACTIONS(4390), - [anon_sym_infix] = ACTIONS(4390), - [anon_sym_inline] = ACTIONS(4390), - [anon_sym_external] = ACTIONS(4390), - [sym_property_modifier] = ACTIONS(4390), - [anon_sym_abstract] = ACTIONS(4390), - [anon_sym_final] = ACTIONS(4390), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_vararg] = ACTIONS(4390), - [anon_sym_noinline] = ACTIONS(4390), - [anon_sym_crossinline] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), + [1112] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_DOT] = 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_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(4392), - [anon_sym_continue_AT] = ACTIONS(4392), - [anon_sym_break_AT] = ACTIONS(4392), - [sym_real_literal] = ACTIONS(4392), - [sym_integer_literal] = ACTIONS(4390), - [sym_hex_literal] = ACTIONS(4392), - [sym_bin_literal] = ACTIONS(4392), - [anon_sym_true] = ACTIONS(4390), - [anon_sym_false] = ACTIONS(4390), - [anon_sym_SQUOTE] = ACTIONS(4392), - [sym__backtick_identifier] = ACTIONS(4392), - [sym__automatic_semicolon] = ACTIONS(4392), - [sym_safe_nav] = ACTIONS(4392), + [anon_sym_return_AT] = ACTIONS(4527), + [anon_sym_continue_AT] = ACTIONS(4527), + [anon_sym_break_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(4392), - }, - [1132] = { - [sym__alpha_identifier] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(3029), - [anon_sym_set] = ACTIONS(3029), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [sym_label] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3031), - [anon_sym_QMARK_COLON] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_as_QMARK] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_BANG_BANG] = ACTIONS(3031), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(3029), - [anon_sym_inner] = ACTIONS(3029), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(3029), - [anon_sym_actual] = ACTIONS(3029), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), - [sym__backtick_identifier] = ACTIONS(3031), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3031), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), - }, - [1133] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_object] = ACTIONS(4943), - [anon_sym_fun] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_this] = ACTIONS(4943), - [anon_sym_super] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [sym_label] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_null] = ACTIONS(4943), - [anon_sym_if] = ACTIONS(4943), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_when] = ACTIONS(4943), - [anon_sym_try] = ACTIONS(4943), - [anon_sym_throw] = ACTIONS(4943), - [anon_sym_return] = ACTIONS(4943), - [anon_sym_continue] = ACTIONS(4943), - [anon_sym_break] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_suspend] = ACTIONS(4943), - [anon_sym_sealed] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4943), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_override] = ACTIONS(4943), - [anon_sym_lateinit] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_internal] = ACTIONS(4943), - [anon_sym_protected] = ACTIONS(4943), - [anon_sym_tailrec] = ACTIONS(4943), - [anon_sym_operator] = ACTIONS(4943), - [anon_sym_infix] = ACTIONS(4943), - [anon_sym_inline] = ACTIONS(4943), - [anon_sym_external] = ACTIONS(4943), - [sym_property_modifier] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_open] = ACTIONS(4943), - [anon_sym_vararg] = ACTIONS(4943), - [anon_sym_noinline] = ACTIONS(4943), - [anon_sym_crossinline] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4945), - [anon_sym_continue_AT] = ACTIONS(4945), - [anon_sym_break_AT] = ACTIONS(4945), - [sym_real_literal] = ACTIONS(4945), - [sym_integer_literal] = ACTIONS(4943), - [sym_hex_literal] = ACTIONS(4945), - [sym_bin_literal] = ACTIONS(4945), - [anon_sym_true] = ACTIONS(4943), - [anon_sym_false] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4945), - [sym__backtick_identifier] = ACTIONS(4945), - [sym__automatic_semicolon] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4945), + [sym__string_start] = ACTIONS(4527), }, - [1134] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), + [1113] = { + [sym__alpha_identifier] = ACTIONS(4945), + [anon_sym_AT] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4144), - [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_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [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(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_where] = ACTIONS(4945), + [anon_sym_object] = ACTIONS(4945), + [anon_sym_fun] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_get] = ACTIONS(4945), + [anon_sym_set] = ACTIONS(4945), + [anon_sym_this] = ACTIONS(4945), + [anon_sym_super] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4945), + [sym_label] = ACTIONS(4945), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4947), + [anon_sym_QMARK_COLON] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_null] = ACTIONS(4945), + [anon_sym_if] = ACTIONS(4945), + [anon_sym_else] = ACTIONS(4945), + [anon_sym_when] = ACTIONS(4945), + [anon_sym_try] = ACTIONS(4945), + [anon_sym_throw] = ACTIONS(4945), + [anon_sym_return] = ACTIONS(4945), + [anon_sym_continue] = ACTIONS(4945), + [anon_sym_break] = ACTIONS(4945), + [anon_sym_COLON_COLON] = ACTIONS(4947), + [anon_sym_PLUS_EQ] = ACTIONS(4947), + [anon_sym_DASH_EQ] = ACTIONS(4947), + [anon_sym_STAR_EQ] = ACTIONS(4947), + [anon_sym_SLASH_EQ] = ACTIONS(4947), + [anon_sym_PERCENT_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4947), + [anon_sym_LT_EQ] = ACTIONS(4947), + [anon_sym_GT_EQ] = ACTIONS(4947), + [anon_sym_BANGin] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_BANGis] = ACTIONS(4947), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_as_QMARK] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_BANG_BANG] = ACTIONS(4947), + [anon_sym_suspend] = ACTIONS(4945), + [anon_sym_sealed] = ACTIONS(4945), + [anon_sym_annotation] = ACTIONS(4945), + [anon_sym_data] = ACTIONS(4945), + [anon_sym_inner] = ACTIONS(4945), + [anon_sym_override] = ACTIONS(4945), + [anon_sym_lateinit] = ACTIONS(4945), + [anon_sym_public] = ACTIONS(4945), + [anon_sym_private] = ACTIONS(4945), + [anon_sym_internal] = ACTIONS(4945), + [anon_sym_protected] = ACTIONS(4945), + [anon_sym_tailrec] = ACTIONS(4945), + [anon_sym_operator] = ACTIONS(4945), + [anon_sym_infix] = ACTIONS(4945), + [anon_sym_inline] = ACTIONS(4945), + [anon_sym_external] = ACTIONS(4945), + [sym_property_modifier] = ACTIONS(4945), + [anon_sym_abstract] = ACTIONS(4945), + [anon_sym_final] = ACTIONS(4945), + [anon_sym_open] = ACTIONS(4945), + [anon_sym_vararg] = ACTIONS(4945), + [anon_sym_noinline] = ACTIONS(4945), + [anon_sym_crossinline] = ACTIONS(4945), + [anon_sym_expect] = ACTIONS(4945), + [anon_sym_actual] = ACTIONS(4945), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4947), + [anon_sym_continue_AT] = ACTIONS(4947), + [anon_sym_break_AT] = ACTIONS(4947), + [sym_real_literal] = ACTIONS(4947), + [sym_integer_literal] = ACTIONS(4945), + [sym_hex_literal] = ACTIONS(4947), + [sym_bin_literal] = ACTIONS(4947), + [anon_sym_true] = ACTIONS(4945), + [anon_sym_false] = ACTIONS(4945), + [anon_sym_SQUOTE] = ACTIONS(4947), + [sym__backtick_identifier] = ACTIONS(4947), + [sym__automatic_semicolon] = ACTIONS(4947), + [sym_safe_nav] = ACTIONS(4947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4947), }, - [1135] = { + [1114] = { [sym__alpha_identifier] = ACTIONS(4949), [anon_sym_AT] = ACTIONS(4951), [anon_sym_LBRACK] = ACTIONS(4951), @@ -165306,7 +163172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4951), }, - [1136] = { + [1115] = { [sym__alpha_identifier] = ACTIONS(4953), [anon_sym_AT] = ACTIONS(4955), [anon_sym_LBRACK] = ACTIONS(4955), @@ -165314,7 +163180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(4953), [anon_sym_LBRACE] = ACTIONS(4955), [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4955), [anon_sym_COMMA] = ACTIONS(4955), [anon_sym_LT] = ACTIONS(4953), [anon_sym_GT] = ACTIONS(4953), @@ -165409,1037 +163275,1758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4955), }, - [1137] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), - }, - [1138] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(1770), - [anon_sym_sealed] = ACTIONS(1770), - [anon_sym_annotation] = ACTIONS(1770), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_lateinit] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_internal] = ACTIONS(1770), - [anon_sym_protected] = ACTIONS(1770), - [anon_sym_tailrec] = ACTIONS(1770), - [anon_sym_operator] = ACTIONS(1770), - [anon_sym_infix] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym_external] = ACTIONS(1770), - [sym_property_modifier] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_final] = ACTIONS(1770), - [anon_sym_open] = ACTIONS(1770), - [anon_sym_vararg] = ACTIONS(1770), - [anon_sym_noinline] = ACTIONS(1770), - [anon_sym_crossinline] = ACTIONS(1770), - [anon_sym_expect] = ACTIONS(1770), - [anon_sym_actual] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [1116] = { + [sym_function_body] = STATE(1099), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, - [1139] = { - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [1117] = { + [sym_function_body] = STATE(1102), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), }, - [1140] = { - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [1118] = { + [sym__alpha_identifier] = ACTIONS(4957), + [anon_sym_AT] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_COMMA] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_where] = ACTIONS(4957), + [anon_sym_object] = ACTIONS(4957), + [anon_sym_fun] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4959), + [anon_sym_get] = ACTIONS(4957), + [anon_sym_set] = ACTIONS(4957), + [anon_sym_this] = ACTIONS(4957), + [anon_sym_super] = ACTIONS(4957), + [anon_sym_STAR] = ACTIONS(4957), + [sym_label] = ACTIONS(4957), + [anon_sym_in] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_QMARK_COLON] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_null] = ACTIONS(4957), + [anon_sym_if] = ACTIONS(4957), + [anon_sym_else] = ACTIONS(4957), + [anon_sym_when] = ACTIONS(4957), + [anon_sym_try] = ACTIONS(4957), + [anon_sym_throw] = ACTIONS(4957), + [anon_sym_return] = ACTIONS(4957), + [anon_sym_continue] = ACTIONS(4957), + [anon_sym_break] = ACTIONS(4957), + [anon_sym_COLON_COLON] = ACTIONS(4959), + [anon_sym_PLUS_EQ] = ACTIONS(4959), + [anon_sym_DASH_EQ] = ACTIONS(4959), + [anon_sym_STAR_EQ] = ACTIONS(4959), + [anon_sym_SLASH_EQ] = ACTIONS(4959), + [anon_sym_PERCENT_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4959), + [anon_sym_LT_EQ] = ACTIONS(4959), + [anon_sym_GT_EQ] = ACTIONS(4959), + [anon_sym_BANGin] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_BANGis] = ACTIONS(4959), + [anon_sym_PLUS] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_as_QMARK] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4957), + [anon_sym_BANG_BANG] = ACTIONS(4959), + [anon_sym_suspend] = ACTIONS(4957), + [anon_sym_sealed] = ACTIONS(4957), + [anon_sym_annotation] = ACTIONS(4957), + [anon_sym_data] = ACTIONS(4957), + [anon_sym_inner] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_lateinit] = ACTIONS(4957), + [anon_sym_public] = ACTIONS(4957), + [anon_sym_private] = ACTIONS(4957), + [anon_sym_internal] = ACTIONS(4957), + [anon_sym_protected] = ACTIONS(4957), + [anon_sym_tailrec] = ACTIONS(4957), + [anon_sym_operator] = ACTIONS(4957), + [anon_sym_infix] = ACTIONS(4957), + [anon_sym_inline] = ACTIONS(4957), + [anon_sym_external] = ACTIONS(4957), + [sym_property_modifier] = ACTIONS(4957), + [anon_sym_abstract] = ACTIONS(4957), + [anon_sym_final] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_vararg] = ACTIONS(4957), + [anon_sym_noinline] = ACTIONS(4957), + [anon_sym_crossinline] = ACTIONS(4957), + [anon_sym_expect] = ACTIONS(4957), + [anon_sym_actual] = ACTIONS(4957), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4959), + [anon_sym_continue_AT] = ACTIONS(4959), + [anon_sym_break_AT] = ACTIONS(4959), + [sym_real_literal] = ACTIONS(4959), + [sym_integer_literal] = ACTIONS(4957), + [sym_hex_literal] = ACTIONS(4959), + [sym_bin_literal] = ACTIONS(4959), + [anon_sym_true] = ACTIONS(4957), + [anon_sym_false] = ACTIONS(4957), + [anon_sym_SQUOTE] = ACTIONS(4959), + [sym__backtick_identifier] = ACTIONS(4959), + [sym__automatic_semicolon] = ACTIONS(4959), + [sym_safe_nav] = ACTIONS(4959), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4959), }, - [1141] = { - [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_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), + [1119] = { + [sym_getter] = STATE(9299), + [sym_setter] = STATE(9299), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8642), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_get] = ACTIONS(4899), + [anon_sym_set] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4654), - [anon_sym_continue_AT] = ACTIONS(4654), - [anon_sym_break_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__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4654), }, - [1142] = { - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(1784), - [anon_sym_set] = ACTIONS(1784), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(1784), - [anon_sym_sealed] = ACTIONS(1784), - [anon_sym_annotation] = ACTIONS(1784), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_lateinit] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_internal] = ACTIONS(1784), - [anon_sym_protected] = ACTIONS(1784), - [anon_sym_tailrec] = ACTIONS(1784), - [anon_sym_operator] = ACTIONS(1784), - [anon_sym_infix] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_external] = ACTIONS(1784), - [sym_property_modifier] = ACTIONS(1784), - [anon_sym_abstract] = ACTIONS(1784), - [anon_sym_final] = ACTIONS(1784), - [anon_sym_open] = ACTIONS(1784), - [anon_sym_vararg] = ACTIONS(1784), - [anon_sym_noinline] = ACTIONS(1784), - [anon_sym_crossinline] = ACTIONS(1784), - [anon_sym_expect] = ACTIONS(1784), - [anon_sym_actual] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [1120] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, - [1143] = { - [sym__alpha_identifier] = ACTIONS(4965), - [anon_sym_AT] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4965), - [anon_sym_where] = ACTIONS(4965), - [anon_sym_object] = ACTIONS(4965), - [anon_sym_fun] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_get] = ACTIONS(4965), - [anon_sym_set] = ACTIONS(4965), - [anon_sym_this] = ACTIONS(4965), - [anon_sym_super] = ACTIONS(4965), - [anon_sym_STAR] = ACTIONS(4965), - [sym_label] = ACTIONS(4965), - [anon_sym_in] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4967), - [anon_sym_QMARK_COLON] = ACTIONS(4967), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE_PIPE] = ACTIONS(4967), - [anon_sym_null] = ACTIONS(4965), - [anon_sym_if] = ACTIONS(4965), - [anon_sym_else] = ACTIONS(4965), - [anon_sym_when] = ACTIONS(4965), - [anon_sym_try] = ACTIONS(4965), - [anon_sym_throw] = ACTIONS(4965), - [anon_sym_return] = ACTIONS(4965), - [anon_sym_continue] = ACTIONS(4965), - [anon_sym_break] = ACTIONS(4965), - [anon_sym_COLON_COLON] = ACTIONS(4967), - [anon_sym_PLUS_EQ] = ACTIONS(4967), - [anon_sym_DASH_EQ] = ACTIONS(4967), - [anon_sym_STAR_EQ] = ACTIONS(4967), - [anon_sym_SLASH_EQ] = ACTIONS(4967), - [anon_sym_PERCENT_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4967), - [anon_sym_LT_EQ] = ACTIONS(4967), - [anon_sym_GT_EQ] = ACTIONS(4967), - [anon_sym_BANGin] = ACTIONS(4967), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_BANGis] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4965), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_as_QMARK] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4965), - [anon_sym_BANG_BANG] = ACTIONS(4967), - [anon_sym_suspend] = ACTIONS(4965), - [anon_sym_sealed] = ACTIONS(4965), - [anon_sym_annotation] = ACTIONS(4965), - [anon_sym_data] = ACTIONS(4965), - [anon_sym_inner] = ACTIONS(4965), - [anon_sym_override] = ACTIONS(4965), - [anon_sym_lateinit] = ACTIONS(4965), - [anon_sym_public] = ACTIONS(4965), - [anon_sym_private] = ACTIONS(4965), - [anon_sym_internal] = ACTIONS(4965), - [anon_sym_protected] = ACTIONS(4965), - [anon_sym_tailrec] = ACTIONS(4965), - [anon_sym_operator] = ACTIONS(4965), - [anon_sym_infix] = ACTIONS(4965), - [anon_sym_inline] = ACTIONS(4965), - [anon_sym_external] = ACTIONS(4965), - [sym_property_modifier] = ACTIONS(4965), - [anon_sym_abstract] = ACTIONS(4965), - [anon_sym_final] = ACTIONS(4965), - [anon_sym_open] = ACTIONS(4965), - [anon_sym_vararg] = ACTIONS(4965), - [anon_sym_noinline] = ACTIONS(4965), - [anon_sym_crossinline] = ACTIONS(4965), - [anon_sym_expect] = ACTIONS(4965), - [anon_sym_actual] = ACTIONS(4965), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4967), - [anon_sym_continue_AT] = ACTIONS(4967), - [anon_sym_break_AT] = ACTIONS(4967), - [sym_real_literal] = ACTIONS(4967), - [sym_integer_literal] = ACTIONS(4965), - [sym_hex_literal] = ACTIONS(4967), - [sym_bin_literal] = ACTIONS(4967), - [anon_sym_true] = ACTIONS(4965), - [anon_sym_false] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4967), - [sym__backtick_identifier] = ACTIONS(4967), - [sym__automatic_semicolon] = ACTIONS(4967), - [sym_safe_nav] = ACTIONS(4967), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4967), + [1121] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, - [1144] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_suspend] = ACTIONS(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), + [1122] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [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(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, - [1145] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4286), - [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_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [1123] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(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(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, - [1146] = { - [sym__alpha_identifier] = ACTIONS(4969), - [anon_sym_AT] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_where] = ACTIONS(4969), - [anon_sym_object] = ACTIONS(4969), - [anon_sym_fun] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), + [1124] = { + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [1125] = { + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [1126] = { + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [1127] = { + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [1128] = { + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [1129] = { + [sym__alpha_identifier] = ACTIONS(4963), + [anon_sym_AT] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_EQ] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4963), + [anon_sym_object] = ACTIONS(4963), + [anon_sym_fun] = ACTIONS(4963), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_get] = ACTIONS(4963), + [anon_sym_set] = ACTIONS(4963), + [anon_sym_this] = ACTIONS(4963), + [anon_sym_super] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [sym_label] = ACTIONS(4963), + [anon_sym_in] = ACTIONS(4963), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_QMARK_COLON] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_null] = ACTIONS(4963), + [anon_sym_if] = ACTIONS(4963), + [anon_sym_else] = ACTIONS(4963), + [anon_sym_when] = ACTIONS(4963), + [anon_sym_try] = ACTIONS(4963), + [anon_sym_throw] = ACTIONS(4963), + [anon_sym_return] = ACTIONS(4963), + [anon_sym_continue] = ACTIONS(4963), + [anon_sym_break] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_PLUS_EQ] = ACTIONS(4965), + [anon_sym_DASH_EQ] = ACTIONS(4965), + [anon_sym_STAR_EQ] = ACTIONS(4965), + [anon_sym_SLASH_EQ] = ACTIONS(4965), + [anon_sym_PERCENT_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_BANGin] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4963), + [anon_sym_BANGis] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_as_QMARK] = ACTIONS(4965), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_BANG_BANG] = ACTIONS(4965), + [anon_sym_suspend] = ACTIONS(4963), + [anon_sym_sealed] = ACTIONS(4963), + [anon_sym_annotation] = ACTIONS(4963), + [anon_sym_data] = ACTIONS(4963), + [anon_sym_inner] = ACTIONS(4963), + [anon_sym_override] = ACTIONS(4963), + [anon_sym_lateinit] = ACTIONS(4963), + [anon_sym_public] = ACTIONS(4963), + [anon_sym_private] = ACTIONS(4963), + [anon_sym_internal] = ACTIONS(4963), + [anon_sym_protected] = ACTIONS(4963), + [anon_sym_tailrec] = ACTIONS(4963), + [anon_sym_operator] = ACTIONS(4963), + [anon_sym_infix] = ACTIONS(4963), + [anon_sym_inline] = ACTIONS(4963), + [anon_sym_external] = ACTIONS(4963), + [sym_property_modifier] = ACTIONS(4963), + [anon_sym_abstract] = ACTIONS(4963), + [anon_sym_final] = ACTIONS(4963), + [anon_sym_open] = ACTIONS(4963), + [anon_sym_vararg] = ACTIONS(4963), + [anon_sym_noinline] = ACTIONS(4963), + [anon_sym_crossinline] = ACTIONS(4963), + [anon_sym_expect] = ACTIONS(4963), + [anon_sym_actual] = ACTIONS(4963), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4965), + [anon_sym_continue_AT] = ACTIONS(4965), + [anon_sym_break_AT] = ACTIONS(4965), + [sym_real_literal] = ACTIONS(4965), + [sym_integer_literal] = ACTIONS(4963), + [sym_hex_literal] = ACTIONS(4965), + [sym_bin_literal] = ACTIONS(4965), + [anon_sym_true] = ACTIONS(4963), + [anon_sym_false] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4965), + [sym__backtick_identifier] = ACTIONS(4965), + [sym__automatic_semicolon] = ACTIONS(4965), + [sym_safe_nav] = ACTIONS(4965), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4965), + }, + [1130] = { + [sym__alpha_identifier] = ACTIONS(4967), + [anon_sym_AT] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_object] = ACTIONS(4967), + [anon_sym_fun] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_get] = ACTIONS(4967), + [anon_sym_set] = ACTIONS(4967), + [anon_sym_this] = ACTIONS(4967), + [anon_sym_super] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4967), + [sym_label] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_QMARK_COLON] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_null] = ACTIONS(4967), + [anon_sym_if] = ACTIONS(4967), + [anon_sym_else] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_try] = ACTIONS(4967), + [anon_sym_throw] = ACTIONS(4967), + [anon_sym_return] = ACTIONS(4967), + [anon_sym_continue] = ACTIONS(4967), + [anon_sym_break] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_PLUS_EQ] = ACTIONS(4969), + [anon_sym_DASH_EQ] = ACTIONS(4969), + [anon_sym_STAR_EQ] = ACTIONS(4969), + [anon_sym_SLASH_EQ] = ACTIONS(4969), + [anon_sym_PERCENT_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_BANGin] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_BANGis] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_as_QMARK] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_BANG_BANG] = ACTIONS(4969), + [anon_sym_suspend] = ACTIONS(4967), + [anon_sym_sealed] = ACTIONS(4967), + [anon_sym_annotation] = ACTIONS(4967), + [anon_sym_data] = ACTIONS(4967), + [anon_sym_inner] = ACTIONS(4967), + [anon_sym_override] = ACTIONS(4967), + [anon_sym_lateinit] = ACTIONS(4967), + [anon_sym_public] = ACTIONS(4967), + [anon_sym_private] = ACTIONS(4967), + [anon_sym_internal] = ACTIONS(4967), + [anon_sym_protected] = ACTIONS(4967), + [anon_sym_tailrec] = ACTIONS(4967), + [anon_sym_operator] = ACTIONS(4967), + [anon_sym_infix] = ACTIONS(4967), + [anon_sym_inline] = ACTIONS(4967), + [anon_sym_external] = ACTIONS(4967), + [sym_property_modifier] = ACTIONS(4967), + [anon_sym_abstract] = ACTIONS(4967), + [anon_sym_final] = ACTIONS(4967), + [anon_sym_open] = ACTIONS(4967), + [anon_sym_vararg] = ACTIONS(4967), + [anon_sym_noinline] = ACTIONS(4967), + [anon_sym_crossinline] = ACTIONS(4967), + [anon_sym_expect] = ACTIONS(4967), + [anon_sym_actual] = ACTIONS(4967), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4969), + [anon_sym_continue_AT] = ACTIONS(4969), + [anon_sym_break_AT] = ACTIONS(4969), + [sym_real_literal] = ACTIONS(4969), + [sym_integer_literal] = ACTIONS(4967), + [sym_hex_literal] = ACTIONS(4969), + [sym_bin_literal] = ACTIONS(4969), + [anon_sym_true] = ACTIONS(4967), + [anon_sym_false] = ACTIONS(4967), + [anon_sym_SQUOTE] = ACTIONS(4969), + [sym__backtick_identifier] = ACTIONS(4969), + [sym__automatic_semicolon] = ACTIONS(4969), + [sym_safe_nav] = ACTIONS(4969), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4969), + }, + [1131] = { + [sym_getter] = STATE(9291), + [sym_setter] = STATE(9291), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8642), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_get] = ACTIONS(4969), - [anon_sym_set] = ACTIONS(4969), - [anon_sym_this] = ACTIONS(4969), - [anon_sym_super] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [sym_label] = ACTIONS(4969), - [anon_sym_in] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4971), - [anon_sym_QMARK_COLON] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_PIPE_PIPE] = ACTIONS(4971), - [anon_sym_null] = ACTIONS(4969), - [anon_sym_if] = ACTIONS(4969), - [anon_sym_else] = ACTIONS(4969), - [anon_sym_when] = ACTIONS(4969), - [anon_sym_try] = ACTIONS(4969), - [anon_sym_throw] = ACTIONS(4969), - [anon_sym_return] = ACTIONS(4969), - [anon_sym_continue] = ACTIONS(4969), - [anon_sym_break] = ACTIONS(4969), - [anon_sym_COLON_COLON] = ACTIONS(4971), - [anon_sym_PLUS_EQ] = ACTIONS(4971), - [anon_sym_DASH_EQ] = ACTIONS(4971), - [anon_sym_STAR_EQ] = ACTIONS(4971), - [anon_sym_SLASH_EQ] = ACTIONS(4971), - [anon_sym_PERCENT_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4971), - [anon_sym_LT_EQ] = ACTIONS(4971), - [anon_sym_GT_EQ] = ACTIONS(4971), - [anon_sym_BANGin] = ACTIONS(4971), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_BANGis] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_as_QMARK] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_BANG_BANG] = ACTIONS(4971), - [anon_sym_suspend] = ACTIONS(4969), - [anon_sym_sealed] = ACTIONS(4969), - [anon_sym_annotation] = ACTIONS(4969), - [anon_sym_data] = ACTIONS(4969), - [anon_sym_inner] = ACTIONS(4969), - [anon_sym_override] = ACTIONS(4969), - [anon_sym_lateinit] = ACTIONS(4969), - [anon_sym_public] = ACTIONS(4969), - [anon_sym_private] = ACTIONS(4969), - [anon_sym_internal] = ACTIONS(4969), - [anon_sym_protected] = ACTIONS(4969), - [anon_sym_tailrec] = ACTIONS(4969), - [anon_sym_operator] = ACTIONS(4969), - [anon_sym_infix] = ACTIONS(4969), - [anon_sym_inline] = ACTIONS(4969), - [anon_sym_external] = ACTIONS(4969), - [sym_property_modifier] = ACTIONS(4969), - [anon_sym_abstract] = ACTIONS(4969), - [anon_sym_final] = ACTIONS(4969), - [anon_sym_open] = ACTIONS(4969), - [anon_sym_vararg] = ACTIONS(4969), - [anon_sym_noinline] = ACTIONS(4969), - [anon_sym_crossinline] = ACTIONS(4969), - [anon_sym_expect] = ACTIONS(4969), - [anon_sym_actual] = ACTIONS(4969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4971), - [anon_sym_continue_AT] = ACTIONS(4971), - [anon_sym_break_AT] = ACTIONS(4971), - [sym_real_literal] = ACTIONS(4971), - [sym_integer_literal] = ACTIONS(4969), - [sym_hex_literal] = ACTIONS(4971), - [sym_bin_literal] = ACTIONS(4971), - [anon_sym_true] = ACTIONS(4969), - [anon_sym_false] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4971), - [sym__backtick_identifier] = ACTIONS(4971), - [sym__automatic_semicolon] = ACTIONS(4971), - [sym_safe_nav] = ACTIONS(4971), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4971), + [anon_sym_get] = ACTIONS(4899), + [anon_sym_set] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1746), + [anon_sym_inner] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1748), + [anon_sym_actual] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [1147] = { + [1132] = { + [sym_function_body] = STATE(1138), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), + }, + [1133] = { [sym__alpha_identifier] = ACTIONS(4973), [anon_sym_AT] = ACTIONS(4975), [anon_sym_LBRACK] = ACTIONS(4975), @@ -166542,110 +165129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4975), }, - [1148] = { - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_object] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_this] = ACTIONS(4344), - [anon_sym_super] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4344), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_throw] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4346), - [anon_sym_continue_AT] = ACTIONS(4346), - [anon_sym_break_AT] = ACTIONS(4346), - [sym_real_literal] = ACTIONS(4346), - [sym_integer_literal] = ACTIONS(4344), - [sym_hex_literal] = ACTIONS(4346), - [sym_bin_literal] = ACTIONS(4346), - [anon_sym_true] = ACTIONS(4344), - [anon_sym_false] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4346), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4346), - }, - [1149] = { + [1134] = { [sym__alpha_identifier] = ACTIONS(4977), [anon_sym_AT] = ACTIONS(4979), [anon_sym_LBRACK] = ACTIONS(4979), @@ -166748,213 +165232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4979), }, - [1150] = { - [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(4426), - [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_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), - [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), - }, - [1151] = { - [sym__alpha_identifier] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_fun] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(201), - [anon_sym_set] = ACTIONS(201), - [anon_sym_this] = ACTIONS(201), - [anon_sym_super] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [sym_label] = ACTIONS(201), - [anon_sym_in] = ACTIONS(201), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(201), - [anon_sym_try] = ACTIONS(201), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_return] = ACTIONS(201), - [anon_sym_continue] = ACTIONS(201), - [anon_sym_break] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_BANG_BANG] = ACTIONS(199), - [anon_sym_suspend] = ACTIONS(201), - [anon_sym_sealed] = ACTIONS(201), - [anon_sym_annotation] = ACTIONS(201), - [anon_sym_data] = ACTIONS(201), - [anon_sym_inner] = ACTIONS(201), - [anon_sym_override] = ACTIONS(201), - [anon_sym_lateinit] = ACTIONS(201), - [anon_sym_public] = ACTIONS(201), - [anon_sym_private] = ACTIONS(201), - [anon_sym_internal] = ACTIONS(201), - [anon_sym_protected] = ACTIONS(201), - [anon_sym_tailrec] = ACTIONS(201), - [anon_sym_operator] = ACTIONS(201), - [anon_sym_infix] = ACTIONS(201), - [anon_sym_inline] = ACTIONS(201), - [anon_sym_external] = ACTIONS(201), - [sym_property_modifier] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_final] = ACTIONS(201), - [anon_sym_open] = ACTIONS(201), - [anon_sym_vararg] = ACTIONS(201), - [anon_sym_noinline] = ACTIONS(201), - [anon_sym_crossinline] = ACTIONS(201), - [anon_sym_expect] = ACTIONS(201), - [anon_sym_actual] = ACTIONS(201), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(199), - [anon_sym_continue_AT] = ACTIONS(199), - [anon_sym_break_AT] = ACTIONS(199), - [sym_real_literal] = ACTIONS(199), - [sym_integer_literal] = ACTIONS(201), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [sym__backtick_identifier] = ACTIONS(199), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [1152] = { + [1135] = { [sym__alpha_identifier] = ACTIONS(4981), [anon_sym_AT] = ACTIONS(4983), [anon_sym_LBRACK] = ACTIONS(4983), @@ -167057,7 +165335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4983), }, - [1153] = { + [1136] = { [sym__alpha_identifier] = ACTIONS(4985), [anon_sym_AT] = ACTIONS(4987), [anon_sym_LBRACK] = ACTIONS(4987), @@ -167160,213 +165438,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4987), }, - [1154] = { - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4099), - [anon_sym_LBRACE] = ACTIONS(4101), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [1155] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(1764), - [anon_sym_sealed] = ACTIONS(1764), - [anon_sym_annotation] = ACTIONS(1764), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_lateinit] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_internal] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_tailrec] = ACTIONS(1764), - [anon_sym_operator] = ACTIONS(1764), - [anon_sym_infix] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_external] = ACTIONS(1764), - [sym_property_modifier] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_final] = ACTIONS(1764), - [anon_sym_open] = ACTIONS(1764), - [anon_sym_vararg] = ACTIONS(1764), - [anon_sym_noinline] = ACTIONS(1764), - [anon_sym_crossinline] = ACTIONS(1764), - [anon_sym_expect] = ACTIONS(1764), - [anon_sym_actual] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [1137] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, - [1156] = { + [1138] = { [sym__alpha_identifier] = ACTIONS(4989), [anon_sym_AT] = ACTIONS(4991), [anon_sym_LBRACK] = ACTIONS(4991), @@ -167469,831 +165644,1037 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4991), }, - [1157] = { - [sym_getter] = STATE(9079), - [sym_setter] = STATE(9079), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(4993), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), + [1139] = { + [sym__alpha_identifier] = ACTIONS(4993), + [anon_sym_AT] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_where] = ACTIONS(4993), + [anon_sym_object] = ACTIONS(4993), + [anon_sym_fun] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_this] = ACTIONS(4993), + [anon_sym_super] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [sym_label] = ACTIONS(4993), + [anon_sym_in] = ACTIONS(4993), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_QMARK_COLON] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_null] = ACTIONS(4993), + [anon_sym_if] = ACTIONS(4993), + [anon_sym_else] = ACTIONS(4993), + [anon_sym_when] = ACTIONS(4993), + [anon_sym_try] = ACTIONS(4993), + [anon_sym_throw] = ACTIONS(4993), + [anon_sym_return] = ACTIONS(4993), + [anon_sym_continue] = ACTIONS(4993), + [anon_sym_break] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4995), + [anon_sym_PLUS_EQ] = ACTIONS(4995), + [anon_sym_DASH_EQ] = ACTIONS(4995), + [anon_sym_STAR_EQ] = ACTIONS(4995), + [anon_sym_SLASH_EQ] = ACTIONS(4995), + [anon_sym_PERCENT_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_BANGin] = ACTIONS(4995), + [anon_sym_is] = ACTIONS(4993), + [anon_sym_BANGis] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_as_QMARK] = ACTIONS(4995), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4993), + [anon_sym_BANG_BANG] = ACTIONS(4995), + [anon_sym_suspend] = ACTIONS(4993), + [anon_sym_sealed] = ACTIONS(4993), + [anon_sym_annotation] = ACTIONS(4993), + [anon_sym_data] = ACTIONS(4993), + [anon_sym_inner] = ACTIONS(4993), + [anon_sym_override] = ACTIONS(4993), + [anon_sym_lateinit] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_internal] = ACTIONS(4993), + [anon_sym_protected] = ACTIONS(4993), + [anon_sym_tailrec] = ACTIONS(4993), + [anon_sym_operator] = ACTIONS(4993), + [anon_sym_infix] = ACTIONS(4993), + [anon_sym_inline] = ACTIONS(4993), + [anon_sym_external] = ACTIONS(4993), + [sym_property_modifier] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_open] = ACTIONS(4993), + [anon_sym_vararg] = ACTIONS(4993), + [anon_sym_noinline] = ACTIONS(4993), + [anon_sym_crossinline] = ACTIONS(4993), + [anon_sym_expect] = ACTIONS(4993), + [anon_sym_actual] = ACTIONS(4993), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4995), + [anon_sym_continue_AT] = ACTIONS(4995), + [anon_sym_break_AT] = ACTIONS(4995), + [sym_real_literal] = ACTIONS(4995), + [sym_integer_literal] = ACTIONS(4993), + [sym_hex_literal] = ACTIONS(4995), + [sym_bin_literal] = ACTIONS(4995), + [anon_sym_true] = ACTIONS(4993), + [anon_sym_false] = ACTIONS(4993), + [anon_sym_SQUOTE] = ACTIONS(4995), + [sym__backtick_identifier] = ACTIONS(4995), + [sym__automatic_semicolon] = ACTIONS(4995), + [sym_safe_nav] = ACTIONS(4995), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4995), }, - [1158] = { - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), + [1140] = { + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), }, - [1159] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_as] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_object] = ACTIONS(4593), - [anon_sym_fun] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_get] = ACTIONS(4593), - [anon_sym_set] = ACTIONS(4593), - [anon_sym_this] = ACTIONS(4593), - [anon_sym_super] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4593), - [anon_sym_DOT_DOT] = ACTIONS(4595), - [anon_sym_QMARK_COLON] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4595), - [anon_sym_PIPE_PIPE] = ACTIONS(4595), - [anon_sym_null] = ACTIONS(4593), - [anon_sym_if] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_when] = ACTIONS(4593), - [anon_sym_try] = ACTIONS(4593), - [anon_sym_throw] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_continue] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_PLUS_EQ] = ACTIONS(4595), - [anon_sym_DASH_EQ] = ACTIONS(4595), - [anon_sym_STAR_EQ] = ACTIONS(4595), - [anon_sym_SLASH_EQ] = ACTIONS(4595), - [anon_sym_PERCENT_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), - [anon_sym_LT_EQ] = ACTIONS(4595), - [anon_sym_GT_EQ] = ACTIONS(4595), - [anon_sym_BANGin] = ACTIONS(4595), - [anon_sym_is] = ACTIONS(4593), - [anon_sym_BANGis] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_PERCENT] = ACTIONS(4593), - [anon_sym_as_QMARK] = ACTIONS(4595), - [anon_sym_PLUS_PLUS] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4595), - [anon_sym_suspend] = ACTIONS(4593), - [anon_sym_sealed] = ACTIONS(4593), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_data] = ACTIONS(4593), - [anon_sym_inner] = ACTIONS(4593), - [anon_sym_override] = ACTIONS(4593), - [anon_sym_lateinit] = ACTIONS(4593), - [anon_sym_public] = ACTIONS(4593), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_internal] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_tailrec] = ACTIONS(4593), - [anon_sym_operator] = ACTIONS(4593), - [anon_sym_infix] = ACTIONS(4593), - [anon_sym_inline] = ACTIONS(4593), - [anon_sym_external] = ACTIONS(4593), - [sym_property_modifier] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_final] = ACTIONS(4593), - [anon_sym_open] = ACTIONS(4593), - [anon_sym_vararg] = ACTIONS(4593), - [anon_sym_noinline] = ACTIONS(4593), - [anon_sym_crossinline] = ACTIONS(4593), - [anon_sym_expect] = ACTIONS(4593), - [anon_sym_actual] = ACTIONS(4593), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4595), - [anon_sym_continue_AT] = ACTIONS(4595), - [anon_sym_break_AT] = ACTIONS(4595), - [sym_real_literal] = ACTIONS(4595), - [sym_integer_literal] = ACTIONS(4593), - [sym_hex_literal] = ACTIONS(4595), - [sym_bin_literal] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4593), - [anon_sym_false] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym__backtick_identifier] = ACTIONS(4595), - [sym__automatic_semicolon] = ACTIONS(4595), - [sym_safe_nav] = ACTIONS(4595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4595), + [1141] = { + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [1160] = { - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_object] = ACTIONS(4005), - [anon_sym_fun] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_this] = ACTIONS(4005), - [anon_sym_super] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [sym_label] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_null] = ACTIONS(4005), - [anon_sym_if] = ACTIONS(4005), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [anon_sym_try] = ACTIONS(4005), - [anon_sym_throw] = ACTIONS(4005), - [anon_sym_return] = ACTIONS(4005), - [anon_sym_continue] = ACTIONS(4005), - [anon_sym_break] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_suspend] = ACTIONS(4005), - [anon_sym_sealed] = ACTIONS(4005), - [anon_sym_annotation] = ACTIONS(4005), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_lateinit] = ACTIONS(4005), - [anon_sym_public] = ACTIONS(4005), - [anon_sym_private] = ACTIONS(4005), - [anon_sym_internal] = ACTIONS(4005), - [anon_sym_protected] = ACTIONS(4005), - [anon_sym_tailrec] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_infix] = ACTIONS(4005), - [anon_sym_inline] = ACTIONS(4005), - [anon_sym_external] = ACTIONS(4005), - [sym_property_modifier] = ACTIONS(4005), - [anon_sym_abstract] = ACTIONS(4005), - [anon_sym_final] = ACTIONS(4005), - [anon_sym_open] = ACTIONS(4005), - [anon_sym_vararg] = ACTIONS(4005), - [anon_sym_noinline] = ACTIONS(4005), - [anon_sym_crossinline] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4007), - [anon_sym_continue_AT] = ACTIONS(4007), - [anon_sym_break_AT] = ACTIONS(4007), - [sym_real_literal] = ACTIONS(4007), - [sym_integer_literal] = ACTIONS(4005), - [sym_hex_literal] = ACTIONS(4007), - [sym_bin_literal] = ACTIONS(4007), - [anon_sym_true] = ACTIONS(4005), - [anon_sym_false] = ACTIONS(4005), - [anon_sym_SQUOTE] = ACTIONS(4007), - [sym__backtick_identifier] = ACTIONS(4007), - [sym__automatic_semicolon] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4007), + [1142] = { + [sym__alpha_identifier] = ACTIONS(4997), + [anon_sym_AT] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4999), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4997), + [anon_sym_object] = ACTIONS(4997), + [anon_sym_fun] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4999), + [anon_sym_get] = ACTIONS(4997), + [anon_sym_set] = ACTIONS(4997), + [anon_sym_this] = ACTIONS(4997), + [anon_sym_super] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4997), + [sym_label] = ACTIONS(4997), + [anon_sym_in] = ACTIONS(4997), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_QMARK_COLON] = ACTIONS(4999), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_null] = ACTIONS(4997), + [anon_sym_if] = ACTIONS(4997), + [anon_sym_else] = ACTIONS(4997), + [anon_sym_when] = ACTIONS(4997), + [anon_sym_try] = ACTIONS(4997), + [anon_sym_throw] = ACTIONS(4997), + [anon_sym_return] = ACTIONS(4997), + [anon_sym_continue] = ACTIONS(4997), + [anon_sym_break] = ACTIONS(4997), + [anon_sym_COLON_COLON] = ACTIONS(4999), + [anon_sym_PLUS_EQ] = ACTIONS(4999), + [anon_sym_DASH_EQ] = ACTIONS(4999), + [anon_sym_STAR_EQ] = ACTIONS(4999), + [anon_sym_SLASH_EQ] = ACTIONS(4999), + [anon_sym_PERCENT_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_BANGin] = ACTIONS(4999), + [anon_sym_is] = ACTIONS(4997), + [anon_sym_BANGis] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_as_QMARK] = ACTIONS(4999), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4997), + [anon_sym_BANG_BANG] = ACTIONS(4999), + [anon_sym_suspend] = ACTIONS(4997), + [anon_sym_sealed] = ACTIONS(4997), + [anon_sym_annotation] = ACTIONS(4997), + [anon_sym_data] = ACTIONS(4997), + [anon_sym_inner] = ACTIONS(4997), + [anon_sym_override] = ACTIONS(4997), + [anon_sym_lateinit] = ACTIONS(4997), + [anon_sym_public] = ACTIONS(4997), + [anon_sym_private] = ACTIONS(4997), + [anon_sym_internal] = ACTIONS(4997), + [anon_sym_protected] = ACTIONS(4997), + [anon_sym_tailrec] = ACTIONS(4997), + [anon_sym_operator] = ACTIONS(4997), + [anon_sym_infix] = ACTIONS(4997), + [anon_sym_inline] = ACTIONS(4997), + [anon_sym_external] = ACTIONS(4997), + [sym_property_modifier] = ACTIONS(4997), + [anon_sym_abstract] = ACTIONS(4997), + [anon_sym_final] = ACTIONS(4997), + [anon_sym_open] = ACTIONS(4997), + [anon_sym_vararg] = ACTIONS(4997), + [anon_sym_noinline] = ACTIONS(4997), + [anon_sym_crossinline] = ACTIONS(4997), + [anon_sym_expect] = ACTIONS(4997), + [anon_sym_actual] = ACTIONS(4997), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4999), + [anon_sym_continue_AT] = ACTIONS(4999), + [anon_sym_break_AT] = ACTIONS(4999), + [sym_real_literal] = ACTIONS(4999), + [sym_integer_literal] = ACTIONS(4997), + [sym_hex_literal] = ACTIONS(4999), + [sym_bin_literal] = ACTIONS(4999), + [anon_sym_true] = ACTIONS(4997), + [anon_sym_false] = ACTIONS(4997), + [anon_sym_SQUOTE] = ACTIONS(4999), + [sym__backtick_identifier] = ACTIONS(4999), + [sym__automatic_semicolon] = ACTIONS(4999), + [sym_safe_nav] = ACTIONS(4999), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4999), }, - [1161] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_object] = ACTIONS(4995), - [anon_sym_fun] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_this] = ACTIONS(4995), - [anon_sym_super] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [sym_label] = ACTIONS(4995), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_null] = ACTIONS(4995), - [anon_sym_if] = ACTIONS(4995), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_try] = ACTIONS(4995), - [anon_sym_throw] = ACTIONS(4995), - [anon_sym_return] = ACTIONS(4995), - [anon_sym_continue] = ACTIONS(4995), - [anon_sym_break] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_suspend] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_annotation] = ACTIONS(4995), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_override] = ACTIONS(4995), - [anon_sym_lateinit] = ACTIONS(4995), - [anon_sym_public] = ACTIONS(4995), - [anon_sym_private] = ACTIONS(4995), - [anon_sym_internal] = ACTIONS(4995), - [anon_sym_protected] = ACTIONS(4995), - [anon_sym_tailrec] = ACTIONS(4995), - [anon_sym_operator] = ACTIONS(4995), - [anon_sym_infix] = ACTIONS(4995), - [anon_sym_inline] = ACTIONS(4995), - [anon_sym_external] = ACTIONS(4995), - [sym_property_modifier] = ACTIONS(4995), - [anon_sym_abstract] = ACTIONS(4995), - [anon_sym_final] = ACTIONS(4995), - [anon_sym_open] = ACTIONS(4995), - [anon_sym_vararg] = ACTIONS(4995), - [anon_sym_noinline] = ACTIONS(4995), - [anon_sym_crossinline] = ACTIONS(4995), - [anon_sym_expect] = ACTIONS(4995), - [anon_sym_actual] = ACTIONS(4995), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4997), - [anon_sym_continue_AT] = ACTIONS(4997), - [anon_sym_break_AT] = ACTIONS(4997), - [sym_real_literal] = ACTIONS(4997), - [sym_integer_literal] = ACTIONS(4995), - [sym_hex_literal] = ACTIONS(4997), - [sym_bin_literal] = ACTIONS(4997), - [anon_sym_true] = ACTIONS(4995), - [anon_sym_false] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4997), - [sym__backtick_identifier] = ACTIONS(4997), - [sym__automatic_semicolon] = ACTIONS(4997), - [sym_safe_nav] = ACTIONS(4997), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4997), + [1143] = { + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), }, - [1162] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), + [1144] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_object] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_this] = ACTIONS(4999), - [anon_sym_super] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [sym_label] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_throw] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_continue] = ACTIONS(4999), - [anon_sym_break] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_suspend] = ACTIONS(4999), - [anon_sym_sealed] = ACTIONS(4999), - [anon_sym_annotation] = ACTIONS(4999), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_override] = ACTIONS(4999), - [anon_sym_lateinit] = ACTIONS(4999), - [anon_sym_public] = ACTIONS(4999), - [anon_sym_private] = ACTIONS(4999), - [anon_sym_internal] = ACTIONS(4999), - [anon_sym_protected] = ACTIONS(4999), - [anon_sym_tailrec] = ACTIONS(4999), - [anon_sym_operator] = ACTIONS(4999), - [anon_sym_infix] = ACTIONS(4999), - [anon_sym_inline] = ACTIONS(4999), - [anon_sym_external] = ACTIONS(4999), - [sym_property_modifier] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_final] = ACTIONS(4999), - [anon_sym_open] = ACTIONS(4999), - [anon_sym_vararg] = ACTIONS(4999), - [anon_sym_noinline] = ACTIONS(4999), - [anon_sym_crossinline] = ACTIONS(4999), - [anon_sym_expect] = ACTIONS(4999), - [anon_sym_actual] = ACTIONS(4999), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5001), - [anon_sym_continue_AT] = ACTIONS(5001), - [anon_sym_break_AT] = ACTIONS(5001), - [sym_real_literal] = ACTIONS(5001), - [sym_integer_literal] = ACTIONS(4999), - [sym_hex_literal] = ACTIONS(5001), - [sym_bin_literal] = ACTIONS(5001), - [anon_sym_true] = ACTIONS(4999), - [anon_sym_false] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(5001), - [sym__backtick_identifier] = ACTIONS(5001), - [sym__automatic_semicolon] = ACTIONS(5001), - [sym_safe_nav] = ACTIONS(5001), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, - [1163] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), + [1145] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_object] = ACTIONS(5003), - [anon_sym_fun] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_this] = ACTIONS(5003), - [anon_sym_super] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [sym_label] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_null] = ACTIONS(5003), - [anon_sym_if] = ACTIONS(5003), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_try] = ACTIONS(5003), - [anon_sym_throw] = ACTIONS(5003), - [anon_sym_return] = ACTIONS(5003), - [anon_sym_continue] = ACTIONS(5003), - [anon_sym_break] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_suspend] = ACTIONS(5003), - [anon_sym_sealed] = ACTIONS(5003), - [anon_sym_annotation] = ACTIONS(5003), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_override] = ACTIONS(5003), - [anon_sym_lateinit] = ACTIONS(5003), - [anon_sym_public] = ACTIONS(5003), - [anon_sym_private] = ACTIONS(5003), - [anon_sym_internal] = ACTIONS(5003), - [anon_sym_protected] = ACTIONS(5003), - [anon_sym_tailrec] = ACTIONS(5003), - [anon_sym_operator] = ACTIONS(5003), - [anon_sym_infix] = ACTIONS(5003), - [anon_sym_inline] = ACTIONS(5003), - [anon_sym_external] = ACTIONS(5003), - [sym_property_modifier] = ACTIONS(5003), - [anon_sym_abstract] = ACTIONS(5003), - [anon_sym_final] = ACTIONS(5003), - [anon_sym_open] = ACTIONS(5003), - [anon_sym_vararg] = ACTIONS(5003), - [anon_sym_noinline] = ACTIONS(5003), - [anon_sym_crossinline] = ACTIONS(5003), - [anon_sym_expect] = ACTIONS(5003), - [anon_sym_actual] = ACTIONS(5003), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5005), - [anon_sym_continue_AT] = ACTIONS(5005), - [anon_sym_break_AT] = ACTIONS(5005), - [sym_real_literal] = ACTIONS(5005), - [sym_integer_literal] = ACTIONS(5003), - [sym_hex_literal] = ACTIONS(5005), - [sym_bin_literal] = ACTIONS(5005), - [anon_sym_true] = ACTIONS(5003), - [anon_sym_false] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5005), - [sym__backtick_identifier] = ACTIONS(5005), - [sym__automatic_semicolon] = ACTIONS(5005), - [sym_safe_nav] = ACTIONS(5005), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, - [1164] = { - [sym_getter] = STATE(9095), - [sym_setter] = STATE(9095), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1746), - [anon_sym_inner] = ACTIONS(1746), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1748), - [anon_sym_actual] = ACTIONS(1748), + [1146] = { + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(3340), + [anon_sym_sealed] = ACTIONS(3340), + [anon_sym_annotation] = ACTIONS(3340), + [anon_sym_data] = ACTIONS(3340), + [anon_sym_inner] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_lateinit] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_internal] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_tailrec] = ACTIONS(3340), + [anon_sym_operator] = ACTIONS(3340), + [anon_sym_infix] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_external] = ACTIONS(3340), + [sym_property_modifier] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_final] = ACTIONS(3340), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_vararg] = ACTIONS(3340), + [anon_sym_noinline] = ACTIONS(3340), + [anon_sym_crossinline] = ACTIONS(3340), + [anon_sym_expect] = ACTIONS(3340), + [anon_sym_actual] = ACTIONS(3340), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), + }, + [1147] = { + [sym__alpha_identifier] = ACTIONS(4619), + [anon_sym_AT] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4621), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_object] = ACTIONS(4619), + [anon_sym_fun] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_get] = ACTIONS(4619), + [anon_sym_set] = ACTIONS(4619), + [anon_sym_this] = ACTIONS(4619), + [anon_sym_super] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [sym_label] = ACTIONS(4619), + [anon_sym_in] = ACTIONS(4619), + [anon_sym_DOT_DOT] = ACTIONS(4621), + [anon_sym_QMARK_COLON] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_null] = ACTIONS(4619), + [anon_sym_if] = ACTIONS(4619), + [anon_sym_else] = ACTIONS(4619), + [anon_sym_when] = ACTIONS(4619), + [anon_sym_try] = ACTIONS(4619), + [anon_sym_throw] = ACTIONS(4619), + [anon_sym_return] = ACTIONS(4619), + [anon_sym_continue] = ACTIONS(4619), + [anon_sym_break] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4621), + [anon_sym_PLUS_EQ] = ACTIONS(4621), + [anon_sym_DASH_EQ] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(4621), + [anon_sym_SLASH_EQ] = ACTIONS(4621), + [anon_sym_PERCENT_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ] = ACTIONS(4619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ] = ACTIONS(4619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_as_QMARK] = ACTIONS(4621), + [anon_sym_PLUS_PLUS] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_BANG_BANG] = ACTIONS(4621), + [anon_sym_suspend] = ACTIONS(4619), + [anon_sym_sealed] = ACTIONS(4619), + [anon_sym_annotation] = ACTIONS(4619), + [anon_sym_data] = ACTIONS(4619), + [anon_sym_inner] = ACTIONS(4619), + [anon_sym_override] = ACTIONS(4619), + [anon_sym_lateinit] = ACTIONS(4619), + [anon_sym_public] = ACTIONS(4619), + [anon_sym_private] = ACTIONS(4619), + [anon_sym_internal] = ACTIONS(4619), + [anon_sym_protected] = ACTIONS(4619), + [anon_sym_tailrec] = ACTIONS(4619), + [anon_sym_operator] = ACTIONS(4619), + [anon_sym_infix] = ACTIONS(4619), + [anon_sym_inline] = ACTIONS(4619), + [anon_sym_external] = ACTIONS(4619), + [sym_property_modifier] = ACTIONS(4619), + [anon_sym_abstract] = ACTIONS(4619), + [anon_sym_final] = ACTIONS(4619), + [anon_sym_open] = ACTIONS(4619), + [anon_sym_vararg] = ACTIONS(4619), + [anon_sym_noinline] = ACTIONS(4619), + [anon_sym_crossinline] = ACTIONS(4619), + [anon_sym_expect] = ACTIONS(4619), + [anon_sym_actual] = ACTIONS(4619), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_return_AT] = ACTIONS(4621), + [anon_sym_continue_AT] = ACTIONS(4621), + [anon_sym_break_AT] = ACTIONS(4621), + [sym_real_literal] = ACTIONS(4621), + [sym_integer_literal] = ACTIONS(4619), + [sym_hex_literal] = ACTIONS(4621), + [sym_bin_literal] = ACTIONS(4621), + [anon_sym_true] = ACTIONS(4619), + [anon_sym_false] = ACTIONS(4619), + [anon_sym_SQUOTE] = ACTIONS(4621), + [sym__backtick_identifier] = ACTIONS(4621), + [sym__automatic_semicolon] = ACTIONS(4621), + [sym_safe_nav] = ACTIONS(4621), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4621), }, - [1165] = { + [1148] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(1774), + [anon_sym_sealed] = ACTIONS(1774), + [anon_sym_annotation] = ACTIONS(1774), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_lateinit] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_internal] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_tailrec] = ACTIONS(1774), + [anon_sym_operator] = ACTIONS(1774), + [anon_sym_infix] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1774), + [anon_sym_external] = ACTIONS(1774), + [sym_property_modifier] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_open] = ACTIONS(1774), + [anon_sym_vararg] = ACTIONS(1774), + [anon_sym_noinline] = ACTIONS(1774), + [anon_sym_crossinline] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [1149] = { [sym__alpha_identifier] = ACTIONS(5009), [anon_sym_AT] = ACTIONS(5011), [anon_sym_LBRACK] = ACTIONS(5011), @@ -168396,110 +166777,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5011), }, - [1166] = { - [sym__alpha_identifier] = ACTIONS(4279), - [anon_sym_AT] = ACTIONS(4281), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_as] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4281), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_COMMA] = ACTIONS(4281), - [anon_sym_LT] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4279), - [anon_sym_where] = ACTIONS(4279), - [anon_sym_object] = ACTIONS(4279), - [anon_sym_fun] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_SEMI] = ACTIONS(4281), - [anon_sym_get] = ACTIONS(4279), - [anon_sym_set] = ACTIONS(4279), - [anon_sym_this] = ACTIONS(4279), - [anon_sym_super] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [sym_label] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4279), - [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(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_else] = ACTIONS(4279), - [anon_sym_when] = ACTIONS(4279), - [anon_sym_try] = ACTIONS(4279), - [anon_sym_throw] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [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(4279), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [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(4279), - [anon_sym_BANGis] = ACTIONS(4281), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_SLASH] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_as_QMARK] = ACTIONS(4281), - [anon_sym_PLUS_PLUS] = ACTIONS(4281), - [anon_sym_DASH_DASH] = ACTIONS(4281), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_BANG_BANG] = ACTIONS(4281), - [anon_sym_suspend] = ACTIONS(4279), - [anon_sym_sealed] = ACTIONS(4279), - [anon_sym_annotation] = ACTIONS(4279), - [anon_sym_data] = ACTIONS(4279), - [anon_sym_inner] = ACTIONS(4279), - [anon_sym_override] = ACTIONS(4279), - [anon_sym_lateinit] = ACTIONS(4279), - [anon_sym_public] = ACTIONS(4279), - [anon_sym_private] = ACTIONS(4279), - [anon_sym_internal] = ACTIONS(4279), - [anon_sym_protected] = ACTIONS(4279), - [anon_sym_tailrec] = ACTIONS(4279), - [anon_sym_operator] = ACTIONS(4279), - [anon_sym_infix] = ACTIONS(4279), - [anon_sym_inline] = ACTIONS(4279), - [anon_sym_external] = ACTIONS(4279), - [sym_property_modifier] = ACTIONS(4279), - [anon_sym_abstract] = ACTIONS(4279), - [anon_sym_final] = ACTIONS(4279), - [anon_sym_open] = ACTIONS(4279), - [anon_sym_vararg] = ACTIONS(4279), - [anon_sym_noinline] = ACTIONS(4279), - [anon_sym_crossinline] = ACTIONS(4279), - [anon_sym_expect] = ACTIONS(4279), - [anon_sym_actual] = ACTIONS(4279), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4281), - [anon_sym_continue_AT] = ACTIONS(4281), - [anon_sym_break_AT] = ACTIONS(4281), - [sym_real_literal] = ACTIONS(4281), - [sym_integer_literal] = ACTIONS(4279), - [sym_hex_literal] = ACTIONS(4281), - [sym_bin_literal] = ACTIONS(4281), - [anon_sym_true] = ACTIONS(4279), - [anon_sym_false] = ACTIONS(4279), - [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), + [1150] = { + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, - [1167] = { + [1151] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(1694), + [anon_sym_sealed] = ACTIONS(1694), + [anon_sym_annotation] = ACTIONS(1694), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_lateinit] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_internal] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_tailrec] = ACTIONS(1694), + [anon_sym_operator] = ACTIONS(1694), + [anon_sym_infix] = ACTIONS(1694), + [anon_sym_inline] = ACTIONS(1694), + [anon_sym_external] = ACTIONS(1694), + [sym_property_modifier] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(1694), + [anon_sym_final] = ACTIONS(1694), + [anon_sym_open] = ACTIONS(1694), + [anon_sym_vararg] = ACTIONS(1694), + [anon_sym_noinline] = ACTIONS(1694), + [anon_sym_crossinline] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [1152] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [1153] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [1154] = { [sym__alpha_identifier] = ACTIONS(5013), [anon_sym_AT] = ACTIONS(5015), [anon_sym_LBRACK] = ACTIONS(5015), @@ -168602,110 +167292,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5015), }, - [1168] = { - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), + [1155] = { + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, - [1169] = { + [1156] = { [sym__alpha_identifier] = ACTIONS(5017), [anon_sym_AT] = ACTIONS(5019), [anon_sym_LBRACK] = ACTIONS(5019), @@ -168808,7 +167498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5019), }, - [1170] = { + [1157] = { [sym__alpha_identifier] = ACTIONS(5021), [anon_sym_AT] = ACTIONS(5023), [anon_sym_LBRACK] = ACTIONS(5023), @@ -168911,1006 +167601,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5023), }, - [1171] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), - }, - [1172] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_object] = ACTIONS(5025), - [anon_sym_fun] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_this] = ACTIONS(5025), - [anon_sym_super] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [sym_label] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_null] = ACTIONS(5025), - [anon_sym_if] = ACTIONS(5025), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_when] = ACTIONS(5025), - [anon_sym_try] = ACTIONS(5025), - [anon_sym_throw] = ACTIONS(5025), - [anon_sym_return] = ACTIONS(5025), - [anon_sym_continue] = ACTIONS(5025), - [anon_sym_break] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_suspend] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_annotation] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_lateinit] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_tailrec] = ACTIONS(5025), - [anon_sym_operator] = ACTIONS(5025), - [anon_sym_infix] = ACTIONS(5025), - [anon_sym_inline] = ACTIONS(5025), - [anon_sym_external] = ACTIONS(5025), - [sym_property_modifier] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_final] = ACTIONS(5025), - [anon_sym_open] = ACTIONS(5025), - [anon_sym_vararg] = ACTIONS(5025), - [anon_sym_noinline] = ACTIONS(5025), - [anon_sym_crossinline] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5027), - [anon_sym_continue_AT] = ACTIONS(5027), - [anon_sym_break_AT] = ACTIONS(5027), - [sym_real_literal] = ACTIONS(5027), - [sym_integer_literal] = ACTIONS(5025), - [sym_hex_literal] = ACTIONS(5027), - [sym_bin_literal] = ACTIONS(5027), - [anon_sym_true] = ACTIONS(5025), - [anon_sym_false] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5027), - [sym__backtick_identifier] = ACTIONS(5027), - [sym__automatic_semicolon] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5027), - }, - [1173] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [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_DOT] = 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_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), - [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), - }, - [1174] = { - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_object] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_this] = ACTIONS(4400), - [anon_sym_super] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4400), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_when] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_throw] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4402), - [anon_sym_continue_AT] = ACTIONS(4402), - [anon_sym_break_AT] = ACTIONS(4402), - [sym_real_literal] = ACTIONS(4402), - [sym_integer_literal] = ACTIONS(4400), - [sym_hex_literal] = ACTIONS(4402), - [sym_bin_literal] = ACTIONS(4402), - [anon_sym_true] = ACTIONS(4400), - [anon_sym_false] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4402), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4402), - }, - [1175] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_object] = ACTIONS(5033), - [anon_sym_fun] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_this] = ACTIONS(5033), - [anon_sym_super] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [sym_label] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_null] = ACTIONS(5033), - [anon_sym_if] = ACTIONS(5033), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_when] = ACTIONS(5033), - [anon_sym_try] = ACTIONS(5033), - [anon_sym_throw] = ACTIONS(5033), - [anon_sym_return] = ACTIONS(5033), - [anon_sym_continue] = ACTIONS(5033), - [anon_sym_break] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_suspend] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_annotation] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_override] = ACTIONS(5033), - [anon_sym_lateinit] = ACTIONS(5033), - [anon_sym_public] = ACTIONS(5033), - [anon_sym_private] = ACTIONS(5033), - [anon_sym_internal] = ACTIONS(5033), - [anon_sym_protected] = ACTIONS(5033), - [anon_sym_tailrec] = ACTIONS(5033), - [anon_sym_operator] = ACTIONS(5033), - [anon_sym_infix] = ACTIONS(5033), - [anon_sym_inline] = ACTIONS(5033), - [anon_sym_external] = ACTIONS(5033), - [sym_property_modifier] = ACTIONS(5033), - [anon_sym_abstract] = ACTIONS(5033), - [anon_sym_final] = ACTIONS(5033), - [anon_sym_open] = ACTIONS(5033), - [anon_sym_vararg] = ACTIONS(5033), - [anon_sym_noinline] = ACTIONS(5033), - [anon_sym_crossinline] = ACTIONS(5033), - [anon_sym_expect] = ACTIONS(5033), - [anon_sym_actual] = ACTIONS(5033), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5035), - [anon_sym_continue_AT] = ACTIONS(5035), - [anon_sym_break_AT] = ACTIONS(5035), - [sym_real_literal] = ACTIONS(5035), - [sym_integer_literal] = ACTIONS(5033), - [sym_hex_literal] = ACTIONS(5035), - [sym_bin_literal] = ACTIONS(5035), - [anon_sym_true] = ACTIONS(5033), - [anon_sym_false] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5035), - [sym__backtick_identifier] = ACTIONS(5035), - [sym__automatic_semicolon] = ACTIONS(5035), - [sym_safe_nav] = ACTIONS(5035), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5035), - }, - [1176] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_object] = ACTIONS(5037), - [anon_sym_fun] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_this] = ACTIONS(5037), - [anon_sym_super] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [sym_label] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(5037), - [anon_sym_if] = ACTIONS(5037), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_when] = ACTIONS(5037), - [anon_sym_try] = ACTIONS(5037), - [anon_sym_throw] = ACTIONS(5037), - [anon_sym_return] = ACTIONS(5037), - [anon_sym_continue] = ACTIONS(5037), - [anon_sym_break] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_suspend] = ACTIONS(5037), - [anon_sym_sealed] = ACTIONS(5037), - [anon_sym_annotation] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_override] = ACTIONS(5037), - [anon_sym_lateinit] = ACTIONS(5037), - [anon_sym_public] = ACTIONS(5037), - [anon_sym_private] = ACTIONS(5037), - [anon_sym_internal] = ACTIONS(5037), - [anon_sym_protected] = ACTIONS(5037), - [anon_sym_tailrec] = ACTIONS(5037), - [anon_sym_operator] = ACTIONS(5037), - [anon_sym_infix] = ACTIONS(5037), - [anon_sym_inline] = ACTIONS(5037), - [anon_sym_external] = ACTIONS(5037), - [sym_property_modifier] = ACTIONS(5037), - [anon_sym_abstract] = ACTIONS(5037), - [anon_sym_final] = ACTIONS(5037), - [anon_sym_open] = ACTIONS(5037), - [anon_sym_vararg] = ACTIONS(5037), - [anon_sym_noinline] = ACTIONS(5037), - [anon_sym_crossinline] = ACTIONS(5037), - [anon_sym_expect] = ACTIONS(5037), - [anon_sym_actual] = ACTIONS(5037), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5039), - [anon_sym_continue_AT] = ACTIONS(5039), - [anon_sym_break_AT] = ACTIONS(5039), - [sym_real_literal] = ACTIONS(5039), - [sym_integer_literal] = ACTIONS(5037), - [sym_hex_literal] = ACTIONS(5039), - [sym_bin_literal] = ACTIONS(5039), - [anon_sym_true] = ACTIONS(5037), - [anon_sym_false] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5039), - [sym__backtick_identifier] = ACTIONS(5039), - [sym__automatic_semicolon] = ACTIONS(5039), - [sym_safe_nav] = ACTIONS(5039), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5039), - }, - [1177] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_object] = ACTIONS(5041), - [anon_sym_fun] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_this] = ACTIONS(5041), - [anon_sym_super] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [sym_label] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(5041), - [anon_sym_if] = ACTIONS(5041), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_when] = ACTIONS(5041), - [anon_sym_try] = ACTIONS(5041), - [anon_sym_throw] = ACTIONS(5041), - [anon_sym_return] = ACTIONS(5041), - [anon_sym_continue] = ACTIONS(5041), - [anon_sym_break] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_suspend] = ACTIONS(5041), - [anon_sym_sealed] = ACTIONS(5041), - [anon_sym_annotation] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_override] = ACTIONS(5041), - [anon_sym_lateinit] = ACTIONS(5041), - [anon_sym_public] = ACTIONS(5041), - [anon_sym_private] = ACTIONS(5041), - [anon_sym_internal] = ACTIONS(5041), - [anon_sym_protected] = ACTIONS(5041), - [anon_sym_tailrec] = ACTIONS(5041), - [anon_sym_operator] = ACTIONS(5041), - [anon_sym_infix] = ACTIONS(5041), - [anon_sym_inline] = ACTIONS(5041), - [anon_sym_external] = ACTIONS(5041), - [sym_property_modifier] = ACTIONS(5041), - [anon_sym_abstract] = ACTIONS(5041), - [anon_sym_final] = ACTIONS(5041), - [anon_sym_open] = ACTIONS(5041), - [anon_sym_vararg] = ACTIONS(5041), - [anon_sym_noinline] = ACTIONS(5041), - [anon_sym_crossinline] = ACTIONS(5041), - [anon_sym_expect] = ACTIONS(5041), - [anon_sym_actual] = ACTIONS(5041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5043), - [anon_sym_continue_AT] = ACTIONS(5043), - [anon_sym_break_AT] = ACTIONS(5043), - [sym_real_literal] = ACTIONS(5043), - [sym_integer_literal] = ACTIONS(5041), - [sym_hex_literal] = ACTIONS(5043), - [sym_bin_literal] = ACTIONS(5043), - [anon_sym_true] = ACTIONS(5041), - [anon_sym_false] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5043), - [sym__backtick_identifier] = ACTIONS(5043), - [sym__automatic_semicolon] = ACTIONS(5043), - [sym_safe_nav] = ACTIONS(5043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5043), - }, - [1178] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_when] = ACTIONS(5045), - [anon_sym_try] = ACTIONS(5045), - [anon_sym_throw] = ACTIONS(5045), - [anon_sym_return] = ACTIONS(5045), - [anon_sym_continue] = ACTIONS(5045), - [anon_sym_break] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5047), - [anon_sym_continue_AT] = ACTIONS(5047), - [anon_sym_break_AT] = ACTIONS(5047), - [sym_real_literal] = ACTIONS(5047), - [sym_integer_literal] = ACTIONS(5045), - [sym_hex_literal] = ACTIONS(5047), - [sym_bin_literal] = ACTIONS(5047), - [anon_sym_true] = ACTIONS(5045), - [anon_sym_false] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5047), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [1158] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, - [1179] = { - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [1159] = { + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_object] = ACTIONS(4498), + [anon_sym_fun] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_this] = ACTIONS(4498), + [anon_sym_super] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4498), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_when] = ACTIONS(4498), + [anon_sym_try] = ACTIONS(4498), + [anon_sym_throw] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4500), + [anon_sym_continue_AT] = ACTIONS(4500), + [anon_sym_break_AT] = ACTIONS(4500), + [sym_real_literal] = ACTIONS(4500), + [sym_integer_literal] = ACTIONS(4498), + [sym_hex_literal] = ACTIONS(4500), + [sym_bin_literal] = ACTIONS(4500), + [anon_sym_true] = ACTIONS(4498), + [anon_sym_false] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4500), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4500), }, - [1180] = { - [sym_getter] = STATE(9118), - [sym_setter] = STATE(9118), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1160] = { + [sym_getter] = STATE(9260), + [sym_setter] = STATE(9260), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8642), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(5025), + [anon_sym_get] = ACTIONS(4899), + [anon_sym_set] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -169938,216 +167907,1040 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1181] = { - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [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_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_DOT] = 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_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), - [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), + [1161] = { + [sym__alpha_identifier] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5029), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [anon_sym_COMMA] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5027), + [anon_sym_GT] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_object] = ACTIONS(5027), + [anon_sym_fun] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_get] = ACTIONS(5027), + [anon_sym_set] = ACTIONS(5027), + [anon_sym_this] = ACTIONS(5027), + [anon_sym_super] = ACTIONS(5027), + [anon_sym_STAR] = ACTIONS(5027), + [sym_label] = ACTIONS(5027), + [anon_sym_in] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5029), + [anon_sym_QMARK_COLON] = ACTIONS(5029), + [anon_sym_AMP_AMP] = ACTIONS(5029), + [anon_sym_PIPE_PIPE] = ACTIONS(5029), + [anon_sym_null] = ACTIONS(5027), + [anon_sym_if] = ACTIONS(5027), + [anon_sym_else] = ACTIONS(5027), + [anon_sym_when] = ACTIONS(5027), + [anon_sym_try] = ACTIONS(5027), + [anon_sym_throw] = ACTIONS(5027), + [anon_sym_return] = ACTIONS(5027), + [anon_sym_continue] = ACTIONS(5027), + [anon_sym_break] = ACTIONS(5027), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym_PLUS_EQ] = ACTIONS(5029), + [anon_sym_DASH_EQ] = ACTIONS(5029), + [anon_sym_STAR_EQ] = ACTIONS(5029), + [anon_sym_SLASH_EQ] = ACTIONS(5029), + [anon_sym_PERCENT_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_BANGin] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_BANGis] = ACTIONS(5029), + [anon_sym_PLUS] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5027), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_as_QMARK] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5027), + [anon_sym_BANG_BANG] = ACTIONS(5029), + [anon_sym_suspend] = ACTIONS(5027), + [anon_sym_sealed] = ACTIONS(5027), + [anon_sym_annotation] = ACTIONS(5027), + [anon_sym_data] = ACTIONS(5027), + [anon_sym_inner] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_lateinit] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_protected] = ACTIONS(5027), + [anon_sym_tailrec] = ACTIONS(5027), + [anon_sym_operator] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_inline] = ACTIONS(5027), + [anon_sym_external] = ACTIONS(5027), + [sym_property_modifier] = ACTIONS(5027), + [anon_sym_abstract] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_vararg] = ACTIONS(5027), + [anon_sym_noinline] = ACTIONS(5027), + [anon_sym_crossinline] = ACTIONS(5027), + [anon_sym_expect] = ACTIONS(5027), + [anon_sym_actual] = ACTIONS(5027), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5029), + [anon_sym_continue_AT] = ACTIONS(5029), + [anon_sym_break_AT] = ACTIONS(5029), + [sym_real_literal] = ACTIONS(5029), + [sym_integer_literal] = ACTIONS(5027), + [sym_hex_literal] = ACTIONS(5029), + [sym_bin_literal] = ACTIONS(5029), + [anon_sym_true] = ACTIONS(5027), + [anon_sym_false] = ACTIONS(5027), + [anon_sym_SQUOTE] = ACTIONS(5029), + [sym__backtick_identifier] = ACTIONS(5029), + [sym__automatic_semicolon] = ACTIONS(5029), + [sym_safe_nav] = ACTIONS(5029), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5029), }, - [1182] = { - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(1752), - [anon_sym_sealed] = ACTIONS(1752), - [anon_sym_annotation] = ACTIONS(1752), - [anon_sym_data] = ACTIONS(1752), - [anon_sym_inner] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_lateinit] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_internal] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_tailrec] = ACTIONS(1752), - [anon_sym_operator] = ACTIONS(1752), - [anon_sym_infix] = ACTIONS(1752), - [anon_sym_inline] = ACTIONS(1752), - [anon_sym_external] = ACTIONS(1752), - [sym_property_modifier] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_open] = ACTIONS(1752), - [anon_sym_vararg] = ACTIONS(1752), - [anon_sym_noinline] = ACTIONS(1752), - [anon_sym_crossinline] = ACTIONS(1752), - [anon_sym_expect] = ACTIONS(1752), - [anon_sym_actual] = ACTIONS(1752), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), + [1162] = { + [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_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), + [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), }, - [1183] = { + [1163] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_object] = ACTIONS(5035), + [anon_sym_fun] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_this] = ACTIONS(5035), + [anon_sym_super] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5035), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_null] = ACTIONS(5035), + [anon_sym_if] = ACTIONS(5035), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_throw] = ACTIONS(5035), + [anon_sym_return] = ACTIONS(5035), + [anon_sym_continue] = ACTIONS(5035), + [anon_sym_break] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5035), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_suspend] = ACTIONS(5035), + [anon_sym_sealed] = ACTIONS(5035), + [anon_sym_annotation] = ACTIONS(5035), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_lateinit] = ACTIONS(5035), + [anon_sym_public] = ACTIONS(5035), + [anon_sym_private] = ACTIONS(5035), + [anon_sym_internal] = ACTIONS(5035), + [anon_sym_protected] = ACTIONS(5035), + [anon_sym_tailrec] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_infix] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym_external] = ACTIONS(5035), + [sym_property_modifier] = ACTIONS(5035), + [anon_sym_abstract] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_open] = ACTIONS(5035), + [anon_sym_vararg] = ACTIONS(5035), + [anon_sym_noinline] = ACTIONS(5035), + [anon_sym_crossinline] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5037), + [anon_sym_continue_AT] = ACTIONS(5037), + [anon_sym_break_AT] = ACTIONS(5037), + [sym_real_literal] = ACTIONS(5037), + [sym_integer_literal] = ACTIONS(5035), + [sym_hex_literal] = ACTIONS(5037), + [sym_bin_literal] = ACTIONS(5037), + [anon_sym_true] = ACTIONS(5035), + [anon_sym_false] = ACTIONS(5035), + [anon_sym_SQUOTE] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5037), + }, + [1164] = { + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [1165] = { + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1762), + [anon_sym_set] = ACTIONS(1762), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(1762), + [anon_sym_sealed] = ACTIONS(1762), + [anon_sym_annotation] = ACTIONS(1762), + [anon_sym_data] = ACTIONS(1762), + [anon_sym_inner] = ACTIONS(1762), + [anon_sym_override] = ACTIONS(1762), + [anon_sym_lateinit] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_internal] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_tailrec] = ACTIONS(1762), + [anon_sym_operator] = ACTIONS(1762), + [anon_sym_infix] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_external] = ACTIONS(1762), + [sym_property_modifier] = ACTIONS(1762), + [anon_sym_abstract] = ACTIONS(1762), + [anon_sym_final] = ACTIONS(1762), + [anon_sym_open] = ACTIONS(1762), + [anon_sym_vararg] = ACTIONS(1762), + [anon_sym_noinline] = ACTIONS(1762), + [anon_sym_crossinline] = ACTIONS(1762), + [anon_sym_expect] = ACTIONS(1762), + [anon_sym_actual] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), + }, + [1166] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [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_DOT] = 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_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_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), + [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), + }, + [1167] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_object] = ACTIONS(5039), + [anon_sym_fun] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_get] = ACTIONS(5039), + [anon_sym_set] = ACTIONS(5039), + [anon_sym_this] = ACTIONS(5039), + [anon_sym_super] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [sym_label] = ACTIONS(5039), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5041), + [anon_sym_QMARK_COLON] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_null] = ACTIONS(5039), + [anon_sym_if] = ACTIONS(5039), + [anon_sym_else] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_try] = ACTIONS(5039), + [anon_sym_throw] = ACTIONS(5039), + [anon_sym_return] = ACTIONS(5039), + [anon_sym_continue] = ACTIONS(5039), + [anon_sym_break] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_BANGin] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_BANGis] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_as_QMARK] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5039), + [anon_sym_BANG_BANG] = ACTIONS(5041), + [anon_sym_suspend] = ACTIONS(5039), + [anon_sym_sealed] = ACTIONS(5039), + [anon_sym_annotation] = ACTIONS(5039), + [anon_sym_data] = ACTIONS(5039), + [anon_sym_inner] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_lateinit] = ACTIONS(5039), + [anon_sym_public] = ACTIONS(5039), + [anon_sym_private] = ACTIONS(5039), + [anon_sym_internal] = ACTIONS(5039), + [anon_sym_protected] = ACTIONS(5039), + [anon_sym_tailrec] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_infix] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym_external] = ACTIONS(5039), + [sym_property_modifier] = ACTIONS(5039), + [anon_sym_abstract] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_open] = ACTIONS(5039), + [anon_sym_vararg] = ACTIONS(5039), + [anon_sym_noinline] = ACTIONS(5039), + [anon_sym_crossinline] = ACTIONS(5039), + [anon_sym_expect] = ACTIONS(5039), + [anon_sym_actual] = ACTIONS(5039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5041), + [anon_sym_continue_AT] = ACTIONS(5041), + [anon_sym_break_AT] = ACTIONS(5041), + [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), + }, + [1168] = { + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_object] = ACTIONS(4623), + [anon_sym_fun] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_this] = ACTIONS(4623), + [anon_sym_super] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_null] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_try] = ACTIONS(4623), + [anon_sym_throw] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4625), + [anon_sym_continue_AT] = ACTIONS(4625), + [anon_sym_break_AT] = ACTIONS(4625), + [sym_real_literal] = ACTIONS(4625), + [sym_integer_literal] = ACTIONS(4623), + [sym_hex_literal] = ACTIONS(4625), + [sym_bin_literal] = ACTIONS(4625), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4625), + }, + [1169] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5045), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5045), + [anon_sym_COMMA] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5043), + [anon_sym_GT] = ACTIONS(5043), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_object] = ACTIONS(5043), + [anon_sym_fun] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_SEMI] = ACTIONS(5045), + [anon_sym_get] = ACTIONS(5043), + [anon_sym_set] = ACTIONS(5043), + [anon_sym_this] = ACTIONS(5043), + [anon_sym_super] = ACTIONS(5043), + [anon_sym_STAR] = ACTIONS(5043), + [sym_label] = ACTIONS(5043), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_QMARK_COLON] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5045), + [anon_sym_PIPE_PIPE] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5043), + [anon_sym_if] = ACTIONS(5043), + [anon_sym_else] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_try] = ACTIONS(5043), + [anon_sym_throw] = ACTIONS(5043), + [anon_sym_return] = ACTIONS(5043), + [anon_sym_continue] = ACTIONS(5043), + [anon_sym_break] = ACTIONS(5043), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_BANGin] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_BANGis] = ACTIONS(5045), + [anon_sym_PLUS] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5043), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_as_QMARK] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5043), + [anon_sym_BANG_BANG] = ACTIONS(5045), + [anon_sym_suspend] = ACTIONS(5043), + [anon_sym_sealed] = ACTIONS(5043), + [anon_sym_annotation] = ACTIONS(5043), + [anon_sym_data] = ACTIONS(5043), + [anon_sym_inner] = ACTIONS(5043), + [anon_sym_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5045), + [anon_sym_continue_AT] = ACTIONS(5045), + [anon_sym_break_AT] = ACTIONS(5045), + [sym_real_literal] = ACTIONS(5045), + [sym_integer_literal] = ACTIONS(5043), + [sym_hex_literal] = ACTIONS(5045), + [sym_bin_literal] = ACTIONS(5045), + [anon_sym_true] = ACTIONS(5043), + [anon_sym_false] = ACTIONS(5043), + [anon_sym_SQUOTE] = ACTIONS(5045), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5045), + }, + [1170] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_this] = ACTIONS(5047), + [anon_sym_super] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_if] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_try] = ACTIONS(5047), + [anon_sym_throw] = ACTIONS(5047), + [anon_sym_return] = ACTIONS(5047), + [anon_sym_continue] = ACTIONS(5047), + [anon_sym_break] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_suspend] = ACTIONS(5047), + [anon_sym_sealed] = ACTIONS(5047), + [anon_sym_annotation] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_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), + [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), + }, + [1171] = { [sym__alpha_identifier] = ACTIONS(5051), [anon_sym_AT] = ACTIONS(5053), [anon_sym_LBRACK] = ACTIONS(5053), @@ -170250,7 +169043,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5053), }, - [1184] = { + [1172] = { + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_object] = ACTIONS(4482), + [anon_sym_fun] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_this] = ACTIONS(4482), + [anon_sym_super] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4482), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_when] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_throw] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4484), + [anon_sym_continue_AT] = ACTIONS(4484), + [anon_sym_break_AT] = ACTIONS(4484), + [sym_real_literal] = ACTIONS(4484), + [sym_integer_literal] = ACTIONS(4482), + [sym_hex_literal] = ACTIONS(4484), + [sym_bin_literal] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4484), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4484), + }, + [1173] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_fun] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_this] = ACTIONS(207), + [anon_sym_super] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [sym_label] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(207), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_try] = ACTIONS(207), + [anon_sym_throw] = ACTIONS(207), + [anon_sym_return] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_break] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(207), + [anon_sym_sealed] = ACTIONS(207), + [anon_sym_annotation] = ACTIONS(207), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_override] = ACTIONS(207), + [anon_sym_lateinit] = ACTIONS(207), + [anon_sym_public] = ACTIONS(207), + [anon_sym_private] = ACTIONS(207), + [anon_sym_internal] = ACTIONS(207), + [anon_sym_protected] = ACTIONS(207), + [anon_sym_tailrec] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(207), + [anon_sym_infix] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_external] = ACTIONS(207), + [sym_property_modifier] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_open] = ACTIONS(207), + [anon_sym_vararg] = ACTIONS(207), + [anon_sym_noinline] = ACTIONS(207), + [anon_sym_crossinline] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(205), + [anon_sym_continue_AT] = ACTIONS(205), + [anon_sym_break_AT] = ACTIONS(205), + [sym_real_literal] = ACTIONS(205), + [sym_integer_literal] = ACTIONS(207), + [sym_hex_literal] = ACTIONS(205), + [sym_bin_literal] = ACTIONS(205), + [anon_sym_true] = ACTIONS(207), + [anon_sym_false] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(205), + [sym__backtick_identifier] = ACTIONS(205), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1174] = { [sym__alpha_identifier] = ACTIONS(5055), [anon_sym_AT] = ACTIONS(5057), [anon_sym_LBRACK] = ACTIONS(5057), @@ -170353,7 +169352,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5057), }, - [1185] = { + [1175] = { + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [1176] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(1768), + [anon_sym_sealed] = ACTIONS(1768), + [anon_sym_annotation] = ACTIONS(1768), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_lateinit] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_internal] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_tailrec] = ACTIONS(1768), + [anon_sym_operator] = ACTIONS(1768), + [anon_sym_infix] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [anon_sym_external] = ACTIONS(1768), + [sym_property_modifier] = ACTIONS(1768), + [anon_sym_abstract] = ACTIONS(1768), + [anon_sym_final] = ACTIONS(1768), + [anon_sym_open] = ACTIONS(1768), + [anon_sym_vararg] = ACTIONS(1768), + [anon_sym_noinline] = ACTIONS(1768), + [anon_sym_crossinline] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [1177] = { + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [1178] = { [sym__alpha_identifier] = ACTIONS(5059), [anon_sym_AT] = ACTIONS(5061), [anon_sym_LBRACK] = ACTIONS(5061), @@ -170456,7 +169764,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5061), }, - [1186] = { + [1179] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(1780), + [anon_sym_sealed] = ACTIONS(1780), + [anon_sym_annotation] = ACTIONS(1780), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_lateinit] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_internal] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_tailrec] = ACTIONS(1780), + [anon_sym_operator] = ACTIONS(1780), + [anon_sym_infix] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [anon_sym_external] = ACTIONS(1780), + [sym_property_modifier] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_final] = ACTIONS(1780), + [anon_sym_open] = ACTIONS(1780), + [anon_sym_vararg] = ACTIONS(1780), + [anon_sym_noinline] = ACTIONS(1780), + [anon_sym_crossinline] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [1180] = { + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [1181] = { [sym__alpha_identifier] = ACTIONS(5063), [anon_sym_AT] = ACTIONS(5065), [anon_sym_LBRACK] = ACTIONS(5065), @@ -170559,213 +170073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5065), }, - [1187] = { - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_object] = ACTIONS(4023), - [anon_sym_fun] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_this] = ACTIONS(4023), - [anon_sym_super] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [sym_label] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_null] = ACTIONS(4023), - [anon_sym_if] = ACTIONS(4023), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(4023), - [anon_sym_throw] = ACTIONS(4023), - [anon_sym_return] = ACTIONS(4023), - [anon_sym_continue] = ACTIONS(4023), - [anon_sym_break] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [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_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(4025), - [anon_sym_continue_AT] = ACTIONS(4025), - [anon_sym_break_AT] = ACTIONS(4025), - [sym_real_literal] = ACTIONS(4025), - [sym_integer_literal] = ACTIONS(4023), - [sym_hex_literal] = ACTIONS(4025), - [sym_bin_literal] = ACTIONS(4025), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_SQUOTE] = ACTIONS(4025), - [sym__backtick_identifier] = ACTIONS(4025), - [sym__automatic_semicolon] = ACTIONS(4025), - [sym_safe_nav] = ACTIONS(4025), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4025), - }, - [1188] = { - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(1694), - [anon_sym_sealed] = ACTIONS(1694), - [anon_sym_annotation] = ACTIONS(1694), - [anon_sym_data] = ACTIONS(1694), - [anon_sym_inner] = ACTIONS(1694), - [anon_sym_override] = ACTIONS(1694), - [anon_sym_lateinit] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_private] = ACTIONS(1694), - [anon_sym_internal] = ACTIONS(1694), - [anon_sym_protected] = ACTIONS(1694), - [anon_sym_tailrec] = ACTIONS(1694), - [anon_sym_operator] = ACTIONS(1694), - [anon_sym_infix] = ACTIONS(1694), - [anon_sym_inline] = ACTIONS(1694), - [anon_sym_external] = ACTIONS(1694), - [sym_property_modifier] = ACTIONS(1694), - [anon_sym_abstract] = ACTIONS(1694), - [anon_sym_final] = ACTIONS(1694), - [anon_sym_open] = ACTIONS(1694), - [anon_sym_vararg] = ACTIONS(1694), - [anon_sym_noinline] = ACTIONS(1694), - [anon_sym_crossinline] = ACTIONS(1694), - [anon_sym_expect] = ACTIONS(1694), - [anon_sym_actual] = ACTIONS(1694), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), - }, - [1189] = { + [1182] = { [sym__alpha_identifier] = ACTIONS(5067), [anon_sym_AT] = ACTIONS(5069), [anon_sym_LBRACK] = ACTIONS(5069), @@ -170868,491 +170176,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5069), }, - [1190] = { - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_object] = ACTIONS(4404), - [anon_sym_fun] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_this] = ACTIONS(4404), - [anon_sym_super] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4404), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_when] = ACTIONS(4404), - [anon_sym_try] = ACTIONS(4404), - [anon_sym_throw] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4406), - [anon_sym_continue_AT] = ACTIONS(4406), - [anon_sym_break_AT] = ACTIONS(4406), - [sym_real_literal] = ACTIONS(4406), - [sym_integer_literal] = ACTIONS(4404), - [sym_hex_literal] = ACTIONS(4406), - [sym_bin_literal] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4404), - [anon_sym_false] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4406), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4406), - }, - [1191] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [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_DOT] = 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_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), - [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), - }, - [1192] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [1193] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_object] = ACTIONS(5075), - [anon_sym_fun] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_this] = ACTIONS(5075), - [anon_sym_super] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5075), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_throw] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5077), - [anon_sym_continue_AT] = ACTIONS(5077), - [anon_sym_break_AT] = ACTIONS(5077), - [sym_real_literal] = ACTIONS(5077), - [sym_integer_literal] = ACTIONS(5075), - [sym_hex_literal] = ACTIONS(5077), - [sym_bin_literal] = ACTIONS(5077), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5077), + [1183] = { + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, - [1194] = { - [sym_getter] = STATE(9115), - [sym_setter] = STATE(9115), - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1184] = { + [sym_getter] = STATE(9279), + [sym_setter] = STATE(9279), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_modifiers] = STATE(8728), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5709), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_modifiers] = STATE(8642), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_get] = ACTIONS(4836), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(5071), + [anon_sym_get] = ACTIONS(4899), + [anon_sym_set] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -171380,113 +170379,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1748), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1195] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [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_DOT] = 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_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), - [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), + [1185] = { + [sym__alpha_identifier] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_as] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5073), + [anon_sym_object] = ACTIONS(5073), + [anon_sym_fun] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5073), + [anon_sym_set] = ACTIONS(5073), + [anon_sym_this] = ACTIONS(5073), + [anon_sym_super] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5073), + [anon_sym_DOT_DOT] = ACTIONS(5075), + [anon_sym_QMARK_COLON] = ACTIONS(5075), + [anon_sym_AMP_AMP] = ACTIONS(5075), + [anon_sym_PIPE_PIPE] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5073), + [anon_sym_if] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5073), + [anon_sym_when] = ACTIONS(5073), + [anon_sym_try] = ACTIONS(5073), + [anon_sym_throw] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5073), + [anon_sym_continue] = ACTIONS(5073), + [anon_sym_break] = ACTIONS(5073), + [anon_sym_COLON_COLON] = ACTIONS(5075), + [anon_sym_PLUS_EQ] = ACTIONS(5075), + [anon_sym_DASH_EQ] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5075), + [anon_sym_SLASH_EQ] = ACTIONS(5075), + [anon_sym_PERCENT_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_BANGin] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_BANGis] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5075), + [anon_sym_suspend] = ACTIONS(5073), + [anon_sym_sealed] = ACTIONS(5073), + [anon_sym_annotation] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5073), + [anon_sym_inner] = ACTIONS(5073), + [anon_sym_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), + [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), }, - [1196] = { + [1186] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), + }, + [1187] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [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_DOT] = 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_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), + [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), + }, + [1188] = { [sym__alpha_identifier] = ACTIONS(5081), [anon_sym_AT] = ACTIONS(5083), [anon_sym_LBRACK] = ACTIONS(5083), @@ -171589,7 +170794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5083), }, - [1197] = { + [1189] = { [sym__alpha_identifier] = ACTIONS(5085), [anon_sym_AT] = ACTIONS(5087), [anon_sym_LBRACK] = ACTIONS(5087), @@ -171692,7 +170897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5087), }, - [1198] = { + [1190] = { [sym__alpha_identifier] = ACTIONS(5089), [anon_sym_AT] = ACTIONS(5091), [anon_sym_LBRACK] = ACTIONS(5091), @@ -171795,7 +171000,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5091), }, - [1199] = { + [1191] = { + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [1192] = { [sym__alpha_identifier] = ACTIONS(5093), [anon_sym_AT] = ACTIONS(5095), [anon_sym_LBRACK] = ACTIONS(5095), @@ -171898,7 +171206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5095), }, - [1200] = { + [1193] = { [sym__alpha_identifier] = ACTIONS(5097), [anon_sym_AT] = ACTIONS(5099), [anon_sym_LBRACK] = ACTIONS(5099), @@ -172001,2707 +171309,3530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5099), }, + [1194] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [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_DOT] = 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_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), + [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), + }, + [1195] = { + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), + }, + [1196] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [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_DOT] = 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_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), + [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), + }, + [1197] = { + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_object] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_this] = ACTIONS(4410), + [anon_sym_super] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4410), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_when] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_throw] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4412), + [anon_sym_continue_AT] = ACTIONS(4412), + [anon_sym_break_AT] = ACTIONS(4412), + [sym_real_literal] = ACTIONS(4412), + [sym_integer_literal] = ACTIONS(4410), + [sym_hex_literal] = ACTIONS(4412), + [sym_bin_literal] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4410), + [anon_sym_false] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4412), + }, + [1198] = { + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), + }, + [1199] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [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_DOT] = 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_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), + [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), + }, + [1200] = { + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(1752), + [anon_sym_sealed] = ACTIONS(1752), + [anon_sym_annotation] = ACTIONS(1752), + [anon_sym_data] = ACTIONS(1752), + [anon_sym_inner] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_lateinit] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_internal] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_tailrec] = ACTIONS(1752), + [anon_sym_operator] = ACTIONS(1752), + [anon_sym_infix] = ACTIONS(1752), + [anon_sym_inline] = ACTIONS(1752), + [anon_sym_external] = ACTIONS(1752), + [sym_property_modifier] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_final] = ACTIONS(1752), + [anon_sym_open] = ACTIONS(1752), + [anon_sym_vararg] = ACTIONS(1752), + [anon_sym_noinline] = ACTIONS(1752), + [anon_sym_crossinline] = ACTIONS(1752), + [anon_sym_expect] = ACTIONS(1752), + [anon_sym_actual] = ACTIONS(1752), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), + }, [1201] = { - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4087), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [1202] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_object] = ACTIONS(3063), + [anon_sym_fun] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3063), + [anon_sym_super] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_null] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_when] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3063), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3065), + [anon_sym_continue_AT] = ACTIONS(3065), + [anon_sym_break_AT] = ACTIONS(3065), + [sym_real_literal] = ACTIONS(3065), + [sym_integer_literal] = ACTIONS(3063), + [sym_hex_literal] = ACTIONS(3065), + [sym_bin_literal] = ACTIONS(3065), + [anon_sym_true] = ACTIONS(3063), + [anon_sym_false] = ACTIONS(3063), + [anon_sym_SQUOTE] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3065), }, [1203] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5105), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), + [sym_primary_constructor] = STATE(4466), + [sym_class_body] = STATE(4657), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1251), + [sym_type_constraints] = STATE(4565), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), }, [1204] = { - [sym_primary_constructor] = STATE(4464), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1277), - [sym_type_constraints] = STATE(4513), - [sym_enum_class_body] = STATE(4750), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [sym_primary_constructor] = STATE(2869), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1237), + [sym_type_constraints] = STATE(3032), + [sym_enum_class_body] = STATE(3209), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, [1205] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [sym_primary_constructor] = STATE(2840), + [sym_class_body] = STATE(3209), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1252), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1206] = { + [sym_primary_constructor] = STATE(4457), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1236), + [sym_type_constraints] = STATE(4509), + [sym_enum_class_body] = STATE(4657), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1207] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(2986), }, - [1206] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), + [1208] = { + [sym_primary_constructor] = STATE(2844), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1246), + [sym_type_constraints] = STATE(3052), + [sym_enum_class_body] = STATE(3466), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), }, - [1207] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1209] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), + [sym__string_start] = ACTIONS(3041), }, - [1208] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1210] = { + [sym_primary_constructor] = STATE(4471), + [sym_class_body] = STATE(4664), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1242), + [sym_type_constraints] = STATE(4539), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [1211] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), + [sym__string_start] = ACTIONS(3049), }, - [1209] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1212] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), + [sym__string_start] = ACTIONS(3076), }, - [1210] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1213] = { + [sym_primary_constructor] = STATE(4453), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1256), + [sym_type_constraints] = STATE(4557), + [sym_enum_class_body] = STATE(4637), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [1214] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3059), + [anon_sym_fun] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3059), + [anon_sym_super] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_when] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_return_AT] = ACTIONS(3061), + [anon_sym_continue_AT] = ACTIONS(3061), + [anon_sym_break_AT] = ACTIONS(3061), + [sym_real_literal] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(3059), + [sym_hex_literal] = ACTIONS(3061), + [sym_bin_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(3059), + [anon_sym_false] = ACTIONS(3059), + [anon_sym_SQUOTE] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), + [sym__string_start] = ACTIONS(3061), }, - [1211] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1215] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1216] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1217] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), + [sym__string_start] = ACTIONS(2997), }, - [1212] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1218] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), - }, - [1213] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), - }, - [1214] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), - }, - [1215] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), - }, - [1216] = { - [sym_type_constraints] = STATE(1320), - [sym_function_body] = STATE(1168), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), - }, - [1217] = { - [sym_type_constraints] = STATE(1319), - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [1218] = { - [sym_type_constraints] = STATE(1314), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym__string_start] = ACTIONS(3092), }, [1219] = { - [sym_type_constraints] = STATE(1312), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3004), }, [1220] = { - [sym_type_constraints] = STATE(1308), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym_type_constraints] = STATE(1301), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, [1221] = { - [sym_primary_constructor] = STATE(4463), - [sym_class_body] = STATE(4604), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1284), - [sym_type_constraints] = STATE(4541), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1222] = { - [sym_primary_constructor] = STATE(4452), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1267), - [sym_type_constraints] = STATE(4559), - [sym_enum_class_body] = STATE(4604), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1223] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym__string_start] = ACTIONS(3045), }, - [1224] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1222] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_fun] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3063), - [anon_sym_super] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_when] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3065), - [anon_sym_continue_AT] = ACTIONS(3065), - [anon_sym_break_AT] = ACTIONS(3065), - [sym_real_literal] = ACTIONS(3065), - [sym_integer_literal] = ACTIONS(3063), - [sym_hex_literal] = ACTIONS(3065), - [sym_bin_literal] = ACTIONS(3065), - [anon_sym_true] = ACTIONS(3063), - [anon_sym_false] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3065), - }, - [1225] = { - [sym_primary_constructor] = STATE(4465), - [sym_class_body] = STATE(4578), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1252), - [sym_type_constraints] = STATE(4550), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3015), }, - [1226] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1223] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), + [sym__string_start] = ACTIONS(2990), + }, + [1224] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3008), + }, + [1225] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3019), + }, + [1226] = { + [sym_type_constraints] = STATE(1298), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [1227] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3026), + }, + [1228] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5147), [anon_sym_object] = ACTIONS(3082), [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4541), [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), [anon_sym_this] = ACTIONS(3082), [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), [anon_sym_null] = ACTIONS(3082), [anon_sym_if] = ACTIONS(3082), [anon_sym_else] = ACTIONS(3082), @@ -174711,30 +174842,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3082), [anon_sym_continue] = ACTIONS(3082), [anon_sym_break] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_COLON_COLON] = ACTIONS(4557), [anon_sym_PLUS_EQ] = ACTIONS(3084), [anon_sym_DASH_EQ] = ACTIONS(3084), [anon_sym_STAR_EQ] = ACTIONS(3084), [anon_sym_SLASH_EQ] = ACTIONS(3084), [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), @@ -174752,2474 +174883,2776 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3084), }, - [1228] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3059), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3059), - [anon_sym_super] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_when] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3061), - [anon_sym_continue_AT] = ACTIONS(3061), - [anon_sym_break_AT] = ACTIONS(3061), - [sym_real_literal] = ACTIONS(3061), - [sym_integer_literal] = ACTIONS(3059), - [sym_hex_literal] = ACTIONS(3061), - [sym_bin_literal] = ACTIONS(3061), - [anon_sym_true] = ACTIONS(3059), - [anon_sym_false] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3061), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3061), - }, [1229] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2235), - [sym__comparison_operator] = STATE(2148), - [sym__in_operator] = STATE(2233), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2232), - [sym__multiplicative_operator] = STATE(2231), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2229), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2150), + [sym__in_operator] = STATE(2144), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2134), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2121), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(5123), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [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(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_BANGin] = ACTIONS(5141), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [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(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__string_start] = ACTIONS(3072), }, [1230] = { - [sym_primary_constructor] = STATE(2887), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1235), - [sym_type_constraints] = STATE(3058), - [sym_enum_class_body] = STATE(3302), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1296), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [1231] = { - [sym_primary_constructor] = STATE(2888), - [sym_class_body] = STATE(3302), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1283), - [sym_type_constraints] = STATE(3067), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym_primary_constructor] = STATE(2859), + [sym_class_body] = STATE(3369), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1235), + [sym_type_constraints] = STATE(3069), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), [sym_multiline_comment] = ACTIONS(3), }, [1232] = { - [sym_primary_constructor] = STATE(2892), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1287), - [sym_type_constraints] = STATE(3077), - [sym_enum_class_body] = STATE(3232), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1293), + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, [1233] = { - [sym_primary_constructor] = STATE(2872), - [sym_class_body] = STATE(3359), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1282), - [sym_type_constraints] = STATE(3040), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1338), + [sym_function_body] = STATE(1155), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), }, [1234] = { - [sym_type_constraints] = STATE(1307), - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [sym_function_body] = STATE(1059), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), }, [1235] = { - [sym_primary_constructor] = STATE(2890), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_primary_constructor] = STATE(2858), + [sym_class_body] = STATE(3208), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3037), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, [1236] = { - [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_LT] = ACTIONS(4790), - [anon_sym_GT] = 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(5185), - [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_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_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), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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_primary_constructor] = STATE(4454), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4553), + [sym_enum_class_body] = STATE(4649), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), }, [1237] = { - [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_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_object] = ACTIONS(4790), - [anon_sym_fun] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(5187), - [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(5185), - [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_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_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), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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_primary_constructor] = STATE(2841), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), }, [1238] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(5203), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [1239] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), }, [1240] = { - [sym_function_body] = STATE(1198), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, [1241] = { - [sym_type_constraints] = STATE(1306), - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(5209), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(5203), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [1242] = { - [sym_type_constraints] = STATE(1436), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym_primary_constructor] = STATE(4451), + [sym_class_body] = STATE(4658), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4536), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), }, [1243] = { - [sym_type_constraints] = STATE(1308), + [sym_type_constraints] = STATE(1526), [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, [1244] = { - [sym_type_constraints] = STATE(1312), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, [1245] = { - [sym_type_constraints] = STATE(1314), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, [1246] = { - [sym_type_constraints] = STATE(1460), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [1247] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1248] = { - [sym_function_body] = STATE(1105), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [sym_primary_constructor] = STATE(2846), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_DASH_GT] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), }, - [1249] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1247] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3059), - [anon_sym_sealed] = ACTIONS(3059), - [anon_sym_annotation] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3086), + [anon_sym_sealed] = ACTIONS(3086), + [anon_sym_annotation] = ACTIONS(3086), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_lateinit] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_protected] = ACTIONS(3059), - [anon_sym_tailrec] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym_external] = ACTIONS(3059), - [sym_property_modifier] = ACTIONS(3059), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_vararg] = ACTIONS(3059), - [anon_sym_noinline] = ACTIONS(3059), - [anon_sym_crossinline] = ACTIONS(3059), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_lateinit] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_internal] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_tailrec] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_infix] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_external] = ACTIONS(3086), + [sym_property_modifier] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_open] = ACTIONS(3086), + [anon_sym_vararg] = ACTIONS(3086), + [anon_sym_noinline] = ACTIONS(3086), + [anon_sym_crossinline] = ACTIONS(3086), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, + [1248] = { + [sym_type_constraints] = STATE(1515), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [1249] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, [1250] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [1251] = { - [sym_type_constraints] = STATE(1441), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym_primary_constructor] = STATE(4469), + [sym_class_body] = STATE(4649), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4548), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), }, [1252] = { - [sym_primary_constructor] = STATE(4462), - [sym_class_body] = STATE(4603), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4557), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [sym_primary_constructor] = STATE(2842), + [sym_class_body] = STATE(3317), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3020), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1253] = { + [sym_type_constraints] = STATE(1536), + [sym_function_body] = STATE(1155), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), + }, + [1254] = { + [sym_type_constraints] = STATE(1521), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [1255] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1256] = { + [sym_primary_constructor] = STATE(4460), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4550), + [sym_enum_class_body] = STATE(4628), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5245), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5123), [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5127), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -177257,1323 +177690,1222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [1253] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1257] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2999), - [anon_sym_sealed] = ACTIONS(2999), - [anon_sym_annotation] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_lateinit] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_tailrec] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2999), - [sym_property_modifier] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_vararg] = ACTIONS(2999), - [anon_sym_noinline] = ACTIONS(2999), - [anon_sym_crossinline] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1254] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_suspend] = ACTIONS(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), + [1258] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), }, - [1255] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1259] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1256] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [1257] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1258] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_suspend] = ACTIONS(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), - }, - [1259] = { - [sym_type_constraints] = STATE(1439), - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, [1260] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [1261] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3080), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3080), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, + [1261] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), + }, [1262] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), }, [1263] = { - [sym_type_constraints] = STATE(1493), - [sym_function_body] = STATE(1168), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), + [sym_type_constraints] = STATE(1331), + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, [1264] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3022), + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, [1265] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_type_constraints] = STATE(1303), + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [1266] = { + [sym_type_constraints] = STATE(1301), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [1267] = { + [sym_type_constraints] = STATE(1298), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [1268] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3636), [anon_sym_PLUS_EQ] = ACTIONS(3065), [anon_sym_DASH_EQ] = ACTIONS(3065), [anon_sym_STAR_EQ] = ACTIONS(3065), [anon_sym_SLASH_EQ] = ACTIONS(3065), [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(3063), [anon_sym_sealed] = ACTIONS(3063), [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), [anon_sym_override] = ACTIONS(3063), [anon_sym_lateinit] = ACTIONS(3063), [anon_sym_public] = ACTIONS(3063), @@ -178592,589 +178924,1094 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3063), [anon_sym_noinline] = ACTIONS(3063), [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1269] = { + [sym_type_constraints] = STATE(1296), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [1270] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1266] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1271] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1267] = { - [sym_primary_constructor] = STATE(4453), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4524), - [sym_enum_class_body] = STATE(4697), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1272] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1268] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1273] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1269] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1274] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1270] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1275] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1271] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1276] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1277] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1278] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1279] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_COMMA] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), + [anon_sym_GT] = ACTIONS(3612), [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3636), [anon_sym_PLUS_EQ] = ACTIONS(3084), [anon_sym_DASH_EQ] = ACTIONS(3084), [anon_sym_STAR_EQ] = ACTIONS(3084), [anon_sym_SLASH_EQ] = ACTIONS(3084), [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(3082), [anon_sym_sealed] = ACTIONS(3082), [anon_sym_annotation] = ACTIONS(3082), @@ -179203,3862 +180040,2254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1272] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [1280] = { + [sym_type_constraints] = STATE(1512), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [1281] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4861), }, - [1273] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [1274] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1282] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1275] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), - }, - [1276] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [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(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), }, - [1277] = { - [sym_primary_constructor] = STATE(4469), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4528), - [sym_enum_class_body] = STATE(4703), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [1283] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, - [1278] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1284] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2020), + [sym__in_operator] = STATE(2021), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2024), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3592), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3600), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3604), - [anon_sym_GT_EQ] = ACTIONS(3604), - [anon_sym_BANGin] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3622), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3628), + [anon_sym_QMARK_COLON] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_PIPE_PIPE] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3642), + [anon_sym_GT_EQ] = ACTIONS(3642), + [anon_sym_BANGin] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3059), + [anon_sym_sealed] = ACTIONS(3059), + [anon_sym_annotation] = ACTIONS(3059), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3059), + [anon_sym_lateinit] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_internal] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_tailrec] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_infix] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_external] = ACTIONS(3059), + [sym_property_modifier] = ACTIONS(3059), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_final] = ACTIONS(3059), + [anon_sym_open] = ACTIONS(3059), + [anon_sym_vararg] = ACTIONS(3059), + [anon_sym_noinline] = ACTIONS(3059), + [anon_sym_crossinline] = ACTIONS(3059), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1279] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4146), - [anon_sym_fun] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [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(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), + [1285] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, - [1280] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), + [1286] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, - [1281] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), + [1287] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, - [1282] = { - [sym_primary_constructor] = STATE(2886), - [sym_class_body] = STATE(3319), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_RBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_DASH_GT] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [1288] = { + [sym_type_constraints] = STATE(1400), + [sym_property_delegate] = STATE(1584), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5265), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1283] = { - [sym_primary_constructor] = STATE(2891), - [sym_class_body] = STATE(3261), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3076), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), + [1289] = { + [sym_class_body] = STATE(1198), + [sym_type_constraints] = STATE(988), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, - [1284] = { - [sym_primary_constructor] = STATE(4444), - [sym_class_body] = STATE(4697), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4514), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1290] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3063), + [anon_sym_sealed] = ACTIONS(3063), + [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3063), + [anon_sym_lateinit] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_internal] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_tailrec] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_infix] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_external] = ACTIONS(3063), + [sym_property_modifier] = ACTIONS(3063), + [anon_sym_abstract] = ACTIONS(3063), + [anon_sym_final] = ACTIONS(3063), + [anon_sym_open] = ACTIONS(3063), + [anon_sym_vararg] = ACTIONS(3063), + [anon_sym_noinline] = ACTIONS(3063), + [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1285] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1291] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1286] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1769), - [sym__comparison_operator] = STATE(1765), - [sym__in_operator] = STATE(1760), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1749), - [sym__multiplicative_operator] = STATE(1746), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1729), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3584), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_PERCENT] = ACTIONS(3584), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1287] = { - [sym_primary_constructor] = STATE(2893), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [1288] = { - [sym_type_constraints] = STATE(1441), - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [1289] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1290] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1292] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3004), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1291] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1293] = { + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [1294] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1292] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(981), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_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), - [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), - }, - [1293] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1295] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1294] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1296] = { + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [1297] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1295] = { - [sym_type_constraints] = STATE(1462), - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [1296] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1297] = { - [sym_class_body] = STATE(1139), - [sym_type_constraints] = STATE(957), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), }, [1298] = { - [sym_class_body] = STATE(1174), - [sym_type_constraints] = STATE(992), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, [1299] = { - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [1300] = { - [sym_class_body] = STATE(1181), - [sym_type_constraints] = STATE(1022), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [1301] = { - [sym_type_constraints] = STATE(962), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_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), - [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), - }, - [1302] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1303] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [1304] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1148), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3156), - [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(3160), - [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_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), - [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), - }, - [1305] = { - [sym_type_constraints] = STATE(1455), - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [1306] = { - [sym_function_body] = STATE(1115), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [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(4487), - [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_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_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(4487), - [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_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), - [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), - }, - [1307] = { - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [1308] = { - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [1309] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1300] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3011), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1310] = { - [sym_type_constraints] = STATE(1409), - [sym_property_delegate] = STATE(1572), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1301] = { + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [1302] = { + [sym_type_constraints] = STATE(1396), + [sym_property_delegate] = STATE(1586), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5261), + [anon_sym_EQ] = ACTIONS(5275), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5263), + [anon_sym_by] = ACTIONS(5267), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), [anon_sym_STAR] = ACTIONS(1752), [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), @@ -183115,1683 +182344,783 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1311] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1303] = { + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [1304] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(2992), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1312] = { - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [1305] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [1313] = { - [sym_type_constraints] = STATE(1436), - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [1306] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), }, - [1314] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [1315] = { - [sym_type_constraints] = STATE(1361), - [sym_property_delegate] = STATE(1584), - [sym_getter] = STATE(3343), - [sym_setter] = STATE(3343), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_RBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5271), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_DASH_GT] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - }, - [1316] = { - [sym_type_constraints] = STATE(1350), - [sym_property_delegate] = STATE(1586), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5277), - [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_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5279), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [1317] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [anon_sym_DASH_GT] = ACTIONS(4144), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [1318] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1307] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1319] = { - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [1320] = { - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [1321] = { - [sym_type_constraints] = STATE(1460), - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [1322] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_COMMA] = ACTIONS(4426), - [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(4426), - [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_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(4426), - [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_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), - [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_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4426), }, - [1323] = { - [sym_type_constraints] = STATE(1396), - [sym_property_delegate] = STATE(1562), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [1308] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1324] = { - [sym_function_body] = STATE(1150), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), - }, - [1325] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [1326] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1309] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3063), - [anon_sym_sealed] = ACTIONS(3063), - [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_lateinit] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_tailrec] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym_external] = ACTIONS(3063), - [sym_property_modifier] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_vararg] = ACTIONS(3063), - [anon_sym_noinline] = ACTIONS(3063), - [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1327] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1310] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_RPAREN] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3420), + [anon_sym_COLON_COLON] = ACTIONS(3440), [anon_sym_PLUS_EQ] = ACTIONS(3061), [anon_sym_DASH_EQ] = ACTIONS(3061), [anon_sym_STAR_EQ] = ACTIONS(3061), [anon_sym_SLASH_EQ] = ACTIONS(3061), [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(3059), [anon_sym_sealed] = ACTIONS(3059), [anon_sym_annotation] = ACTIONS(3059), @@ -184819,179 +183148,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1328] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1329] = { - [sym_type_constraints] = STATE(1378), - [sym_property_delegate] = STATE(1596), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [1311] = { + [sym_type_constraints] = STATE(1415), + [sym_property_delegate] = STATE(1572), + [sym_getter] = STATE(4663), + [sym_setter] = STATE(4663), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5277), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5279), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -185015,483 +183244,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [1330] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1331] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1332] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [1333] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [1334] = { - [sym_type_constraints] = STATE(1343), - [sym_property_delegate] = STATE(1553), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1312] = { + [sym_type_constraints] = STATE(1410), + [sym_property_delegate] = STATE(1579), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5283), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -185515,83 +183344,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [1335] = { - [sym_type_constraints] = STATE(1363), - [sym_property_delegate] = STATE(1590), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [1313] = { + [sym_type_constraints] = STATE(1404), + [sym_property_delegate] = STATE(1582), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5285), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -185615,183 +183444,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [1336] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1314] = { + [sym_function_body] = STATE(1099), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), + }, + [1315] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1337] = { - [sym_type_constraints] = STATE(1354), - [sym_property_delegate] = STATE(1588), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3490), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1316] = { + [sym_type_constraints] = STATE(1512), + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [1317] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [1318] = { + [sym_type_constraints] = STATE(1409), + [sym_property_delegate] = STATE(1595), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -185815,83 +183944,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [1338] = { - [sym_type_constraints] = STATE(1366), - [sym_property_delegate] = STATE(1541), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5299), - [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_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5301), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [1319] = { + [sym_type_constraints] = STATE(1406), + [sym_property_delegate] = STATE(1597), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5293), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -185915,183 +184044,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1339] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2113), - [sym__comparison_operator] = STATE(2103), - [sym__in_operator] = STATE(2075), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2062), - [sym__multiplicative_operator] = STATE(2057), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2022), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3646), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3654), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [anon_sym_QMARK_COLON] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_BANGin] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1340] = { - [sym_type_constraints] = STATE(1344), - [sym_property_delegate] = STATE(1606), - [sym_getter] = STATE(4567), - [sym_setter] = STATE(4567), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_RBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5305), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_DASH_GT] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [1320] = { + [sym_type_constraints] = STATE(1402), + [sym_property_delegate] = STATE(1601), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -186115,280 +184144,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1341] = { - [sym_class_body] = STATE(1174), - [sym_type_constraints] = STATE(992), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [1321] = { + [sym_type_constraints] = STATE(1521), + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, - [1342] = { - [sym__expression] = STATE(3006), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5315), - [anon_sym_get] = ACTIONS(2337), - [anon_sym_set] = ACTIONS(2337), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2656), - [sym_label] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_data] = ACTIONS(2337), - [anon_sym_inner] = ACTIONS(2337), - [anon_sym_expect] = ACTIONS(2337), - [anon_sym_actual] = ACTIONS(2337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), + [1322] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5297), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4310), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [1343] = { - [sym_property_delegate] = STATE(1562), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [1323] = { + [sym_type_constraints] = STATE(1504), + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [1324] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [anon_sym_DASH_GT] = ACTIONS(4296), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1325] = { + [sym_type_constraints] = STATE(1416), + [sym_property_delegate] = STATE(1591), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5305), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5307), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -186412,82 +184644,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [1344] = { - [sym_property_delegate] = STATE(1541), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5299), - [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_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5301), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [1326] = { + [sym_type_constraints] = STATE(1413), + [sym_property_delegate] = STATE(1593), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5311), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -186511,423 +184744,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [1345] = { - [sym__expression] = STATE(1359), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(5318), - [anon_sym_fun] = ACTIONS(5321), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2726), - [sym_label] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_data] = ACTIONS(2696), - [anon_sym_inner] = ACTIONS(2696), - [anon_sym_expect] = ACTIONS(2696), - [anon_sym_actual] = ACTIONS(2696), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), - }, - [1346] = { - [sym_primary_constructor] = STATE(3197), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1510), - [sym_type_constraints] = STATE(3058), - [sym_enum_class_body] = STATE(3302), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5324), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), + [1327] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, - [1347] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3059), - [anon_sym_sealed] = ACTIONS(3059), - [anon_sym_annotation] = ACTIONS(3059), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_lateinit] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_protected] = ACTIONS(3059), - [anon_sym_tailrec] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym_external] = ACTIONS(3059), - [sym_property_modifier] = ACTIONS(3059), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_vararg] = ACTIONS(3059), - [anon_sym_noinline] = ACTIONS(3059), - [anon_sym_crossinline] = ACTIONS(3059), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [1328] = { + [sym_type_constraints] = STATE(1515), + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, - [1348] = { - [sym_primary_constructor] = STATE(3262), - [sym_class_body] = STATE(3302), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1509), - [sym_type_constraints] = STATE(3067), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), + [1329] = { + [sym_type_constraints] = STATE(973), + [sym_enum_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, - [1349] = { - [sym_class_body] = STATE(1139), - [sym_type_constraints] = STATE(957), + [1330] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3524), + [anon_sym_COLON] = ACTIONS(3494), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3158), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3134), [anon_sym_object] = ACTIONS(3196), [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), @@ -187013,2142 +185151,1459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3200), }, - [1350] = { - [sym_property_delegate] = STATE(1588), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3490), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), + [1331] = { + [sym_function_body] = STATE(1138), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), }, - [1351] = { - [sym__expression] = STATE(3959), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_object] = ACTIONS(5328), - [anon_sym_fun] = ACTIONS(5331), - [anon_sym_get] = ACTIONS(2244), - [anon_sym_set] = ACTIONS(2244), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2812), - [sym_label] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_data] = ACTIONS(2244), - [anon_sym_inner] = ACTIONS(2244), - [anon_sym_expect] = ACTIONS(2244), - [anon_sym_actual] = ACTIONS(2244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), + [1332] = { + [sym_type_constraints] = STATE(1023), + [sym_enum_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, - [1352] = { - [sym_value_arguments] = STATE(1109), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), + [1333] = { + [sym_class_body] = STATE(1177), + [sym_type_constraints] = STATE(995), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [1353] = { - [sym_primary_constructor] = STATE(3177), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1494), - [sym_type_constraints] = STATE(3077), - [sym_enum_class_body] = STATE(3232), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5336), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), + [1334] = { + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [1354] = { - [sym_property_delegate] = STATE(1590), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5295), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), + [1335] = { + [sym_class_body] = STATE(1166), + [sym_type_constraints] = STATE(963), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), }, - [1355] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1336] = { + [sym_class_body] = STATE(1140), + [sym_type_constraints] = STATE(986), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [1337] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2129), + [sym__in_operator] = STATE(2128), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2125), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2124), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3080), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3692), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_QMARK_COLON] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3708), + [anon_sym_GT_EQ] = ACTIONS(3708), + [anon_sym_BANGin] = ACTIONS(3710), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1356] = { - [sym_type_constraints] = STATE(971), - [sym_enum_class_body] = STATE(1181), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [1338] = { + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, - [1357] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1339] = { + [sym_type_constraints] = STATE(1509), + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [1340] = { + [sym_function_body] = STATE(1102), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), + }, + [1341] = { + [sym__expression] = STATE(3907), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_object] = ACTIONS(5322), + [anon_sym_fun] = ACTIONS(5325), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2878), + [sym_label] = ACTIONS(2881), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_data] = ACTIONS(2586), + [anon_sym_inner] = ACTIONS(2586), + [anon_sym_expect] = ACTIONS(2586), + [anon_sym_actual] = ACTIONS(2586), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), + }, + [1342] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1358] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3063), - [anon_sym_sealed] = ACTIONS(3063), - [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_lateinit] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_tailrec] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym_external] = ACTIONS(3063), - [sym_property_modifier] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_vararg] = ACTIONS(3063), - [anon_sym_noinline] = ACTIONS(3063), - [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1359] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1360] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1361] = { - [sym_property_delegate] = STATE(1586), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5277), - [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_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5279), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [1362] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(5338), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [1363] = { - [sym_property_delegate] = STATE(1596), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [1364] = { - [sym_primary_constructor] = STATE(3207), - [sym_class_body] = STATE(3359), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(1534), - [sym_type_constraints] = STATE(3040), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5340), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [1365] = { - [sym__expression] = STATE(3565), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), + [1343] = { + [sym__expression] = STATE(3094), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), [anon_sym_object] = ACTIONS(5328), - [anon_sym_fun] = ACTIONS(5342), - [anon_sym_get] = ACTIONS(2244), - [anon_sym_set] = ACTIONS(2244), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2634), - [sym_label] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_data] = ACTIONS(2244), - [anon_sym_inner] = ACTIONS(2244), - [anon_sym_expect] = ACTIONS(2244), - [anon_sym_actual] = ACTIONS(2244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), - }, - [1366] = { - [sym_property_delegate] = STATE(1553), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [1367] = { - [sym__expression] = STATE(2486), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(5345), - [anon_sym_fun] = ACTIONS(5348), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_this] = ACTIONS(2153), - [anon_sym_super] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2568), - [sym_label] = ACTIONS(2571), + [anon_sym_fun] = ACTIONS(5331), + [anon_sym_get] = ACTIONS(2471), + [anon_sym_set] = ACTIONS(2471), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2834), + [sym_label] = ACTIONS(2837), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_when] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2174), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_data] = ACTIONS(2129), - [anon_sym_inner] = ACTIONS(2129), - [anon_sym_expect] = ACTIONS(2129), - [anon_sym_actual] = ACTIONS(2129), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2192), - [anon_sym_continue_AT] = ACTIONS(2195), - [anon_sym_break_AT] = ACTIONS(2198), - [sym_real_literal] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2204), - [sym_hex_literal] = ACTIONS(2207), - [sym_bin_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2213), - [sym__backtick_identifier] = ACTIONS(2216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2219), - }, - [1368] = { - [sym_class_body] = STATE(1181), - [sym_type_constraints] = STATE(1022), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_data] = ACTIONS(2471), + [anon_sym_inner] = ACTIONS(2471), + [anon_sym_expect] = ACTIONS(2471), + [anon_sym_actual] = ACTIONS(2471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), }, - [1369] = { - [sym__expression] = STATE(4197), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_object] = ACTIONS(5328), - [anon_sym_fun] = ACTIONS(5351), - [anon_sym_get] = ACTIONS(2244), - [anon_sym_set] = ACTIONS(2244), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2524), - [sym_label] = ACTIONS(2527), + [1344] = { + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_object] = ACTIONS(5334), + [anon_sym_fun] = ACTIONS(5337), + [anon_sym_get] = ACTIONS(2266), + [anon_sym_set] = ACTIONS(2266), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2966), + [sym_label] = ACTIONS(2969), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_data] = ACTIONS(2244), - [anon_sym_inner] = ACTIONS(2244), - [anon_sym_expect] = ACTIONS(2244), - [anon_sym_actual] = ACTIONS(2244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), - }, - [1370] = { - [sym_primary_constructor] = STATE(3467), - [sym_class_body] = STATE(3851), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1459), - [sym_type_constraints] = STATE(3660), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_data] = ACTIONS(2266), + [anon_sym_inner] = ACTIONS(2266), + [anon_sym_expect] = ACTIONS(2266), + [anon_sym_actual] = ACTIONS(2266), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), }, - [1371] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [1345] = { + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(5309), + [anon_sym_AT] = ACTIONS(5319), [anon_sym_LBRACK] = ACTIONS(2035), [anon_sym_LBRACE] = ACTIONS(2040), [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_object] = ACTIONS(5366), - [anon_sym_fun] = ACTIONS(5369), + [anon_sym_object] = ACTIONS(5340), + [anon_sym_fun] = ACTIONS(5343), [anon_sym_get] = ACTIONS(2028), [anon_sym_set] = ACTIONS(2028), [anon_sym_this] = ACTIONS(2058), @@ -189191,2363 +186646,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2126), }, - [1372] = { - [sym_primary_constructor] = STATE(4730), - [sym_class_body] = STATE(4604), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1437), - [sym_type_constraints] = STATE(4541), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5372), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1373] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1374] = { - [sym_type_constraints] = STATE(962), - [sym_enum_class_body] = STATE(1127), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(5374), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_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), - [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), - }, - [1375] = { - [sym__expression] = STATE(4176), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5376), - [anon_sym_get] = ACTIONS(2337), - [anon_sym_set] = ACTIONS(2337), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2878), - [sym_label] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_data] = ACTIONS(2337), - [anon_sym_inner] = ACTIONS(2337), - [anon_sym_expect] = ACTIONS(2337), - [anon_sym_actual] = ACTIONS(2337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), - }, - [1376] = { - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1346] = { + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(5309), + [anon_sym_AT] = ACTIONS(5319), [anon_sym_LBRACK] = ACTIONS(2132), [anon_sym_LBRACE] = ACTIONS(2135), [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(5345), - [anon_sym_fun] = ACTIONS(5379), + [anon_sym_object] = ACTIONS(5346), + [anon_sym_fun] = ACTIONS(5349), [anon_sym_get] = ACTIONS(2129), [anon_sym_set] = ACTIONS(2129), [anon_sym_this] = ACTIONS(2153), [anon_sym_super] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2922), - [sym_label] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2856), + [sym_label] = ACTIONS(2859), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), [anon_sym_null] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2862), [anon_sym_when] = ACTIONS(2171), [anon_sym_try] = ACTIONS(2174), - [anon_sym_throw] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2934), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2868), [anon_sym_continue] = ACTIONS(2183), [anon_sym_break] = ACTIONS(2183), [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2937), - [anon_sym_data] = ACTIONS(2129), - [anon_sym_inner] = ACTIONS(2129), - [anon_sym_expect] = ACTIONS(2129), - [anon_sym_actual] = ACTIONS(2129), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2192), - [anon_sym_continue_AT] = ACTIONS(2195), - [anon_sym_break_AT] = ACTIONS(2198), - [sym_real_literal] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2204), - [sym_hex_literal] = ACTIONS(2207), - [sym_bin_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2213), - [sym__backtick_identifier] = ACTIONS(2216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2219), - }, - [1377] = { - [sym__expression] = STATE(372), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_object] = ACTIONS(5366), - [anon_sym_fun] = ACTIONS(5382), - [anon_sym_get] = ACTIONS(2028), - [anon_sym_set] = ACTIONS(2028), - [anon_sym_this] = ACTIONS(2058), - [anon_sym_super] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2612), - [sym_label] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_when] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2624), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_data] = ACTIONS(2028), - [anon_sym_inner] = ACTIONS(2028), - [anon_sym_expect] = ACTIONS(2028), - [anon_sym_actual] = ACTIONS(2028), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2102), - [anon_sym_break_AT] = ACTIONS(2105), - [sym_real_literal] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2111), - [sym_hex_literal] = ACTIONS(2114), - [sym_bin_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2120), - [sym__backtick_identifier] = ACTIONS(2123), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2126), - }, - [1378] = { - [sym_property_delegate] = STATE(1574), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [1379] = { - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(5318), - [anon_sym_fun] = ACTIONS(5387), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2900), - [sym_label] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_data] = ACTIONS(2696), - [anon_sym_inner] = ACTIONS(2696), - [anon_sym_expect] = ACTIONS(2696), - [anon_sym_actual] = ACTIONS(2696), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), - }, - [1380] = { - [sym_class_body] = STATE(1127), - [sym_type_constraints] = STATE(981), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(5390), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_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), - [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), - }, - [1381] = { - [sym_type_constraints] = STATE(989), - [sym_enum_class_body] = STATE(1038), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [1382] = { - [sym__expression] = STATE(4151), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_object] = ACTIONS(5328), - [anon_sym_fun] = ACTIONS(5392), - [anon_sym_get] = ACTIONS(2244), - [anon_sym_set] = ACTIONS(2244), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_super] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2274), - [sym_label] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_when] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_data] = ACTIONS(2244), - [anon_sym_inner] = ACTIONS(2244), - [anon_sym_expect] = ACTIONS(2244), - [anon_sym_actual] = ACTIONS(2244), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2310), - [anon_sym_break_AT] = ACTIONS(2313), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2322), - [sym_bin_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [sym__backtick_identifier] = ACTIONS(2331), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2334), - }, - [1383] = { - [sym_primary_constructor] = STATE(4610), - [sym_class_body] = STATE(5050), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1531), - [sym_type_constraints] = STATE(4842), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [1384] = { - [sym_primary_constructor] = STATE(4734), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1433), - [sym_type_constraints] = STATE(4513), - [sym_enum_class_body] = STATE(4750), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - }, - [1385] = { - [sym_primary_constructor] = STATE(4612), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1536), - [sym_type_constraints] = STATE(4880), - [sym_enum_class_body] = STATE(4946), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1386] = { - [sym_primary_constructor] = STATE(3462), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1461), - [sym_type_constraints] = STATE(3620), - [sym_enum_class_body] = STATE(3842), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1387] = { - [sym_primary_constructor] = STATE(3458), - [sym_class_body] = STATE(3842), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1440), - [sym_type_constraints] = STATE(3563), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1388] = { - [sym_type_constraints] = STATE(1035), - [sym_enum_class_body] = STATE(1148), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym_LT] = ACTIONS(4229), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(3160), - [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_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), - [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), - }, - [1389] = { - [sym__expression] = STATE(2090), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_object] = ACTIONS(5419), - [anon_sym_fun] = ACTIONS(5422), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2460), - [sym_label] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_data] = ACTIONS(2430), - [anon_sym_inner] = ACTIONS(2430), - [anon_sym_expect] = ACTIONS(2430), - [anon_sym_actual] = ACTIONS(2430), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), - }, - [1390] = { - [sym_primary_constructor] = STATE(4614), - [sym_class_body] = STATE(4946), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1535), - [sym_type_constraints] = STATE(4892), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [1391] = { - [sym_primary_constructor] = STATE(4627), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1523), - [sym_type_constraints] = STATE(4865), - [sym_enum_class_body] = STATE(4992), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - }, - [1392] = { - [sym__expression] = STATE(3996), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5429), - [anon_sym_get] = ACTIONS(2337), - [anon_sym_set] = ACTIONS(2337), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2546), - [sym_label] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2552), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_data] = ACTIONS(2337), - [anon_sym_inner] = ACTIONS(2337), - [anon_sym_expect] = ACTIONS(2337), - [anon_sym_actual] = ACTIONS(2337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), - }, - [1393] = { - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_object] = ACTIONS(5419), - [anon_sym_fun] = ACTIONS(5432), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2856), - [sym_label] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), [anon_sym_PLUS] = ACTIONS(2859), [anon_sym_DASH] = ACTIONS(2859), [anon_sym_PLUS_PLUS] = ACTIONS(2871), [anon_sym_DASH_DASH] = ACTIONS(2871), [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_data] = ACTIONS(2430), - [anon_sym_inner] = ACTIONS(2430), - [anon_sym_expect] = ACTIONS(2430), - [anon_sym_actual] = ACTIONS(2430), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), - }, - [1394] = { - [sym__expression] = STATE(3885), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5435), - [anon_sym_get] = ACTIONS(2337), - [anon_sym_set] = ACTIONS(2337), - [anon_sym_this] = ACTIONS(2361), - [anon_sym_super] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2367), - [sym_label] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_when] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_data] = ACTIONS(2337), - [anon_sym_inner] = ACTIONS(2337), - [anon_sym_expect] = ACTIONS(2337), - [anon_sym_actual] = ACTIONS(2337), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2400), - [anon_sym_continue_AT] = ACTIONS(2403), - [anon_sym_break_AT] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2412), - [sym_hex_literal] = ACTIONS(2415), - [sym_bin_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2421), - [sym__backtick_identifier] = ACTIONS(2424), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2427), - }, - [1395] = { - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(5345), - [anon_sym_fun] = ACTIONS(5438), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_this] = ACTIONS(2153), - [anon_sym_super] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2678), - [sym_label] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_when] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2174), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), [anon_sym_data] = ACTIONS(2129), [anon_sym_inner] = ACTIONS(2129), [anon_sym_expect] = ACTIONS(2129), @@ -191567,756 +186745,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2219), }, - [1396] = { - [sym_property_delegate] = STATE(1572), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [1397] = { - [sym__expression] = STATE(2417), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(5318), - [anon_sym_fun] = ACTIONS(5441), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2790), - [sym_label] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_data] = ACTIONS(2696), - [anon_sym_inner] = ACTIONS(2696), - [anon_sym_expect] = ACTIONS(2696), - [anon_sym_actual] = ACTIONS(2696), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), - }, - [1398] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1399] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1400] = { - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_object] = ACTIONS(5419), - [anon_sym_fun] = ACTIONS(5444), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2966), - [sym_label] = ACTIONS(2969), + [1347] = { + [sym__expression] = STATE(356), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_object] = ACTIONS(5334), + [anon_sym_fun] = ACTIONS(5352), + [anon_sym_get] = ACTIONS(2266), + [anon_sym_set] = ACTIONS(2266), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2768), + [sym_label] = ACTIONS(2771), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_data] = ACTIONS(2430), - [anon_sym_inner] = ACTIONS(2430), - [anon_sym_expect] = ACTIONS(2430), - [anon_sym_actual] = ACTIONS(2430), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), - }, - [1401] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_data] = ACTIONS(2266), + [anon_sym_inner] = ACTIONS(2266), + [anon_sym_expect] = ACTIONS(2266), + [anon_sym_actual] = ACTIONS(2266), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), }, - [1402] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1403] = { - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1348] = { + [sym__expression] = STATE(1307), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(5309), + [anon_sym_AT] = ACTIONS(5319), [anon_sym_LBRACK] = ACTIONS(2132), [anon_sym_LBRACE] = ACTIONS(2135), [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_object] = ACTIONS(5345), - [anon_sym_fun] = ACTIONS(5447), + [anon_sym_object] = ACTIONS(5346), + [anon_sym_fun] = ACTIONS(5355), [anon_sym_get] = ACTIONS(2129), [anon_sym_set] = ACTIONS(2129), [anon_sym_this] = ACTIONS(2153), @@ -192359,383 +186943,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2219), }, - [1404] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [1405] = { - [sym_primary_constructor] = STATE(3435), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1447), - [sym_type_constraints] = STATE(3669), - [sym_enum_class_body] = STATE(3688), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5450), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - }, - [1406] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1349] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3080), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1407] = { - [sym__expression] = STATE(397), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [1350] = { + [sym__expression] = STATE(2389), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5361), + [anon_sym_get] = ACTIONS(2359), + [anon_sym_set] = ACTIONS(2359), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2389), + [sym_label] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_data] = ACTIONS(2359), + [anon_sym_inner] = ACTIONS(2359), + [anon_sym_expect] = ACTIONS(2359), + [anon_sym_actual] = ACTIONS(2359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), + }, + [1351] = { + [sym__expression] = STATE(1500), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(5309), + [anon_sym_AT] = ACTIONS(5319), [anon_sym_LBRACK] = ACTIONS(2035), [anon_sym_LBRACE] = ACTIONS(2040), [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_object] = ACTIONS(5366), - [anon_sym_fun] = ACTIONS(5452), + [anon_sym_object] = ACTIONS(5340), + [anon_sym_fun] = ACTIONS(5364), [anon_sym_get] = ACTIONS(2028), [anon_sym_set] = ACTIONS(2028), [anon_sym_this] = ACTIONS(2058), [anon_sym_super] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2590), - [sym_label] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2453), + [sym_label] = ACTIONS(2456), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), [anon_sym_null] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2459), [anon_sym_when] = ACTIONS(2078), [anon_sym_try] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2602), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2465), [anon_sym_continue] = ACTIONS(2090), [anon_sym_break] = ACTIONS(2090), [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2605), - [anon_sym_DASH_DASH] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2468), + [anon_sym_DASH_DASH] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), [anon_sym_data] = ACTIONS(2028), [anon_sym_inner] = ACTIONS(2028), [anon_sym_expect] = ACTIONS(2028), @@ -192755,4205 +187240,5618 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2126), }, - [1408] = { - [sym__expression] = STATE(2516), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(5318), - [anon_sym_fun] = ACTIONS(5455), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_super] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2944), - [sym_label] = ACTIONS(2947), + [1352] = { + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_object] = ACTIONS(5328), + [anon_sym_fun] = ACTIONS(5367), + [anon_sym_get] = ACTIONS(2471), + [anon_sym_set] = ACTIONS(2471), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2922), + [sym_label] = ACTIONS(2925), [anon_sym_for] = ACTIONS(2070), [anon_sym_while] = ACTIONS(2070), [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_when] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_data] = ACTIONS(2696), - [anon_sym_inner] = ACTIONS(2696), - [anon_sym_expect] = ACTIONS(2696), - [anon_sym_actual] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_data] = ACTIONS(2471), + [anon_sym_inner] = ACTIONS(2471), + [anon_sym_expect] = ACTIONS(2471), + [anon_sym_actual] = ACTIONS(2471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), + }, + [1353] = { + [sym__expression] = STATE(4198), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_object] = ACTIONS(5322), + [anon_sym_fun] = ACTIONS(5370), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2680), + [sym_label] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_data] = ACTIONS(2586), + [anon_sym_inner] = ACTIONS(2586), + [anon_sym_expect] = ACTIONS(2586), + [anon_sym_actual] = ACTIONS(2586), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2759), - [anon_sym_break_AT] = ACTIONS(2762), - [sym_real_literal] = ACTIONS(2765), - [sym_integer_literal] = ACTIONS(2768), - [sym_hex_literal] = ACTIONS(2771), - [sym_bin_literal] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [sym__backtick_identifier] = ACTIONS(2780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2783), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), }, - [1409] = { - [sym_property_delegate] = STATE(1580), - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5458), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [1354] = { + [sym_primary_constructor] = STATE(3233), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1429), + [sym_type_constraints] = STATE(3052), + [sym_enum_class_body] = STATE(3466), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), [sym_multiline_comment] = ACTIONS(3), }, - [1410] = { - [sym_primary_constructor] = STATE(4724), - [sym_class_body] = STATE(4578), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1457), - [sym_type_constraints] = STATE(4550), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [1355] = { + [sym_primary_constructor] = STATE(4619), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1451), + [sym_type_constraints] = STATE(4557), + [sym_enum_class_body] = STATE(4637), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5375), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), [sym_multiline_comment] = ACTIONS(3), }, - [1411] = { - [sym_class_body] = STATE(1172), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(5462), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), - }, - [1412] = { - [sym_function_body] = STATE(1105), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(5464), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [1413] = { - [sym_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(5466), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), + [1356] = { + [sym_primary_constructor] = STATE(4615), + [sym_class_body] = STATE(4657), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1453), + [sym_type_constraints] = STATE(4565), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), }, - [1414] = { - [sym_primary_constructor] = STATE(4729), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(1438), - [sym_type_constraints] = STATE(4559), - [sym_enum_class_body] = STATE(4604), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5468), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [1357] = { + [sym_primary_constructor] = STATE(4612), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1454), + [sym_type_constraints] = STATE(4509), + [sym_enum_class_body] = STATE(4657), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5379), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, - [1415] = { - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(2430), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_object] = ACTIONS(5419), - [anon_sym_fun] = ACTIONS(5470), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2454), - [anon_sym_super] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2834), - [sym_label] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_when] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_data] = ACTIONS(2430), - [anon_sym_inner] = ACTIONS(2430), - [anon_sym_expect] = ACTIONS(2430), - [anon_sym_actual] = ACTIONS(2430), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2307), - [anon_sym_continue_AT] = ACTIONS(2493), - [anon_sym_break_AT] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2502), - [sym_hex_literal] = ACTIONS(2505), - [sym_bin_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym__backtick_identifier] = ACTIONS(2514), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2517), + [1358] = { + [sym_primary_constructor] = STATE(4608), + [sym_class_body] = STATE(4664), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(1457), + [sym_type_constraints] = STATE(4539), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), }, - [1416] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1359] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1417] = { - [sym__expression] = STATE(468), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_object] = ACTIONS(5366), - [anon_sym_fun] = ACTIONS(5473), - [anon_sym_get] = ACTIONS(2028), - [anon_sym_set] = ACTIONS(2028), - [anon_sym_this] = ACTIONS(2058), - [anon_sym_super] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2226), - [sym_label] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_when] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_data] = ACTIONS(2028), - [anon_sym_inner] = ACTIONS(2028), - [anon_sym_expect] = ACTIONS(2028), - [anon_sym_actual] = ACTIONS(2028), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2099), - [anon_sym_continue_AT] = ACTIONS(2102), - [anon_sym_break_AT] = ACTIONS(2105), - [sym_real_literal] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2111), - [sym_hex_literal] = ACTIONS(2114), - [sym_bin_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2120), - [sym__backtick_identifier] = ACTIONS(2123), + [1360] = { + [sym_primary_constructor] = STATE(3227), + [sym_class_body] = STATE(3209), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1455), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2126), }, - [1418] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(3598), + [1361] = { + [sym_primary_constructor] = STATE(3226), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1456), + [sym_type_constraints] = STATE(3032), + [sym_enum_class_body] = STATE(3209), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5385), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, - [1419] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1362] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3712), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3724), - [anon_sym_EQ_EQ] = ACTIONS(3722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3724), - [anon_sym_LT_EQ] = ACTIONS(3726), - [anon_sym_GT_EQ] = ACTIONS(3726), - [anon_sym_BANGin] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1420] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [1363] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1421] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(1826), - [sym__comparison_operator] = STATE(1844), - [sym__in_operator] = STATE(1856), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(1875), - [sym__multiplicative_operator] = STATE(1884), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2067), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3710), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3598), + [1364] = { + [sym_function_body] = STATE(1059), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(5387), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1365] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(5389), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [1366] = { + [sym_primary_constructor] = STATE(3155), + [sym_class_body] = STATE(3369), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(1465), + [sym_type_constraints] = STATE(3069), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5391), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), [sym_multiline_comment] = ACTIONS(3), }, - [1422] = { - [sym_function_body] = STATE(1198), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(5476), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), + [1367] = { + [sym_function_body] = STATE(1097), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(5393), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), }, - [1423] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), + [1368] = { + [sym__expression] = STATE(1257), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5395), + [anon_sym_get] = ACTIONS(2359), + [anon_sym_set] = ACTIONS(2359), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2702), + [sym_label] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2717), + [anon_sym_BANG] = ACTIONS(2717), + [anon_sym_data] = ACTIONS(2359), + [anon_sym_inner] = ACTIONS(2359), + [anon_sym_expect] = ACTIONS(2359), + [anon_sym_actual] = ACTIONS(2359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, - [1424] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_object] = ACTIONS(3059), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3059), - [anon_sym_super] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_when] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3061), - [anon_sym_continue_AT] = ACTIONS(3061), - [anon_sym_break_AT] = ACTIONS(3061), - [sym_real_literal] = ACTIONS(3061), - [sym_integer_literal] = ACTIONS(3059), - [sym_hex_literal] = ACTIONS(3061), - [sym_bin_literal] = ACTIONS(3061), - [anon_sym_true] = ACTIONS(3059), - [anon_sym_false] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3061), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(4565), + [1369] = { + [sym__expression] = STATE(381), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_object] = ACTIONS(5334), + [anon_sym_fun] = ACTIONS(5398), + [anon_sym_get] = ACTIONS(2266), + [anon_sym_set] = ACTIONS(2266), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2746), + [sym_label] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_data] = ACTIONS(2266), + [anon_sym_inner] = ACTIONS(2266), + [anon_sym_expect] = ACTIONS(2266), + [anon_sym_actual] = ACTIONS(2266), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), + }, + [1370] = { + [sym_primary_constructor] = STATE(4579), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1496), + [sym_type_constraints] = STATE(4861), + [sym_enum_class_body] = STATE(5017), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3061), }, - [1425] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5504), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1371] = { + [sym_primary_constructor] = STATE(4576), + [sym_class_body] = STATE(4974), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1502), + [sym_type_constraints] = STATE(4864), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1426] = { - [sym_primary_constructor] = STATE(3528), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1598), - [sym_type_constraints] = STATE(3620), - [sym_enum_class_body] = STATE(3842), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5508), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [1372] = { + [sym_primary_constructor] = STATE(4575), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1503), + [sym_type_constraints] = STATE(4874), + [sym_enum_class_body] = STATE(4974), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, - [1427] = { - [sym_primary_constructor] = STATE(3530), - [sym_class_body] = STATE(3842), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1597), - [sym_type_constraints] = STATE(3563), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [1373] = { + [sym_primary_constructor] = STATE(4573), + [sym_class_body] = STATE(4953), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1513), + [sym_type_constraints] = STATE(4895), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), [sym_multiline_comment] = ACTIONS(3), }, - [1428] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8345), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5512), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1374] = { + [sym__expression] = STATE(4173), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_object] = ACTIONS(5328), + [anon_sym_fun] = ACTIONS(5421), + [anon_sym_get] = ACTIONS(2471), + [anon_sym_set] = ACTIONS(2471), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2790), + [sym_label] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2802), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_data] = ACTIONS(2471), + [anon_sym_inner] = ACTIONS(2471), + [anon_sym_expect] = ACTIONS(2471), + [anon_sym_actual] = ACTIONS(2471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), + }, + [1375] = { + [sym__expression] = STATE(1460), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_object] = ACTIONS(5346), + [anon_sym_fun] = ACTIONS(5424), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_super] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2568), + [sym_label] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_when] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_data] = ACTIONS(2129), + [anon_sym_inner] = ACTIONS(2129), + [anon_sym_expect] = ACTIONS(2129), + [anon_sym_actual] = ACTIONS(2129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2192), + [anon_sym_continue_AT] = ACTIONS(2195), + [anon_sym_break_AT] = ACTIONS(2198), + [sym_real_literal] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2204), + [sym_hex_literal] = ACTIONS(2207), + [sym_bin_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym__backtick_identifier] = ACTIONS(2216), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(2219), }, - [1429] = { - [sym_primary_constructor] = STATE(4801), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1567), - [sym_type_constraints] = STATE(4880), - [sym_enum_class_body] = STATE(4946), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [1376] = { + [sym_class_body] = STATE(1140), + [sym_type_constraints] = STATE(986), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [1377] = { + [sym_value_arguments] = STATE(1129), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(5427), + [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_DOT] = 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(4527), + [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_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(4527), + [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_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), + [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), }, - [1430] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8453), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5516), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1378] = { + [sym_class_body] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(4392), }, - [1431] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [1379] = { + [sym_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), + }, + [1380] = { + [sym_class_body] = STATE(1166), + [sym_type_constraints] = STATE(963), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [1381] = { + [sym_type_constraints] = STATE(965), + [sym_enum_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [1382] = { + [sym_class_body] = STATE(1177), + [sym_type_constraints] = STATE(995), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [1383] = { + [sym_primary_constructor] = STATE(3264), + [sym_class_body] = STATE(3676), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1534), + [sym_type_constraints] = STATE(3546), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5435), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [1384] = { + [sym_primary_constructor] = STATE(3274), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1530), + [sym_type_constraints] = STATE(3600), + [sym_enum_class_body] = STATE(3850), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1385] = { + [sym_primary_constructor] = STATE(3276), + [sym_class_body] = STATE(3850), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1528), + [sym_type_constraints] = STATE(3576), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5449), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1386] = { + [sym_type_constraints] = STATE(1023), + [sym_enum_class_body] = STATE(1198), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [1387] = { + [sym_primary_constructor] = STATE(3283), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1525), + [sym_type_constraints] = STATE(3574), + [sym_enum_class_body] = STATE(3896), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5453), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [1388] = { + [sym_class_body] = STATE(1198), + [sym_type_constraints] = STATE(988), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(5455), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [1389] = { + [sym_type_constraints] = STATE(987), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), + }, + [1390] = { + [sym_type_constraints] = STATE(973), + [sym_enum_class_body] = STATE(1172), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(5457), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [1391] = { + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_object] = ACTIONS(5322), + [anon_sym_fun] = ACTIONS(5459), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2616), + [sym_label] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2625), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_data] = ACTIONS(2586), + [anon_sym_inner] = ACTIONS(2586), + [anon_sym_expect] = ACTIONS(2586), + [anon_sym_actual] = ACTIONS(2586), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), + }, + [1392] = { + [sym__expression] = STATE(2093), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(2028), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_object] = ACTIONS(5340), + [anon_sym_fun] = ACTIONS(5462), + [anon_sym_get] = ACTIONS(2028), + [anon_sym_set] = ACTIONS(2028), + [anon_sym_this] = ACTIONS(2058), + [anon_sym_super] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2724), + [sym_label] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_when] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_data] = ACTIONS(2028), + [anon_sym_inner] = ACTIONS(2028), + [anon_sym_expect] = ACTIONS(2028), + [anon_sym_actual] = ACTIONS(2028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2102), + [anon_sym_break_AT] = ACTIONS(2105), + [sym_real_literal] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2111), + [sym_hex_literal] = ACTIONS(2114), + [sym_bin_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2120), + [sym__backtick_identifier] = ACTIONS(2123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2126), + }, + [1393] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3084), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1432] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5518), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [1394] = { + [sym__expression] = STATE(2561), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5465), + [anon_sym_get] = ACTIONS(2359), + [anon_sym_set] = ACTIONS(2359), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2944), + [sym_label] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_data] = ACTIONS(2359), + [anon_sym_inner] = ACTIONS(2359), + [anon_sym_expect] = ACTIONS(2359), + [anon_sym_actual] = ACTIONS(2359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, - [1433] = { - [sym_primary_constructor] = STATE(4735), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4528), - [sym_enum_class_body] = STATE(4703), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5520), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [1395] = { + [sym__expression] = STATE(1362), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5468), + [anon_sym_get] = ACTIONS(2359), + [anon_sym_set] = ACTIONS(2359), + [anon_sym_this] = ACTIONS(2383), + [anon_sym_super] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2900), + [sym_label] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_data] = ACTIONS(2359), + [anon_sym_inner] = ACTIONS(2359), + [anon_sym_expect] = ACTIONS(2359), + [anon_sym_actual] = ACTIONS(2359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2422), + [anon_sym_break_AT] = ACTIONS(2425), + [sym_real_literal] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2434), + [sym_bin_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2440), + [sym__backtick_identifier] = ACTIONS(2443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2446), }, - [1434] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8472), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1396] = { + [sym_property_delegate] = STATE(1588), + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5471), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1435] = { - [sym_primary_constructor] = STATE(3520), - [sym_class_body] = STATE(3851), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1605), - [sym_type_constraints] = STATE(3660), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [1397] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3063), + [anon_sym_sealed] = ACTIONS(3063), + [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3063), + [anon_sym_lateinit] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_internal] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_tailrec] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_infix] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_external] = ACTIONS(3063), + [sym_property_modifier] = ACTIONS(3063), + [anon_sym_abstract] = ACTIONS(3063), + [anon_sym_final] = ACTIONS(3063), + [anon_sym_open] = ACTIONS(3063), + [anon_sym_vararg] = ACTIONS(3063), + [anon_sym_noinline] = ACTIONS(3063), + [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1436] = { - [sym_function_body] = STATE(1124), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [1437] = { - [sym_primary_constructor] = STATE(4733), - [sym_class_body] = STATE(4697), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4514), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5526), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1398] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1438] = { - [sym_primary_constructor] = STATE(4732), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4524), - [sym_enum_class_body] = STATE(4697), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5528), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1399] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1439] = { - [sym_function_body] = STATE(1179), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [1440] = { - [sym_primary_constructor] = STATE(3439), - [sym_class_body] = STATE(3796), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3661), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1400] = { + [sym_property_delegate] = STATE(1586), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1441] = { - [sym_function_body] = STATE(1154), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [1442] = { - [sym_primary_constructor] = STATE(3538), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(1558), - [sym_type_constraints] = STATE(3669), - [sym_enum_class_body] = STATE(3688), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5532), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [1401] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1443] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5534), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1402] = { + [sym_property_delegate] = STATE(1574), + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5473), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1444] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [1403] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3005), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1445] = { - [sym_function_body] = STATE(1123), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [1446] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8531), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5536), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1404] = { + [sym_property_delegate] = STATE(1584), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5265), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1447] = { - [sym_primary_constructor] = STATE(3434), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [1405] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1448] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5540), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1406] = { + [sym_property_delegate] = STATE(1601), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1449] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [1407] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3001), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(2999), - [anon_sym_sealed] = ACTIONS(2999), - [anon_sym_annotation] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_lateinit] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_tailrec] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2999), - [sym_property_modifier] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_vararg] = ACTIONS(2999), - [anon_sym_noinline] = ACTIONS(2999), - [anon_sym_crossinline] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1450] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [1408] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3061), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), [anon_sym_suspend] = ACTIONS(3059), [anon_sym_sealed] = ACTIONS(3059), [anon_sym_annotation] = ACTIONS(3059), @@ -196981,825 +192879,2016 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1451] = { - [sym_primary_constructor] = STATE(4807), - [sym_class_body] = STATE(4946), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1543), - [sym_type_constraints] = STATE(4892), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3136), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_PLUS_EQ] = ACTIONS(3140), - [anon_sym_DASH_EQ] = ACTIONS(3140), - [anon_sym_STAR_EQ] = ACTIONS(3140), - [anon_sym_SLASH_EQ] = ACTIONS(3140), - [anon_sym_PERCENT_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1452] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8536), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1409] = { + [sym_property_delegate] = STATE(1597), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5293), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1453] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3009), + [1410] = { + [sym_property_delegate] = STATE(1582), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5285), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [1411] = { + [sym__expression] = STATE(538), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(2266), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_object] = ACTIONS(5334), + [anon_sym_fun] = ACTIONS(5475), + [anon_sym_get] = ACTIONS(2266), + [anon_sym_set] = ACTIONS(2266), + [anon_sym_this] = ACTIONS(2290), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2296), + [sym_label] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_when] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_data] = ACTIONS(2266), + [anon_sym_inner] = ACTIONS(2266), + [anon_sym_expect] = ACTIONS(2266), + [anon_sym_actual] = ACTIONS(2266), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2329), + [anon_sym_continue_AT] = ACTIONS(2332), + [anon_sym_break_AT] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2341), + [sym_hex_literal] = ACTIONS(2344), + [sym_bin_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2350), + [sym__backtick_identifier] = ACTIONS(2353), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2356), + }, + [1412] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1413] = { + [sym_property_delegate] = STATE(1595), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [1414] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1415] = { + [sym_property_delegate] = STATE(1579), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5283), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [1416] = { + [sym_property_delegate] = STATE(1593), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5309), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5311), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [1417] = { + [sym__expression] = STATE(3551), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_object] = ACTIONS(5322), + [anon_sym_fun] = ACTIONS(5478), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2812), + [sym_label] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_when] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_data] = ACTIONS(2586), + [anon_sym_inner] = ACTIONS(2586), + [anon_sym_expect] = ACTIONS(2586), + [anon_sym_actual] = ACTIONS(2586), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2649), + [anon_sym_break_AT] = ACTIONS(2652), + [sym_real_literal] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2658), + [sym_hex_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym__backtick_identifier] = ACTIONS(2670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2673), + }, + [1418] = { + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(2028), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_object] = ACTIONS(5340), + [anon_sym_fun] = ACTIONS(5481), + [anon_sym_get] = ACTIONS(2028), + [anon_sym_set] = ACTIONS(2028), + [anon_sym_this] = ACTIONS(2058), + [anon_sym_super] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2248), + [sym_label] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_when] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_data] = ACTIONS(2028), + [anon_sym_inner] = ACTIONS(2028), + [anon_sym_expect] = ACTIONS(2028), + [anon_sym_actual] = ACTIONS(2028), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2099), + [anon_sym_continue_AT] = ACTIONS(2102), + [anon_sym_break_AT] = ACTIONS(2105), + [sym_real_literal] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2111), + [sym_hex_literal] = ACTIONS(2114), + [sym_bin_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2120), + [sym__backtick_identifier] = ACTIONS(2123), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2126), + }, + [1419] = { + [sym__expression] = STATE(2446), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_object] = ACTIONS(5346), + [anon_sym_fun] = ACTIONS(5484), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_super] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2226), + [sym_label] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_when] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_data] = ACTIONS(2129), + [anon_sym_inner] = ACTIONS(2129), + [anon_sym_expect] = ACTIONS(2129), + [anon_sym_actual] = ACTIONS(2129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2192), + [anon_sym_continue_AT] = ACTIONS(2195), + [anon_sym_break_AT] = ACTIONS(2198), + [sym_real_literal] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2204), + [sym_hex_literal] = ACTIONS(2207), + [sym_bin_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym__backtick_identifier] = ACTIONS(2216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2219), + }, + [1420] = { + [sym__expression] = STATE(3998), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(5319), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_object] = ACTIONS(5328), + [anon_sym_fun] = ACTIONS(5487), + [anon_sym_get] = ACTIONS(2471), + [anon_sym_set] = ACTIONS(2471), + [anon_sym_this] = ACTIONS(2495), + [anon_sym_super] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2501), + [sym_label] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_when] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_data] = ACTIONS(2471), + [anon_sym_inner] = ACTIONS(2471), + [anon_sym_expect] = ACTIONS(2471), + [anon_sym_actual] = ACTIONS(2471), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2534), + [anon_sym_continue_AT] = ACTIONS(2537), + [anon_sym_break_AT] = ACTIONS(2540), + [sym_real_literal] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2546), + [sym_hex_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2555), + [sym__backtick_identifier] = ACTIONS(2558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2561), + }, + [1421] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [1422] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2351), + [sym__comparison_operator] = STATE(2352), + [sym__in_operator] = STATE(2353), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2354), + [sym__multiplicative_operator] = STATE(2355), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2356), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3009), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3748), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3750), + [anon_sym_DOT_DOT] = ACTIONS(3752), + [anon_sym_QMARK_COLON] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_PIPE_PIPE] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_SLASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [1454] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1423] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(2992), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(2994), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_DASH_GT] = ACTIONS(3019), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1455] = { - [sym_function_body] = STATE(1119), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [1424] = { + [sym_function_body] = STATE(1094), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, - [1456] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1425] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5490), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1457] = { - [sym_primary_constructor] = STATE(4728), - [sym_class_body] = STATE(4603), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4557), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5548), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [1426] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5494), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1458] = { - [sym_function_body] = STATE(1150), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), + [1427] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1459] = { - [sym_primary_constructor] = STATE(3463), - [sym_class_body] = STATE(3786), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3631), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [1428] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1429] = { + [sym_primary_constructor] = STATE(3284), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5500), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -197807,6 +194896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3196), [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), @@ -197835,1262 +194925,1555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [1460] = { - [sym_function_body] = STATE(1039), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [1461] = { - [sym_primary_constructor] = STATE(3443), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1430] = { + [sym_primary_constructor] = STATE(4809), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1567), + [sym_type_constraints] = STATE(4874), + [sym_enum_class_body] = STATE(4974), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, - [1462] = { - [sym_function_body] = STATE(1115), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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(4487), - [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_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_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(4487), - [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_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), - [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), - }, - [1463] = { - [sym_function_body] = STATE(1183), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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(4426), - [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_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(4426), - [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_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), + [1431] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8377), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4426), - [anon_sym_continue_AT] = ACTIONS(4426), - [anon_sym_break_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), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4426), + [sym__string_start] = ACTIONS(199), }, - [1464] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1432] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8342), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5554), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5506), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1465] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1465), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(5556), - [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_DOT] = 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(4627), - [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_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(4627), - [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_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), - [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), + [1433] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3026), }, - [1466] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1434] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3019), + }, + [1435] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3008), + }, + [1436] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2990), + }, + [1437] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3015), + }, + [1438] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3045), + }, + [1439] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3004), + }, + [1440] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5559), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5532), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1467] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1441] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5561), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5534), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1468] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1442] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8503), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5563), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5536), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1469] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1443] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), - }, - [1470] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1474), - [sym__alpha_identifier] = ACTIONS(4656), - [anon_sym_AT] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4656), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(5565), - [anon_sym_LT] = ACTIONS(4656), - [anon_sym_GT] = ACTIONS(4656), - [anon_sym_where] = ACTIONS(4656), - [anon_sym_object] = ACTIONS(4656), - [anon_sym_fun] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(4658), - [anon_sym_get] = ACTIONS(4656), - [anon_sym_set] = ACTIONS(4656), - [anon_sym_this] = ACTIONS(4656), - [anon_sym_super] = ACTIONS(4656), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4656), - [anon_sym_in] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4658), - [anon_sym_QMARK_COLON] = ACTIONS(4658), - [anon_sym_AMP_AMP] = ACTIONS(4658), - [anon_sym_PIPE_PIPE] = ACTIONS(4658), - [anon_sym_null] = ACTIONS(4656), - [anon_sym_if] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_when] = ACTIONS(4656), - [anon_sym_try] = ACTIONS(4656), - [anon_sym_throw] = ACTIONS(4656), - [anon_sym_return] = ACTIONS(4656), - [anon_sym_continue] = ACTIONS(4656), - [anon_sym_break] = ACTIONS(4656), - [anon_sym_COLON_COLON] = ACTIONS(4658), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4658), - [anon_sym_LT_EQ] = ACTIONS(4658), - [anon_sym_GT_EQ] = ACTIONS(4658), - [anon_sym_BANGin] = ACTIONS(4658), - [anon_sym_is] = ACTIONS(4656), - [anon_sym_BANGis] = ACTIONS(4658), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_SLASH] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4658), - [anon_sym_PLUS_PLUS] = ACTIONS(4658), - [anon_sym_DASH_DASH] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(4656), - [anon_sym_BANG_BANG] = ACTIONS(4658), - [anon_sym_suspend] = ACTIONS(4656), - [anon_sym_sealed] = ACTIONS(4656), - [anon_sym_annotation] = ACTIONS(4656), - [anon_sym_data] = ACTIONS(4656), - [anon_sym_inner] = ACTIONS(4656), - [anon_sym_override] = ACTIONS(4656), - [anon_sym_lateinit] = ACTIONS(4656), - [anon_sym_public] = ACTIONS(4656), - [anon_sym_private] = ACTIONS(4656), - [anon_sym_internal] = ACTIONS(4656), - [anon_sym_protected] = ACTIONS(4656), - [anon_sym_tailrec] = ACTIONS(4656), - [anon_sym_operator] = ACTIONS(4656), - [anon_sym_infix] = ACTIONS(4656), - [anon_sym_inline] = ACTIONS(4656), - [anon_sym_external] = ACTIONS(4656), - [sym_property_modifier] = ACTIONS(4656), - [anon_sym_abstract] = ACTIONS(4656), - [anon_sym_final] = ACTIONS(4656), - [anon_sym_open] = ACTIONS(4656), - [anon_sym_vararg] = ACTIONS(4656), - [anon_sym_noinline] = ACTIONS(4656), - [anon_sym_crossinline] = ACTIONS(4656), - [anon_sym_expect] = ACTIONS(4656), - [anon_sym_actual] = ACTIONS(4656), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4658), - [anon_sym_continue_AT] = ACTIONS(4658), - [anon_sym_break_AT] = ACTIONS(4658), - [sym_real_literal] = ACTIONS(4658), - [sym_integer_literal] = ACTIONS(4656), - [sym_hex_literal] = ACTIONS(4658), - [sym_bin_literal] = ACTIONS(4658), - [anon_sym_true] = ACTIONS(4656), - [anon_sym_false] = ACTIONS(4656), - [anon_sym_SQUOTE] = ACTIONS(4658), - [sym__backtick_identifier] = ACTIONS(4658), - [sym__automatic_semicolon] = ACTIONS(4658), - [sym_safe_nav] = ACTIONS(4658), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4658), + [sym__string_start] = ACTIONS(3092), }, - [1471] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1444] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), + [sym__string_start] = ACTIONS(2997), }, - [1472] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), + [1445] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), [anon_sym_where] = ACTIONS(3063), [anon_sym_object] = ACTIONS(3063), [anon_sym_fun] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4541), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), [anon_sym_this] = ACTIONS(3063), [anon_sym_super] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_null] = ACTIONS(3063), [anon_sym_if] = ACTIONS(3063), [anon_sym_else] = ACTIONS(3063), @@ -199100,29 +196483,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3063), [anon_sym_continue] = ACTIONS(3063), [anon_sym_break] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3065), [anon_sym_continue_AT] = ACTIONS(3065), @@ -199134,1653 +196517,2143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3063), [anon_sym_false] = ACTIONS(3063), [anon_sym_SQUOTE] = ACTIONS(3065), - [sym__backtick_identifier] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(3065), [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3065), }, - [1473] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1446] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5567), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5538), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1474] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1465), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(5565), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [1447] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4664), + [sym__string_start] = ACTIONS(199), }, - [1475] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), + [1448] = { + [sym_primary_constructor] = STATE(4813), + [sym_class_body] = STATE(4953), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1607), + [sym_type_constraints] = STATE(4895), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), }, - [1476] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1449] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_RPAREN] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3088), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3086), + [anon_sym_sealed] = ACTIONS(3086), + [anon_sym_annotation] = ACTIONS(3086), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_lateinit] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_internal] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_tailrec] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_infix] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_external] = ACTIONS(3086), + [sym_property_modifier] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_open] = ACTIONS(3086), + [anon_sym_vararg] = ACTIONS(3086), + [anon_sym_noinline] = ACTIONS(3086), + [anon_sym_crossinline] = ACTIONS(3086), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), }, - [1477] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1450] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8454), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5569), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5544), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1478] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3024), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3420), + [1451] = { + [sym_primary_constructor] = STATE(4621), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4550), + [sym_enum_class_body] = STATE(4628), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5546), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [1479] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8448), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1452] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5571), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5548), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1480] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1453] = { + [sym_primary_constructor] = STATE(4618), + [sym_class_body] = STATE(4649), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4548), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1454] = { + [sym_primary_constructor] = STATE(4617), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4553), + [sym_enum_class_body] = STATE(4649), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1455] = { + [sym_primary_constructor] = STATE(3270), + [sym_class_body] = STATE(3317), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3020), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1456] = { + [sym_primary_constructor] = STATE(3261), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1457] = { + [sym_primary_constructor] = STATE(4611), + [sym_class_body] = STATE(4658), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4536), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [1458] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5573), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5560), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1481] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1459] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3080), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3080), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), }, - [1482] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1460] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_RPAREN] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(2986), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), }, - [1483] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(4565), + [1461] = { + [sym_primary_constructor] = STATE(4808), + [sym_class_body] = STATE(4974), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1547), + [sym_type_constraints] = STATE(4864), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), }, - [1484] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [1462] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8380), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5564), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(4565), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), + [sym__string_start] = ACTIONS(199), }, - [1485] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1465), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [1463] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5566), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4664), + [sym__string_start] = ACTIONS(199), }, - [1486] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8413), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1464] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5575), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5568), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1487] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [1465] = { + [sym_primary_constructor] = STATE(3221), + [sym_class_body] = STATE(3208), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3037), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [1488] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [1466] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5572), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1489] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1467] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3410), [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_COMMA] = ACTIONS(3065), [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3804), [anon_sym_DASH_GT] = ACTIONS(3065), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3063), [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(3063), [anon_sym_sealed] = ACTIONS(3063), [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), [anon_sym_override] = ACTIONS(3063), [anon_sym_lateinit] = ACTIONS(3063), [anon_sym_public] = ACTIONS(3063), @@ -200799,4357 +198672,5631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3063), [anon_sym_noinline] = ACTIONS(3063), [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1490] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1468] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3031), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(2997), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1491] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1469] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_RPAREN] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3038), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3092), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1492] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1470] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3042), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [1493] = { - [sym_function_body] = STATE(1201), - [sym__block] = STATE(1087), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [1494] = { - [sym_primary_constructor] = STATE(3150), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5577), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [1495] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8562), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5579), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1496] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_fun] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(2999), - [anon_sym_super] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_when] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(2999), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3001), - [anon_sym_continue_AT] = ACTIONS(3001), - [anon_sym_break_AT] = ACTIONS(3001), - [sym_real_literal] = ACTIONS(3001), - [sym_integer_literal] = ACTIONS(2999), - [sym_hex_literal] = ACTIONS(3001), - [sym_bin_literal] = ACTIONS(3001), - [anon_sym_true] = ACTIONS(2999), - [anon_sym_false] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(3001), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3001), - }, - [1497] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_RPAREN] = ACTIONS(3004), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3004), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3084), - [anon_sym_continue_AT] = ACTIONS(3084), - [anon_sym_break_AT] = ACTIONS(3084), - [sym_real_literal] = ACTIONS(3084), - [sym_integer_literal] = ACTIONS(3082), - [sym_hex_literal] = ACTIONS(3084), - [sym_bin_literal] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3084), }, - [1498] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1471] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3046), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3041), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1499] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1472] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3050), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3045), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1500] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1473] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3054), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3015), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1501] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1474] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3020), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_RPAREN] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_where] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3020), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [anon_sym_QMARK_COLON] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3780), - [anon_sym_EQ_EQ] = ACTIONS(3778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3782), - [anon_sym_BANGin] = ACTIONS(3784), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(2990), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1502] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [1475] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3075), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3766), - [anon_sym_DASH_GT] = ACTIONS(3077), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_DASH] = ACTIONS(3786), - [anon_sym_SLASH] = ACTIONS(3788), - [anon_sym_PERCENT] = ACTIONS(3766), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3008), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1503] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8462), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1476] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8492), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5581), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5574), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1504] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5583), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1477] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3026), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1505] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1478] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8586), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5585), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5576), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1506] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5587), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1479] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3084), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1507] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1480] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5589), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5578), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1508] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), + [sym__string_start] = ACTIONS(199), }, - [1509] = { - [sym_primary_constructor] = STATE(3178), - [sym_class_body] = STATE(3261), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3076), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1481] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3061), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3059), + [anon_sym_sealed] = ACTIONS(3059), + [anon_sym_annotation] = ACTIONS(3059), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3059), + [anon_sym_lateinit] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_internal] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_tailrec] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_infix] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_external] = ACTIONS(3059), + [sym_property_modifier] = ACTIONS(3059), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_final] = ACTIONS(3059), + [anon_sym_open] = ACTIONS(3059), + [anon_sym_vararg] = ACTIONS(3059), + [anon_sym_noinline] = ACTIONS(3059), + [anon_sym_crossinline] = ACTIONS(3059), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1510] = { - [sym_primary_constructor] = STATE(3183), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5593), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1482] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RPAREN] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3076), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1511] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8393), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5595), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1483] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3072), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1512] = { - [sym_primary_constructor] = STATE(4772), - [sym_class_body] = STATE(5050), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1612), - [sym_type_constraints] = STATE(4842), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5597), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3146), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [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(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3146), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [1484] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(2283), + [sym__comparison_operator] = STATE(2282), + [sym__in_operator] = STATE(2281), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(2280), + [sym__multiplicative_operator] = STATE(2279), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2276), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(3804), + [anon_sym_DASH_GT] = ACTIONS(3049), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3806), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_QMARK_COLON] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3818), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3818), + [anon_sym_LT_EQ] = ACTIONS(3820), + [anon_sym_GT_EQ] = ACTIONS(3820), + [anon_sym_BANGin] = ACTIONS(3822), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [1513] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1485] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8477), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5580), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1514] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8523), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5601), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1486] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_fun] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3082), + [anon_sym_super] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3084), + [anon_sym_continue_AT] = ACTIONS(3084), + [anon_sym_break_AT] = ACTIONS(3084), + [sym_real_literal] = ACTIONS(3084), + [sym_integer_literal] = ACTIONS(3082), + [sym_hex_literal] = ACTIONS(3084), + [sym_bin_literal] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(3084), }, - [1515] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1487] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5584), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1516] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1488] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8332), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5605), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5586), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1517] = { - [sym_primary_constructor] = STATE(4792), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(1538), - [sym_type_constraints] = STATE(4865), - [sym_enum_class_body] = STATE(4992), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [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(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - }, - [1518] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(2314), - [sym__comparison_operator] = STATE(2312), - [sym__in_operator] = STATE(2309), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(2306), - [sym__multiplicative_operator] = STATE(2305), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2302), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3420), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1519] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1489] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5588), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1520] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1490] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5590), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1521] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5613), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [1491] = { + [sym_function_body] = STATE(1099), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, - [1522] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1492] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1529), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = 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(4654), + [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_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(4654), + [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_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), + [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(283), + [sym__string_start] = ACTIONS(4654), }, - [1523] = { - [sym_primary_constructor] = STATE(4629), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4885), - [sym_enum_class_body] = STATE(4917), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [1493] = { + [sym_function_body] = STATE(1102), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), }, - [1524] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1494] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1529), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(5592), + [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(4654), + [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_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(4654), + [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_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), + [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), + }, + [1495] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8455), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5619), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5594), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1525] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1496] = { + [sym_primary_constructor] = STATE(4580), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4852), + [sym_enum_class_body] = STATE(5043), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [1497] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1494), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(5592), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_object] = ACTIONS(4646), + [anon_sym_fun] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_this] = ACTIONS(4646), + [anon_sym_super] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4646), + [anon_sym_if] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_when] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4646), + [anon_sym_throw] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4646), + [anon_sym_continue] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4646), + [anon_sym_sealed] = ACTIONS(4646), + [anon_sym_annotation] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_lateinit] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_protected] = ACTIONS(4646), + [anon_sym_tailrec] = ACTIONS(4646), + [anon_sym_operator] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_inline] = ACTIONS(4646), + [anon_sym_external] = ACTIONS(4646), + [sym_property_modifier] = ACTIONS(4646), + [anon_sym_abstract] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_vararg] = ACTIONS(4646), + [anon_sym_noinline] = ACTIONS(4646), + [anon_sym_crossinline] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4648), + [anon_sym_continue_AT] = ACTIONS(4648), + [anon_sym_break_AT] = ACTIONS(4648), + [sym_real_literal] = ACTIONS(4648), + [sym_integer_literal] = ACTIONS(4646), + [sym_hex_literal] = ACTIONS(4648), + [sym_bin_literal] = ACTIONS(4648), + [anon_sym_true] = ACTIONS(4646), + [anon_sym_false] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4648), + [sym__automatic_semicolon] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4648), + }, + [1498] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5621), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5598), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1526] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1499] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3072), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5494), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5498), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(3072), }, - [1527] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), - }, - [1528] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3022), + [1500] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2986), }, - [1529] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1501] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), + [sym__string_start] = ACTIONS(3041), }, - [1530] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1502] = { + [sym_primary_constructor] = STATE(4578), + [sym_class_body] = STATE(4998), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4862), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1503] = { + [sym_primary_constructor] = STATE(4577), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4865), + [sym_enum_class_body] = STATE(4998), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1504] = { + [sym_function_body] = STATE(1138), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), + }, + [1505] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5623), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5604), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1531] = { - [sym_primary_constructor] = STATE(4611), - [sym_class_body] = STATE(4962), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4875), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5625), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [1506] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3049), }, - [1532] = { - [sym__expression] = STATE(4361), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1595), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7985), - [sym__alpha_identifier] = ACTIONS(203), + [1507] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8516), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5606), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1508] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(3076), }, - [1533] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(1915), - [sym__comparison_operator] = STATE(2017), - [sym__in_operator] = STATE(2047), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2164), - [sym__multiplicative_operator] = STATE(2174), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2177), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [1509] = { + [sym_function_body] = STATE(1143), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [1510] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_fun] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(5478), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_QMARK_COLON] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(5502), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5484), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3086), + [anon_sym_super] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_when] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_return_AT] = ACTIONS(3088), + [anon_sym_continue_AT] = ACTIONS(3088), + [anon_sym_break_AT] = ACTIONS(3088), + [sym_real_literal] = ACTIONS(3088), + [sym_integer_literal] = ACTIONS(3086), + [sym_hex_literal] = ACTIONS(3088), + [sym_bin_literal] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3088), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), + [sym__string_start] = ACTIONS(3088), }, - [1534] = { - [sym_primary_constructor] = STATE(3200), - [sym_class_body] = STATE(3319), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [1511] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2035), + [sym__in_operator] = STATE(2033), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2030), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2029), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_object] = ACTIONS(3059), + [anon_sym_fun] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3059), + [anon_sym_super] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(5508), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_DOT_DOT] = ACTIONS(5510), + [anon_sym_QMARK_COLON] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_PIPE_PIPE] = ACTIONS(5582), + [anon_sym_null] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_when] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_BANGin] = ACTIONS(5520), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5508), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3061), + [anon_sym_continue_AT] = ACTIONS(3061), + [anon_sym_break_AT] = ACTIONS(3061), + [sym_real_literal] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(3059), + [sym_hex_literal] = ACTIONS(3061), + [sym_bin_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(3059), + [anon_sym_false] = ACTIONS(3059), + [anon_sym_SQUOTE] = ACTIONS(3061), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3061), + }, + [1512] = { + [sym_function_body] = STATE(1150), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [1513] = { + [sym_primary_constructor] = STATE(4574), + [sym_class_body] = STATE(4969), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4876), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5608), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [1514] = { + [sym_primary_constructor] = STATE(3542), + [sym_class_body] = STATE(3676), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1548), + [sym_type_constraints] = STATE(3546), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_PLUS_EQ] = ACTIONS(3124), + [anon_sym_DASH_EQ] = ACTIONS(3124), + [anon_sym_STAR_EQ] = ACTIONS(3124), + [anon_sym_SLASH_EQ] = ACTIONS(3124), + [anon_sym_PERCENT_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [1515] = { + [sym_function_body] = STATE(1164), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [1516] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5612), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1517] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1518] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1519] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5618), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1520] = { + [sym_primary_constructor] = STATE(4801), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(1577), + [sym_type_constraints] = STATE(4861), + [sym_enum_class_body] = STATE(5017), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [1521] = { + [sym_function_body] = STATE(1175), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [1522] = { + [sym_primary_constructor] = STATE(3511), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1542), + [sym_type_constraints] = STATE(3600), + [sym_enum_class_body] = STATE(3850), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1523] = { + [sym_primary_constructor] = STATE(3529), + [sym_class_body] = STATE(3850), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1540), + [sym_type_constraints] = STATE(3576), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1524] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5626), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1525] = { + [sym_primary_constructor] = STATE(3285), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5629), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5628), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(5443), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -205157,7 +204304,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3196), [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), @@ -205186,688 +204332,1377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [1535] = { - [sym_primary_constructor] = STATE(4626), - [sym_class_body] = STATE(4973), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4867), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5631), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1526] = { + [sym_function_body] = STATE(1201), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [1527] = { + [sym__expression] = STATE(4347), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(1581), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7951), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(5630), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1536] = { - [sym_primary_constructor] = STATE(4620), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4876), - [sym_enum_class_body] = STATE(4973), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [1528] = { + [sym_primary_constructor] = STATE(3282), + [sym_class_body] = STATE(3776), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3580), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [1537] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8585), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), + [1529] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1529), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(5634), + [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_DOT] = 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(4637), + [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_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(4637), + [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_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), + [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), + }, + [1530] = { + [sym_primary_constructor] = STATE(3280), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1531] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), [sym_simple_identifier] = STATE(5501), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(5635), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5639), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1538] = { - [sym_primary_constructor] = STATE(4813), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4885), - [sym_enum_class_body] = STATE(4917), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5637), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [1532] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5641), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1539] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5639), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [1533] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(5427), + [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_DOT] = 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(4527), + [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_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(4527), + [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_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), + [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), }, - [1540] = { - [sym_primary_constructor] = STATE(5076), - [sym__class_parameters] = STATE(5169), - [sym_type_parameters] = STATE(2412), - [sym_type_constraints] = STATE(5226), - [sym_enum_class_body] = STATE(5335), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), + [1534] = { + [sym_primary_constructor] = STATE(3273), + [sym_class_body] = STATE(3825), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3604), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5647), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3102), - [anon_sym_fun] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_super] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [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(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3102), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), }, - [1541] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1535] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8535), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1536] = { + [sym_function_body] = STATE(1039), + [sym__block] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [1537] = { + [sym_primary_constructor] = STATE(3534), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(1575), + [sym_type_constraints] = STATE(3574), + [sym_enum_class_body] = STATE(3896), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [1538] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [1539] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -205891,80 +205726,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [1540] = { + [sym_primary_constructor] = STATE(3532), + [sym_class_body] = STATE(3776), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3580), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, + [1541] = { + [sym_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), + }, [1542] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_primary_constructor] = STATE(3531), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1543] = { + [sym_variable_declaration] = STATE(8443), + [sym__expression] = STATE(4323), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5502), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1544] = { + [sym_type_constraints] = STATE(1800), + [sym_property_delegate] = STATE(2490), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -205988,370 +206210,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [1543] = { - [sym_primary_constructor] = STATE(4793), - [sym_class_body] = STATE(4973), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4867), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5655), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1544] = { - [sym_class_body] = STATE(1084), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), - }, [1545] = { - [sym_class_body] = STATE(1172), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), + [sym_class_body] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), }, [1546] = { - [sym_type_constraints] = STATE(2049), - [sym_property_delegate] = STATE(2435), - [sym_getter] = STATE(4989), - [sym_setter] = STATE(4989), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5665), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [sym_type_constraints] = STATE(1765), + [sym_property_delegate] = STATE(2479), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -206375,80 +206404,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, [1547] = { - [sym_type_constraints] = STATE(2058), - [sym_property_delegate] = STATE(2457), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), + [sym_primary_constructor] = STATE(4802), + [sym_class_body] = STATE(4998), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4862), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5667), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [1548] = { + [sym_primary_constructor] = STATE(3509), + [sym_class_body] = STATE(3825), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3604), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [1549] = { + [sym_type_constraints] = STATE(1946), + [sym_property_delegate] = STATE(2444), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5673), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -206472,81 +206695,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1548] = { - [sym_getter] = STATE(3329), - [sym_setter] = STATE(3329), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_RBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [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), + [1550] = { + [sym_type_constraints] = STATE(1916), + [sym_property_delegate] = STATE(2464), + [sym_getter] = STATE(4955), + [sym_setter] = STATE(4955), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5677), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5679), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -206570,79 +206792,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [1549] = { - [sym_type_constraints] = STATE(2065), - [sym_property_delegate] = STATE(2459), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5675), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1551] = { + [sym_type_constraints] = STATE(1920), + [sym_property_delegate] = STATE(2461), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5681), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5683), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -206666,372 +206889,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [1550] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = 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(5677), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_this] = ACTIONS(4790), - [anon_sym_super] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [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(5679), - [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_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(4792), - [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_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_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), - }, - [1551] = { - [sym_primary_constructor] = STATE(5046), - [sym_class_body] = STATE(5304), - [sym__class_parameters] = STATE(5169), - [sym_type_parameters] = STATE(2404), - [sym_type_constraints] = STATE(5263), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5681), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [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(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), }, [1552] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = 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(4792), - [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(5679), - [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_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(4792), - [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_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_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), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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), - }, - [1553] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_type_constraints] = STATE(1929), + [sym_property_delegate] = STATE(2457), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5685), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -207055,79 +206986,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [1554] = { - [sym_type_constraints] = STATE(1761), - [sym_property_delegate] = STATE(2444), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5685), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5687), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [1553] = { + [sym_type_constraints] = STATE(1945), + [sym_property_delegate] = STATE(2451), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5687), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -207151,80 +207083,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1555] = { - [sym_type_constraints] = STATE(1726), - [sym_property_delegate] = STATE(2454), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5693), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5695), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [1554] = { + [sym_type_constraints] = STATE(2395), + [sym_property_delegate] = STATE(2527), + [sym_getter] = STATE(4663), + [sym_setter] = STATE(4663), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5693), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -207248,80 +207181,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [1556] = { - [sym_type_constraints] = STATE(2072), - [sym_property_delegate] = STATE(2460), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5697), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [1555] = { + [sym_type_constraints] = STATE(2396), + [sym_property_delegate] = STATE(2531), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5699), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -207345,53 +207278,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [1557] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1556] = { + [sym_type_constraints] = STATE(1994), + [sym_property_delegate] = STATE(2499), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5703), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5657), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -207443,148 +207374,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, + [1557] = { + [sym_type_constraints] = STATE(2397), + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, [1558] = { - [sym_primary_constructor] = STATE(3539), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5699), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym_type_constraints] = STATE(2398), + [sym_property_delegate] = STATE(2546), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5707), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, [1559] = { - [sym_type_constraints] = STATE(2079), - [sym_property_delegate] = STATE(2452), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_constraints] = STATE(2399), + [sym_property_delegate] = STATE(2551), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5701), + [anon_sym_EQ] = ACTIONS(5709), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5691), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -207636,275 +207666,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [1560] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4710), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(5711), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(5713), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [1561] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(4283), - [anon_sym_super] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(5713), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [1562] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [sym_type_constraints] = STATE(2408), + [sym_property_delegate] = STATE(2503), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -207928,80 +207957,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, [1563] = { - [sym_type_constraints] = STATE(2413), - [sym_property_delegate] = STATE(2528), - [sym_getter] = STATE(4567), - [sym_setter] = STATE(4567), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5703), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5707), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208025,80 +208054,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, [1564] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_type_constraints] = STATE(2409), + [sym_property_delegate] = STATE(2505), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208122,148 +208151,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, [1565] = { - [sym_primary_constructor] = STATE(5028), - [sym__class_parameters] = STATE(5169), - [sym_type_parameters] = STATE(2389), - [sym_type_constraints] = STATE(5244), - [sym_enum_class_body] = STATE(5304), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5713), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5647), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3136), - [anon_sym_in] = ACTIONS(3136), - [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(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3140), - [anon_sym_continue_AT] = ACTIONS(3140), - [anon_sym_break_AT] = ACTIONS(3140), - [sym_real_literal] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(3136), - [sym_hex_literal] = ACTIONS(3140), - [sym_bin_literal] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3140), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3140), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), }, [1566] = { - [sym_type_constraints] = STATE(1776), - [sym_property_delegate] = STATE(2431), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_type_constraints] = STATE(2415), + [sym_property_delegate] = STATE(2510), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_EQ] = ACTIONS(5723), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5691), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -208315,177 +208345,565 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [1567] = { - [sym_primary_constructor] = STATE(4817), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4876), - [sym_enum_class_body] = STATE(4973), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5717), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_primary_constructor] = STATE(4805), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4865), + [sym_enum_class_body] = STATE(4998), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5725), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, [1568] = { - [sym_type_constraints] = STATE(1768), - [sym_property_delegate] = STATE(2439), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5719), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(5727), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4861), + }, + [1569] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), + }, + [1570] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5731), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), + }, + [1571] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5733), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), + }, + [1572] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5283), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208509,80 +208927,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [1569] = { - [sym_type_constraints] = STATE(1766), - [sym_property_delegate] = STATE(2441), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5721), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1573] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5735), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1574] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208606,81 +209121,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [1570] = { - [sym_type_constraints] = STATE(2425), - [sym_property_delegate] = STATE(2526), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5723), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [1575] = { + [sym_primary_constructor] = STATE(3538), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5739), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [1576] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5741), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1577] = { + [sym_primary_constructor] = STATE(4795), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4852), + [sym_enum_class_body] = STATE(5043), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [1578] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208704,80 +209509,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [1571] = { - [sym_type_constraints] = STATE(2416), - [sym_property_delegate] = STATE(2524), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5727), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1579] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208801,80 +209606,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [1572] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [1580] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -208898,49 +209703,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1573] = { - [sym_type_constraints] = STATE(2408), - [sym_property_delegate] = STATE(2521), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1581] = { + [sym__expression] = STATE(4173), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(5747), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_val] = ACTIONS(5750), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1582] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [1583] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5729), + [anon_sym_EQ] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5705), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), [anon_sym_while] = ACTIONS(1752), @@ -208995,437 +209994,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1574] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [1575] = { - [sym_variable_declaration] = STATE(8352), - [sym__expression] = STATE(4416), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5499), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1576] = { - [sym_type_constraints] = STATE(2411), - [sym_property_delegate] = STATE(2522), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [1577] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5733), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [1578] = { - [sym_type_constraints] = STATE(2391), - [sym_property_delegate] = STATE(2547), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1584] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5737), + [anon_sym_EQ] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5705), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), [anon_sym_while] = ACTIONS(1752), @@ -209480,80 +210091,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1579] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [1585] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -209577,80 +210188,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [1580] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [1586] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -209674,80 +210285,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [1581] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [1587] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -209771,80 +210382,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [1582] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_RBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [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), + [1588] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -209868,94 +210479,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [1583] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), + [1589] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), [anon_sym_inline] = ACTIONS(73), [anon_sym_external] = ACTIONS(73), [sym_property_modifier] = ACTIONS(83), @@ -209965,80 +210576,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [1584] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5279), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [1590] = { + [sym_getter] = STATE(4592), + [sym_setter] = STATE(4592), + [sym_modifiers] = STATE(8711), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5269), + [anon_sym_set] = ACTIONS(5271), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -210062,80 +210673,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [1585] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1591] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5311), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -210159,80 +210770,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [1586] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3490), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1592] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [1593] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -210256,80 +210964,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [1587] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [1594] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -210353,80 +211061,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1588] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [1595] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -210450,31 +211158,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1589] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1596] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), @@ -210489,8 +211197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), [anon_sym_STAR] = ACTIONS(1752), [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), @@ -210547,31 +211255,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1590] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1597] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), @@ -210585,9 +211293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), [anon_sym_STAR] = ACTIONS(1752), [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), @@ -210644,371 +211352,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1591] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym_value_argument] = STATE(8764), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(2183), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5501), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5506), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1592] = { - [sym_primary_constructor] = STATE(4899), - [sym_class_body] = STATE(5366), - [sym__class_parameters] = STATE(5169), - [sym_type_parameters] = STATE(2388), - [sym_type_constraints] = STATE(5217), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5743), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_fun] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_super] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3146), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3146), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [1593] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(5745), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), - }, - [1594] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [1598] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -211032,177 +211449,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [1595] = { - [sym__expression] = STATE(4176), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(5747), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_val] = ACTIONS(5750), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [1599] = { + [sym_primary_constructor] = STATE(4945), + [sym__class_parameters] = STATE(5158), + [sym_type_parameters] = STATE(2392), + [sym_type_constraints] = STATE(5257), + [sym_enum_class_body] = STATE(5343), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_fun] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_super] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_when] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3162), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), }, - [1596] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [1600] = { + [sym_primary_constructor] = STATE(4958), + [sym_class_body] = STATE(5381), + [sym__class_parameters] = STATE(5158), + [sym_type_parameters] = STATE(2385), + [sym_type_constraints] = STATE(5198), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [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(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [1601] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -211226,274 +211740,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [1597] = { - [sym_primary_constructor] = STATE(3537), - [sym_class_body] = STATE(3796), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3661), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [1598] = { - [sym_primary_constructor] = STATE(3534), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [1599] = { - [sym_type_constraints] = STATE(2395), - [sym_property_delegate] = STATE(2531), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5756), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5758), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [1602] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -211517,80 +211837,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [1600] = { - [sym_type_constraints] = STATE(2398), - [sym_property_delegate] = STATE(2529), - [sym_getter] = STATE(3343), - [sym_setter] = STATE(3343), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5762), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [1603] = { + [sym_type_constraints] = STATE(2404), + [sym_property_delegate] = STATE(2539), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5770), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -211614,80 +211934,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [1601] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [1604] = { + [sym_type_constraints] = STATE(2405), + [sym_property_delegate] = STATE(2564), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -211711,468 +212031,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [1602] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), - }, - [1603] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(4144), - [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_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_this] = ACTIONS(4146), - [anon_sym_super] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), - }, - [1604] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5768), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), }, [1605] = { - [sym_primary_constructor] = STATE(3526), - [sym_class_body] = STATE(3786), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3631), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5770), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - }, - [1606] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5301), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_type_constraints] = STATE(1829), + [sym_property_delegate] = STATE(2474), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -212196,80 +212127,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [1607] = { - [sym_type_constraints] = STATE(2394), - [sym_property_delegate] = STATE(2540), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5772), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1606] = { + [sym_type_constraints] = STATE(2349), + [sym_property_delegate] = STATE(2439), + [sym_getter] = STATE(3718), + [sym_setter] = STATE(3718), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5782), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -212293,128 +212224,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [1607] = { + [sym_primary_constructor] = STATE(4810), + [sym_class_body] = STATE(4969), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4876), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, [1608] = { - [sym_type_constraints] = STATE(2393), - [sym_property_delegate] = STATE(2553), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5774), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [sym_primary_constructor] = STATE(5060), + [sym__class_parameters] = STATE(5158), + [sym_type_parameters] = STATE(2384), + [sym_type_constraints] = STATE(5222), + [sym_enum_class_body] = STATE(5381), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [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(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3156), + [anon_sym_continue_AT] = ACTIONS(3156), + [anon_sym_break_AT] = ACTIONS(3156), + [sym_real_literal] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3156), + [sym_bin_literal] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3156), + }, + [1609] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym_value_argument] = STATE(8816), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(2278), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5501), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5492), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1609] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8670), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1610] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_RBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), @@ -212429,8 +212555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5265), - [anon_sym_set] = ACTIONS(5267), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), [anon_sym_STAR] = ACTIONS(1694), [anon_sym_DASH_GT] = ACTIONS(1696), [sym_label] = ACTIONS(1696), @@ -212487,177 +212613,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [1610] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - }, [1611] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8930), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5273), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_primary_constructor] = STATE(4984), + [sym_class_body] = STATE(5309), + [sym__class_parameters] = STATE(5158), + [sym_type_parameters] = STATE(2379), + [sym_type_constraints] = STATE(5242), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [1612] = { + [sym_getter] = STATE(3361), + [sym_setter] = STATE(3361), + [sym_modifiers] = STATE(8804), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5289), + [anon_sym_set] = ACTIONS(5291), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -212681,816 +212807,1199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [1612] = { - [sym_primary_constructor] = STATE(4800), - [sym_class_body] = STATE(4962), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4875), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, [1613] = { - [sym__expression] = STATE(3029), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(1290), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, [1614] = { - [sym__expression] = STATE(683), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__expression] = STATE(4388), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [1615] = { - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__expression] = STATE(288), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, [1616] = { - [sym__expression] = STATE(967), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__expression] = STATE(4220), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [1617] = { - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__expression] = STATE(360), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, [1618] = { - [sym__expression] = STATE(956), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1619] = { + [sym__expression] = STATE(287), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [1619] = { - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [1620] = { + [sym__expression] = STATE(293), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1621] = { + [sym__expression] = STATE(284), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1622] = { + [sym__expression] = STATE(330), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1623] = { + [sym__expression] = STATE(327), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1624] = { + [sym__expression] = STATE(357), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1620] = { - [sym_type_constraints] = STATE(2495), - [sym_property_delegate] = STATE(2593), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1625] = { + [sym_type_constraints] = STATE(2436), + [sym_property_delegate] = STATE(2584), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5790), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5780), + [anon_sym_by] = ACTIONS(5792), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5443), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3704), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -213545,1902 +214054,1134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1621] = { - [sym__expression] = STATE(953), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1622] = { - [sym__expression] = STATE(4186), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1626] = { + [sym__expression] = STATE(318), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1623] = { - [sym__expression] = STATE(285), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1624] = { - [sym__expression] = STATE(3859), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1625] = { - [sym__expression] = STATE(3874), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1626] = { - [sym__expression] = STATE(3898), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, [1627] = { - [sym__expression] = STATE(3887), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, [1628] = { - [sym__expression] = STATE(3867), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(312), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, [1629] = { - [sym__expression] = STATE(718), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__expression] = STATE(366), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1630] = { + [sym__expression] = STATE(4025), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1630] = { - [sym__expression] = STATE(3885), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [1631] = { - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__expression] = STATE(324), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, [1632] = { - [sym__expression] = STATE(3723), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(322), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, [1633] = { - [sym__expression] = STATE(4348), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [sym__expression] = STATE(4323), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [1634] = { - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__expression] = STATE(2995), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, [1635] = { - [sym__expression] = STATE(3879), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(3024), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(323), [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [1636] = { - [sym__expression] = STATE(4250), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1637] = { - [sym__expression] = STATE(4130), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1638] = { - [sym__expression] = STATE(722), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__expression] = STATE(3104), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1639] = { - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(199), }, - [1640] = { - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [1637] = { + [sym__expression] = STATE(359), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1313), [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), @@ -215459,193 +215200,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [1641] = { - [sym__expression] = STATE(2366), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1642] = { - [sym__expression] = STATE(4159), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1638] = { + [sym__expression] = STATE(4210), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -215654,7 +215299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -215665,742 +215310,838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1643] = { - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1639] = { + [sym__expression] = STATE(3103), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1644] = { - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [1640] = { + [sym__expression] = STATE(389), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [1645] = { - [sym__expression] = STATE(4420), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1641] = { + [sym__expression] = STATE(4016), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1642] = { + [sym__expression] = STATE(3089), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), [sym_label] = ACTIONS(327), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), [anon_sym_PLUS] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(327), [anon_sym_PLUS_PLUS] = ACTIONS(329), [anon_sym_DASH_DASH] = ACTIONS(329), [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1646] = { - [sym__expression] = STATE(973), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [1643] = { + [sym__expression] = STATE(3079), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1647] = { - [sym__expression] = STATE(4421), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1644] = { + [sym__expression] = STATE(3078), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), [sym_label] = ACTIONS(327), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), [anon_sym_PLUS] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(327), [anon_sym_PLUS_PLUS] = ACTIONS(329), [anon_sym_DASH_DASH] = ACTIONS(329), [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1648] = { - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [1645] = { + [sym__expression] = STATE(3075), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1649] = { - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [1646] = { + [sym__expression] = STATE(286), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [1650] = { - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [1647] = { + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1313), [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), @@ -216419,84 +216160,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1648] = { + [sym__expression] = STATE(3072), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1649] = { + [sym__expression] = STATE(3071), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1650] = { + [sym_type_constraints] = STATE(2477), + [sym_property_delegate] = STATE(2632), + [sym_getter] = STATE(4955), + [sym_setter] = STATE(4955), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5798), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5800), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), }, [1651] = { - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [sym__expression] = STATE(358), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1313), [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), @@ -216515,564 +216544,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [1652] = { - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [sym__expression] = STATE(4011), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, [1653] = { - [sym__expression] = STATE(4164), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(3038), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), [sym_label] = ACTIONS(327), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), [anon_sym_PLUS] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(327), [anon_sym_PLUS_PLUS] = ACTIONS(329), [anon_sym_DASH_DASH] = ACTIONS(329), [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, [1654] = { - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [sym__expression] = STATE(3036), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, [1655] = { - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_fun] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3346), + [anon_sym_super] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3346), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), }, [1656] = { - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [sym__expression] = STATE(3094), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, [1657] = { - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [sym__expression] = STATE(370), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1313), [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), @@ -217091,756 +217120,1332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, [1658] = { - [sym__expression] = STATE(4143), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [sym__expression] = STATE(1001), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(285), }, [1659] = { - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [sym__expression] = STATE(3116), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1660] = { + [sym__expression] = STATE(3100), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(327), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_PLUS_PLUS] = ACTIONS(329), + [anon_sym_DASH_DASH] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1661] = { + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1662] = { + [sym__expression] = STATE(290), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [1660] = { - [sym__expression] = STATE(538), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1663] = { + [sym__expression] = STATE(818), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1661] = { - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1664] = { + [sym__expression] = STATE(819), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1665] = { + [sym__expression] = STATE(3998), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1662] = { - [sym__expression] = STATE(4025), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1666] = { + [sym__expression] = STATE(821), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1667] = { + [sym__expression] = STATE(3994), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1668] = { + [sym__expression] = STATE(823), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [1663] = { - [sym__expression] = STATE(4422), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1669] = { + [sym__expression] = STATE(824), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [1664] = { - [sym__expression] = STATE(701), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1670] = { + [sym__expression] = STATE(820), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1665] = { - [sym__expression] = STATE(3959), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1671] = { + [sym__expression] = STATE(3918), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -217849,11 +218454,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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -217862,7 +218467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -217873,3147 +218478,3915 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1666] = { - [sym__expression] = STATE(702), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1672] = { + [sym__expression] = STATE(791), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1667] = { - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1673] = { + [sym__expression] = STATE(2501), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1674] = { + [sym__expression] = STATE(785), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1675] = { + [sym__expression] = STATE(792), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1676] = { + [sym__expression] = STATE(794), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1677] = { + [sym__expression] = STATE(795), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1678] = { + [sym__expression] = STATE(3987), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1668] = { - [sym__expression] = STATE(709), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1679] = { + [sym__expression] = STATE(796), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1669] = { - [sym__expression] = STATE(710), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1680] = { + [sym__expression] = STATE(306), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1670] = { - [sym__expression] = STATE(707), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1681] = { + [sym__expression] = STATE(305), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1671] = { - [sym__expression] = STATE(700), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1682] = { + [sym__expression] = STATE(304), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1672] = { - [sym__expression] = STATE(720), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1683] = { + [sym__expression] = STATE(3984), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1673] = { - [sym__expression] = STATE(4202), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1684] = { + [sym__expression] = STATE(302), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [1674] = { - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1685] = { + [sym__expression] = STATE(298), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [1675] = { - [sym__expression] = STATE(1449), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1686] = { + [sym__expression] = STATE(2523), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1687] = { + [sym__expression] = STATE(297), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [1676] = { - [sym__expression] = STATE(4181), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1688] = { + [sym__expression] = STATE(308), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [1677] = { - [sym__expression] = STATE(4352), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1689] = { + [sym__expression] = STATE(2524), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [1678] = { - [sym__expression] = STATE(4428), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1690] = { + [sym__expression] = STATE(307), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [1679] = { - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1691] = { + [sym__expression] = STATE(301), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [1680] = { - [sym__expression] = STATE(4327), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1692] = { + [sym__expression] = STATE(300), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [1681] = { - [sym__expression] = STATE(4355), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1693] = { + [sym__expression] = STATE(399), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [1682] = { - [sym__expression] = STATE(4307), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1694] = { + [sym__expression] = STATE(299), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [1683] = { - [sym__expression] = STATE(4306), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1695] = { + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [1684] = { - [sym__expression] = STATE(4353), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1696] = { + [sym__expression] = STATE(303), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [1685] = { - [sym__expression] = STATE(4385), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1697] = { + [sym__expression] = STATE(698), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [1686] = { - [sym__expression] = STATE(523), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1698] = { + [sym__expression] = STATE(700), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1699] = { + [sym__expression] = STATE(699), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1700] = { + [sym__expression] = STATE(697), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1701] = { + [sym__expression] = STATE(2506), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1687] = { - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1702] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + }, + [1703] = { + [sym__expression] = STATE(2443), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1704] = { + [sym__expression] = STATE(2447), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1705] = { + [sym__expression] = STATE(362), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1706] = { + [sym__expression] = STATE(3979), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1688] = { - [sym__expression] = STATE(4346), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1707] = { + [sym__expression] = STATE(4230), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1689] = { - [sym__expression] = STATE(4309), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1708] = { + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1690] = { - [sym__expression] = STATE(4305), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1709] = { + [sym__expression] = STATE(4420), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1691] = { - [sym__expression] = STATE(3773), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1692] = { - [sym__expression] = STATE(4310), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1710] = { + [sym__expression] = STATE(4409), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1693] = { - [sym__expression] = STATE(3663), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1694] = { - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1695] = { - [sym__expression] = STATE(913), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1696] = { - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [1697] = { - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1711] = { + [sym__expression] = STATE(3975), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [1698] = { - [sym__expression] = STATE(4200), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1712] = { + [sym__expression] = STATE(4198), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -221030,7 +222403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -221041,2749 +222414,3047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1699] = { - [sym__expression] = STATE(2487), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1713] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_fun] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3346), + [anon_sym_super] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3346), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3360), + }, + [1714] = { + [sym__expression] = STATE(2446), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1700] = { - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(285), }, - [1701] = { - [sym__expression] = STATE(2485), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1715] = { + [sym__expression] = STATE(4219), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1716] = { + [sym__expression] = STATE(672), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1702] = { - [sym__expression] = STATE(4311), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1717] = { + [sym__expression] = STATE(702), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1718] = { + [sym__expression] = STATE(674), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1719] = { + [sym__expression] = STATE(4352), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1703] = { - [sym__expression] = STATE(372), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1720] = { + [sym__expression] = STATE(703), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1704] = { - [sym__expression] = STATE(374), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1721] = { + [sym__expression] = STATE(683), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1705] = { - [sym__expression] = STATE(369), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1722] = { + [sym__expression] = STATE(680), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1706] = { - [sym__expression] = STATE(368), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1723] = { + [sym__expression] = STATE(696), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1707] = { - [sym__expression] = STATE(912), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [1708] = { - [sym__expression] = STATE(909), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1724] = { + [sym__expression] = STATE(685), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [1709] = { - [sym__expression] = STATE(367), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1725] = { + [sym__expression] = STATE(662), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1710] = { - [sym__expression] = STATE(366), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1726] = { + [sym__expression] = STATE(689), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1711] = { - [sym__expression] = STATE(2486), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1727] = { + [sym__expression] = STATE(4332), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1712] = { - [sym__expression] = STATE(4377), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1728] = { + [sym__expression] = STATE(4326), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1713] = { - [sym__expression] = STATE(320), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1729] = { + [sym__expression] = STATE(705), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1714] = { - [sym__expression] = STATE(365), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [1730] = { + [sym_type_constraints] = STATE(2472), + [sym_property_delegate] = STATE(2678), + [sym_getter] = STATE(5325), + [sym_setter] = STATE(5325), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_where] = ACTIONS(5807), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), }, - [1715] = { - [sym__expression] = STATE(904), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [1731] = { + [sym__expression] = STATE(4312), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1716] = { - [sym__expression] = STATE(903), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1732] = { + [sym__expression] = STATE(842), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [1717] = { - [sym__expression] = STATE(364), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1733] = { + [sym__expression] = STATE(708), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1718] = { - [sym__expression] = STATE(363), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1734] = { + [sym__expression] = STATE(841), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1719] = { - [sym__expression] = STATE(323), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1735] = { + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1720] = { - [sym__expression] = STATE(901), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1736] = { + [sym_type_constraints] = STATE(2448), + [sym_property_delegate] = STATE(2579), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), }, - [1721] = { - [sym__expression] = STATE(361), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1737] = { + [sym__expression] = STATE(706), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1722] = { - [sym__expression] = STATE(357), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1738] = { + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1723] = { - [sym__expression] = STATE(4358), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1739] = { + [sym__expression] = STATE(4355), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1724] = { - [sym__expression] = STATE(283), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1740] = { + [sym__expression] = STATE(704), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1725] = { - [sym__expression] = STATE(3028), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1741] = { + [sym__expression] = STATE(840), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [1726] = { - [sym_property_delegate] = STATE(2444), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5685), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5687), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [1742] = { + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [1727] = { - [sym_type_constraints] = STATE(2482), - [sym_property_delegate] = STATE(2649), - [sym_getter] = STATE(5346), - [sym_setter] = STATE(5346), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(5786), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_where] = ACTIONS(5788), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_fun] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5790), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_super] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3230), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3230), + [1743] = { + [sym__expression] = STATE(1484), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1744] = { + [sym_type_constraints] = STATE(2454), + [sym_property_delegate] = STATE(2575), + [sym_getter] = STATE(3718), + [sym_setter] = STATE(3718), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5825), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -223807,3257 +225478,2671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3234), - [anon_sym_continue_AT] = ACTIONS(3234), - [anon_sym_break_AT] = ACTIONS(3234), - [sym_real_literal] = ACTIONS(3234), - [sym_integer_literal] = ACTIONS(3230), - [sym_hex_literal] = ACTIONS(3234), - [sym_bin_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3234), - }, - [1728] = { - [sym__expression] = STATE(359), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), }, - [1729] = { - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1745] = { + [sym__expression] = STATE(2475), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [1730] = { - [sym__expression] = STATE(311), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1746] = { + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1731] = { - [sym__expression] = STATE(286), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1747] = { + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1732] = { - [sym__expression] = STATE(4396), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1748] = { + [sym__expression] = STATE(2483), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [1733] = { - [sym__expression] = STATE(4400), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1749] = { + [sym__expression] = STATE(3971), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1734] = { - [sym__expression] = STATE(287), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1750] = { + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1735] = { - [sym__expression] = STATE(1358), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1751] = { + [sym__expression] = STATE(375), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1736] = { - [sym__expression] = STATE(288), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [1737] = { - [sym__expression] = STATE(289), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1752] = { + [sym__expression] = STATE(3982), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [1738] = { - [sym__expression] = STATE(313), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1753] = { + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1739] = { - [sym__expression] = STATE(328), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1754] = { + [sym__expression] = STATE(838), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1740] = { - [sym__expression] = STATE(326), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1755] = { + [sym__expression] = STATE(2484), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1741] = { - [sym__expression] = STATE(324), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1756] = { + [sym__expression] = STATE(2485), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1742] = { - [sym__expression] = STATE(2481), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1757] = { + [sym__expression] = STATE(2488), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1743] = { - [sym__expression] = STATE(2480), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1758] = { + [sym__expression] = STATE(2489), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1744] = { - [sym__expression] = STATE(2479), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1759] = { + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1745] = { - [sym__expression] = STATE(2478), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1760] = { + [sym__expression] = STATE(4004), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1746] = { - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1747] = { - [sym__expression] = STATE(321), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1761] = { + [sym__expression] = STATE(2498), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1748] = { - [sym__expression] = STATE(319), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1762] = { + [sym__expression] = STATE(2504), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1749] = { - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [1763] = { + [sym__expression] = STATE(271), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1750] = { - [sym__expression] = STATE(749), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1764] = { + [sym__expression] = STATE(4185), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1751] = { - [sym__expression] = STATE(748), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [1765] = { + [sym_property_delegate] = STATE(2490), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), }, - [1752] = { - [sym__expression] = STATE(2477), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1766] = { + [sym__expression] = STATE(4240), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1753] = { - [sym__expression] = STATE(2476), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1767] = { + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1754] = { - [sym__expression] = STATE(2475), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1768] = { + [sym__expression] = STATE(4235), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1755] = { - [sym__expression] = STATE(2474), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1756] = { - [sym__expression] = STATE(2473), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1769] = { + [sym__expression] = STATE(472), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [1757] = { - [sym__expression] = STATE(318), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [1770] = { + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1758] = { - [sym__expression] = STATE(2472), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1771] = { + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1759] = { - [sym__expression] = STATE(2514), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1760] = { - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1761] = { - [sym_property_delegate] = STATE(2441), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5721), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [1772] = { + [sym_type_constraints] = STATE(2455), + [sym_property_delegate] = STATE(2569), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5827), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -227081,463 +228166,1125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [1762] = { - [sym__expression] = STATE(746), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1773] = { + [sym__expression] = STATE(2522), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1774] = { + [sym__expression] = STATE(972), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1775] = { + [sym__expression] = STATE(473), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [1763] = { - [sym__expression] = STATE(744), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1776] = { + [sym__expression] = STATE(4253), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1764] = { - [sym__expression] = STATE(358), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1777] = { + [sym__expression] = STATE(837), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1778] = { + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1765] = { - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1779] = { + [sym__expression] = STATE(2519), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1766] = { - [sym_property_delegate] = STATE(2439), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5719), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [1780] = { + [sym__expression] = STATE(2515), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1781] = { + [sym__expression] = STATE(836), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1782] = { + [sym_primary_constructor] = STATE(3726), + [sym_class_body] = STATE(3369), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2380), + [sym_type_constraints] = STATE(3069), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5829), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [1783] = { + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1784] = { + [sym_type_constraints] = STATE(2494), + [sym_property_delegate] = STATE(2657), + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_where] = ACTIONS(5807), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5833), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -227561,144 +229308,1498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [1785] = { + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [1767] = { - [sym__expression] = STATE(742), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1786] = { + [sym__expression] = STATE(4379), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1768] = { - [sym_property_delegate] = STATE(2431), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [1787] = { + [sym_primary_constructor] = STATE(3707), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2381), + [sym_type_constraints] = STATE(3032), + [sym_enum_class_body] = STATE(3209), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1788] = { + [sym_primary_constructor] = STATE(3703), + [sym_class_body] = STATE(3209), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2382), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [1789] = { + [sym__expression] = STATE(1015), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1790] = { + [sym__expression] = STATE(1024), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1791] = { + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1792] = { + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1793] = { + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1794] = { + [sym__expression] = STATE(467), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1795] = { + [sym__expression] = STATE(1026), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1796] = { + [sym__expression] = STATE(1257), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1797] = { + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1798] = { + [sym__expression] = STATE(1317), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1799] = { + [sym__expression] = STATE(1035), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1800] = { + [sym_property_delegate] = STATE(2499), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_EQ] = ACTIONS(5703), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5663), + [anon_sym_by] = ACTIONS(5657), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -227753,1043 +230854,1043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [1769] = { - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1770] = { - [sym__expression] = STATE(737), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1771] = { - [sym__expression] = STATE(835), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1801] = { + [sym__expression] = STATE(2487), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1772] = { - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1802] = { + [sym_primary_constructor] = STATE(3677), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2383), + [sym_type_constraints] = STATE(3052), + [sym_enum_class_body] = STATE(3466), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), }, - [1773] = { - [sym__expression] = STATE(1360), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1803] = { + [sym__expression] = STATE(1268), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1774] = { - [sym__expression] = STATE(832), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1804] = { + [sym__expression] = STATE(1337), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [1775] = { - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [1805] = { + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1776] = { - [sym_property_delegate] = STATE(2428), - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5796), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [1806] = { + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1807] = { + [sym__expression] = STATE(2534), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1808] = { + [sym__expression] = STATE(590), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [1777] = { - [sym__expression] = STATE(2410), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1809] = { + [sym__expression] = STATE(2563), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1778] = { - [sym__expression] = STATE(839), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1810] = { + [sym__expression] = STATE(3551), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(109), }, - [1779] = { - [sym__expression] = STATE(316), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [1811] = { + [sym__expression] = STATE(2365), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -228803,10 +231904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -228817,1916 +231918,668 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [1780] = { - [sym__expression] = STATE(840), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1812] = { + [sym__expression] = STATE(4221), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1781] = { - [sym_type_constraints] = STATE(2469), - [sym_property_delegate] = STATE(2644), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(5798), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_where] = ACTIONS(5788), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5800), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [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(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), - }, - [1782] = { - [sym__expression] = STATE(961), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1783] = { - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1784] = { - [sym__expression] = STATE(312), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [1813] = { + [sym__expression] = STATE(589), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [1785] = { - [sym__expression] = STATE(4384), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1814] = { + [sym__expression] = STATE(4368), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1786] = { - [sym__expression] = STATE(1359), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1787] = { - [sym__expression] = STATE(841), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1788] = { - [sym__expression] = STATE(4017), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1789] = { - [sym__expression] = STATE(1285), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1790] = { - [sym__expression] = STATE(844), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1791] = { - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1792] = { - [sym__expression] = STATE(4419), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1793] = { - [sym__expression] = STATE(4381), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1794] = { - [sym__expression] = STATE(716), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1795] = { - [sym__expression] = STATE(4324), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1796] = { - [sym__expression] = STATE(4321), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1815] = { + [sym__expression] = STATE(3569), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [1797] = { - [sym__expression] = STATE(4317), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1816] = { + [sym__expression] = STATE(3568), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [1798] = { - [sym__expression] = STATE(2468), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [1817] = { + [sym__expression] = STATE(3566), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(109), }, - [1799] = { - [sym__expression] = STATE(402), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [1818] = { + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -230737,179 +232590,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [1800] = { - [sym__expression] = STATE(4019), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1819] = { + [sym__expression] = STATE(4322), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1801] = { + [1820] = { [sym__expression] = STATE(3565), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -230918,7 +232771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -230929,179 +232782,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1802] = { - [sym__expression] = STATE(4418), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1803] = { - [sym__expression] = STATE(3643), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1821] = { + [sym__expression] = STATE(3564), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -231110,7 +232867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -231121,83 +232878,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1804] = { - [sym__expression] = STATE(3625), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1822] = { + [sym__expression] = STATE(3563), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -231206,7 +232963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -231217,179 +232974,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1805] = { - [sym__expression] = STATE(4322), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1806] = { - [sym__expression] = STATE(3596), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1823] = { + [sym__expression] = STATE(3562), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -231398,7 +233059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -231409,467 +233070,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1807] = { - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1808] = { - [sym__expression] = STATE(4177), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1824] = { + [sym__expression] = STATE(4324), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1809] = { - [sym__expression] = STATE(952), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1810] = { - [sym__expression] = STATE(4424), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1811] = { - [sym__expression] = STATE(3586), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1825] = { + [sym__expression] = STATE(3640), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -231878,7 +233251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -231889,563 +233262,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1812] = { - [sym__expression] = STATE(1421), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1813] = { - [sym__expression] = STATE(1420), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1814] = { - [sym__expression] = STATE(1419), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1826] = { + [sym__expression] = STATE(3547), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [1815] = { - [sym__expression] = STATE(4215), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1827] = { + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1816] = { - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1828] = { + [sym__expression] = STATE(884), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1817] = { - [sym__expression] = STATE(3571), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1829] = { + [sym_property_delegate] = STATE(2479), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [1830] = { + [sym__expression] = STATE(3548), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -232454,7 +233731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -232465,1523 +233742,2771 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1818] = { - [sym__expression] = STATE(1418), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1831] = { + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1819] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1832] = { + [sym__expression] = STATE(4335), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1833] = { + [sym__expression] = STATE(886), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [1820] = { - [sym__expression] = STATE(4341), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1834] = { + [sym__expression] = STATE(588), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1835] = { + [sym__expression] = STATE(587), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1836] = { + [sym__expression] = STATE(584), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1837] = { + [sym__expression] = STATE(4387), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1821] = { - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1838] = { + [sym__expression] = STATE(582), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1839] = { + [sym__expression] = STATE(555), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1840] = { + [sym__expression] = STATE(551), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1841] = { + [sym__expression] = STATE(549), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1842] = { + [sym__expression] = STATE(4400), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1822] = { - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [1843] = { + [sym__expression] = STATE(610), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1844] = { + [sym__expression] = STATE(554), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1845] = { + [sym__expression] = STATE(567), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1846] = { + [sym__expression] = STATE(275), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [1823] = { - [sym__expression] = STATE(1469), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [1847] = { + [sym__expression] = STATE(4305), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1848] = { + [sym__expression] = STATE(277), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [1824] = { - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [1849] = { + [sym__expression] = STATE(279), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1825] = { - [sym__expression] = STATE(715), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1850] = { + [sym__expression] = STATE(888), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1851] = { + [sym__expression] = STATE(4421), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1826] = { - [sym__expression] = STATE(1416), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1852] = { + [sym__expression] = STATE(879), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1827] = { - [sym__expression] = STATE(713), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1853] = { + [sym__expression] = STATE(890), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1854] = { + [sym__expression] = STATE(923), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1855] = { + [sym__expression] = STATE(4232), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1828] = { - [sym__expression] = STATE(3741), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1829] = { - [sym__expression] = STATE(362), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [1830] = { - [sym__expression] = STATE(4335), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1856] = { + [sym__expression] = STATE(4350), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1831] = { - [sym__expression] = STATE(3033), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1857] = { + [sym_type_constraints] = STATE(2469), + [sym_property_delegate] = STATE(2650), + [sym_getter] = STATE(5354), + [sym_setter] = STATE(5354), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(5841), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_where] = ACTIONS(5807), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [1858] = { + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5843), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1832] = { - [sym__expression] = STATE(3569), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1833] = { - [sym__expression] = STATE(3554), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1859] = { + [sym__expression] = STATE(3549), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -233990,7 +236515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -234001,6515 +236526,5267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1834] = { - [sym__expression] = STATE(3555), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1860] = { + [sym__expression] = STATE(4021), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1835] = { - [sym__expression] = STATE(3556), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1861] = { + [sym__expression] = STATE(356), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [1836] = { - [sym__expression] = STATE(3557), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1862] = { + [sym__expression] = STATE(4319), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1837] = { - [sym__expression] = STATE(4166), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1863] = { + [sym__expression] = STATE(4318), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1838] = { - [sym__expression] = STATE(4032), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1864] = { + [sym__expression] = STATE(4217), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1839] = { - [sym__expression] = STATE(4427), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1865] = { + [sym__expression] = STATE(4353), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1840] = { - [sym__expression] = STATE(3559), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1841] = { - [sym__expression] = STATE(4031), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1866] = { + [sym__expression] = STATE(4321), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1842] = { - [sym__expression] = STATE(4027), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1867] = { + [sym__expression] = STATE(4313), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1843] = { - [sym__expression] = STATE(4211), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1868] = { + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1844] = { - [sym__expression] = STATE(1406), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1845] = { - [sym__expression] = STATE(4024), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1869] = { + [sym__expression] = STATE(4233), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1846] = { - [sym__expression] = STATE(4212), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1870] = { + [sym__expression] = STATE(4337), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1847] = { - [sym__expression] = STATE(4191), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1871] = { + [sym__expression] = STATE(4404), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1848] = { - [sym__expression] = STATE(4201), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1872] = { + [sym__expression] = STATE(4338), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1849] = { - [sym__expression] = STATE(4023), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1873] = { + [sym__expression] = STATE(725), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1874] = { + [sym__expression] = STATE(4340), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1850] = { - [sym__expression] = STATE(4021), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1875] = { + [sym__expression] = STATE(4222), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1851] = { - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [1876] = { + [sym__expression] = STATE(281), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1852] = { - [sym__expression] = STATE(4192), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1853] = { - [sym__expression] = STATE(390), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1854] = { - [sym_type_constraints] = STATE(2430), - [sym_property_delegate] = STATE(2657), - [sym_getter] = STATE(5383), - [sym_setter] = STATE(5383), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(5802), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_where] = ACTIONS(5788), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__string_start] = ACTIONS(413), }, - [1855] = { - [sym__expression] = STATE(4020), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1877] = { + [sym__expression] = STATE(4371), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1856] = { - [sym__expression] = STATE(1404), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1878] = { + [sym__expression] = STATE(282), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1857] = { - [sym__expression] = STATE(817), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [1879] = { + [sym__expression] = STATE(726), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [1858] = { - [sym__expression] = STATE(4018), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1880] = { + [sym__expression] = STATE(4397), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1859] = { - [sym__expression] = STATE(4016), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1881] = { + [sym__expression] = STATE(4398), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1860] = { - [sym__expression] = STATE(4193), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1861] = { - [sym__expression] = STATE(4210), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1862] = { - [sym__expression] = STATE(4208), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1863] = { - [sym__expression] = STATE(4207), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1864] = { - [sym__expression] = STATE(4206), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1882] = { + [sym__expression] = STATE(4412), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1865] = { - [sym__expression] = STATE(3026), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1883] = { + [sym__expression] = STATE(4223), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1866] = { - [sym__expression] = STATE(3025), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1884] = { + [sym__expression] = STATE(4381), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1867] = { - [sym__expression] = STATE(4331), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1885] = { + [sym__expression] = STATE(4341), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1868] = { - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(199), }, - [1869] = { - [sym__expression] = STATE(1475), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [1886] = { + [sym__expression] = STATE(727), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [1870] = { - [sym__expression] = STATE(4175), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1887] = { + [sym__expression] = STATE(4339), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1871] = { - [sym__expression] = STATE(4227), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1888] = { + [sym__expression] = STATE(4225), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1872] = { - [sym__expression] = STATE(4417), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1889] = { + [sym__expression] = STATE(4311), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1873] = { - [sym__expression] = STATE(3024), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1890] = { + [sym__expression] = STATE(4349), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1874] = { - [sym__expression] = STATE(3904), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1875] = { - [sym__expression] = STATE(1402), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1876] = { - [sym__expression] = STATE(3023), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1877] = { - [sym__expression] = STATE(4430), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1891] = { + [sym__expression] = STATE(4310), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1878] = { - [sym_type_constraints] = STATE(2491), - [sym_property_delegate] = STATE(2580), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [1892] = { + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [1879] = { - [sym__expression] = STATE(4332), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1893] = { + [sym__expression] = STATE(4309), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1880] = { - [sym__expression] = STATE(4343), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1894] = { + [sym__expression] = STATE(4314), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1881] = { - [sym__expression] = STATE(4390), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1895] = { + [sym__expression] = STATE(4315), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1882] = { - [sym__expression] = STATE(4315), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1896] = { + [sym__expression] = STATE(4316), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1883] = { - [sym__expression] = STATE(3022), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1897] = { + [sym__expression] = STATE(371), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1884] = { - [sym__expression] = STATE(1401), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1885] = { - [sym__expression] = STATE(3021), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1886] = { - [sym_type_constraints] = STATE(2433), - [sym_property_delegate] = STATE(2601), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5806), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5808), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [1887] = { - [sym__expression] = STATE(1476), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), + [anon_sym_if] = ACTIONS(373), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [1888] = { - [sym__expression] = STATE(3020), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1898] = { + [sym__expression] = STATE(4317), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1889] = { - [sym__expression] = STATE(3018), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1899] = { + [sym__expression] = STATE(4320), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1890] = { - [sym__expression] = STATE(3017), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1900] = { + [sym__expression] = STATE(4325), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1891] = { - [sym__expression] = STATE(4415), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1901] = { + [sym__expression] = STATE(4327), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1892] = { - [sym__expression] = STATE(1453), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [1902] = { + [sym__expression] = STATE(728), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1903] = { + [sym__expression] = STATE(4328), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1893] = { - [sym__expression] = STATE(3006), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1904] = { + [sym__expression] = STATE(4329), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1894] = { - [sym_type_constraints] = STATE(2455), - [sym_property_delegate] = STATE(2581), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5814), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5816), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [1905] = { + [sym__expression] = STATE(4330), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1895] = { - [sym__expression] = STATE(1481), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [1906] = { + [sym__expression] = STATE(4333), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [1896] = { - [sym__expression] = STATE(3036), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1907] = { + [sym__expression] = STATE(4334), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1897] = { - [sym__expression] = STATE(3996), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1908] = { + [sym__expression] = STATE(4342), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1898] = { - [sym__expression] = STATE(3007), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1909] = { + [sym__expression] = STATE(4343), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1899] = { - [sym__expression] = STATE(3005), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1893), - [sym_annotation] = STATE(1893), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(295), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1910] = { + [sym__expression] = STATE(4344), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1317), - [sym_label] = ACTIONS(257), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1900] = { - [sym__expression] = STATE(3944), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1911] = { + [sym__expression] = STATE(4348), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(199), }, - [1901] = { - [sym__expression] = STATE(3919), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1912] = { + [sym__expression] = STATE(4351), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1913] = { + [sym_type_constraints] = STATE(2437), + [sym_property_delegate] = STATE(2640), + [sym_getter] = STATE(5326), + [sym_setter] = STATE(5326), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(5845), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_where] = ACTIONS(5807), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [1914] = { + [sym__expression] = STATE(4138), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -240518,7 +241795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -240529,829 +241806,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1902] = { - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1903] = { - [sym__expression] = STATE(4176), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1904] = { - [sym__expression] = STATE(4006), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1915] = { + [sym__expression] = STATE(4236), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1905] = { - [sym__expression] = STATE(4345), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [1916] = { + [sym_property_delegate] = STATE(2461), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5681), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5683), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1906] = { - [sym__expression] = STATE(4425), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1917] = { + [sym__expression] = STATE(4306), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1907] = { - [sym__expression] = STATE(4318), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1918] = { + [sym__expression] = STATE(4357), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1908] = { - [sym__expression] = STATE(4350), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1919] = { + [sym__expression] = STATE(4418), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1909] = { - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1910] = { - [sym_type_constraints] = STATE(2453), - [sym_property_delegate] = STATE(2658), - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_where] = ACTIONS(5788), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), + [1920] = { + [sym_property_delegate] = STATE(2457), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5685), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -241375,3160 +242374,3534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [1911] = { - [sym__expression] = STATE(2466), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1921] = { + [sym__expression] = STATE(4362), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1912] = { - [sym__expression] = STATE(1482), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [1913] = { - [sym__expression] = STATE(3990), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1914] = { - [sym__expression] = STATE(4351), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1922] = { + [sym__expression] = STATE(4427), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1915] = { - [sym__expression] = STATE(1483), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [1916] = { - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1644), - [sym_annotation] = STATE(1644), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(303), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1922), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(387), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(373), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(199), }, - [1917] = { - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [1923] = { + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1674), [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1918] = { - [sym__expression] = STATE(1501), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1924] = { + [sym__expression] = STATE(651), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1925] = { + [sym__expression] = STATE(4428), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1919] = { - [sym__expression] = STATE(4359), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1926] = { + [sym__expression] = STATE(4360), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1920] = { - [sym__expression] = STATE(4360), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [1927] = { + [sym__expression] = STATE(2528), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1928] = { + [sym__expression] = STATE(4363), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1921] = { - [sym__expression] = STATE(539), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [1922] = { - [sym__expression] = STATE(4150), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [1929] = { + [sym_property_delegate] = STATE(2451), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5687), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [1923] = { - [sym__expression] = STATE(814), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), }, - [1924] = { - [sym__expression] = STATE(585), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1930] = { + [sym__expression] = STATE(4365), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1925] = { - [sym__expression] = STATE(584), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1931] = { + [sym__expression] = STATE(4367), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1926] = { - [sym__expression] = STATE(4197), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1932] = { + [sym__expression] = STATE(280), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [1927] = { - [sym__expression] = STATE(583), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1933] = { + [sym__expression] = STATE(4370), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1928] = { - [sym__expression] = STATE(582), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1934] = { + [sym__expression] = STATE(4375), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1929] = { - [sym__expression] = STATE(4362), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1935] = { + [sym__expression] = STATE(4380), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1930] = { - [sym__expression] = STATE(792), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1931] = { - [sym__expression] = STATE(4365), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1936] = { + [sym__expression] = STATE(4385), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1932] = { - [sym__expression] = STATE(581), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1933] = { - [sym__expression] = STATE(580), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1937] = { + [sym__expression] = STATE(1449), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1938] = { + [sym__expression] = STATE(4395), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1934] = { - [sym__expression] = STATE(595), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1939] = { + [sym__expression] = STATE(730), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1940] = { + [sym__expression] = STATE(1459), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [1941] = { + [sym__expression] = STATE(4401), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1935] = { - [sym__expression] = STATE(592), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1942] = { + [sym__expression] = STATE(276), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1943] = { + [sym__expression] = STATE(4402), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1936] = { - [sym__expression] = STATE(591), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1944] = { + [sym__expression] = STATE(4408), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1937] = { - [sym__expression] = STATE(4366), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1945] = { + [sym_property_delegate] = STATE(2444), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + }, + [1946] = { + [sym_property_delegate] = STATE(2438), + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [1947] = { + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [1948] = { + [sym__expression] = STATE(4407), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1938] = { - [sym__expression] = STATE(579), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1949] = { + [sym__expression] = STATE(272), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1950] = { + [sym__expression] = STATE(274), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1951] = { + [sym__expression] = STATE(273), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1952] = { + [sym__expression] = STATE(4410), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1939] = { - [sym__expression] = STATE(566), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1953] = { + [sym__expression] = STATE(4413), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1940] = { - [sym__expression] = STATE(807), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1941] = { - [sym__expression] = STATE(567), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1954] = { + [sym__expression] = STATE(4411), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1942] = { - [sym__expression] = STATE(4333), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1955] = { + [sym__expression] = STATE(4422), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1943] = { - [sym__expression] = STATE(278), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [1956] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + }, + [1957] = { + [sym__expression] = STATE(1030), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_null] = ACTIONS(1936), [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), @@ -244547,10 +245920,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -244561,70 +245934,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [1944] = { - [sym__expression] = STATE(271), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1958] = { + [sym__expression] = STATE(278), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1959] = { + [sym__expression] = STATE(648), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1960] = { + [sym__expression] = STATE(650), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1961] = { + [sym__expression] = STATE(3588), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [1962] = { + [sym__expression] = STATE(653), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [1963] = { + [sym__expression] = STATE(1027), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1277), [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_null] = ACTIONS(1936), [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), @@ -244643,10 +246496,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -244657,3526 +246510,1606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [1945] = { - [sym__expression] = STATE(272), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1964] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5849), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1965] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [1966] = { + [sym__expression] = STATE(654), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1946] = { - [sym__expression] = STATE(4300), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1947] = { - [sym__expression] = STATE(274), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1948] = { - [sym__expression] = STATE(519), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1949] = { - [sym__expression] = STATE(275), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1950] = { - [sym__expression] = STATE(277), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1951] = { - [sym__expression] = STATE(279), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1952] = { - [sym__expression] = STATE(280), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1967] = { + [sym__expression] = STATE(655), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1953] = { - [sym__expression] = STATE(273), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1968] = { + [sym__expression] = STATE(643), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1954] = { - [sym__expression] = STATE(276), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1969] = { + [sym__expression] = STATE(645), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1955] = { - [sym__expression] = STATE(282), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1970] = { + [sym__expression] = STATE(646), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [1956] = { - [sym__expression] = STATE(281), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(1703), - [sym_annotation] = STATE(1703), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1971] = { + [sym__expression] = STATE(647), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1616), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1229), - [sym_label] = ACTIONS(591), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(577), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_return] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1957] = { - [sym__expression] = STATE(654), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1958] = { - [sym__expression] = STATE(653), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1959] = { - [sym__expression] = STATE(651), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1960] = { - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1961] = { - [sym__expression] = STATE(517), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1962] = { - [sym__expression] = STATE(816), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1963] = { - [sym__expression] = STATE(649), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1964] = { - [sym__expression] = STATE(645), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [1965] = { - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1972] = { + [sym__expression] = STATE(4423), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [1966] = { - [sym__expression] = STATE(644), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1967] = { - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1968] = { - [sym__expression] = STATE(3749), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1969] = { - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1970] = { - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [1973] = { + [sym__expression] = STATE(4430), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1971] = { - [sym__expression] = STATE(4410), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [1974] = { + [sym__expression] = STATE(4359), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [1972] = { - [sym__expression] = STATE(641), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [1973] = { - [sym__expression] = STATE(300), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [1975] = { + [sym__expression] = STATE(464), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(1650), [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [1974] = { - [sym__expression] = STATE(650), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1975] = { - [sym__expression] = STATE(4374), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, [1976] = { - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym__expression] = STATE(649), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, [1977] = { - [sym__expression] = STATE(646), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym__expression] = STATE(839), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, [1978] = { - [sym__expression] = STATE(655), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1807), - [sym_annotation] = STATE(1807), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1311), - [sym_label] = ACTIONS(509), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(495), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_return] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym__expression] = STATE(652), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, [1979] = { - [sym__expression] = STATE(796), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [sym__expression] = STATE(365), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, [1980] = { - [sym__expression] = STATE(794), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1981] = { - [sym__expression] = STATE(3958), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [sym__expression] = STATE(3911), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -248185,11 +248118,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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -248198,7 +248131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -248209,326 +248142,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1982] = { - [sym__expression] = STATE(823), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1981] = { + [sym__expression] = STATE(476), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(873), [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), [anon_sym_PLUS] = ACTIONS(883), [anon_sym_DASH] = ACTIONS(883), [anon_sym_PLUS_PLUS] = ACTIONS(885), [anon_sym_DASH_DASH] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [1983] = { - [sym__expression] = STATE(828), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1982] = { + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(873), [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1983] = { + [sym__expression] = STATE(461), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), [anon_sym_PLUS] = ACTIONS(883), [anon_sym_DASH] = ACTIONS(883), [anon_sym_PLUS_PLUS] = ACTIONS(885), [anon_sym_DASH_DASH] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, [1984] = { - [sym__expression] = STATE(1111), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__expression] = STATE(474), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, [1985] = { - [sym_type_constraints] = STATE(2450), - [sym_property_delegate] = STATE(2682), - [sym_getter] = STATE(5392), - [sym_setter] = STATE(5392), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1986] = { + [sym__expression] = STATE(468), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1987] = { + [sym__expression] = STATE(477), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1988] = { + [sym_type_constraints] = STATE(2456), + [sym_property_delegate] = STATE(2646), + [sym_getter] = STATE(5300), + [sym_setter] = STATE(5300), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5820), + [anon_sym_EQ] = ACTIONS(5857), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_where] = ACTIONS(5788), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_where] = ACTIONS(5807), [anon_sym_object] = ACTIONS(1752), [anon_sym_fun] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), [anon_sym_this] = ACTIONS(1752), [anon_sym_super] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(1754), @@ -248575,8 +248892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(1754), [anon_sym_continue_AT] = ACTIONS(1754), @@ -248593,659 +248910,1139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1754), }, - [1986] = { - [sym__expression] = STATE(3624), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1989] = { + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [1987] = { - [sym__expression] = STATE(825), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1990] = { + [sym__expression] = STATE(469), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(873), [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), [anon_sym_PLUS] = ACTIONS(883), [anon_sym_DASH] = ACTIONS(883), [anon_sym_PLUS_PLUS] = ACTIONS(885), [anon_sym_DASH_DASH] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1988] = { - [sym__expression] = STATE(4151), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [1991] = { + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [1989] = { - [sym__expression] = STATE(4375), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1992] = { + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1993] = { + [sym__expression] = STATE(4289), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5859), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [1994] = { + [sym_property_delegate] = STATE(2465), + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5861), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [1990] = { - [sym__expression] = STATE(821), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [1995] = { + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), [anon_sym_STAR] = ACTIONS(873), [sym_label] = ACTIONS(883), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), [anon_sym_PLUS] = ACTIONS(883), [anon_sym_DASH] = ACTIONS(883), [anon_sym_PLUS_PLUS] = ACTIONS(885), [anon_sym_DASH_DASH] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [1991] = { - [sym__expression] = STATE(4376), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [1996] = { + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1992), + [sym_annotation] = STATE(1992), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(873), + [sym_label] = ACTIONS(883), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [1997] = { + [sym_type_constraints] = STATE(2432), + [sym_property_delegate] = STATE(2580), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + }, + [1998] = { + [sym__expression] = STATE(4234), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [1992] = { - [sym__expression] = STATE(4119), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [1999] = { + [sym__expression] = STATE(4285), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2000] = { + [sym__expression] = STATE(4205), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -249254,7 +250051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -249265,83 +250062,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1993] = { - [sym__expression] = STATE(4153), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2001] = { + [sym__expression] = STATE(4207), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -249350,7 +250147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -249361,179 +250158,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1994] = { - [sym__expression] = STATE(4148), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2002] = { + [sym__expression] = STATE(875), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2003] = { + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, - [1995] = { - [sym__expression] = STATE(4147), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2004] = { + [sym__expression] = STATE(731), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2005] = { + [sym__expression] = STATE(4208), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -249542,7 +250531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -249553,83 +250542,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1996] = { - [sym__expression] = STATE(4145), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2006] = { + [sym__expression] = STATE(4211), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -249638,7 +250627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -249649,92 +250638,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [1997] = { - [sym__expression] = STATE(380), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2007] = { + [sym__expression] = STATE(975), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -249745,179 +250734,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [1998] = { - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2008] = { + [sym_type_constraints] = STATE(2435), + [sym_property_delegate] = STATE(2574), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5865), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3788), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2009] = { + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2010] = { + [sym_type_constraints] = STATE(2440), + [sym_property_delegate] = STATE(2572), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2011] = { + [sym__expression] = STATE(4307), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [1999] = { - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2012] = { + [sym__expression] = STATE(404), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2013] = { + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -249926,7 +251299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -249937,275 +251310,1139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2000] = { - [sym__expression] = STATE(4140), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2014] = { + [sym__expression] = STATE(1037), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, - [2001] = { - [sym__expression] = STATE(4137), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2015] = { + [sym__expression] = STATE(2562), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2016] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_fun] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_super] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_when] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3072), + [anon_sym_continue_AT] = ACTIONS(3072), + [anon_sym_break_AT] = ACTIONS(3072), + [sym_real_literal] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [sym_hex_literal] = ACTIONS(3072), + [sym_bin_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3072), + }, + [2017] = { + [sym__expression] = STATE(1272), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2018] = { + [sym__expression] = STATE(1273), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2019] = { + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [2002] = { - [sym__expression] = STATE(4136), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2020] = { + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2021] = { + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2022] = { + [sym__expression] = STATE(1276), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2023] = { + [sym__expression] = STATE(1277), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2024] = { + [sym__expression] = STATE(1278), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2025] = { + [sym__expression] = STATE(4216), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -250214,7 +252451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -250225,275 +252462,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2003] = { - [sym__expression] = STATE(4135), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2026] = { + [sym__expression] = STATE(1486), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(615), }, - [2004] = { - [sym__expression] = STATE(4134), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1988), - [sym_annotation] = STATE(1988), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2027] = { + [sym__expression] = STATE(394), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(937), - [sym_label] = ACTIONS(945), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [2005] = { - [sym__expression] = STATE(3623), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2028] = { + [sym__expression] = STATE(4212), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -250502,7 +252739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -250513,188 +252750,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2006] = { - [sym__expression] = STATE(820), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2007] = { - [sym__expression] = STATE(305), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2029] = { + [sym__expression] = STATE(1433), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -250705,380 +252846,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2008] = { - [sym__expression] = STATE(4379), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2009] = { - [sym__expression] = STATE(4380), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2010] = { - [sym__expression] = STATE(4383), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2011] = { - [sym__expression] = STATE(301), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2030] = { + [sym__expression] = STATE(1434), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -251089,380 +252942,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2012] = { - [sym__expression] = STATE(1496), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2013] = { - [sym__expression] = STATE(4219), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2014] = { - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2015] = { - [sym__expression] = STATE(533), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2031] = { + [sym__expression] = STATE(1435), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -251473,92 +253038,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2016] = { - [sym__expression] = STATE(534), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2032] = { + [sym__expression] = STATE(4209), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [2033] = { + [sym__expression] = STATE(1436), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -251569,188 +253230,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2017] = { - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2034] = { + [sym__expression] = STATE(392), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2018] = { - [sym__expression] = STATE(296), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2035] = { + [sym__expression] = STATE(1437), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -251761,572 +253422,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2019] = { - [sym__expression] = STATE(4334), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2020] = { - [sym__expression] = STATE(1318), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2021] = { - [sym__expression] = STATE(2384), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2022] = { - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2023] = { - [sym__expression] = STATE(4326), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2024] = { - [sym__expression] = STATE(535), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2036] = { + [sym__expression] = STATE(1438), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -252337,476 +253518,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2025] = { - [sym__expression] = STATE(2493), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2026] = { - [sym__expression] = STATE(1090), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2027] = { - [sym__expression] = STATE(3937), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [2028] = { - [sym__expression] = STATE(4386), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2029] = { - [sym__expression] = STATE(299), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2037] = { + [sym__expression] = STATE(1439), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -252817,92 +253614,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2030] = { - [sym__expression] = STATE(304), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2038] = { + [sym__expression] = STATE(1443), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -252913,668 +253710,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2031] = { - [sym__expression] = STATE(4387), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2032] = { - [sym__expression] = STATE(4372), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2039] = { + [sym__expression] = STATE(378), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2033] = { - [sym__expression] = STATE(4423), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2034] = { - [sym__expression] = STATE(3953), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), [anon_sym_PLUS] = ACTIONS(793), [anon_sym_DASH] = ACTIONS(793), [anon_sym_PLUS_PLUS] = ACTIONS(795), [anon_sym_DASH_DASH] = ACTIONS(795), [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [2035] = { - [sym__expression] = STATE(4303), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2036] = { - [sym_type_constraints] = STATE(2443), - [sym_property_delegate] = STATE(2618), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5822), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2037] = { - [sym__expression] = STATE(297), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2040] = { + [sym__expression] = STATE(1444), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -253585,92 +253902,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2038] = { - [sym__expression] = STATE(309), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2041] = { + [sym__expression] = STATE(1445), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -253681,92 +253998,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2039] = { - [sym__expression] = STATE(536), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2042] = { + [sym__expression] = STATE(1500), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -253777,476 +254094,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2040] = { - [sym__expression] = STATE(537), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2043] = { + [sym__expression] = STATE(391), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [2041] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5824), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [2044] = { + [sym__expression] = STATE(4192), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2042] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5828), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), + [2045] = { + [sym__expression] = STATE(4200), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__string_start] = ACTIONS(109), }, - [2043] = { - [sym__expression] = STATE(853), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [2046] = { + [sym__expression] = STATE(1093), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [2044] = { - [sym__expression] = STATE(308), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2047] = { + [sym__expression] = STATE(1499), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -254257,92 +254574,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2045] = { - [sym__expression] = STATE(307), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2048] = { + [sym__expression] = STATE(1501), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -254353,75 +254670,1323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2046] = { - [sym__expression] = STATE(540), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2049] = { + [sym__expression] = STATE(2467), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2050] = { + [sym__expression] = STATE(3996), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2051] = { + [sym__expression] = STATE(4194), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [2052] = { + [sym__expression] = STATE(1004), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1695), + [sym_annotation] = STATE(1695), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(256), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(259), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2053] = { + [sym__expression] = STATE(4202), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [2054] = { + [sym__expression] = STATE(390), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2055] = { + [sym__expression] = STATE(4146), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [2056] = { + [sym__expression] = STATE(386), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2057] = { + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2058] = { + [sym__expression] = STATE(4241), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2059] = { + [sym__expression] = STATE(4356), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2060] = { + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2061] = { + [sym__expression] = STATE(2559), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2062] = { + [sym__expression] = STATE(2092), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -254435,10 +256000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -254449,188 +256014,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2047] = { - [sym__expression] = STATE(1529), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2048] = { - [sym__expression] = STATE(306), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2063] = { + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -254641,71 +256110,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2049] = { - [sym_property_delegate] = STATE(2457), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5673), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2064] = { + [sym__expression] = STATE(4143), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [2065] = { + [sym_type_constraints] = STATE(2492), + [sym_property_delegate] = STATE(2631), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5897), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -254729,1147 +256294,859 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2050] = { - [sym__expression] = STATE(302), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2066] = { + [sym__expression] = STATE(4132), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [2051] = { - [sym__expression] = STATE(668), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2067] = { + [sym__expression] = STATE(4145), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2052] = { - [sym__expression] = STATE(4220), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [2053] = { - [sym__expression] = STATE(669), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2068] = { + [sym__expression] = STATE(388), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [2054] = { - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1674), - [sym_annotation] = STATE(1674), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(220), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2069] = { + [sym__expression] = STATE(519), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1305), - [sym_label] = ACTIONS(171), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(157), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(163), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS_PLUS] = ACTIONS(173), - [anon_sym_DASH_DASH] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2055] = { - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2056] = { - [sym__expression] = STATE(3740), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2057] = { - [sym__expression] = STATE(1309), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2070] = { + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2058] = { - [sym_property_delegate] = STATE(2459), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5675), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2059] = { - [sym__expression] = STATE(2089), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2071] = { + [sym__expression] = STATE(381), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2060] = { - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2072] = { + [sym__expression] = STATE(383), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2073] = { + [sym__expression] = STATE(2093), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), }, - [2061] = { - [sym__expression] = STATE(3916), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2074] = { + [sym__expression] = STATE(4152), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -255878,7 +257155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -255889,5355 +257166,2571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2062] = { - [sym__expression] = STATE(1296), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2063] = { - [sym__expression] = STATE(3758), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2064] = { - [sym__expression] = STATE(3797), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2065] = { - [sym_property_delegate] = STATE(2460), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5697), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2066] = { - [sym__expression] = STATE(703), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2067] = { - [sym__expression] = STATE(1399), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2068] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [2075] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3071), - [anon_sym_fun] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3071), - [anon_sym_super] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_when] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3073), - [anon_sym_continue_AT] = ACTIONS(3073), - [anon_sym_break_AT] = ACTIONS(3073), - [sym_real_literal] = ACTIONS(3073), - [sym_integer_literal] = ACTIONS(3071), - [sym_hex_literal] = ACTIONS(3073), - [sym_bin_literal] = ACTIONS(3073), - [anon_sym_true] = ACTIONS(3071), - [anon_sym_false] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3073), + [sym__string_start] = ACTIONS(3076), }, - [2069] = { - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2076] = { + [sym__expression] = STATE(323), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2070] = { - [sym__expression] = STATE(2090), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2077] = { + [sym__expression] = STATE(325), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2071] = { - [sym_type_constraints] = STATE(2426), - [sym_property_delegate] = STATE(2609), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [2078] = { + [sym__expression] = STATE(4148), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2072] = { - [sym_property_delegate] = STATE(2452), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [2079] = { + [sym__expression] = STATE(4131), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2073] = { - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2080] = { + [sym__expression] = STATE(4123), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [2074] = { - [sym__expression] = STATE(4347), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2081] = { + [sym__expression] = STATE(4150), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [2075] = { - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2082] = { + [sym__expression] = STATE(4151), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(109), }, - [2076] = { - [sym_type_constraints] = STATE(2494), - [sym_property_delegate] = STATE(2619), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5860), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [2083] = { + [sym__expression] = STATE(4149), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2077] = { - [sym__expression] = STATE(704), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [2084] = { + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [2078] = { - [sym__expression] = STATE(661), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2085] = { + [sym_primary_constructor] = STATE(4999), + [sym_class_body] = STATE(4664), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2421), + [sym_type_constraints] = STATE(4539), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [2086] = { + [sym__expression] = STATE(874), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2087] = { + [sym__expression] = STATE(4331), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2079] = { - [sym_property_delegate] = STATE(2458), - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2080] = { - [sym__expression] = STATE(4308), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2081] = { - [sym__expression] = STATE(4313), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2088] = { + [sym__expression] = STATE(326), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2082] = { - [sym_primary_constructor] = STATE(4979), - [sym_class_body] = STATE(4578), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2407), - [sym_type_constraints] = STATE(4550), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2083] = { - [sym_type_constraints] = STATE(2465), - [sym_property_delegate] = STATE(2621), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2084] = { - [sym__expression] = STATE(1398), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2085] = { - [sym__expression] = STATE(663), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [2086] = { - [sym__expression] = STATE(670), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [2089] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_fun] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3082), + [anon_sym_super] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_when] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(3084), + [anon_sym_continue_AT] = ACTIONS(3084), + [anon_sym_break_AT] = ACTIONS(3084), + [sym_real_literal] = ACTIONS(3084), + [sym_integer_literal] = ACTIONS(3082), + [sym_hex_literal] = ACTIONS(3084), + [sym_bin_literal] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(3084), }, - [2087] = { - [sym__expression] = STATE(667), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2090] = { + [sym__expression] = STATE(329), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(413), }, - [2088] = { - [sym__expression] = STATE(664), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2091] = { + [sym__expression] = STATE(4336), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2089] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [2092] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3063), - [anon_sym_fun] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3063), - [anon_sym_super] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_when] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3039), + [anon_sym_super] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_when] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3065), - [anon_sym_continue_AT] = ACTIONS(3065), - [anon_sym_break_AT] = ACTIONS(3065), - [sym_real_literal] = ACTIONS(3065), - [sym_integer_literal] = ACTIONS(3063), - [sym_hex_literal] = ACTIONS(3065), - [sym_bin_literal] = ACTIONS(3065), - [anon_sym_true] = ACTIONS(3063), - [anon_sym_false] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_return_AT] = ACTIONS(3041), + [anon_sym_continue_AT] = ACTIONS(3041), + [anon_sym_break_AT] = ACTIONS(3041), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3041), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3065), + [sym__string_start] = ACTIONS(3041), }, - [2090] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [2093] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_fun] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(2984), + [anon_sym_fun] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3067), - [anon_sym_super] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_when] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_when] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3069), - [anon_sym_continue_AT] = ACTIONS(3069), - [anon_sym_break_AT] = ACTIONS(3069), - [sym_real_literal] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [sym_hex_literal] = ACTIONS(3069), - [sym_bin_literal] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3067), - [anon_sym_false] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_return_AT] = ACTIONS(2986), + [anon_sym_continue_AT] = ACTIONS(2986), + [anon_sym_break_AT] = ACTIONS(2986), + [sym_real_literal] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [sym_hex_literal] = ACTIONS(2986), + [sym_bin_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3069), - }, - [2091] = { - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2092] = { - [sym__expression] = STATE(665), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2093] = { - [sym__expression] = STATE(662), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(2986), }, [2094] = { - [sym__expression] = STATE(4382), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__expression] = STATE(999), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, [2095] = { - [sym__expression] = STATE(673), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__expression] = STATE(3545), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(109), }, [2096] = { - [sym__expression] = STATE(680), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2097] = { - [sym__expression] = STATE(699), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2098] = { - [sym__expression] = STATE(2165), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2099] = { - [sym__expression] = STATE(2166), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2100] = { - [sym__expression] = STATE(2167), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2101] = { - [sym__expression] = STATE(2168), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [sym__expression] = STATE(870), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(1111), [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(1119), [anon_sym_DASH] = ACTIONS(1119), [anon_sym_PLUS_PLUS] = ACTIONS(1121), [anon_sym_DASH_DASH] = ACTIONS(1121), [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [2102] = { - [sym__expression] = STATE(4336), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2097] = { + [sym__expression] = STATE(4369), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2103] = { - [sym__expression] = STATE(1293), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2098] = { + [sym__expression] = STATE(4374), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2104] = { - [sym__expression] = STATE(2376), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2105] = { - [sym__expression] = STATE(705), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2106] = { - [sym__expression] = STATE(4270), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2107] = { - [sym__expression] = STATE(4222), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2108] = { - [sym__expression] = STATE(2171), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2109] = { - [sym__expression] = STATE(2172), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2110] = { - [sym__expression] = STATE(2173), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2111] = { - [sym__expression] = STATE(2175), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2112] = { - [sym__expression] = STATE(2176), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(199), }, - [2113] = { - [sym__expression] = STATE(1328), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2099] = { + [sym__expression] = STATE(4377), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2114] = { - [sym__expression] = STATE(2179), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2115] = { - [sym__expression] = STATE(706), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2116] = { - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2100] = { + [sym__expression] = STATE(4378), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2117] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2101] = { + [sym__expression] = STATE(2168), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -261251,10 +259744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -261265,476 +259758,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2118] = { - [sym__expression] = STATE(4182), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2119] = { - [sym__expression] = STATE(4409), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2120] = { - [sym__expression] = STATE(708), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2121] = { - [sym__expression] = STATE(1332), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2122] = { - [sym__expression] = STATE(400), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2102] = { + [sym__expression] = STATE(2169), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -261745,651 +259854,939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2123] = { - [sym__expression] = STATE(2519), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2124] = { - [sym__expression] = STATE(4357), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2103] = { + [sym__expression] = STATE(2170), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2104] = { + [sym__expression] = STATE(2171), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2105] = { + [sym__expression] = STATE(4384), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2125] = { - [sym__expression] = STATE(4325), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2106] = { + [sym__expression] = STATE(4386), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2126] = { - [sym__expression] = STATE(4356), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2107] = { + [sym__expression] = STATE(532), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2108] = { + [sym__expression] = STATE(4389), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2127] = { - [sym__expression] = STATE(4395), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2109] = { + [sym__expression] = STATE(2089), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2110] = { + [sym__expression] = STATE(4390), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2128] = { - [sym__expression] = STATE(4218), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2111] = { + [sym__expression] = STATE(2174), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2129] = { - [sym__expression] = STATE(542), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2112] = { + [sym__expression] = STATE(2175), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -262403,10 +260800,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -262417,188 +260814,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2130] = { - [sym_primary_constructor] = STATE(4957), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2392), - [sym_type_constraints] = STATE(4559), - [sym_enum_class_body] = STATE(4604), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [2131] = { - [sym__expression] = STATE(464), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2113] = { + [sym__expression] = STATE(2176), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -262609,459 +260910,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2132] = { - [sym__expression] = STATE(4371), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2114] = { + [sym__expression] = STATE(2178), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2133] = { - [sym__expression] = STATE(4280), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2115] = { + [sym__expression] = STATE(2179), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2134] = { - [sym__expression] = STATE(2414), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(615), }, - [2135] = { - [sym__expression] = STATE(4429), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2116] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2136] = { - [sym__expression] = STATE(527), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2117] = { + [sym__expression] = STATE(2182), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), [anon_sym_STAR] = ACTIONS(995), [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), @@ -263075,10 +261280,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -263089,380 +261294,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2137] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2118] = { + [sym__expression] = STATE(4392), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2138] = { - [sym__expression] = STATE(855), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [2119] = { + [sym__expression] = STATE(1309), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2120] = { + [sym__expression] = STATE(866), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1666), [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2139] = { - [sym__expression] = STATE(3731), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1630), - [sym_annotation] = STATE(1630), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(310), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1293), - [sym_label] = ACTIONS(735), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(321), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2140] = { - [sym__expression] = STATE(470), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2121] = { + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -263473,1052 +261678,1244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2141] = { - [sym__expression] = STATE(4316), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2142] = { - [sym__expression] = STATE(4414), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2122] = { + [sym__expression] = STATE(4393), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2143] = { - [sym__expression] = STATE(2417), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2123] = { + [sym__expression] = STATE(2406), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1658), [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2144] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3007), - [anon_sym_super] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_when] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2124] = { + [sym__expression] = STATE(1305), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3009), - [anon_sym_continue_AT] = ACTIONS(3009), - [anon_sym_break_AT] = ACTIONS(3009), - [sym_real_literal] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [sym_hex_literal] = ACTIONS(3009), - [sym_bin_literal] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(4565), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3009), + [sym__string_start] = ACTIONS(285), }, - [2145] = { - [sym__expression] = STATE(4412), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2125] = { + [sym__expression] = STATE(1304), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2126] = { + [sym__expression] = STATE(1300), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2127] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2146] = { - [sym__expression] = STATE(2382), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2128] = { + [sym__expression] = STATE(1299), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2129] = { + [sym__expression] = STATE(1297), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2130] = { + [sym__expression] = STATE(2391), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1658), [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2147] = { - [sym__expression] = STATE(4369), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [2148] = { - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2131] = { + [sym__expression] = STATE(865), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [2149] = { - [sym__expression] = STATE(4304), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2132] = { + [sym__expression] = STATE(4396), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2150] = { - [sym__expression] = STATE(4388), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [2133] = { + [sym_primary_constructor] = STATE(4965), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2425), + [sym_type_constraints] = STATE(4509), + [sym_enum_class_body] = STATE(4657), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [2151] = { - [sym__expression] = STATE(388), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2134] = { + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -264529,188 +262926,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2152] = { - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2135] = { + [sym__expression] = STATE(328), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2153] = { - [sym__expression] = STATE(478), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2136] = { + [sym__expression] = STATE(4399), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2137] = { + [sym__expression] = STATE(4403), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2138] = { + [sym__expression] = STATE(1294), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2139] = { + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -264721,2588 +263406,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2154] = { - [sym__expression] = STATE(4169), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2140] = { + [sym__expression] = STATE(4405), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2155] = { - [sym__expression] = STATE(1330), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2156] = { - [sym__expression] = STATE(4170), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2157] = { - [sym__expression] = STATE(4245), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2158] = { - [sym_primary_constructor] = STATE(3711), - [sym_class_body] = STATE(3359), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2403), - [sym_type_constraints] = STATE(3040), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5870), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2159] = { - [sym__expression] = STATE(4394), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2160] = { - [sym_primary_constructor] = STATE(3700), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2402), - [sym_type_constraints] = STATE(3058), - [sym_enum_class_body] = STATE(3302), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [2161] = { - [sym_primary_constructor] = STATE(3698), - [sym_class_body] = STATE(3302), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2401), - [sym_type_constraints] = STATE(3067), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5874), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), }, - [2162] = { - [sym__expression] = STATE(3946), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2141] = { + [sym__expression] = STATE(1160), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(285), }, - [2163] = { - [sym__expression] = STATE(1339), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [2142] = { + [sym__expression] = STATE(1292), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2164] = { - [sym__expression] = STATE(1528), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2165] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), - [anon_sym_fun] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_this] = ACTIONS(3075), - [anon_sym_super] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3075), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3077), - [anon_sym_continue_AT] = ACTIONS(3077), - [anon_sym_break_AT] = ACTIONS(3077), - [sym_real_literal] = ACTIONS(3077), - [sym_integer_literal] = ACTIONS(3075), - [sym_hex_literal] = ACTIONS(3077), - [sym_bin_literal] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3077), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3077), - }, - [2166] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3052), - [anon_sym_super] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3054), - [anon_sym_continue_AT] = ACTIONS(3054), - [anon_sym_break_AT] = ACTIONS(3054), - [sym_real_literal] = ACTIONS(3054), - [sym_integer_literal] = ACTIONS(3052), - [sym_hex_literal] = ACTIONS(3054), - [sym_bin_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3054), - }, - [2167] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3048), - [anon_sym_super] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_when] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_throw] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3050), - [anon_sym_continue_AT] = ACTIONS(3050), - [anon_sym_break_AT] = ACTIONS(3050), - [sym_real_literal] = ACTIONS(3050), - [sym_integer_literal] = ACTIONS(3048), - [sym_hex_literal] = ACTIONS(3050), - [sym_bin_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3050), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3050), - }, - [2168] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3044), - [anon_sym_super] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_when] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_throw] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3046), - [anon_sym_continue_AT] = ACTIONS(3046), - [anon_sym_break_AT] = ACTIONS(3046), - [sym_real_literal] = ACTIONS(3046), - [sym_integer_literal] = ACTIONS(3044), - [sym_hex_literal] = ACTIONS(3046), - [sym_bin_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3046), - }, - [2169] = { - [sym_primary_constructor] = STATE(3692), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2400), - [sym_type_constraints] = STATE(3077), - [sym_enum_class_body] = STATE(3232), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5876), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), - [sym_multiline_comment] = ACTIONS(3), - }, - [2170] = { - [sym__expression] = STATE(972), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2171] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3040), - [anon_sym_super] = ACTIONS(3040), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_when] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_throw] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3042), - [anon_sym_continue_AT] = ACTIONS(3042), - [anon_sym_break_AT] = ACTIONS(3042), - [sym_real_literal] = ACTIONS(3042), - [sym_integer_literal] = ACTIONS(3040), - [sym_hex_literal] = ACTIONS(3042), - [sym_bin_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3042), - }, - [2172] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_when] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_throw] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3038), - [anon_sym_continue_AT] = ACTIONS(3038), - [anon_sym_break_AT] = ACTIONS(3038), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3038), - }, - [2173] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(4565), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), - }, - [2174] = { - [sym__expression] = STATE(1527), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2175] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_object] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3024), - [anon_sym_continue_AT] = ACTIONS(3024), - [anon_sym_break_AT] = ACTIONS(3024), - [sym_real_literal] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [sym_hex_literal] = ACTIONS(3024), - [sym_bin_literal] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3024), - }, - [2176] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_object] = ACTIONS(3011), - [anon_sym_fun] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_this] = ACTIONS(3011), - [anon_sym_super] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_when] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3013), - [anon_sym_continue_AT] = ACTIONS(3013), - [anon_sym_break_AT] = ACTIONS(3013), - [sym_real_literal] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [sym_hex_literal] = ACTIONS(3013), - [sym_bin_literal] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3013), + [sym__string_start] = ACTIONS(285), }, - [2177] = { - [sym__expression] = STATE(1423), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2178] = { - [sym__expression] = STATE(860), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [2143] = { + [sym__expression] = STATE(1291), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [2179] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2992), - [anon_sym_super] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_when] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2994), - [anon_sym_continue_AT] = ACTIONS(2994), - [anon_sym_break_AT] = ACTIONS(2994), - [sym_real_literal] = ACTIONS(2994), - [sym_integer_literal] = ACTIONS(2992), - [sym_hex_literal] = ACTIONS(2994), - [sym_bin_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2994), - }, - [2180] = { - [sym__expression] = STATE(284), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2144] = { + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -267313,380 +263886,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2181] = { - [sym_primary_constructor] = STATE(4929), - [sym_class_body] = STATE(4604), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2387), - [sym_type_constraints] = STATE(4541), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5878), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_DASH_GT] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [2182] = { - [sym__expression] = STATE(4312), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2183] = { - [sym__expression] = STATE(4240), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(5507), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5880), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2184] = { - [sym__expression] = STATE(387), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2145] = { + [sym__expression] = STATE(1510), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -267697,476 +263982,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2185] = { - [sym__expression] = STATE(386), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2146] = { + [sym__expression] = STATE(1315), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2186] = { - [sym__expression] = STATE(1336), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2147] = { + [sym__expression] = STATE(4406), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2187] = { - [sym__expression] = STATE(385), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2148] = { + [sym__expression] = STATE(4414), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [2188] = { - [sym__expression] = STATE(2386), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2149] = { + [sym__expression] = STATE(1307), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [2189] = { - [sym__expression] = STATE(384), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2150] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -268177,380 +264462,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2190] = { - [sym__expression] = STATE(2537), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2151] = { + [sym__expression] = STATE(4415), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2191] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2152] = { + [sym__expression] = STATE(4416), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2192] = { - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2153] = { + [sym__expression] = STATE(1306), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2193] = { - [sym__expression] = STATE(393), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2154] = { + [sym__expression] = STATE(4417), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2155] = { + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -268561,476 +264942,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2194] = { - [sym__expression] = STATE(2381), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2156] = { + [sym__expression] = STATE(4419), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2195] = { - [sym__expression] = STATE(394), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2157] = { + [sym__expression] = STATE(4424), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2158] = { + [sym__expression] = STATE(1279), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(1796), + [sym_annotation] = STATE(1796), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1235), + [sym_label] = ACTIONS(469), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(455), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(461), + [anon_sym_return] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [2196] = { - [sym__expression] = STATE(392), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2159] = { + [sym__expression] = STATE(1308), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2149), + [sym_annotation] = STATE(2149), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(755), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_return] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2197] = { - [sym__expression] = STATE(4391), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2160] = { + [sym__expression] = STATE(4429), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2198] = { - [sym__expression] = STATE(397), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2161] = { + [sym__expression] = STATE(4426), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2162] = { + [sym__expression] = STATE(4431), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2163] = { + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -269041,284 +265710,956 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2199] = { - [sym__expression] = STATE(4302), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2164] = { + [sym__expression] = STATE(4432), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2200] = { - [sym__expression] = STATE(396), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2165] = { + [sym__expression] = STATE(4434), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [2201] = { - [sym__expression] = STATE(381), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2166] = { + [sym__expression] = STATE(4361), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2167] = { + [sym__expression] = STATE(4433), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2168] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_object] = ACTIONS(3063), + [anon_sym_fun] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3063), + [anon_sym_super] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_null] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_when] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_throw] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3063), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3065), + [anon_sym_continue_AT] = ACTIONS(3065), + [anon_sym_break_AT] = ACTIONS(3065), + [sym_real_literal] = ACTIONS(3065), + [sym_integer_literal] = ACTIONS(3063), + [sym_hex_literal] = ACTIONS(3065), + [sym_bin_literal] = ACTIONS(3065), + [anon_sym_true] = ACTIONS(3063), + [anon_sym_false] = ACTIONS(3063), + [anon_sym_SQUOTE] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3065), + }, + [2169] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_fun] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2995), + [anon_sym_super] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_null] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_when] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2997), + [anon_sym_continue_AT] = ACTIONS(2997), + [anon_sym_break_AT] = ACTIONS(2997), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2997), + }, + [2170] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3090), + [anon_sym_fun] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_super] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3092), + [anon_sym_continue_AT] = ACTIONS(3092), + [anon_sym_break_AT] = ACTIONS(3092), + [sym_real_literal] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [sym_hex_literal] = ACTIONS(3092), + [sym_bin_literal] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3092), + }, + [2171] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_fun] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_super] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_when] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3004), + [anon_sym_continue_AT] = ACTIONS(3004), + [anon_sym_break_AT] = ACTIONS(3004), + [sym_real_literal] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [sym_hex_literal] = ACTIONS(3004), + [sym_bin_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3004), + }, + [2172] = { + [sym__expression] = STATE(4425), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(199), + }, + [2173] = { + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -269329,2087 +266670,2087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2202] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), + [2174] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3003), - [anon_sym_super] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_when] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(3043), + [anon_sym_super] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_when] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3005), - [anon_sym_continue_AT] = ACTIONS(3005), - [anon_sym_break_AT] = ACTIONS(3005), - [sym_real_literal] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [sym_hex_literal] = ACTIONS(3005), - [sym_bin_literal] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_return_AT] = ACTIONS(3045), + [anon_sym_continue_AT] = ACTIONS(3045), + [anon_sym_break_AT] = ACTIONS(3045), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3045), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3005), + [sym__string_start] = ACTIONS(3045), }, - [2203] = { - [sym__expression] = STATE(4221), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [2175] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_object] = ACTIONS(3013), + [anon_sym_fun] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_super] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_when] = ACTIONS(3013), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3015), + [anon_sym_continue_AT] = ACTIONS(3015), + [anon_sym_break_AT] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [sym_hex_literal] = ACTIONS(3015), + [sym_bin_literal] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(3015), }, - [2204] = { - [sym__expression] = STATE(2380), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2176] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(2990), }, - [2205] = { - [sym__expression] = STATE(859), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2177] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2206] = { - [sym__expression] = STATE(4413), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2178] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_fun] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_super] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_when] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3008), + [anon_sym_continue_AT] = ACTIONS(3008), + [anon_sym_break_AT] = ACTIONS(3008), + [sym_real_literal] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [sym_hex_literal] = ACTIONS(3008), + [sym_bin_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3008), + }, + [2179] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_object] = ACTIONS(3017), + [anon_sym_fun] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_super] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_when] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3019), + [anon_sym_continue_AT] = ACTIONS(3019), + [anon_sym_break_AT] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [sym_hex_literal] = ACTIONS(3019), + [sym_bin_literal] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3019), + }, + [2180] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2207] = { - [sym__expression] = STATE(1526), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [sym__string_start] = ACTIONS(199), }, - [2208] = { - [sym__expression] = STATE(4256), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2181] = { + [sym__expression] = STATE(4376), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2209] = { - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [2182] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_object] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_when] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3026), + [anon_sym_continue_AT] = ACTIONS(3026), + [anon_sym_break_AT] = ACTIONS(3026), + [sym_real_literal] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [sym_hex_literal] = ACTIONS(3026), + [sym_bin_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(4557), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3026), }, - [2210] = { - [sym__expression] = STATE(4254), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2183] = { + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5882), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2211] = { - [sym__expression] = STATE(2379), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2184] = { + [sym_primary_constructor] = STATE(4950), + [sym_class_body] = STATE(4657), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2369), + [sym_type_constraints] = STATE(4565), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5903), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_DASH_GT] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), }, - [2212] = { - [sym__expression] = STATE(4373), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2185] = { + [sym__expression] = STATE(4372), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2213] = { - [sym__expression] = STATE(4173), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2186] = { + [sym__expression] = STATE(4366), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2214] = { - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2215] = { - [sym__expression] = STATE(4407), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2187] = { + [sym__expression] = STATE(4364), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2216] = { - [sym__expression] = STATE(2202), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2188] = { + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2189] = { + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), }, - [2217] = { - [sym__expression] = STATE(866), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2190] = { + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2191] = { + [sym__expression] = STATE(4358), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2218] = { - [sym__expression] = STATE(837), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(1711), - [sym_annotation] = STATE(1711), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2192] = { + [sym__expression] = STATE(4345), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1085), - [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2219] = { - [sym__expression] = STATE(2378), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2220] = { - [sym__expression] = STATE(4401), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2193] = { + [sym__expression] = STATE(4354), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2221] = { - [sym__expression] = STATE(3938), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2194] = { + [sym__expression] = STATE(956), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [2222] = { - [sym__expression] = STATE(4399), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2223] = { - [sym_type_constraints] = STATE(2434), - [sym_property_delegate] = STATE(2587), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5886), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2195] = { + [sym_type_constraints] = STATE(2430), + [sym_property_delegate] = STATE(2621), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -271433,379 +268774,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [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), - }, - [2224] = { - [sym__expression] = STATE(4393), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2225] = { - [sym__expression] = STATE(4223), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), }, - [2226] = { - [sym__expression] = STATE(4349), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2196] = { + [sym__expression] = STATE(2016), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2073), + [sym_annotation] = STATE(2073), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(379), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(995), + [sym_label] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2227] = { - [sym__expression] = STATE(3939), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2197] = { + [sym__expression] = STATE(4214), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [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(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -271814,7 +268963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -271825,1126 +268974,1798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2228] = { - [sym__expression] = STATE(4344), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2198] = { + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2229] = { - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2199] = { + [sym__expression] = STATE(746), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2200] = { + [sym__expression] = STATE(714), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2201] = { + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2202] = { + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2203] = { + [sym__expression] = STATE(3907), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), + }, + [2204] = { + [sym__expression] = STATE(1184), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2205] = { + [sym__expression] = STATE(946), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), + }, + [2206] = { + [sym__expression] = STATE(520), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2230] = { - [sym__expression] = STATE(4251), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2207] = { + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(615), }, - [2231] = { - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2208] = { + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2232] = { - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2209] = { + [sym__expression] = STATE(321), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2233] = { - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2210] = { + [sym__expression] = STATE(531), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2234] = { - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2211] = { + [sym__expression] = STATE(533), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2235] = { - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2212] = { + [sym__expression] = STATE(536), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2236] = { - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2213] = { + [sym__expression] = STATE(537), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2237] = { - [sym__expression] = STATE(900), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [2238] = { - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), + [2214] = { + [sym__expression] = STATE(539), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), [anon_sym_get] = ACTIONS(333), [anon_sym_set] = ACTIONS(333), [anon_sym_this] = ACTIONS(357), [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), [anon_sym_when] = ACTIONS(375), [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), [anon_sym_continue] = ACTIONS(383), [anon_sym_break] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), [anon_sym_data] = ACTIONS(333), [anon_sym_inner] = ACTIONS(333), [anon_sym_expect] = ACTIONS(333), [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2215] = { + [sym__expression] = STATE(1019), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), }, - [2239] = { - [sym__expression] = STATE(3947), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2216] = { + [sym__expression] = STATE(3929), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -272953,11 +270774,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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -272966,7 +270787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -272977,550 +270798,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2240] = { - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2217] = { + [sym__expression] = STATE(1479), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2241] = { - [sym_primary_constructor] = STATE(5044), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2377), - [sym_type_constraints] = STATE(4513), - [sym_enum_class_body] = STATE(4750), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5888), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [2242] = { - [sym__expression] = STATE(291), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2218] = { + [sym__expression] = STATE(3928), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [2243] = { - [sym__expression] = STATE(4378), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2219] = { + [sym__expression] = STATE(3927), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [2244] = { - [sym__expression] = STATE(4337), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2220] = { + [sym__expression] = STATE(3926), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [2245] = { - [sym__expression] = STATE(3940), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2221] = { + [sym__expression] = STATE(2424), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2222] = { + [sym__expression] = STATE(3925), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -273529,11 +271350,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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -273542,7 +271363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -273553,380 +271374,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2246] = { - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2223] = { + [sym__expression] = STATE(3924), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [2247] = { - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2224] = { + [sym__expression] = STATE(3923), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), - }, - [2248] = { - [sym__expression] = STATE(2375), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [2249] = { - [sym__expression] = STATE(290), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2225] = { + [sym__expression] = STATE(1506), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2042), + [sym_annotation] = STATE(2042), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(368), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(3051), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(965), + [sym_label] = ACTIONS(975), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(3053), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3057), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -273937,1340 +271662,1628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2250] = { - [sym__expression] = STATE(2406), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2226] = { + [sym__expression] = STATE(2414), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1658), [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2251] = { - [sym__expression] = STATE(2367), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2227] = { + [sym__expression] = STATE(2429), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1658), [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2252] = { - [sym__expression] = STATE(2068), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2228] = { + [sym__expression] = STATE(3922), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2253] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3084), - [anon_sym_continue_AT] = ACTIONS(3084), - [anon_sym_break_AT] = ACTIONS(3084), - [sym_real_literal] = ACTIONS(3084), - [sym_integer_literal] = ACTIONS(3082), - [sym_hex_literal] = ACTIONS(3084), - [sym_bin_literal] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3084), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(4565), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3084), - }, - [2254] = { - [sym__expression] = STATE(315), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [2229] = { + [sym__expression] = STATE(2427), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [2255] = { - [sym__expression] = STATE(1484), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(1868), - [sym_annotation] = STATE(1868), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2230] = { + [sym__expression] = STATE(3920), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(965), - [sym_label] = ACTIONS(975), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2256] = { - [sym__expression] = STATE(2423), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2231] = { + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [2257] = { - [sym__expression] = STATE(2144), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2070), - [sym_annotation] = STATE(2070), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(401), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2232] = { + [sym__expression] = STATE(3915), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1111), - [sym_label] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2258] = { - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(3399), - [sym_postfix_expression] = STATE(3399), - [sym_call_expression] = STATE(3399), - [sym_indexing_expression] = STATE(3399), - [sym_navigation_expression] = STATE(3399), - [sym_prefix_expression] = STATE(3399), - [sym_as_expression] = STATE(3399), - [sym_spread_expression] = STATE(3399), - [sym__binary_expression] = STATE(3399), - [sym_multiplicative_expression] = STATE(3399), - [sym_additive_expression] = STATE(3399), - [sym_range_expression] = STATE(3399), - [sym_infix_expression] = STATE(3399), - [sym_elvis_expression] = STATE(3399), - [sym_check_expression] = STATE(3399), - [sym_comparison_expression] = STATE(3399), - [sym_equality_expression] = STATE(3399), - [sym_conjunction_expression] = STATE(3399), - [sym_disjunction_expression] = STATE(3399), - [sym__primary_expression] = STATE(3399), - [sym_parenthesized_expression] = STATE(3399), - [sym_collection_literal] = STATE(3399), - [sym__literal_constant] = STATE(3399), - [sym_string_literal] = STATE(3399), - [sym_lambda_literal] = STATE(3399), - [sym_anonymous_function] = STATE(3399), - [sym__function_literal] = STATE(3399), - [sym_object_literal] = STATE(3399), - [sym_this_expression] = STATE(3399), - [sym_super_expression] = STATE(3399), - [sym_if_expression] = STATE(3399), - [sym_when_expression] = STATE(3399), - [sym_try_expression] = STATE(3399), - [sym_jump_expression] = STATE(3399), - [sym_callable_reference] = STATE(3399), - [sym__prefix_unary_operator] = STATE(2247), - [sym_annotation] = STATE(2247), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3347), - [sym__return_at] = STATE(317), - [sym__continue_at] = STATE(3376), - [sym__break_at] = STATE(3376), - [sym_unsigned_literal] = STATE(3399), - [sym_long_literal] = STATE(3399), - [sym_boolean_literal] = STATE(3399), - [sym_character_literal] = STATE(3399), - [sym__lexical_identifier] = STATE(2837), - [sym__alpha_identifier] = ACTIONS(333), + [2233] = { + [sym__expression] = STATE(1349), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2234] = { + [sym__expression] = STATE(4203), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1712), + [sym_annotation] = STATE(1712), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_object] = ACTIONS(1920), - [anon_sym_fun] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [anon_sym_this] = ACTIONS(357), - [anon_sym_super] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(1273), - [sym_label] = ACTIONS(709), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(703), - [anon_sym_when] = ACTIONS(375), - [anon_sym_try] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_return] = ACTIONS(707), - [anon_sym_continue] = ACTIONS(383), - [anon_sym_break] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_data] = ACTIONS(333), - [anon_sym_inner] = ACTIONS(333), - [anon_sym_expect] = ACTIONS(333), - [anon_sym_actual] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3116), + [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(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(395), - [anon_sym_break_AT] = ACTIONS(397), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(401), - [sym_hex_literal] = ACTIONS(403), - [sym_bin_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(407), - [sym__backtick_identifier] = ACTIONS(409), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(411), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2259] = { - [sym__expression] = STATE(889), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2235] = { + [sym__expression] = STATE(3951), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2203), + [sym_annotation] = STATE(2203), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1329), + [sym_label] = ACTIONS(729), + [anon_sym_null] = ACTIONS(1868), + [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(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(109), }, - [2260] = { - [sym__expression] = STATE(4364), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2236] = { + [sym__expression] = STATE(3085), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1656), + [sym_annotation] = STATE(1656), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(295), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_fun] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), [sym_label] = ACTIONS(327), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(321), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), [anon_sym_PLUS] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(327), [anon_sym_PLUS_PLUS] = ACTIONS(329), [anon_sym_DASH_DASH] = ACTIONS(329), [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2261] = { - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2237] = { + [sym__expression] = STATE(2426), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2238] = { + [sym__expression] = STATE(2422), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2239] = { + [sym__expression] = STATE(4182), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2262] = { - [sym__expression] = STATE(4363), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2240] = { + [sym__expression] = STATE(4168), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2263] = { - [sym__expression] = STATE(325), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2241] = { + [sym__expression] = STATE(2419), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2242] = { + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -275281,5555 +273294,6035 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2264] = { - [sym__expression] = STATE(4183), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2243] = { + [sym__expression] = STATE(4173), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2265] = { - [sym__expression] = STATE(4426), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2244] = { + [sym_primary_constructor] = STATE(4930), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2410), + [sym_type_constraints] = STATE(4557), + [sym_enum_class_body] = STATE(4637), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2245] = { + [sym__expression] = STATE(2418), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2246] = { + [sym__expression] = STATE(2413), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2247] = { + [sym__expression] = STATE(2412), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2248] = { + [sym__expression] = STATE(2411), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2249] = { + [sym__expression] = STATE(4180), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2266] = { - [sym__expression] = STATE(2541), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2250] = { + [sym__expression] = STATE(4167), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2267] = { - [sym__expression] = STATE(882), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2251] = { + [sym__expression] = STATE(4184), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2268] = { - [sym__expression] = STATE(2542), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2252] = { + [sym__expression] = STATE(4169), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2269] = { - [sym__expression] = STATE(4354), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2253] = { + [sym__expression] = STATE(4170), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2270] = { - [sym__expression] = STATE(881), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2254] = { + [sym__expression] = STATE(4172), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2271] = { - [sym__expression] = STATE(2543), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2255] = { + [sym__expression] = STATE(2389), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2256] = { + [sym__expression] = STATE(4174), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2272] = { - [sym__expression] = STATE(933), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2257] = { + [sym__expression] = STATE(4175), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2273] = { - [sym__expression] = STATE(2545), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2258] = { + [sym__expression] = STATE(2390), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2259] = { + [sym__expression] = STATE(4166), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2274] = { - [sym__expression] = STATE(879), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), + [2260] = { + [sym__expression] = STATE(4181), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2275] = { - [sym__expression] = STATE(4213), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2261] = { + [sym__expression] = STATE(4037), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2276] = { - [sym__expression] = STATE(2497), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2262] = { + [sym__expression] = STATE(2537), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1674), [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2277] = { - [sym__expression] = STATE(4314), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2263] = { + [sym__expression] = STATE(4187), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(3098), [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2278] = { - [sym__expression] = STATE(2548), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2264] = { + [sym__expression] = STATE(2560), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1674), [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2279] = { - [sym__expression] = STATE(330), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [2265] = { + [sym__expression] = STATE(543), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(1682), [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [2280] = { - [sym__expression] = STATE(4368), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2266] = { + [sym__expression] = STATE(544), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2281] = { - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2267] = { + [sym__expression] = STATE(518), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [2282] = { - [sym__expression] = STATE(3943), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2268] = { + [sym__expression] = STATE(374), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [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(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(413), }, - [2283] = { - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2269] = { + [sym__expression] = STATE(2387), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2270] = { + [sym__expression] = STATE(4373), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2243), + [sym_annotation] = STATE(2243), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(377), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(3094), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1021), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2284] = { - [sym__expression] = STATE(2554), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2285] = { - [sym__expression] = STATE(3564), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1801), - [sym_annotation] = STATE(1801), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2271] = { + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(1861), + [sym_annotation] = STATE(1861), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1904), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1223), - [sym_label] = ACTIONS(449), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(443), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_return] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_data] = ACTIONS(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), - }, - [2286] = { - [sym__expression] = STATE(2555), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), - }, - [2287] = { - [sym__expression] = STATE(2556), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1313), + [sym_label] = ACTIONS(387), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(373), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(389), + [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [2288] = { - [sym__expression] = STATE(2558), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), + [2272] = { + [sym__expression] = STATE(2561), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), [anon_sym_throw] = ACTIONS(1674), [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2289] = { - [sym__expression] = STATE(1326), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2261), - [sym_annotation] = STATE(2261), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2273] = { + [sym__expression] = STATE(4276), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(1253), - [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(671), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_return] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(679), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2290] = { - [sym__expression] = STATE(329), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [2274] = { + [sym__expression] = STATE(529), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(1682), [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2275] = { + [sym__expression] = STATE(1393), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [2291] = { - [sym__expression] = STATE(4038), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2276] = { + [sym__expression] = STATE(1477), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2277] = { + [sym__expression] = STATE(4272), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2292] = { - [sym__expression] = STATE(1355), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2278] = { + [sym__expression] = STATE(4258), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(5495), + [sym__return_at] = STATE(331), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(5909), + [sym_label] = ACTIONS(853), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(199), }, - [2293] = { - [sym__expression] = STATE(473), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2279] = { + [sym__expression] = STATE(1423), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2294] = { - [sym__expression] = STATE(4194), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), - [sym__alpha_identifier] = ACTIONS(7), + [2280] = { + [sym__expression] = STATE(1475), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(7), - [anon_sym_set] = ACTIONS(7), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), - [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(7), - [anon_sym_inner] = ACTIONS(7), - [anon_sym_expect] = ACTIONS(7), - [anon_sym_actual] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(99), - [sym_hex_literal] = ACTIONS(101), - [sym_bin_literal] = ACTIONS(101), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(105), - [sym__backtick_identifier] = ACTIONS(107), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(109), + [sym__string_start] = ACTIONS(285), }, - [2295] = { - [sym__expression] = STATE(1444), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [2281] = { + [sym__expression] = STATE(1474), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1642), [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [2296] = { - [sym__expression] = STATE(2517), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2282] = { + [sym__expression] = STATE(1473), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [2297] = { - [sym__expression] = STATE(1373), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(1786), - [sym_annotation] = STATE(1786), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1279), - [sym_label] = ACTIONS(767), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(761), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(763), - [anon_sym_return] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2283] = { + [sym__expression] = STATE(1472), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(285), }, - [2298] = { - [sym__expression] = STATE(4402), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2284] = { + [sym__expression] = STATE(1470), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2299] = { - [sym__expression] = STATE(4404), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2285] = { + [sym__expression] = STATE(1469), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2300] = { - [sym__expression] = STATE(477), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2286] = { + [sym__expression] = STATE(1468), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2301] = { - [sym__expression] = STATE(476), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2287] = { + [sym__expression] = STATE(1131), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2302] = { - [sym__expression] = STATE(1454), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [2288] = { + [sym__expression] = STATE(743), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1642), [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [2303] = { - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2289] = { + [sym__expression] = STATE(740), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2304] = { - [sym__expression] = STATE(4235), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2290] = { + [sym__expression] = STATE(1467), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), + }, + [2291] = { + [sym__expression] = STATE(538), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2292] = { + [sym__expression] = STATE(4278), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(5890), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2305] = { - [sym__expression] = STATE(1518), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2293] = { + [sym__expression] = STATE(3884), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2306] = { - [sym__expression] = STATE(1478), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2294] = { + [sym__expression] = STATE(3773), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2307] = { - [sym__expression] = STATE(4233), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), + [2295] = { + [sym__expression] = STATE(3977), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(1665), + [sym_annotation] = STATE(1665), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(845), + [sym_label] = ACTIONS(853), [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), [anon_sym_throw] = ACTIONS(2024), [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2308] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2296] = { + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [2309] = { - [sym__expression] = STATE(1490), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2297] = { + [sym__expression] = STATE(3881), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2310] = { - [sym__expression] = STATE(4216), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2311] = { - [sym__expression] = STATE(474), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2298] = { + [sym__expression] = STATE(541), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [2312] = { - [sym__expression] = STATE(1491), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2299] = { + [sym__expression] = STATE(3875), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2313] = { - [sym__expression] = STATE(472), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [2314] = { - [sym__expression] = STATE(1492), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2300] = { + [sym__expression] = STATE(3867), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2315] = { - [sym__expression] = STATE(471), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [2316] = { - [sym__expression] = STATE(294), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [2317] = { - [sym__expression] = STATE(466), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2301] = { + [sym__expression] = STATE(1460), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2318] = { - [sym__expression] = STATE(1498), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2302] = { + [sym__expression] = STATE(3865), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2319] = { - [sym__expression] = STATE(4180), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2303] = { + [sym__expression] = STATE(3860), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2320] = { - [sym__expression] = STATE(1499), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2304] = { + [sym__expression] = STATE(3857), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2321] = { - [sym__expression] = STATE(4204), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1926), - [sym_annotation] = STATE(1926), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(399), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2305] = { + [sym__expression] = STATE(3613), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), [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(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -280838,7 +279331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -280849,572 +279342,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2322] = { - [sym__expression] = STATE(1500), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2323] = { - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2324] = { - [sym__expression] = STATE(4416), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2325] = { - [sym__expression] = STATE(4340), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2306] = { + [sym__expression] = STATE(3550), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(1810), + [sym_annotation] = STATE(1810), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2326] = { - [sym_type_constraints] = STATE(2483), - [sym_property_delegate] = STATE(2566), - [sym_getter] = STATE(4989), - [sym_setter] = STATE(4989), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5892), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5894), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(3230), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_PLUS_EQ] = ACTIONS(3234), - [anon_sym_DASH_EQ] = ACTIONS(3234), - [anon_sym_STAR_EQ] = ACTIONS(3234), - [anon_sym_SLASH_EQ] = ACTIONS(3234), - [anon_sym_PERCENT_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3230), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1213), + [sym_label] = ACTIONS(531), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(525), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(527), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(109), }, - [2327] = { - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), + [2307] = { + [sym__expression] = STATE(944), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(1947), + [sym_annotation] = STATE(1947), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), [sym__alpha_identifier] = ACTIONS(537), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1934), [anon_sym_get] = ACTIONS(537), [anon_sym_set] = ACTIONS(537), [anon_sym_this] = ACTIONS(561), [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1277), + [sym_label] = ACTIONS(591), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(577), [anon_sym_when] = ACTIONS(579), [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_return] = ACTIONS(585), [anon_sym_continue] = ACTIONS(587), [anon_sym_break] = ACTIONS(587), [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), [anon_sym_data] = ACTIONS(537), [anon_sym_inner] = ACTIONS(537), [anon_sym_expect] = ACTIONS(537), [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), + [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(599), [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), + [sym_real_literal] = ACTIONS(1938), [sym_integer_literal] = ACTIONS(605), [sym_hex_literal] = ACTIONS(607), [sym_bin_literal] = ACTIONS(607), @@ -281425,3251 +279534,2675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(615), }, - [2328] = { - [sym__expression] = STATE(463), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2308] = { + [sym__expression] = STATE(3855), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(199), }, - [2329] = { - [sym__expression] = STATE(4411), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2309] = { + [sym__expression] = STATE(3847), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2330] = { - [sym__expression] = STATE(2418), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2143), - [sym_annotation] = STATE(2143), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1654), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(873), - [sym_label] = ACTIONS(883), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), - [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [2310] = { + [sym__expression] = STATE(1359), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(493), }, - [2331] = { - [sym__expression] = STATE(4188), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2311] = { + [sym__expression] = STATE(3846), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2332] = { - [sym__expression] = STATE(4338), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2312] = { + [sym__expression] = STATE(739), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2333] = { - [sym__expression] = STATE(4187), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2313] = { + [sym__expression] = STATE(738), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2334] = { - [sym__expression] = STATE(2510), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [2314] = { + [sym__expression] = STATE(314), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [2335] = { - [sym__expression] = STATE(4406), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2315] = { + [sym__expression] = STATE(3845), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2336] = { - [sym__expression] = STATE(461), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2316] = { + [sym__expression] = STATE(315), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), + }, + [2317] = { + [sym__expression] = STATE(1363), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [2337] = { - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2338] = { - [sym__expression] = STATE(4329), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [2339] = { - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2318] = { + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(199), }, - [2340] = { - [sym__expression] = STATE(468), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2319] = { + [sym__expression] = STATE(316), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [2341] = { - [sym__expression] = STATE(4405), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2342] = { - [sym__expression] = STATE(4367), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), - }, - [2343] = { - [sym__expression] = STATE(4319), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2344] = { - [sym__expression] = STATE(4392), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2320] = { + [sym__expression] = STATE(3756), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), + [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), + [anon_sym_fun] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_data] = ACTIONS(111), + [anon_sym_inner] = ACTIONS(111), + [anon_sym_expect] = ACTIONS(111), + [anon_sym_actual] = ACTIONS(111), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2345] = { - [sym__expression] = STATE(1487), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), + [2321] = { + [sym__expression] = STATE(1483), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), - [sym__alpha_identifier] = ACTIONS(111), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), [anon_sym_fun] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), [anon_sym_throw] = ACTIONS(1642), [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_data] = ACTIONS(111), - [anon_sym_inner] = ACTIONS(111), - [anon_sym_expect] = ACTIONS(111), - [anon_sym_actual] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), + [sym__string_start] = ACTIONS(285), }, - [2346] = { - [sym__expression] = STATE(4403), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2322] = { + [sym__expression] = STATE(317), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2347] = { - [sym__expression] = STATE(4328), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [2323] = { + [sym__expression] = STATE(1362), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [2348] = { - [sym__expression] = STATE(467), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2340), - [sym_annotation] = STATE(2340), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2324] = { + [sym__expression] = STATE(4154), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(905), - [sym_label] = ACTIONS(915), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(109), }, - [2349] = { - [sym__expression] = STATE(1489), - [sym__unary_expression] = STATE(3393), - [sym_postfix_expression] = STATE(3393), - [sym_call_expression] = STATE(3393), - [sym_indexing_expression] = STATE(3393), - [sym_navigation_expression] = STATE(3393), - [sym_prefix_expression] = STATE(3393), - [sym_as_expression] = STATE(3393), - [sym_spread_expression] = STATE(3393), - [sym__binary_expression] = STATE(3393), - [sym_multiplicative_expression] = STATE(3393), - [sym_additive_expression] = STATE(3393), - [sym_range_expression] = STATE(3393), - [sym_infix_expression] = STATE(3393), - [sym_elvis_expression] = STATE(3393), - [sym_check_expression] = STATE(3393), - [sym_comparison_expression] = STATE(3393), - [sym_equality_expression] = STATE(3393), - [sym_conjunction_expression] = STATE(3393), - [sym_disjunction_expression] = STATE(3393), - [sym__primary_expression] = STATE(3393), - [sym_parenthesized_expression] = STATE(3393), - [sym_collection_literal] = STATE(3393), - [sym__literal_constant] = STATE(3393), - [sym_string_literal] = STATE(3393), - [sym_lambda_literal] = STATE(3393), - [sym_anonymous_function] = STATE(3393), - [sym__function_literal] = STATE(3393), - [sym_object_literal] = STATE(3393), - [sym_this_expression] = STATE(3393), - [sym_super_expression] = STATE(3393), - [sym_if_expression] = STATE(3393), - [sym_when_expression] = STATE(3393), - [sym_try_expression] = STATE(3393), - [sym_jump_expression] = STATE(3393), - [sym_callable_reference] = STATE(3393), - [sym__prefix_unary_operator] = STATE(2339), - [sym_annotation] = STATE(2339), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3390), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3401), - [sym__break_at] = STATE(3401), - [sym_unsigned_literal] = STATE(3393), - [sym_long_literal] = STATE(3393), - [sym_boolean_literal] = STATE(3393), - [sym_character_literal] = STATE(3393), - [sym__lexical_identifier] = STATE(2858), + [2325] = { + [sym__expression] = STATE(3748), + [sym__unary_expression] = STATE(4750), + [sym_postfix_expression] = STATE(4750), + [sym_call_expression] = STATE(4750), + [sym_indexing_expression] = STATE(4750), + [sym_navigation_expression] = STATE(4750), + [sym_prefix_expression] = STATE(4750), + [sym_as_expression] = STATE(4750), + [sym_spread_expression] = STATE(4750), + [sym__binary_expression] = STATE(4750), + [sym_multiplicative_expression] = STATE(4750), + [sym_additive_expression] = STATE(4750), + [sym_range_expression] = STATE(4750), + [sym_infix_expression] = STATE(4750), + [sym_elvis_expression] = STATE(4750), + [sym_check_expression] = STATE(4750), + [sym_comparison_expression] = STATE(4750), + [sym_equality_expression] = STATE(4750), + [sym_conjunction_expression] = STATE(4750), + [sym_disjunction_expression] = STATE(4750), + [sym__primary_expression] = STATE(4750), + [sym_parenthesized_expression] = STATE(4750), + [sym_collection_literal] = STATE(4750), + [sym__literal_constant] = STATE(4750), + [sym_string_literal] = STATE(4750), + [sym_lambda_literal] = STATE(4750), + [sym_anonymous_function] = STATE(4750), + [sym__function_literal] = STATE(4750), + [sym_object_literal] = STATE(4750), + [sym_this_expression] = STATE(4750), + [sym_super_expression] = STATE(4750), + [sym_if_expression] = STATE(4750), + [sym_when_expression] = STATE(4750), + [sym_try_expression] = STATE(4750), + [sym_jump_expression] = STATE(4750), + [sym_callable_reference] = STATE(4750), + [sym__prefix_unary_operator] = STATE(2318), + [sym_annotation] = STATE(2318), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4587), + [sym__return_at] = STATE(310), + [sym__continue_at] = STATE(4753), + [sym__break_at] = STATE(4753), + [sym_unsigned_literal] = STATE(4750), + [sym_long_literal] = STATE(4750), + [sym_boolean_literal] = STATE(4750), + [sym_character_literal] = STATE(4750), + [sym__lexical_identifier] = STATE(4459), [sym__alpha_identifier] = ACTIONS(111), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1854), [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_object] = ACTIONS(1405), - [anon_sym_fun] = ACTIONS(1638), + [anon_sym_object] = ACTIONS(1856), + [anon_sym_fun] = ACTIONS(1940), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_this] = ACTIONS(141), - [anon_sym_super] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(841), - [sym_label] = ACTIONS(851), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(159), - [anon_sym_try] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_break] = ACTIONS(167), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1323), + [sym_label] = ACTIONS(639), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(159), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(165), + [anon_sym_return] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), [anon_sym_data] = ACTIONS(111), [anon_sym_inner] = ACTIONS(111), [anon_sym_expect] = ACTIONS(111), [anon_sym_actual] = ACTIONS(111), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(179), - [anon_sym_continue_AT] = ACTIONS(181), - [anon_sym_break_AT] = ACTIONS(183), - [sym_real_literal] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(187), - [sym_hex_literal] = ACTIONS(189), - [sym_bin_literal] = ACTIONS(189), - [anon_sym_true] = ACTIONS(191), - [anon_sym_false] = ACTIONS(191), - [anon_sym_SQUOTE] = ACTIONS(193), - [sym__backtick_identifier] = ACTIONS(195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(197), - }, - [2350] = { - [sym__expression] = STATE(4342), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(189), + [sym_hex_literal] = ACTIONS(191), + [sym_bin_literal] = ACTIONS(191), + [anon_sym_true] = ACTIONS(193), + [anon_sym_false] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [sym__backtick_identifier] = ACTIONS(197), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(199), }, - [2351] = { - [sym__expression] = STATE(4323), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2326] = { + [sym__expression] = STATE(2482), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2352] = { - [sym__expression] = STATE(4320), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2327] = { + [sym__expression] = STATE(319), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1678), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2353] = { - [sym__expression] = STATE(4224), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2328] = { + [sym__expression] = STATE(4147), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_get] = ACTIONS(7), + [anon_sym_set] = ACTIONS(7), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_data] = ACTIONS(7), + [anon_sym_inner] = ACTIONS(7), + [anon_sym_expect] = ACTIONS(7), + [anon_sym_actual] = ACTIONS(7), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(99), + [sym_hex_literal] = ACTIONS(101), + [sym_bin_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SQUOTE] = ACTIONS(105), + [sym__backtick_identifier] = ACTIONS(107), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(109), }, - [2354] = { - [sym__expression] = STATE(292), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), + [2329] = { + [sym__expression] = STATE(2386), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2255), + [sym_annotation] = STATE(2255), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), + [anon_sym_fun] = ACTIONS(1654), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(933), + [sym_label] = ACTIONS(943), [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(493), }, - [2355] = { - [sym__expression] = STATE(4398), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [2330] = { + [sym__expression] = STATE(959), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(493), }, - [2356] = { - [sym__expression] = STATE(327), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [2331] = { + [sym__expression] = STATE(311), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2291), + [sym_annotation] = STATE(2291), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1628), [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), [anon_sym_throw] = ACTIONS(1682), [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(413), }, - [2357] = { - [sym__expression] = STATE(4397), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2332] = { + [sym__expression] = STATE(1119), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(285), }, - [2358] = { - [sym__expression] = STATE(322), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2117), - [sym_annotation] = STATE(2117), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [2333] = { + [sym__expression] = STATE(1471), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(2301), + [sym_annotation] = STATE(2301), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), - [anon_sym_fun] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(995), - [sym_label] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(813), + [sym_label] = ACTIONS(823), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), + [sym__string_start] = ACTIONS(285), }, - [2359] = { - [sym__expression] = STATE(293), - [sym__unary_expression] = STATE(1108), - [sym_postfix_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_indexing_expression] = STATE(1108), - [sym_navigation_expression] = STATE(1108), - [sym_prefix_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_spread_expression] = STATE(1108), - [sym__binary_expression] = STATE(1108), - [sym_multiplicative_expression] = STATE(1108), - [sym_additive_expression] = STATE(1108), - [sym_range_expression] = STATE(1108), - [sym_infix_expression] = STATE(1108), - [sym_elvis_expression] = STATE(1108), - [sym_check_expression] = STATE(1108), - [sym_comparison_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_conjunction_expression] = STATE(1108), - [sym_disjunction_expression] = STATE(1108), - [sym__primary_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_collection_literal] = STATE(1108), - [sym__literal_constant] = STATE(1108), - [sym_string_literal] = STATE(1108), - [sym_lambda_literal] = STATE(1108), - [sym_anonymous_function] = STATE(1108), - [sym__function_literal] = STATE(1108), - [sym_object_literal] = STATE(1108), - [sym_this_expression] = STATE(1108), - [sym_super_expression] = STATE(1108), - [sym_if_expression] = STATE(1108), - [sym_when_expression] = STATE(1108), - [sym_try_expression] = STATE(1108), - [sym_jump_expression] = STATE(1108), - [sym_callable_reference] = STATE(1108), - [sym__prefix_unary_operator] = STATE(2198), - [sym_annotation] = STATE(2198), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(1091), + [2334] = { + [sym__expression] = STATE(289), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1114), - [sym__break_at] = STATE(1114), - [sym_unsigned_literal] = STATE(1108), - [sym_long_literal] = STATE(1108), - [sym_boolean_literal] = STATE(1108), - [sym_character_literal] = STATE(1108), - [sym__lexical_identifier] = STATE(843), - [sym__alpha_identifier] = ACTIONS(537), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), [anon_sym_fun] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - [anon_sym_this] = ACTIONS(561), - [anon_sym_super] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1259), - [sym_label] = ACTIONS(645), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(639), - [anon_sym_when] = ACTIONS(579), - [anon_sym_try] = ACTIONS(581), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_data] = ACTIONS(537), - [anon_sym_inner] = ACTIONS(537), - [anon_sym_expect] = ACTIONS(537), - [anon_sym_actual] = ACTIONS(537), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(599), - [anon_sym_break_AT] = ACTIONS(601), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(605), - [sym_hex_literal] = ACTIONS(607), - [sym_bin_literal] = ACTIONS(607), - [anon_sym_true] = ACTIONS(609), - [anon_sym_false] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(611), - [sym__backtick_identifier] = ACTIONS(613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(615), - }, - [2360] = { - [sym__expression] = STATE(4252), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1897), - [sym_annotation] = STATE(1897), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(331), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(2020), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(813), - [sym_label] = ACTIONS(821), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2361] = { - [sym__expression] = STATE(3941), - [sym__unary_expression] = STATE(4931), - [sym_postfix_expression] = STATE(4931), - [sym_call_expression] = STATE(4931), - [sym_indexing_expression] = STATE(4931), - [sym_navigation_expression] = STATE(4931), - [sym_prefix_expression] = STATE(4931), - [sym_as_expression] = STATE(4931), - [sym_spread_expression] = STATE(4931), - [sym__binary_expression] = STATE(4931), - [sym_multiplicative_expression] = STATE(4931), - [sym_additive_expression] = STATE(4931), - [sym_range_expression] = STATE(4931), - [sym_infix_expression] = STATE(4931), - [sym_elvis_expression] = STATE(4931), - [sym_check_expression] = STATE(4931), - [sym_comparison_expression] = STATE(4931), - [sym_equality_expression] = STATE(4931), - [sym_conjunction_expression] = STATE(4931), - [sym_disjunction_expression] = STATE(4931), - [sym__primary_expression] = STATE(4931), - [sym_parenthesized_expression] = STATE(4931), - [sym_collection_literal] = STATE(4931), - [sym__literal_constant] = STATE(4931), - [sym_string_literal] = STATE(4931), - [sym_lambda_literal] = STATE(4931), - [sym_anonymous_function] = STATE(4931), - [sym__function_literal] = STATE(4931), - [sym_object_literal] = STATE(4931), - [sym_this_expression] = STATE(4931), - [sym_super_expression] = STATE(4931), - [sym_if_expression] = STATE(4931), - [sym_when_expression] = STATE(4931), - [sym_try_expression] = STATE(4931), - [sym_jump_expression] = STATE(4931), - [sym_callable_reference] = STATE(4931), - [sym__prefix_unary_operator] = STATE(1665), - [sym_annotation] = STATE(1665), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4928), - [sym__return_at] = STATE(314), - [sym__continue_at] = STATE(5060), - [sym__break_at] = STATE(5060), - [sym_unsigned_literal] = STATE(4931), - [sym_long_literal] = STATE(4931), - [sym_boolean_literal] = STATE(4931), - [sym_character_literal] = STATE(4931), - [sym__lexical_identifier] = STATE(4566), + [2335] = { + [sym__expression] = STATE(4140), + [sym__unary_expression] = STATE(5021), + [sym_postfix_expression] = STATE(5021), + [sym_call_expression] = STATE(5021), + [sym_indexing_expression] = STATE(5021), + [sym_navigation_expression] = STATE(5021), + [sym_prefix_expression] = STATE(5021), + [sym_as_expression] = STATE(5021), + [sym_spread_expression] = STATE(5021), + [sym__binary_expression] = STATE(5021), + [sym_multiplicative_expression] = STATE(5021), + [sym_additive_expression] = STATE(5021), + [sym_range_expression] = STATE(5021), + [sym_infix_expression] = STATE(5021), + [sym_elvis_expression] = STATE(5021), + [sym_check_expression] = STATE(5021), + [sym_comparison_expression] = STATE(5021), + [sym_equality_expression] = STATE(5021), + [sym_conjunction_expression] = STATE(5021), + [sym_disjunction_expression] = STATE(5021), + [sym__primary_expression] = STATE(5021), + [sym_parenthesized_expression] = STATE(5021), + [sym_collection_literal] = STATE(5021), + [sym__literal_constant] = STATE(5021), + [sym_string_literal] = STATE(5021), + [sym_lambda_literal] = STATE(5021), + [sym_anonymous_function] = STATE(5021), + [sym__function_literal] = STATE(5021), + [sym_object_literal] = STATE(5021), + [sym_this_expression] = STATE(5021), + [sym_super_expression] = STATE(5021), + [sym_if_expression] = STATE(5021), + [sym_when_expression] = STATE(5021), + [sym_try_expression] = STATE(5021), + [sym_jump_expression] = STATE(5021), + [sym_callable_reference] = STATE(5021), + [sym__prefix_unary_operator] = STATE(2013), + [sym_annotation] = STATE(2013), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(4938), + [sym__return_at] = STATE(364), + [sym__continue_at] = STATE(5042), + [sym__break_at] = STATE(5042), + [sym_unsigned_literal] = STATE(5021), + [sym_long_literal] = STATE(5021), + [sym_boolean_literal] = STATE(5021), + [sym_character_literal] = STATE(5021), + [sym__lexical_identifier] = STATE(4558), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1902), - [anon_sym_fun] = ACTIONS(1982), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3031), [anon_sym_get] = ACTIONS(7), [anon_sym_set] = ACTIONS(7), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1243), - [sym_label] = ACTIONS(793), - [anon_sym_null] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(905), + [sym_label] = ACTIONS(913), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(3033), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3037), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), [anon_sym_data] = ACTIONS(7), [anon_sym_inner] = ACTIONS(7), [anon_sym_expect] = ACTIONS(7), @@ -284678,7 +282211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), - [sym_real_literal] = ACTIONS(1908), + [sym_real_literal] = ACTIONS(1870), [sym_integer_literal] = ACTIONS(99), [sym_hex_literal] = ACTIONS(101), [sym_bin_literal] = ACTIONS(101), @@ -284689,1214 +282222,1319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(109), }, - [2362] = { - [sym__expression] = STATE(2516), - [sym__unary_expression] = STATE(3819), - [sym_postfix_expression] = STATE(3819), - [sym_call_expression] = STATE(3819), - [sym_indexing_expression] = STATE(3819), - [sym_navigation_expression] = STATE(3819), - [sym_prefix_expression] = STATE(3819), - [sym_as_expression] = STATE(3819), - [sym_spread_expression] = STATE(3819), - [sym__binary_expression] = STATE(3819), - [sym_multiplicative_expression] = STATE(3819), - [sym_additive_expression] = STATE(3819), - [sym_range_expression] = STATE(3819), - [sym_infix_expression] = STATE(3819), - [sym_elvis_expression] = STATE(3819), - [sym_check_expression] = STATE(3819), - [sym_comparison_expression] = STATE(3819), - [sym_equality_expression] = STATE(3819), - [sym_conjunction_expression] = STATE(3819), - [sym_disjunction_expression] = STATE(3819), - [sym__primary_expression] = STATE(3819), - [sym_parenthesized_expression] = STATE(3819), - [sym_collection_literal] = STATE(3819), - [sym__literal_constant] = STATE(3819), - [sym_string_literal] = STATE(3819), - [sym_lambda_literal] = STATE(3819), - [sym_anonymous_function] = STATE(3819), - [sym__function_literal] = STATE(3819), - [sym_object_literal] = STATE(3819), - [sym_this_expression] = STATE(3819), - [sym_super_expression] = STATE(3819), - [sym_if_expression] = STATE(3819), - [sym_when_expression] = STATE(3819), - [sym_try_expression] = STATE(3819), - [sym_jump_expression] = STATE(3819), - [sym_callable_reference] = STATE(3819), - [sym__prefix_unary_operator] = STATE(2362), - [sym_annotation] = STATE(2362), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(3836), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3764), - [sym__break_at] = STATE(3764), - [sym_unsigned_literal] = STATE(3819), - [sym_long_literal] = STATE(3819), - [sym_boolean_literal] = STATE(3819), - [sym_character_literal] = STATE(3819), - [sym__lexical_identifier] = STATE(3382), - [sym__alpha_identifier] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(457), + [2336] = { + [sym__expression] = STATE(292), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(345), [anon_sym_object] = ACTIONS(1624), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(455), - [anon_sym_set] = ACTIONS(455), - [anon_sym_this] = ACTIONS(479), - [anon_sym_super] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(1021), - [sym_label] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), [anon_sym_null] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_when] = ACTIONS(497), - [anon_sym_try] = ACTIONS(499), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_data] = ACTIONS(455), - [anon_sym_inner] = ACTIONS(455), - [anon_sym_expect] = ACTIONS(455), - [anon_sym_actual] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(517), - [anon_sym_continue_AT] = ACTIONS(519), - [anon_sym_break_AT] = ACTIONS(521), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), [sym_real_literal] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(525), - [sym_hex_literal] = ACTIONS(527), - [sym_bin_literal] = ACTIONS(527), - [anon_sym_true] = ACTIONS(529), - [anon_sym_false] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [sym__backtick_identifier] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(535), + [sym__string_start] = ACTIONS(413), }, - [2363] = { - [sym__expression] = STATE(4370), - [sym__unary_expression] = STATE(4606), - [sym_postfix_expression] = STATE(4606), - [sym_call_expression] = STATE(4606), - [sym_indexing_expression] = STATE(4606), - [sym_navigation_expression] = STATE(4606), - [sym_prefix_expression] = STATE(4606), - [sym_as_expression] = STATE(4606), - [sym_spread_expression] = STATE(4606), - [sym__binary_expression] = STATE(4606), - [sym_multiplicative_expression] = STATE(4606), - [sym_additive_expression] = STATE(4606), - [sym_range_expression] = STATE(4606), - [sym_infix_expression] = STATE(4606), - [sym_elvis_expression] = STATE(4606), - [sym_check_expression] = STATE(4606), - [sym_comparison_expression] = STATE(4606), - [sym_equality_expression] = STATE(4606), - [sym_conjunction_expression] = STATE(4606), - [sym_disjunction_expression] = STATE(4606), - [sym__primary_expression] = STATE(4606), - [sym_parenthesized_expression] = STATE(4606), - [sym_collection_literal] = STATE(4606), - [sym__literal_constant] = STATE(4606), - [sym_string_literal] = STATE(4606), - [sym_lambda_literal] = STATE(4606), - [sym_anonymous_function] = STATE(4606), - [sym__function_literal] = STATE(4606), - [sym_object_literal] = STATE(4606), - [sym_this_expression] = STATE(4606), - [sym_super_expression] = STATE(4606), - [sym_if_expression] = STATE(4606), - [sym_when_expression] = STATE(4606), - [sym_try_expression] = STATE(4606), - [sym_jump_expression] = STATE(4606), - [sym_callable_reference] = STATE(4606), - [sym__prefix_unary_operator] = STATE(1903), - [sym_annotation] = STATE(1903), - [sym__single_annotation] = STATE(3980), - [sym__multi_annotation] = STATE(3980), - [sym_simple_identifier] = STATE(4642), - [sym__return_at] = STATE(377), - [sym__continue_at] = STATE(4600), - [sym__break_at] = STATE(4600), - [sym_unsigned_literal] = STATE(4606), - [sym_long_literal] = STATE(4606), - [sym_boolean_literal] = STATE(4606), - [sym_character_literal] = STATE(4606), - [sym__lexical_identifier] = STATE(4461), - [sym__alpha_identifier] = ACTIONS(203), + [2337] = { + [sym__expression] = STATE(294), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), [anon_sym_AT] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_object] = ACTIONS(1856), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(203), - [anon_sym_set] = ACTIONS(203), - [anon_sym_this] = ACTIONS(227), - [anon_sym_super] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(1065), - [sym_label] = ACTIONS(327), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_PLUS_PLUS] = ACTIONS(329), - [anon_sym_DASH_DASH] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(329), - [anon_sym_data] = ACTIONS(203), - [anon_sym_inner] = ACTIONS(203), - [anon_sym_expect] = ACTIONS(203), - [anon_sym_actual] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(273), - [sym_hex_literal] = ACTIONS(275), - [sym_bin_literal] = ACTIONS(275), - [anon_sym_true] = ACTIONS(277), - [anon_sym_false] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(279), - [sym__backtick_identifier] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(283), + [sym__string_start] = ACTIONS(413), }, - [2364] = { - [sym_indexing_suffix] = STATE(3424), - [sym_navigation_suffix] = STATE(3423), - [sym_call_suffix] = STATE(3420), - [sym_annotated_lambda] = STATE(3419), - [sym_type_arguments] = STATE(7492), - [sym_value_arguments] = STATE(2731), - [sym_lambda_literal] = STATE(3415), - [sym__equality_operator] = STATE(2108), - [sym__comparison_operator] = STATE(2109), - [sym__in_operator] = STATE(2110), - [sym__is_operator] = STATE(6160), - [sym__additive_operator] = STATE(2111), - [sym__multiplicative_operator] = STATE(2112), - [sym__as_operator] = STATE(6161), - [sym__postfix_unary_operator] = STATE(3414), - [sym__member_access_operator] = STATE(7370), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2114), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_as] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_object] = ACTIONS(3059), - [anon_sym_fun] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(3059), - [anon_sym_super] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(5834), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(5836), - [anon_sym_DOT_DOT] = ACTIONS(5838), - [anon_sym_QMARK_COLON] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_null] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_when] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym_BANG_EQ] = ACTIONS(5846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5850), - [anon_sym_BANGin] = ACTIONS(5852), - [anon_sym_is] = ACTIONS(4575), - [anon_sym_BANGis] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5856), - [anon_sym_PERCENT] = ACTIONS(5834), - [anon_sym_as_QMARK] = ACTIONS(4581), - [anon_sym_PLUS_PLUS] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_BANG_BANG] = ACTIONS(4583), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3061), - [anon_sym_continue_AT] = ACTIONS(3061), - [anon_sym_break_AT] = ACTIONS(3061), - [sym_real_literal] = ACTIONS(3061), - [sym_integer_literal] = ACTIONS(3059), - [sym_hex_literal] = ACTIONS(3061), - [sym_bin_literal] = ACTIONS(3061), - [anon_sym_true] = ACTIONS(3059), - [anon_sym_false] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3061), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(4565), + [2338] = { + [sym__expression] = STATE(711), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3061), + [sym__string_start] = ACTIONS(493), }, - [2365] = { - [sym_type_constraints] = STATE(2463), - [sym_property_delegate] = STATE(2675), - [sym_getter] = STATE(4567), - [sym_setter] = STATE(4567), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_RBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5896), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5900), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_DASH_GT] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [2339] = { + [sym__expression] = STATE(1397), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2366] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), - [sym_safe_nav] = ACTIONS(3598), + [2340] = { + [sym__expression] = STATE(712), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2367] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3598), + [2341] = { + [sym__expression] = STATE(701), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2368] = { - [sym_type_constraints] = STATE(2489), - [sym_property_delegate] = STATE(2659), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5906), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [2342] = { + [sym__expression] = STATE(1398), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2369] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(5912), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), + [2343] = { + [sym__expression] = STATE(710), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2370] = { - [sym_type_constraints] = STATE(2432), - [sym_property_delegate] = STATE(2641), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [2344] = { + [sym__expression] = STATE(709), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2371] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(5916), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [2345] = { + [sym__expression] = STATE(1399), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), + [sym__string_start] = ACTIONS(493), }, - [2372] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5918), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4146), - [anon_sym_fun] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_this] = ACTIONS(4146), - [anon_sym_super] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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), + [2346] = { + [sym__expression] = STATE(1401), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2347] = { + [sym__expression] = STATE(283), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), + [sym__string_start] = ACTIONS(413), }, - [2373] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5920), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [2348] = { + [sym__expression] = STATE(707), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2374] = { - [sym_type_constraints] = STATE(2471), - [sym_property_delegate] = STATE(2634), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5922), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3806), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2349] = { + [sym_property_delegate] = STATE(2474), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -285920,1028 +283558,1998 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2375] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [2350] = { + [sym__expression] = STATE(285), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2376] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3598), + [2351] = { + [sym__expression] = STATE(1403), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2377] = { - [sym_primary_constructor] = STATE(4959), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4528), - [sym_enum_class_body] = STATE(4703), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5924), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2352] = { + [sym__expression] = STATE(1405), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2378] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2353] = { + [sym__expression] = STATE(1407), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2354] = { + [sym__expression] = STATE(1412), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2355] = { + [sym__expression] = STATE(1414), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2356] = { + [sym__expression] = STATE(1421), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2357] = { + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(3325), + [sym_postfix_expression] = STATE(3325), + [sym_call_expression] = STATE(3325), + [sym_indexing_expression] = STATE(3325), + [sym_navigation_expression] = STATE(3325), + [sym_prefix_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_spread_expression] = STATE(3325), + [sym__binary_expression] = STATE(3325), + [sym_multiplicative_expression] = STATE(3325), + [sym_additive_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_infix_expression] = STATE(3325), + [sym_elvis_expression] = STATE(3325), + [sym_check_expression] = STATE(3325), + [sym_comparison_expression] = STATE(3325), + [sym_equality_expression] = STATE(3325), + [sym_conjunction_expression] = STATE(3325), + [sym_disjunction_expression] = STATE(3325), + [sym__primary_expression] = STATE(3325), + [sym_parenthesized_expression] = STATE(3325), + [sym_collection_literal] = STATE(3325), + [sym__literal_constant] = STATE(3325), + [sym_string_literal] = STATE(3325), + [sym_lambda_literal] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [sym__function_literal] = STATE(3325), + [sym_object_literal] = STATE(3325), + [sym_this_expression] = STATE(3325), + [sym_super_expression] = STATE(3325), + [sym_if_expression] = STATE(3325), + [sym_when_expression] = STATE(3325), + [sym_try_expression] = STATE(3325), + [sym_jump_expression] = STATE(3325), + [sym_callable_reference] = STATE(3325), + [sym__prefix_unary_operator] = STATE(2190), + [sym_annotation] = STATE(2190), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3332), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(3320), + [sym__break_at] = STATE(3320), + [sym_unsigned_literal] = STATE(3325), + [sym_long_literal] = STATE(3325), + [sym_boolean_literal] = STATE(3325), + [sym_character_literal] = STATE(3325), + [sym__lexical_identifier] = STATE(2889), + [sym__alpha_identifier] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_object] = ACTIONS(1932), + [anon_sym_fun] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(537), + [anon_sym_set] = ACTIONS(537), + [anon_sym_this] = ACTIONS(561), + [anon_sym_super] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(1225), + [sym_label] = ACTIONS(671), + [anon_sym_null] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(665), + [anon_sym_when] = ACTIONS(579), + [anon_sym_try] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(667), + [anon_sym_return] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(673), + [anon_sym_DASH_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_data] = ACTIONS(537), + [anon_sym_inner] = ACTIONS(537), + [anon_sym_expect] = ACTIONS(537), + [anon_sym_actual] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(599), + [anon_sym_break_AT] = ACTIONS(601), + [sym_real_literal] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(605), + [sym_hex_literal] = ACTIONS(607), + [sym_bin_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(609), + [anon_sym_false] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [sym__backtick_identifier] = ACTIONS(613), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(615), }, - [2379] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2358] = { + [sym__expression] = STATE(1095), + [sym__unary_expression] = STATE(3447), + [sym_postfix_expression] = STATE(3447), + [sym_call_expression] = STATE(3447), + [sym_indexing_expression] = STATE(3447), + [sym_navigation_expression] = STATE(3447), + [sym_prefix_expression] = STATE(3447), + [sym_as_expression] = STATE(3447), + [sym_spread_expression] = STATE(3447), + [sym__binary_expression] = STATE(3447), + [sym_multiplicative_expression] = STATE(3447), + [sym_additive_expression] = STATE(3447), + [sym_range_expression] = STATE(3447), + [sym_infix_expression] = STATE(3447), + [sym_elvis_expression] = STATE(3447), + [sym_check_expression] = STATE(3447), + [sym_comparison_expression] = STATE(3447), + [sym_equality_expression] = STATE(3447), + [sym_conjunction_expression] = STATE(3447), + [sym_disjunction_expression] = STATE(3447), + [sym__primary_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3447), + [sym_collection_literal] = STATE(3447), + [sym__literal_constant] = STATE(3447), + [sym_string_literal] = STATE(3447), + [sym_lambda_literal] = STATE(3447), + [sym_anonymous_function] = STATE(3447), + [sym__function_literal] = STATE(3447), + [sym_object_literal] = STATE(3447), + [sym_this_expression] = STATE(3447), + [sym_super_expression] = STATE(3447), + [sym_if_expression] = STATE(3447), + [sym_when_expression] = STATE(3447), + [sym_try_expression] = STATE(3447), + [sym_jump_expression] = STATE(3447), + [sym_callable_reference] = STATE(3447), + [sym__prefix_unary_operator] = STATE(1714), + [sym_annotation] = STATE(1714), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3432), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3472), + [sym__break_at] = STATE(3472), + [sym_unsigned_literal] = STATE(3447), + [sym_long_literal] = STATE(3447), + [sym_boolean_literal] = STATE(3447), + [sym_character_literal] = STATE(3447), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1600), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(201), + [anon_sym_set] = ACTIONS(201), + [anon_sym_this] = ACTIONS(229), + [anon_sym_super] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(1111), + [sym_label] = ACTIONS(1119), + [anon_sym_null] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_data] = ACTIONS(201), + [anon_sym_inner] = ACTIONS(201), + [anon_sym_expect] = ACTIONS(201), + [anon_sym_actual] = ACTIONS(201), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym__backtick_identifier] = ACTIONS(283), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(285), }, - [2380] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), + [2359] = { + [sym__expression] = STATE(291), + [sym__unary_expression] = STATE(1079), + [sym_postfix_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_indexing_expression] = STATE(1079), + [sym_navigation_expression] = STATE(1079), + [sym_prefix_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_spread_expression] = STATE(1079), + [sym__binary_expression] = STATE(1079), + [sym_multiplicative_expression] = STATE(1079), + [sym_additive_expression] = STATE(1079), + [sym_range_expression] = STATE(1079), + [sym_infix_expression] = STATE(1079), + [sym_elvis_expression] = STATE(1079), + [sym_check_expression] = STATE(1079), + [sym_comparison_expression] = STATE(1079), + [sym_equality_expression] = STATE(1079), + [sym_conjunction_expression] = STATE(1079), + [sym_disjunction_expression] = STATE(1079), + [sym__primary_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_collection_literal] = STATE(1079), + [sym__literal_constant] = STATE(1079), + [sym_string_literal] = STATE(1079), + [sym_lambda_literal] = STATE(1079), + [sym_anonymous_function] = STATE(1079), + [sym__function_literal] = STATE(1079), + [sym_object_literal] = STATE(1079), + [sym_this_expression] = STATE(1079), + [sym_super_expression] = STATE(1079), + [sym_if_expression] = STATE(1079), + [sym_when_expression] = STATE(1079), + [sym_try_expression] = STATE(1079), + [sym_jump_expression] = STATE(1079), + [sym_callable_reference] = STATE(1079), + [sym__prefix_unary_operator] = STATE(2071), + [sym_annotation] = STATE(2071), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(1075), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1082), + [sym__break_at] = STATE(1082), + [sym_unsigned_literal] = STATE(1079), + [sym_long_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_character_literal] = STATE(1079), + [sym__lexical_identifier] = STATE(832), + [sym__alpha_identifier] = ACTIONS(333), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(335), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_object] = ACTIONS(1624), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(333), + [anon_sym_set] = ACTIONS(333), + [anon_sym_this] = ACTIONS(357), + [anon_sym_super] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(793), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(787), + [anon_sym_when] = ACTIONS(375), + [anon_sym_try] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_break] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_DASH_DASH] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_data] = ACTIONS(333), + [anon_sym_inner] = ACTIONS(333), + [anon_sym_expect] = ACTIONS(333), + [anon_sym_actual] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(397), + [anon_sym_break_AT] = ACTIONS(399), + [sym_real_literal] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(403), + [sym_hex_literal] = ACTIONS(405), + [sym_bin_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(409), + [sym__backtick_identifier] = ACTIONS(411), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(413), }, - [2381] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), + [2360] = { + [sym__expression] = STATE(935), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2361] = { + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2323), + [sym_annotation] = STATE(2323), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1219), + [sym_label] = ACTIONS(703), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(697), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_return] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(705), + [anon_sym_DASH_DASH] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2362] = { + [sym__expression] = STATE(878), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2363] = { + [sym__expression] = STATE(899), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2364] = { + [sym__expression] = STATE(925), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), + }, + [2365] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3047), + [anon_sym_fun] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3047), + [anon_sym_super] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_when] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3049), + [anon_sym_continue_AT] = ACTIONS(3049), + [anon_sym_break_AT] = ACTIONS(3049), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3049), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3049), }, - [2382] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3598), + [2366] = { + [sym__expression] = STATE(882), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2383] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), + [2367] = { + [sym_indexing_suffix] = STATE(3348), + [sym_navigation_suffix] = STATE(3349), + [sym_call_suffix] = STATE(3351), + [sym_annotated_lambda] = STATE(3352), + [sym_type_arguments] = STATE(7502), + [sym_value_arguments] = STATE(2742), + [sym_lambda_literal] = STATE(3321), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2112), + [sym__in_operator] = STATE(2113), + [sym__is_operator] = STATE(6287), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2115), + [sym__as_operator] = STATE(6288), + [sym__postfix_unary_operator] = STATE(3353), + [sym__member_access_operator] = STATE(7300), [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2117), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(1930), [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(4537), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(3576), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_object] = ACTIONS(3059), + [anon_sym_fun] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(4541), [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), + [anon_sym_this] = ACTIONS(3059), + [anon_sym_super] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(5871), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5875), + [anon_sym_QMARK_COLON] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_null] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3059), - [anon_sym_sealed] = ACTIONS(3059), - [anon_sym_annotation] = ACTIONS(3059), + [anon_sym_when] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(4557), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_BANGin] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_as_QMARK] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_BANG_BANG] = ACTIONS(4575), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_lateinit] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_protected] = ACTIONS(3059), - [anon_sym_tailrec] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym_external] = ACTIONS(3059), - [sym_property_modifier] = ACTIONS(3059), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_vararg] = ACTIONS(3059), - [anon_sym_noinline] = ACTIONS(3059), - [anon_sym_crossinline] = ACTIONS(3059), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3061), + [anon_sym_continue_AT] = ACTIONS(3061), + [anon_sym_break_AT] = ACTIONS(3061), + [sym_real_literal] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(3059), + [sym_hex_literal] = ACTIONS(3061), + [sym_bin_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(3059), + [anon_sym_false] = ACTIONS(3059), + [anon_sym_SQUOTE] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(3598), + [sym_safe_nav] = ACTIONS(4557), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3061), }, - [2384] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(3598), + [2368] = { + [sym__expression] = STATE(895), + [sym__unary_expression] = STATE(3757), + [sym_postfix_expression] = STATE(3757), + [sym_call_expression] = STATE(3757), + [sym_indexing_expression] = STATE(3757), + [sym_navigation_expression] = STATE(3757), + [sym_prefix_expression] = STATE(3757), + [sym_as_expression] = STATE(3757), + [sym_spread_expression] = STATE(3757), + [sym__binary_expression] = STATE(3757), + [sym_multiplicative_expression] = STATE(3757), + [sym_additive_expression] = STATE(3757), + [sym_range_expression] = STATE(3757), + [sym_infix_expression] = STATE(3757), + [sym_elvis_expression] = STATE(3757), + [sym_check_expression] = STATE(3757), + [sym_comparison_expression] = STATE(3757), + [sym_equality_expression] = STATE(3757), + [sym_conjunction_expression] = STATE(3757), + [sym_disjunction_expression] = STATE(3757), + [sym__primary_expression] = STATE(3757), + [sym_parenthesized_expression] = STATE(3757), + [sym_collection_literal] = STATE(3757), + [sym__literal_constant] = STATE(3757), + [sym_string_literal] = STATE(3757), + [sym_lambda_literal] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [sym__function_literal] = STATE(3757), + [sym_object_literal] = STATE(3757), + [sym_this_expression] = STATE(3757), + [sym_super_expression] = STATE(3757), + [sym_if_expression] = STATE(3757), + [sym_when_expression] = STATE(3757), + [sym_try_expression] = STATE(3757), + [sym_jump_expression] = STATE(3757), + [sym_callable_reference] = STATE(3757), + [sym__prefix_unary_operator] = STATE(2272), + [sym_annotation] = STATE(2272), + [sym__single_annotation] = STATE(4030), + [sym__multi_annotation] = STATE(4030), + [sym_simple_identifier] = STATE(3819), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3736), + [sym__break_at] = STATE(3736), + [sym_unsigned_literal] = STATE(3757), + [sym_long_literal] = STATE(3757), + [sym_boolean_literal] = STATE(3757), + [sym_character_literal] = STATE(3757), + [sym__lexical_identifier] = STATE(3287), + [sym__alpha_identifier] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(415), + [anon_sym_set] = ACTIONS(415), + [anon_sym_this] = ACTIONS(439), + [anon_sym_super] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(1041), + [sym_label] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_when] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_data] = ACTIONS(415), + [anon_sym_inner] = ACTIONS(415), + [anon_sym_expect] = ACTIONS(415), + [anon_sym_actual] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(395), + [anon_sym_continue_AT] = ACTIONS(477), + [anon_sym_break_AT] = ACTIONS(479), + [sym_real_literal] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(483), + [sym_hex_literal] = ACTIONS(485), + [sym_bin_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [sym__backtick_identifier] = ACTIONS(491), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(493), }, - [2385] = { - [sym_type_constraints] = STATE(2490), - [sym_property_delegate] = STATE(2690), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2369] = { + [sym_primary_constructor] = STATE(4931), + [sym_class_body] = STATE(4649), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4548), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2370] = { + [sym_type_constraints] = STATE(2453), + [sym_property_delegate] = STATE(2668), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -286965,458 +285573,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2386] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2387] = { - [sym_primary_constructor] = STATE(5041), - [sym_class_body] = STATE(4697), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4514), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5928), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2388] = { - [sym_primary_constructor] = STATE(5027), - [sym_class_body] = STATE(5296), - [sym__class_parameters] = STATE(5169), - [sym_type_constraints] = STATE(5238), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5930), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [2371] = { + [sym_type_constraints] = STATE(2445), + [sym_property_delegate] = STATE(2653), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5923), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5925), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), - }, - [2389] = { - [sym_primary_constructor] = STATE(5072), - [sym__class_parameters] = STATE(5169), - [sym_type_constraints] = STATE(5201), - [sym_enum_class_body] = STATE(5323), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5647), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [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(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), }, - [2390] = { - [sym_type_constraints] = STATE(2492), - [sym_property_delegate] = STATE(2676), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5934), - [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_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5936), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2372] = { + [sym_type_constraints] = STATE(2458), + [sym_property_delegate] = STATE(2671), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5927), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -287440,78 +285763,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2391] = { - [sym_property_delegate] = STATE(2504), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5938), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2373] = { + [sym_type_constraints] = STATE(2450), + [sym_property_delegate] = STATE(2681), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5929), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3798), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -287535,142 +285858,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2392] = { - [sym_primary_constructor] = STATE(5003), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4524), - [sym_enum_class_body] = STATE(4697), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5940), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2393] = { - [sym_property_delegate] = STATE(2547), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2374] = { + [sym_type_constraints] = STATE(2459), + [sym_property_delegate] = STATE(2684), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5737), + [anon_sym_EQ] = ACTIONS(5931), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5705), + [anon_sym_by] = ACTIONS(5915), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), [anon_sym_while] = ACTIONS(1752), @@ -287680,11 +285913,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), [anon_sym_BANG_EQ] = ACTIONS(1752), [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), [anon_sym_EQ_EQ] = ACTIONS(1752), @@ -287697,7 +285925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1752), [anon_sym_DASH] = ACTIONS(1752), [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), [anon_sym_as_QMARK] = ACTIONS(1754), [anon_sym_PLUS_PLUS] = ACTIONS(1754), [anon_sym_DASH_DASH] = ACTIONS(1754), @@ -287725,901 +285953,806 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2394] = { - [sym_property_delegate] = STATE(2553), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5774), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2395] = { - [sym_property_delegate] = STATE(2540), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5772), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2396] = { - [sym_type_constraints] = STATE(2488), - [sym_property_delegate] = STATE(2683), - [sym_getter] = STATE(3343), - [sym_setter] = STATE(3343), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_RBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(5942), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(5944), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_DASH_GT] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - }, - [2397] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_object] = ACTIONS(4790), - [anon_sym_fun] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(5946), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_this] = ACTIONS(4790), - [anon_sym_super] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [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(5948), - [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_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(4792), - [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_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_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), + [2375] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_AT] = ACTIONS(4792), - [sym_real_literal] = ACTIONS(4792), - [sym_integer_literal] = ACTIONS(4790), - [sym_hex_literal] = ACTIONS(4792), - [sym_bin_literal] = ACTIONS(4792), - [anon_sym_true] = ACTIONS(4790), - [anon_sym_false] = ACTIONS(4790), - [anon_sym_SQUOTE] = ACTIONS(4792), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), + [sym__string_start] = ACTIONS(4861), }, - [2398] = { - [sym_property_delegate] = STATE(2531), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5756), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5758), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [2376] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), }, - [2399] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = 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(4792), - [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(5948), - [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_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(4792), - [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_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_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), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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), + [2377] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), }, - [2400] = { - [sym_primary_constructor] = STATE(3691), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5950), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [2378] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), }, - [2401] = { - [sym_primary_constructor] = STATE(3695), - [sym_class_body] = STATE(3261), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3076), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), + [2379] = { + [sym_primary_constructor] = STATE(4920), + [sym_class_body] = STATE(5383), + [sym__class_parameters] = STATE(5158), + [sym_type_constraints] = STATE(5226), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [2380] = { + [sym_primary_constructor] = STATE(3708), + [sym_class_body] = STATE(3208), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3037), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [2402] = { - [sym_primary_constructor] = STATE(3696), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5954), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [2381] = { + [sym_primary_constructor] = STATE(3685), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [2403] = { - [sym_primary_constructor] = STATE(3703), - [sym_class_body] = STATE(3319), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [2382] = { + [sym_primary_constructor] = STATE(3684), + [sym_class_body] = STATE(3317), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3020), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2383] = { + [sym_primary_constructor] = STATE(3679), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5949), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5135), [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -288652,196 +286785,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [2404] = { - [sym_primary_constructor] = STATE(5075), - [sym_class_body] = STATE(5323), - [sym__class_parameters] = STATE(5169), - [sym_type_constraints] = STATE(5223), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [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(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [2384] = { + [sym_primary_constructor] = STATE(4921), + [sym__class_parameters] = STATE(5158), + [sym_type_constraints] = STATE(5202), + [sym_enum_class_body] = STATE(5358), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [2405] = { - [sym_type_constraints] = STATE(2470), - [sym_property_delegate] = STATE(2633), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5960), - [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_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5962), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2385] = { + [sym_primary_constructor] = STATE(4924), + [sym_class_body] = STATE(5358), + [sym__class_parameters] = STATE(5158), + [sym_type_constraints] = STATE(5206), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [2386] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3080), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2387] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2388] = { + [sym_type_constraints] = STATE(2466), + [sym_property_delegate] = STATE(2677), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -288865,268 +287283,648 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2406] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3011), + [2389] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2407] = { - [sym_primary_constructor] = STATE(5053), - [sym_class_body] = STATE(4603), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4557), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [2390] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2391] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3086), + [anon_sym_sealed] = ACTIONS(3086), + [anon_sym_annotation] = ACTIONS(3086), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_lateinit] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_internal] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_tailrec] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_infix] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_external] = ACTIONS(3086), + [sym_property_modifier] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_open] = ACTIONS(3086), + [anon_sym_vararg] = ACTIONS(3086), + [anon_sym_noinline] = ACTIONS(3086), + [anon_sym_crossinline] = ACTIONS(3086), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2392] = { + [sym_primary_constructor] = STATE(4983), + [sym__class_parameters] = STATE(5158), + [sym_type_constraints] = STATE(5231), + [sym_enum_class_body] = STATE(5317), + [sym_modifiers] = STATE(9488), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5964), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5961), [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_RBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), [anon_sym_get] = ACTIONS(3196), [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), [anon_sym_BANGin] = ACTIONS(3200), [anon_sym_is] = ACTIONS(3196), [anon_sym_BANGis] = ACTIONS(3200), [anon_sym_PLUS] = ACTIONS(3196), [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, - [2408] = { - [sym_property_delegate] = STATE(2503), - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2393] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(5963), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(5965), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), + }, + [2394] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(5965), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), + }, + [2395] = { + [sym_property_delegate] = STATE(2531), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5699), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -289150,78 +287948,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2409] = { - [sym_type_constraints] = STATE(2447), - [sym_property_delegate] = STATE(2650), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5968), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2396] = { + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -289245,141 +288043,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2410] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2999), - [anon_sym_sealed] = ACTIONS(2999), - [anon_sym_annotation] = ACTIONS(2999), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_lateinit] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_tailrec] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2999), - [sym_property_modifier] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_vararg] = ACTIONS(2999), - [anon_sym_noinline] = ACTIONS(2999), - [anon_sym_crossinline] = ACTIONS(2999), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2397] = { + [sym_property_delegate] = STATE(2546), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5707), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2411] = { - [sym_property_delegate] = STATE(2521), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2398] = { + [sym_property_delegate] = STATE(2551), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5729), + [anon_sym_EQ] = ACTIONS(5709), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5705), + [anon_sym_by] = ACTIONS(5691), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -289435,173 +288233,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2412] = { - [sym_primary_constructor] = STATE(5071), - [sym__class_parameters] = STATE(5169), - [sym_type_constraints] = STATE(5248), - [sym_enum_class_body] = STATE(5270), - [sym_modifiers] = STATE(9298), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5970), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_constructor] = ACTIONS(5645), - [anon_sym_LBRACE] = ACTIONS(5647), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5649), - [anon_sym_where] = ACTIONS(5653), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [2413] = { - [sym_property_delegate] = STATE(2526), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5723), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2399] = { + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -289625,268 +288328,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2414] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3063), - [anon_sym_sealed] = ACTIONS(3063), - [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_lateinit] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_tailrec] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym_external] = ACTIONS(3063), - [sym_property_modifier] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_vararg] = ACTIONS(3063), - [anon_sym_noinline] = ACTIONS(3063), - [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [2400] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [2415] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), + [2401] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [2416] = { - [sym_property_delegate] = STATE(2522), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2402] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [2403] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [2404] = { + [sym_property_delegate] = STATE(2564), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -289910,743 +288803,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2417] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2418] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2405] = { + [sym_property_delegate] = STATE(2503), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2419] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(4283), - [anon_sym_super] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [2420] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), - }, - [2421] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [2422] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(5976), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_suspend] = ACTIONS(4146), - [anon_sym_sealed] = ACTIONS(4146), - [anon_sym_annotation] = ACTIONS(4146), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [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(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), }, - [2423] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2211), - [sym__comparison_operator] = STATE(2219), - [sym__in_operator] = STATE(2104), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2248), - [sym__multiplicative_operator] = STATE(2250), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2251), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [2406] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4053), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4061), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4063), - [anon_sym_DOT_DOT] = ACTIONS(4065), - [anon_sym_QMARK_COLON] = ACTIONS(4067), - [anon_sym_AMP_AMP] = ACTIONS(4069), - [anon_sym_PIPE_PIPE] = ACTIONS(4071), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), - [anon_sym_EQ_EQ] = ACTIONS(4073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), - [anon_sym_LT_EQ] = ACTIONS(4077), - [anon_sym_GT_EQ] = ACTIONS(4077), - [anon_sym_BANGin] = ACTIONS(4079), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4081), - [anon_sym_DASH] = ACTIONS(4081), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_PERCENT] = ACTIONS(4061), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2424] = { - [sym_type_constraints] = STATE(2484), - [sym_property_delegate] = STATE(2665), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5980), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2407] = { + [sym_type_constraints] = STATE(2486), + [sym_property_delegate] = STATE(2666), + [sym_getter] = STATE(4663), + [sym_setter] = STATE(4663), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(5979), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -290670,78 +289088,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2425] = { - [sym_property_delegate] = STATE(2524), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5727), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5705), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2408] = { + [sym_property_delegate] = STATE(2505), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -290765,48 +289183,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2426] = { - [sym_property_delegate] = STATE(2618), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2409] = { + [sym_property_delegate] = STATE(2510), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5723), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5780), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5691), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -290858,77 +289278,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2427] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2410] = { + [sym_primary_constructor] = STATE(4916), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4550), + [sym_enum_class_body] = STATE(4628), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_DASH_GT] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2411] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3063), + [anon_sym_sealed] = ACTIONS(3063), + [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3063), + [anon_sym_lateinit] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_internal] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_tailrec] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_infix] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_external] = ACTIONS(3063), + [sym_property_modifier] = ACTIONS(3063), + [anon_sym_abstract] = ACTIONS(3063), + [anon_sym_final] = ACTIONS(3063), + [anon_sym_open] = ACTIONS(3063), + [anon_sym_vararg] = ACTIONS(3063), + [anon_sym_noinline] = ACTIONS(3063), + [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2412] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2413] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2414] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2415] = { + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5983), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5691), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -290952,77 +289848,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2428] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2416] = { + [sym_type_constraints] = STATE(2470), + [sym_property_delegate] = STATE(2694), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291046,77 +289943,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2429] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2417] = { + [sym_type_constraints] = STATE(2431), + [sym_property_delegate] = STATE(2682), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291140,67 +290038,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2430] = { - [sym_property_delegate] = STATE(2658), - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), + [2418] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2419] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2420] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2421] = { + [sym_primary_constructor] = STATE(4971), + [sym_class_body] = STATE(4658), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4536), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [2422] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2423] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3059), + [anon_sym_sealed] = ACTIONS(3059), + [anon_sym_annotation] = ACTIONS(3059), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3059), + [anon_sym_lateinit] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_internal] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_tailrec] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_infix] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_external] = ACTIONS(3059), + [sym_property_modifier] = ACTIONS(3059), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_final] = ACTIONS(3059), + [anon_sym_open] = ACTIONS(3059), + [anon_sym_vararg] = ACTIONS(3059), + [anon_sym_noinline] = ACTIONS(3059), + [anon_sym_crossinline] = ACTIONS(3059), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2424] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_PIPE_PIPE] = ACTIONS(4061), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_BANGin] = ACTIONS(4069), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2425] = { + [sym_primary_constructor] = STATE(4942), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4553), + [sym_enum_class_body] = STATE(4649), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2426] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_QMARK_COLON] = ACTIONS(4057), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2427] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(4051), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(4073), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2428] = { + [sym_type_constraints] = STATE(2463), + [sym_property_delegate] = STATE(2642), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5995), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291224,87 +291083,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [2431] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2429] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2238), + [sym__in_operator] = STATE(2237), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2227), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2226), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2430] = { + [sym_property_delegate] = STATE(2569), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5827), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291328,78 +291271,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2432] = { - [sym_property_delegate] = STATE(2685), - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5982), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2431] = { + [sym_property_delegate] = STATE(2642), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5995), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291423,76 +291366,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2433] = { - [sym_property_delegate] = STATE(2619), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5860), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2432] = { + [sym_property_delegate] = STATE(2589), + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291516,77 +291459,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2434] = { - [sym_property_delegate] = STATE(2621), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2433] = { + [sym_getter] = STATE(5041), + [sym_setter] = STATE(5041), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291610,77 +291553,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2435] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5673), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2434] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291704,140 +291647,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2436] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3059), - [anon_sym_sealed] = ACTIONS(3059), - [anon_sym_annotation] = ACTIONS(3059), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_lateinit] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_protected] = ACTIONS(3059), - [anon_sym_tailrec] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym_external] = ACTIONS(3059), - [sym_property_modifier] = ACTIONS(3059), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_vararg] = ACTIONS(3059), - [anon_sym_noinline] = ACTIONS(3059), - [anon_sym_crossinline] = ACTIONS(3059), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2437] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2435] = { + [sym_property_delegate] = STATE(2580), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5863), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5792), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -291892,77 +291741,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2438] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2436] = { + [sym_property_delegate] = STATE(2595), + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(5999), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3786), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -291986,77 +291835,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2439] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2437] = { + [sym_property_delegate] = STATE(2646), + [sym_getter] = STATE(5300), + [sym_setter] = STATE(5300), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5857), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), [anon_sym_BANGin] = ACTIONS(1754), [anon_sym_is] = ACTIONS(1752), [anon_sym_BANGis] = ACTIONS(1754), [anon_sym_PLUS] = ACTIONS(1752), [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), [anon_sym_PLUS_PLUS] = ACTIONS(1754), [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292080,77 +291919,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [2440] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2438] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292174,77 +292023,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2441] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2439] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292268,77 +292117,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2442] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2440] = { + [sym_property_delegate] = STATE(2574), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5865), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3788), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292362,77 +292211,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2443] = { - [sym_property_delegate] = STATE(2574), - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5984), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3754), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2441] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292456,77 +292305,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2444] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2442] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292550,77 +292399,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2445] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2443] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2444] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292644,77 +292587,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2446] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2445] = { + [sym_property_delegate] = STATE(2668), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292738,78 +292682,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [2446] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [2447] = { - [sym_property_delegate] = STATE(2667), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5986), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3810), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2448] = { + [sym_property_delegate] = STATE(2572), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292833,76 +292963,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2448] = { - [sym_getter] = STATE(3722), - [sym_setter] = STATE(3722), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [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), + [2449] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292926,161 +293057,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2449] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, [2450] = { - [sym_property_delegate] = STATE(2631), - [sym_getter] = STATE(5339), - [sym_setter] = STATE(5339), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_EQ] = ACTIONS(5988), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), + [sym_property_delegate] = STATE(2684), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293104,87 +293152,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), }, [2451] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293208,77 +293245,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [2452] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293302,67 +293339,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [2453] = { - [sym_property_delegate] = STATE(2682), - [sym_getter] = STATE(5392), - [sym_setter] = STATE(5392), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(5820), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), + [sym_property_delegate] = STATE(2671), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5927), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293386,87 +293434,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), }, [2454] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5687), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_property_delegate] = STATE(2579), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293490,77 +293527,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, [2455] = { - [sym_property_delegate] = STATE(2601), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5806), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5808), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [sym_property_delegate] = STATE(2584), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5790), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293584,77 +293621,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [2456] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), + [sym_property_delegate] = STATE(2697), + [sym_getter] = STATE(5273), + [sym_setter] = STATE(5273), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293678,77 +293705,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, [2457] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293772,77 +293809,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, [2458] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_property_delegate] = STATE(2681), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5929), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3798), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293866,77 +293904,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, [2459] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_property_delegate] = STATE(2698), + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6003), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293960,77 +293998,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, [2460] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294054,77 +294091,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, [2461] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294148,77 +294185,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, [2462] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294242,78 +294279,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, [2463] = { - [sym_property_delegate] = STATE(2633), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5960), - [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_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5962), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [sym_property_delegate] = STATE(2677), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294337,76 +294374,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [2464] = { - [sym_getter] = STATE(4953), - [sym_setter] = STATE(4953), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [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), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8771), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5683), + [anon_sym_get] = ACTIONS(5673), + [anon_sym_set] = ACTIONS(5675), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294430,77 +294467,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym__automatic_semicolon] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, [2465] = { - [sym_property_delegate] = STATE(2580), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294524,171 +294561,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, [2466] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2467] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_modifiers] = STATE(8752), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5689), - [anon_sym_set] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [sym_property_delegate] = STATE(2663), + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294712,161 +294656,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2468] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [2467] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3080), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3080), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [2469] = { - [sym_property_delegate] = STATE(2657), - [sym_getter] = STATE(5383), - [sym_setter] = STATE(5383), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(5802), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), + [2468] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294890,88 +294843,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), }, - [2470] = { - [sym_property_delegate] = STATE(2665), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5980), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2469] = { + [sym_property_delegate] = STATE(2640), + [sym_getter] = STATE(5326), + [sym_setter] = STATE(5326), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(5845), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294995,77 +294927,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [2471] = { - [sym_property_delegate] = STATE(2650), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5968), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2470] = { + [sym_property_delegate] = STATE(2682), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -295089,1006 +295032,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [2472] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2473] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2474] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2475] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2476] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2477] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2478] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2479] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [2471] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2480] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3059), + [anon_sym_sealed] = ACTIONS(3059), + [anon_sym_annotation] = ACTIONS(3059), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3059), + [anon_sym_lateinit] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_internal] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_tailrec] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_infix] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_external] = ACTIONS(3059), + [sym_property_modifier] = ACTIONS(3059), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_final] = ACTIONS(3059), + [anon_sym_open] = ACTIONS(3059), + [anon_sym_vararg] = ACTIONS(3059), + [anon_sym_noinline] = ACTIONS(3059), + [anon_sym_crossinline] = ACTIONS(3059), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2481] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3420), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [2482] = { - [sym_property_delegate] = STATE(2644), - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(5798), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5800), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [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(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), + [2472] = { + [sym_property_delegate] = STATE(2657), + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5833), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296112,87 +295209,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [2483] = { - [sym_property_delegate] = STATE(2587), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5886), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2473] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296216,78 +295313,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2484] = { - [sym_property_delegate] = STATE(2690), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2474] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296311,270 +295407,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2485] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), - [sym_multiline_comment] = ACTIONS(3), - }, - [2486] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), - [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2487] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [2475] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3414), [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3418), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3063), [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), [anon_sym_suspend] = ACTIONS(3063), [anon_sym_sealed] = ACTIONS(3063), [anon_sym_annotation] = ACTIONS(3063), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), [anon_sym_override] = ACTIONS(3063), [anon_sym_lateinit] = ACTIONS(3063), [anon_sym_public] = ACTIONS(3063), @@ -296593,77 +295502,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3063), [anon_sym_noinline] = ACTIONS(3063), [anon_sym_crossinline] = ACTIONS(3063), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, - [2488] = { - [sym_property_delegate] = STATE(2676), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(5934), - [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_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5936), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2476] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296687,77 +295595,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2489] = { - [sym_property_delegate] = STATE(2634), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5922), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3806), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2477] = { + [sym_property_delegate] = STATE(2631), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5897), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296781,60 +295689,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2490] = { - [sym_property_delegate] = STATE(2641), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2478] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2479] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2480] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2481] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5914), + [anon_sym_EQ] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5898), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), [anon_sym_PIPE_PIPE] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), [anon_sym_BANG_EQ] = ACTIONS(1752), [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), [anon_sym_EQ_EQ] = ACTIONS(1752), @@ -296847,7 +296037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1752), [anon_sym_DASH] = ACTIONS(1752), [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1752), [anon_sym_as_QMARK] = ACTIONS(1754), [anon_sym_PLUS_PLUS] = ACTIONS(1754), [anon_sym_DASH_DASH] = ACTIONS(1754), @@ -296875,45 +296065,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2491] = { - [sym_property_delegate] = STATE(2593), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2482] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2483] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2484] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2485] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2486] = { + [sym_property_delegate] = STATE(2694), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [2487] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2488] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2489] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2490] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(5780), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3704), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -296968,78 +296911,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, + [2491] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4194), + [anon_sym_is] = ACTIONS(3450), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, [2492] = { - [sym_property_delegate] = STATE(2659), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(5906), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [sym_property_delegate] = STATE(2621), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297063,139 +297099,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, [2493] = { - [sym_indexing_suffix] = STATE(3287), - [sym_navigation_suffix] = STATE(3363), - [sym_call_suffix] = STATE(3362), - [sym_annotated_lambda] = STATE(3361), + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), [sym_type_arguments] = STATE(7562), - [sym_value_arguments] = STATE(2761), - [sym_lambda_literal] = STATE(3351), - [sym__equality_operator] = STATE(1752), - [sym__comparison_operator] = STATE(1753), - [sym__in_operator] = STATE(1754), - [sym__is_operator] = STATE(6128), - [sym__additive_operator] = STATE(1755), - [sym__multiplicative_operator] = STATE(1756), - [sym__as_operator] = STATE(6129), - [sym__postfix_unary_operator] = STATE(3346), - [sym__member_access_operator] = STATE(7195), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1758), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4160), - [sym_label] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(4164), - [anon_sym_QMARK_COLON] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4168), - [anon_sym_PIPE_PIPE] = ACTIONS(4170), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3420), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT_EQ] = ACTIONS(4176), - [anon_sym_GT_EQ] = ACTIONS(4176), - [anon_sym_BANGin] = ACTIONS(4178), - [anon_sym_is] = ACTIONS(3430), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_SLASH] = ACTIONS(4182), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_as_QMARK] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_BANG_BANG] = ACTIONS(3438), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3440), [sym_multiline_comment] = ACTIONS(3), }, [2494] = { - [sym_property_delegate] = STATE(2609), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [sym_property_delegate] = STATE(2650), + [sym_getter] = STATE(5354), + [sym_setter] = STATE(5354), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(5841), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [2495] = { + [sym_getter] = STATE(3701), + [sym_setter] = STATE(3701), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + }, + [2496] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(5858), + [anon_sym_EQ] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(5780), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), [anon_sym_STAR] = ACTIONS(1694), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), @@ -297250,77 +297475,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2495] = { - [sym_property_delegate] = STATE(2622), - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(5990), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2497] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297344,77 +297569,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2496] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8917), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5667), - [anon_sym_set] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2498] = { + [sym_indexing_suffix] = STATE(3346), + [sym_navigation_suffix] = STATE(3345), + [sym_call_suffix] = STATE(3344), + [sym_annotated_lambda] = STATE(3322), + [sym_type_arguments] = STATE(7562), + [sym_value_arguments] = STATE(2736), + [sym_lambda_literal] = STATE(3303), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1756), + [sym__in_operator] = STATE(1757), + [sym__is_operator] = STATE(6024), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1759), + [sym__as_operator] = STATE(6026), + [sym__postfix_unary_operator] = STATE(3313), + [sym__member_access_operator] = STATE(7346), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1761), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_BANG_BANG] = ACTIONS(3458), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3440), + [sym_multiline_comment] = ACTIONS(3), + }, + [2499] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297438,170 +297757,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2497] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_annotation] = ACTIONS(3036), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_lateinit] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_tailrec] = ACTIONS(3036), - [anon_sym_operator] = ACTIONS(3036), - [anon_sym_infix] = ACTIONS(3036), - [anon_sym_inline] = ACTIONS(3036), - [anon_sym_external] = ACTIONS(3036), - [sym_property_modifier] = ACTIONS(3036), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_final] = ACTIONS(3036), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_vararg] = ACTIONS(3036), - [anon_sym_noinline] = ACTIONS(3036), - [anon_sym_crossinline] = ACTIONS(3036), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2498] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2500] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8706), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5659), + [anon_sym_set] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297625,76 +297851,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2499] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2501] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3063), + [anon_sym_sealed] = ACTIONS(3063), + [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3063), + [anon_sym_lateinit] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_private] = ACTIONS(3063), + [anon_sym_internal] = ACTIONS(3063), + [anon_sym_protected] = ACTIONS(3063), + [anon_sym_tailrec] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(3063), + [anon_sym_infix] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_external] = ACTIONS(3063), + [sym_property_modifier] = ACTIONS(3063), + [anon_sym_abstract] = ACTIONS(3063), + [anon_sym_final] = ACTIONS(3063), + [anon_sym_open] = ACTIONS(3063), + [anon_sym_vararg] = ACTIONS(3063), + [anon_sym_noinline] = ACTIONS(3063), + [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2502] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297718,169 +298038,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2500] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3059), - [anon_sym_sealed] = ACTIONS(3059), - [anon_sym_annotation] = ACTIONS(3059), + [2503] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2504] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3047), + [anon_sym_sealed] = ACTIONS(3047), + [anon_sym_annotation] = ACTIONS(3047), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_lateinit] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_protected] = ACTIONS(3059), - [anon_sym_tailrec] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym_external] = ACTIONS(3059), - [sym_property_modifier] = ACTIONS(3059), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_vararg] = ACTIONS(3059), - [anon_sym_noinline] = ACTIONS(3059), - [anon_sym_crossinline] = ACTIONS(3059), + [anon_sym_override] = ACTIONS(3047), + [anon_sym_lateinit] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_internal] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_tailrec] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_infix] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_external] = ACTIONS(3047), + [sym_property_modifier] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_final] = ACTIONS(3047), + [anon_sym_open] = ACTIONS(3047), + [anon_sym_vararg] = ACTIONS(3047), + [anon_sym_noinline] = ACTIONS(3047), + [anon_sym_crossinline] = ACTIONS(3047), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2501] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [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), + [2505] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297904,76 +298317,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2502] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2506] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3002), + [anon_sym_sealed] = ACTIONS(3002), + [anon_sym_annotation] = ACTIONS(3002), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_lateinit] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_internal] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_tailrec] = ACTIONS(3002), + [anon_sym_operator] = ACTIONS(3002), + [anon_sym_infix] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_external] = ACTIONS(3002), + [sym_property_modifier] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_open] = ACTIONS(3002), + [anon_sym_vararg] = ACTIONS(3002), + [anon_sym_noinline] = ACTIONS(3002), + [anon_sym_crossinline] = ACTIONS(3002), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2507] = { + [sym_primary_constructor] = STATE(5251), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2592), + [sym_type_constraints] = STATE(4861), + [sym_enum_class_body] = STATE(5017), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2508] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297997,76 +298596,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2503] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2509] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298090,76 +298689,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2504] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2510] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298183,169 +298782,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2505] = { - [sym_primary_constructor] = STATE(4090), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2578), - [sym_type_constraints] = STATE(3669), - [sym_enum_class_body] = STATE(3688), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5992), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2506] = { - [sym_getter] = STATE(3329), - [sym_setter] = STATE(3329), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [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), + [2511] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298369,541 +298875,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), - [sym_multiline_comment] = ACTIONS(3), - }, - [2507] = { - [sym_primary_constructor] = STATE(4076), - [sym_class_body] = STATE(3842), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2564), - [sym_type_constraints] = STATE(3563), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5994), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [2508] = { - [sym_primary_constructor] = STATE(4074), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2559), - [sym_type_constraints] = STATE(3620), - [sym_enum_class_body] = STATE(3842), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5996), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), - [sym_multiline_comment] = ACTIONS(3), - }, - [2509] = { - [sym_primary_constructor] = STATE(4070), - [sym_class_body] = STATE(3851), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2600), - [sym_type_constraints] = STATE(3660), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(5998), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2510] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3071), - [anon_sym_sealed] = ACTIONS(3071), - [anon_sym_annotation] = ACTIONS(3071), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_lateinit] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_tailrec] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3071), - [sym_property_modifier] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_vararg] = ACTIONS(3071), - [anon_sym_noinline] = ACTIONS(3071), - [anon_sym_crossinline] = ACTIONS(3071), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2512] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2511] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2513] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2512] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2514] = { + [sym_getter] = STATE(3361), + [sym_setter] = STATE(3361), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298927,820 +299154,1099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2513] = { - [sym_primary_constructor] = STATE(5254), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2604), - [sym_type_constraints] = STATE(4513), - [sym_enum_class_body] = STATE(4750), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [2515] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2514] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [2516] = { + [sym_primary_constructor] = STATE(4084), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2625), + [sym_type_constraints] = STATE(3574), + [sym_enum_class_body] = STATE(3896), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2517] = { + [sym_primary_constructor] = STATE(4076), + [sym_class_body] = STATE(3850), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2624), + [sym_type_constraints] = STATE(3576), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2518] = { + [sym_primary_constructor] = STATE(4073), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2623), + [sym_type_constraints] = STATE(3600), + [sym_enum_class_body] = STATE(3850), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6013), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2519] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3007), - [anon_sym_sealed] = ACTIONS(3007), - [anon_sym_annotation] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3013), + [anon_sym_sealed] = ACTIONS(3013), + [anon_sym_annotation] = ACTIONS(3013), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_lateinit] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_protected] = ACTIONS(3007), - [anon_sym_tailrec] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3007), - [sym_property_modifier] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_vararg] = ACTIONS(3007), - [anon_sym_noinline] = ACTIONS(3007), - [anon_sym_crossinline] = ACTIONS(3007), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_lateinit] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_internal] = ACTIONS(3013), + [anon_sym_protected] = ACTIONS(3013), + [anon_sym_tailrec] = ACTIONS(3013), + [anon_sym_operator] = ACTIONS(3013), + [anon_sym_infix] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_external] = ACTIONS(3013), + [sym_property_modifier] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_open] = ACTIONS(3013), + [anon_sym_vararg] = ACTIONS(3013), + [anon_sym_noinline] = ACTIONS(3013), + [anon_sym_crossinline] = ACTIONS(3013), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2515] = { - [sym_primary_constructor] = STATE(5240), - [sym_class_body] = STATE(4604), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2610), - [sym_type_constraints] = STATE(4541), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2516] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [2520] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3067), - [anon_sym_sealed] = ACTIONS(3067), - [anon_sym_annotation] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_lateinit] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_tailrec] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym_external] = ACTIONS(3067), - [sym_property_modifier] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_vararg] = ACTIONS(3067), - [anon_sym_noinline] = ACTIONS(3067), - [anon_sym_crossinline] = ACTIONS(3067), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2517] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [2521] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + }, + [2522] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3063), - [anon_sym_sealed] = ACTIONS(3063), - [anon_sym_annotation] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3043), + [anon_sym_sealed] = ACTIONS(3043), + [anon_sym_annotation] = ACTIONS(3043), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_lateinit] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_tailrec] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym_external] = ACTIONS(3063), - [sym_property_modifier] = ACTIONS(3063), - [anon_sym_abstract] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_vararg] = ACTIONS(3063), - [anon_sym_noinline] = ACTIONS(3063), - [anon_sym_crossinline] = ACTIONS(3063), + [anon_sym_override] = ACTIONS(3043), + [anon_sym_lateinit] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_private] = ACTIONS(3043), + [anon_sym_internal] = ACTIONS(3043), + [anon_sym_protected] = ACTIONS(3043), + [anon_sym_tailrec] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_infix] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_external] = ACTIONS(3043), + [sym_property_modifier] = ACTIONS(3043), + [anon_sym_abstract] = ACTIONS(3043), + [anon_sym_final] = ACTIONS(3043), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_vararg] = ACTIONS(3043), + [anon_sym_noinline] = ACTIONS(3043), + [anon_sym_crossinline] = ACTIONS(3043), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2518] = { - [sym_primary_constructor] = STATE(5239), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2612), - [sym_type_constraints] = STATE(4559), - [sym_enum_class_body] = STATE(4604), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6004), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [2523] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2995), + [anon_sym_sealed] = ACTIONS(2995), + [anon_sym_annotation] = ACTIONS(2995), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_lateinit] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_internal] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_tailrec] = ACTIONS(2995), + [anon_sym_operator] = ACTIONS(2995), + [anon_sym_infix] = ACTIONS(2995), + [anon_sym_inline] = ACTIONS(2995), + [anon_sym_external] = ACTIONS(2995), + [sym_property_modifier] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_final] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2995), + [anon_sym_vararg] = ACTIONS(2995), + [anon_sym_noinline] = ACTIONS(2995), + [anon_sym_crossinline] = ACTIONS(2995), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2519] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [2524] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3018), - [anon_sym_sealed] = ACTIONS(3018), - [anon_sym_annotation] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3090), + [anon_sym_sealed] = ACTIONS(3090), + [anon_sym_annotation] = ACTIONS(3090), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_lateinit] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_internal] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_tailrec] = ACTIONS(3018), - [anon_sym_operator] = ACTIONS(3018), - [anon_sym_infix] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_external] = ACTIONS(3018), - [sym_property_modifier] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_vararg] = ACTIONS(3018), - [anon_sym_noinline] = ACTIONS(3018), - [anon_sym_crossinline] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_lateinit] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_internal] = ACTIONS(3090), + [anon_sym_protected] = ACTIONS(3090), + [anon_sym_tailrec] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_infix] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_external] = ACTIONS(3090), + [sym_property_modifier] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3090), + [anon_sym_vararg] = ACTIONS(3090), + [anon_sym_noinline] = ACTIONS(3090), + [anon_sym_crossinline] = ACTIONS(3090), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3020), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2520] = { - [sym_primary_constructor] = STATE(5235), - [sym_class_body] = STATE(4578), - [sym__class_parameters] = STATE(4565), - [sym_type_parameters] = STATE(2614), - [sym_type_constraints] = STATE(4550), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6006), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [2525] = { + [sym_primary_constructor] = STATE(5203), + [sym_class_body] = STATE(4953), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2608), + [sym_type_constraints] = STATE(4895), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), [sym_multiline_comment] = ACTIONS(3), }, - [2521] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2526] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299764,76 +300270,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2522] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2527] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299857,76 +300363,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2523] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2528] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3006), + [anon_sym_sealed] = ACTIONS(3006), + [anon_sym_annotation] = ACTIONS(3006), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_lateinit] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_internal] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_tailrec] = ACTIONS(3006), + [anon_sym_operator] = ACTIONS(3006), + [anon_sym_infix] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_external] = ACTIONS(3006), + [sym_property_modifier] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_open] = ACTIONS(3006), + [anon_sym_vararg] = ACTIONS(3006), + [anon_sym_noinline] = ACTIONS(3006), + [anon_sym_crossinline] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2529] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299950,76 +300549,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2524] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2530] = { + [sym_primary_constructor] = STATE(4067), + [sym_class_body] = STATE(3676), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2620), + [sym_type_constraints] = STATE(3546), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [2531] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300043,31 +300735,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2525] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2532] = { + [sym_primary_constructor] = STATE(4080), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2619), + [sym_type_constraints] = STATE(3052), + [sym_enum_class_body] = STATE(3466), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2533] = { + [sym_primary_constructor] = STATE(5236), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2617), + [sym_type_constraints] = STATE(4557), + [sym_enum_class_body] = STATE(4637), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2534] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3017), + [anon_sym_sealed] = ACTIONS(3017), + [anon_sym_annotation] = ACTIONS(3017), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_lateinit] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_internal] = ACTIONS(3017), + [anon_sym_protected] = ACTIONS(3017), + [anon_sym_tailrec] = ACTIONS(3017), + [anon_sym_operator] = ACTIONS(3017), + [anon_sym_infix] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_external] = ACTIONS(3017), + [sym_property_modifier] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_open] = ACTIONS(3017), + [anon_sym_vararg] = ACTIONS(3017), + [anon_sym_noinline] = ACTIONS(3017), + [anon_sym_crossinline] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2535] = { + [sym_primary_constructor] = STATE(5241), + [sym_class_body] = STATE(4657), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2612), + [sym_type_constraints] = STATE(4565), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2536] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_EQ] = ACTIONS(1694), @@ -300079,8 +301143,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), [anon_sym_STAR] = ACTIONS(1694), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), @@ -300136,76 +301200,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2526] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2537] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3082), + [anon_sym_sealed] = ACTIONS(3082), + [anon_sym_annotation] = ACTIONS(3082), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_lateinit] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_internal] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_tailrec] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_infix] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_external] = ACTIONS(3082), + [sym_property_modifier] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_open] = ACTIONS(3082), + [anon_sym_vararg] = ACTIONS(3082), + [anon_sym_noinline] = ACTIONS(3082), + [anon_sym_crossinline] = ACTIONS(3082), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2538] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300229,76 +301386,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2527] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2539] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300322,76 +301479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2528] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2540] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300415,76 +301572,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2529] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5758), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2541] = { + [sym_primary_constructor] = STATE(5199), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2607), + [sym_type_constraints] = STATE(4874), + [sym_enum_class_body] = STATE(4974), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2542] = { + [sym_primary_constructor] = STATE(4060), + [sym_class_body] = STATE(3209), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2614), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2543] = { + [sym_primary_constructor] = STATE(5249), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2611), + [sym_type_constraints] = STATE(4509), + [sym_enum_class_body] = STATE(4657), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2544] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300508,76 +301944,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2530] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2545] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300601,76 +302037,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2531] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2546] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300694,355 +302130,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2532] = { - [sym_primary_constructor] = STATE(5210), - [sym_class_body] = STATE(5050), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2603), - [sym_type_constraints] = STATE(4842), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), + [2547] = { + [sym_primary_constructor] = STATE(5212), + [sym_class_body] = STATE(4664), + [sym__class_parameters] = STATE(4538), + [sym_type_parameters] = STATE(2605), + [sym_type_constraints] = STATE(4539), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), [sym_multiline_comment] = ACTIONS(3), }, - [2533] = { - [sym_primary_constructor] = STATE(5200), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2596), - [sym_type_constraints] = STATE(4880), - [sym_enum_class_body] = STATE(4946), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6010), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [2548] = { + [sym_primary_constructor] = STATE(4070), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2606), + [sym_type_constraints] = STATE(3032), + [sym_enum_class_body] = STATE(3209), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, - [2534] = { - [sym_primary_constructor] = STATE(5196), - [sym_class_body] = STATE(4946), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2591), - [sym_type_constraints] = STATE(4892), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6012), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [2549] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3059), + [anon_sym_sealed] = ACTIONS(3059), + [anon_sym_annotation] = ACTIONS(3059), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3059), + [anon_sym_lateinit] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_internal] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_tailrec] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_infix] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_external] = ACTIONS(3059), + [sym_property_modifier] = ACTIONS(3059), + [anon_sym_abstract] = ACTIONS(3059), + [anon_sym_final] = ACTIONS(3059), + [anon_sym_open] = ACTIONS(3059), + [anon_sym_vararg] = ACTIONS(3059), + [anon_sym_noinline] = ACTIONS(3059), + [anon_sym_crossinline] = ACTIONS(3059), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2535] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8915), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5709), - [anon_sym_set] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2550] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301066,262 +302502,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2536] = { - [sym_primary_constructor] = STATE(4073), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2602), - [sym_type_constraints] = STATE(3077), - [sym_enum_class_body] = STATE(3232), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6014), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2537] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(4366), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3003), - [anon_sym_sealed] = ACTIONS(3003), - [anon_sym_annotation] = ACTIONS(3003), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_lateinit] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_tailrec] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3003), - [sym_property_modifier] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_vararg] = ACTIONS(3003), - [anon_sym_noinline] = ACTIONS(3003), - [anon_sym_crossinline] = ACTIONS(3003), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [2551] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(3598), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2538] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2552] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301345,76 +302688,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2539] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2553] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301438,31 +302781,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2540] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2554] = { + [sym_primary_constructor] = STATE(4053), + [sym_class_body] = STATE(3369), + [sym__class_parameters] = STATE(3044), + [sym_type_parameters] = STATE(2601), + [sym_type_constraints] = STATE(3069), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6035), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [2555] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_EQ] = ACTIONS(1694), @@ -301473,9 +302909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), [anon_sym_STAR] = ACTIONS(1694), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), @@ -301531,541 +302967,820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2541] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(2992), - [anon_sym_sealed] = ACTIONS(2992), - [anon_sym_annotation] = ACTIONS(2992), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_lateinit] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_internal] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_tailrec] = ACTIONS(2992), - [anon_sym_operator] = ACTIONS(2992), - [anon_sym_infix] = ACTIONS(2992), - [anon_sym_inline] = ACTIONS(2992), - [anon_sym_external] = ACTIONS(2992), - [sym_property_modifier] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_final] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_vararg] = ACTIONS(2992), - [anon_sym_noinline] = ACTIONS(2992), - [anon_sym_crossinline] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(3598), + [2556] = { + [sym_getter] = STATE(4592), + [sym_setter] = STATE(4592), + [sym_modifiers] = STATE(8918), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5695), + [anon_sym_set] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2542] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3011), + [2557] = { + [sym_primary_constructor] = STATE(5220), + [sym_class_body] = STATE(4974), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2628), + [sym_type_constraints] = STATE(4864), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2558] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_suspend] = ACTIONS(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + }, + [2559] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3011), - [anon_sym_sealed] = ACTIONS(3011), - [anon_sym_annotation] = ACTIONS(3011), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_lateinit] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_tailrec] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_external] = ACTIONS(3011), - [sym_property_modifier] = ACTIONS(3011), - [anon_sym_abstract] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_vararg] = ACTIONS(3011), - [anon_sym_noinline] = ACTIONS(3011), - [anon_sym_crossinline] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3078), + [anon_sym_sealed] = ACTIONS(3078), + [anon_sym_annotation] = ACTIONS(3078), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_lateinit] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_internal] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_tailrec] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_infix] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_external] = ACTIONS(3078), + [sym_property_modifier] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_open] = ACTIONS(3078), + [anon_sym_vararg] = ACTIONS(3078), + [anon_sym_noinline] = ACTIONS(3078), + [anon_sym_crossinline] = ACTIONS(3078), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3080), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2543] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3022), + [2560] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3022), - [anon_sym_sealed] = ACTIONS(3022), - [anon_sym_annotation] = ACTIONS(3022), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_lateinit] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_internal] = ACTIONS(3022), - [anon_sym_protected] = ACTIONS(3022), - [anon_sym_tailrec] = ACTIONS(3022), - [anon_sym_operator] = ACTIONS(3022), - [anon_sym_infix] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_external] = ACTIONS(3022), - [sym_property_modifier] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_vararg] = ACTIONS(3022), - [anon_sym_noinline] = ACTIONS(3022), - [anon_sym_crossinline] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3070), + [anon_sym_sealed] = ACTIONS(3070), + [anon_sym_annotation] = ACTIONS(3070), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_lateinit] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_internal] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_tailrec] = ACTIONS(3070), + [anon_sym_operator] = ACTIONS(3070), + [anon_sym_infix] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_external] = ACTIONS(3070), + [sym_property_modifier] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_open] = ACTIONS(3070), + [anon_sym_vararg] = ACTIONS(3070), + [anon_sym_noinline] = ACTIONS(3070), + [anon_sym_crossinline] = ACTIONS(3070), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2544] = { - [sym_primary_constructor] = STATE(5206), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2595), - [sym_type_constraints] = STATE(4865), - [sym_enum_class_body] = STATE(4992), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6016), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [2561] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(2984), + [anon_sym_sealed] = ACTIONS(2984), + [anon_sym_annotation] = ACTIONS(2984), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_lateinit] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_internal] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_tailrec] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_infix] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_external] = ACTIONS(2984), + [sym_property_modifier] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2984), + [anon_sym_vararg] = ACTIONS(2984), + [anon_sym_noinline] = ACTIONS(2984), + [anon_sym_crossinline] = ACTIONS(2984), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2545] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [2562] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(4372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4374), + [anon_sym_EQ_EQ] = ACTIONS(4372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4374), + [anon_sym_LT_EQ] = ACTIONS(4376), + [anon_sym_GT_EQ] = ACTIONS(4376), + [anon_sym_BANGin] = ACTIONS(4378), + [anon_sym_is] = ACTIONS(3646), + [anon_sym_BANGis] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3039), + [anon_sym_sealed] = ACTIONS(3039), + [anon_sym_annotation] = ACTIONS(3039), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3039), + [anon_sym_lateinit] = ACTIONS(3039), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_internal] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_tailrec] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_infix] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_external] = ACTIONS(3039), + [sym_property_modifier] = ACTIONS(3039), + [anon_sym_abstract] = ACTIONS(3039), + [anon_sym_final] = ACTIONS(3039), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_vararg] = ACTIONS(3039), + [anon_sym_noinline] = ACTIONS(3039), + [anon_sym_crossinline] = ACTIONS(3039), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3598), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(3636), [sym_multiline_comment] = ACTIONS(3), }, - [2546] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2563] = { + [sym_indexing_suffix] = STATE(3709), + [sym_navigation_suffix] = STATE(3820), + [sym_call_suffix] = STATE(3808), + [sym_annotated_lambda] = STATE(3807), + [sym_type_arguments] = STATE(7465), + [sym_value_arguments] = STATE(2882), + [sym_lambda_literal] = STATE(3770), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1779), + [sym__in_operator] = STATE(1780), + [sym__is_operator] = STATE(6072), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1807), + [sym__as_operator] = STATE(6070), + [sym__postfix_unary_operator] = STATE(3725), + [sym__member_access_operator] = STATE(7415), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1809), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(4360), + [sym_label] = ACTIONS(3624), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(4364), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_as_QMARK] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_BANG_BANG] = ACTIONS(3654), + [anon_sym_suspend] = ACTIONS(3024), + [anon_sym_sealed] = ACTIONS(3024), + [anon_sym_annotation] = ACTIONS(3024), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_lateinit] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_internal] = ACTIONS(3024), + [anon_sym_protected] = ACTIONS(3024), + [anon_sym_tailrec] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_infix] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_external] = ACTIONS(3024), + [sym_property_modifier] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_vararg] = ACTIONS(3024), + [anon_sym_noinline] = ACTIONS(3024), + [anon_sym_crossinline] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(3636), + [sym_multiline_comment] = ACTIONS(3), + }, + [2564] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8812), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_get] = ACTIONS(5717), + [anon_sym_set] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302089,76 +303804,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2547] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2565] = { + [sym_type_constraints] = STATE(2686), + [sym_property_delegate] = STATE(2752), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6039), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302182,262 +303895,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2548] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3040), - [anon_sym_sealed] = ACTIONS(3040), - [anon_sym_annotation] = ACTIONS(3040), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3040), - [anon_sym_lateinit] = ACTIONS(3040), - [anon_sym_public] = ACTIONS(3040), - [anon_sym_private] = ACTIONS(3040), - [anon_sym_internal] = ACTIONS(3040), - [anon_sym_protected] = ACTIONS(3040), - [anon_sym_tailrec] = ACTIONS(3040), - [anon_sym_operator] = ACTIONS(3040), - [anon_sym_infix] = ACTIONS(3040), - [anon_sym_inline] = ACTIONS(3040), - [anon_sym_external] = ACTIONS(3040), - [sym_property_modifier] = ACTIONS(3040), - [anon_sym_abstract] = ACTIONS(3040), - [anon_sym_final] = ACTIONS(3040), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_vararg] = ACTIONS(3040), - [anon_sym_noinline] = ACTIONS(3040), - [anon_sym_crossinline] = ACTIONS(3040), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2549] = { - [sym_primary_constructor] = STATE(4056), - [sym_class_body] = STATE(3302), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2572), - [sym_type_constraints] = STATE(3067), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6018), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2550] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2566] = { + [sym_type_constraints] = STATE(2667), + [sym_property_delegate] = STATE(2733), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6047), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6049), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302461,169 +303987,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2551] = { - [sym_primary_constructor] = STATE(4075), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2575), - [sym_type_constraints] = STATE(3058), - [sym_enum_class_body] = STATE(3302), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [2567] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2552] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2568] = { + [sym_type_constraints] = STATE(2706), + [sym_property_delegate] = STATE(2784), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302647,48 +304172,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2553] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8887), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2569] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_EQ] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(5739), - [anon_sym_set] = ACTIONS(5741), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -302740,815 +304263,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2554] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(4364), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3044), - [anon_sym_sealed] = ACTIONS(3044), - [anon_sym_annotation] = ACTIONS(3044), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3044), - [anon_sym_lateinit] = ACTIONS(3044), - [anon_sym_public] = ACTIONS(3044), - [anon_sym_private] = ACTIONS(3044), - [anon_sym_internal] = ACTIONS(3044), - [anon_sym_protected] = ACTIONS(3044), - [anon_sym_tailrec] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(3044), - [anon_sym_infix] = ACTIONS(3044), - [anon_sym_inline] = ACTIONS(3044), - [anon_sym_external] = ACTIONS(3044), - [sym_property_modifier] = ACTIONS(3044), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_final] = ACTIONS(3044), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_vararg] = ACTIONS(3044), - [anon_sym_noinline] = ACTIONS(3044), - [anon_sym_crossinline] = ACTIONS(3044), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2555] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(4362), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(4368), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4370), - [anon_sym_EQ_EQ] = ACTIONS(4368), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4372), - [anon_sym_BANGin] = ACTIONS(4374), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_BANGis] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3048), - [anon_sym_sealed] = ACTIONS(3048), - [anon_sym_annotation] = ACTIONS(3048), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3048), - [anon_sym_lateinit] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_internal] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_tailrec] = ACTIONS(3048), - [anon_sym_operator] = ACTIONS(3048), - [anon_sym_infix] = ACTIONS(3048), - [anon_sym_inline] = ACTIONS(3048), - [anon_sym_external] = ACTIONS(3048), - [sym_property_modifier] = ACTIONS(3048), - [anon_sym_abstract] = ACTIONS(3048), - [anon_sym_final] = ACTIONS(3048), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_vararg] = ACTIONS(3048), - [anon_sym_noinline] = ACTIONS(3048), - [anon_sym_crossinline] = ACTIONS(3048), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2556] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3052), - [anon_sym_sealed] = ACTIONS(3052), - [anon_sym_annotation] = ACTIONS(3052), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_lateinit] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_tailrec] = ACTIONS(3052), - [anon_sym_operator] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_inline] = ACTIONS(3052), - [anon_sym_external] = ACTIONS(3052), - [sym_property_modifier] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_vararg] = ACTIONS(3052), - [anon_sym_noinline] = ACTIONS(3052), - [anon_sym_crossinline] = ACTIONS(3052), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2557] = { - [sym_primary_constructor] = STATE(4042), - [sym_class_body] = STATE(3359), - [sym__class_parameters] = STATE(3039), - [sym_type_parameters] = STATE(2561), - [sym_type_constraints] = STATE(3040), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6022), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2558] = { - [sym_indexing_suffix] = STATE(3779), - [sym_navigation_suffix] = STATE(3798), - [sym_call_suffix] = STATE(3800), - [sym_annotated_lambda] = STATE(3806), - [sym_type_arguments] = STATE(7510), - [sym_value_arguments] = STATE(2838), - [sym_lambda_literal] = STATE(3829), - [sym__equality_operator] = STATE(2278), - [sym__comparison_operator] = STATE(2276), - [sym__in_operator] = STATE(2273), - [sym__is_operator] = STATE(6023), - [sym__additive_operator] = STATE(2271), - [sym__multiplicative_operator] = STATE(2268), - [sym__as_operator] = STATE(6024), - [sym__postfix_unary_operator] = STATE(3865), - [sym__member_access_operator] = STATE(7379), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2266), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(4356), - [sym_label] = ACTIONS(3586), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_SLASH] = ACTIONS(4378), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_as_QMARK] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_BANG_BANG] = ACTIONS(3616), - [anon_sym_suspend] = ACTIONS(3075), - [anon_sym_sealed] = ACTIONS(3075), - [anon_sym_annotation] = ACTIONS(3075), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_lateinit] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_tailrec] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3075), - [sym_property_modifier] = ACTIONS(3075), - [anon_sym_abstract] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_vararg] = ACTIONS(3075), - [anon_sym_noinline] = ACTIONS(3075), - [anon_sym_crossinline] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(3598), - [sym_multiline_comment] = ACTIONS(3), - }, - [2559] = { - [sym_primary_constructor] = STATE(4077), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6024), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [2560] = { - [sym_primary_constructor] = STATE(4102), - [sym_class_body] = STATE(3851), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2677), - [sym_type_constraints] = STATE(3660), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6026), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2561] = { - [sym_primary_constructor] = STATE(4041), - [sym_class_body] = STATE(3319), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3055), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6028), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - }, - [2562] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2570] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303572,75 +304355,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2563] = { - [sym_type_constraints] = STATE(2692), - [sym_property_delegate] = STATE(2739), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(6030), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(6034), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [2571] = { + [sym_type_constraints] = STATE(2705), + [sym_property_delegate] = STATE(2789), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303664,167 +304448,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2564] = { - [sym_primary_constructor] = STATE(4081), - [sym_class_body] = STATE(3796), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3661), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6040), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [2565] = { - [sym_type_constraints] = STATE(2664), - [sym_property_delegate] = STATE(2752), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6042), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6044), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2572] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3788), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303848,75 +304539,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2566] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5886), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2573] = { + [sym_primary_constructor] = STATE(4112), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2651), + [sym_type_constraints] = STATE(3600), + [sym_enum_class_body] = STATE(3850), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2574] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303940,75 +304723,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2567] = { - [sym_type_constraints] = STATE(2679), - [sym_property_delegate] = STATE(2732), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6046), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2575] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304032,75 +304815,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2568] = { - [sym_getter] = STATE(4953), - [sym_setter] = STATE(4953), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [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), + [2576] = { + [sym_type_constraints] = STATE(2707), + [sym_property_delegate] = STATE(2786), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304124,76 +304908,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym__automatic_semicolon] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2569] = { - [sym_type_constraints] = STATE(2701), - [sym_property_delegate] = STATE(2787), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6052), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2577] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304217,75 +304999,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2570] = { - [sym_type_constraints] = STATE(2699), - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6062), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6064), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2578] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304309,74 +305091,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2571] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2579] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304400,259 +305183,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2572] = { - [sym_primary_constructor] = STATE(4072), - [sym_class_body] = STATE(3261), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3076), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2573] = { - [sym_primary_constructor] = STATE(5358), - [sym_class_body] = STATE(5050), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2638), - [sym_type_constraints] = STATE(4842), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6072), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_as] = ACTIONS(3146), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3150), - [sym_label] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3146), - [anon_sym_DOT_DOT] = ACTIONS(3150), - [anon_sym_QMARK_COLON] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3150), - [anon_sym_EQ_EQ] = ACTIONS(3146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3150), - [anon_sym_BANGin] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3146), - [anon_sym_BANGis] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PERCENT] = ACTIONS(3150), - [anon_sym_as_QMARK] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_BANG_BANG] = ACTIONS(3150), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3150), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3150), - [sym_multiline_comment] = ACTIONS(3), - }, - [2574] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3740), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2580] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304676,168 +305275,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2575] = { - [sym_primary_constructor] = STATE(4067), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6074), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2576] = { - [sym_type_constraints] = STATE(2697), - [sym_property_delegate] = STATE(2793), - [sym_getter] = STATE(4567), - [sym_setter] = STATE(4567), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(6076), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(6078), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [2581] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304861,51 +305367,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2577] = { - [sym_type_constraints] = STATE(2637), - [sym_property_delegate] = STATE(2729), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2582] = { + [sym_type_constraints] = STATE(2712), + [sym_property_delegate] = STATE(2767), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6080), + [anon_sym_EQ] = ACTIONS(6069), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6032), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6053), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -304952,167 +305460,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2578] = { - [sym_primary_constructor] = STATE(4039), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6082), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2583] = { + [sym_primary_constructor] = STATE(5345), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2652), + [sym_type_constraints] = STATE(4874), + [sym_enum_class_body] = STATE(4974), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), [sym_multiline_comment] = ACTIONS(3), }, - [2579] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2584] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3786), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305136,75 +305643,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2580] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3704), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2585] = { + [sym_primary_constructor] = STATE(4093), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2643), + [sym_type_constraints] = STATE(3574), + [sym_enum_class_body] = STATE(3896), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2586] = { + [sym_type_constraints] = STATE(2659), + [sym_property_delegate] = STATE(2759), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305228,75 +305827,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2581] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5808), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2587] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305320,259 +305919,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2582] = { - [sym_primary_constructor] = STATE(4104), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2635), - [sym_type_constraints] = STATE(3669), - [sym_enum_class_body] = STATE(3688), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6084), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [2588] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2583] = { - [sym_primary_constructor] = STATE(5282), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2686), - [sym_type_constraints] = STATE(4865), - [sym_enum_class_body] = STATE(4992), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6086), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3108), - [sym_label] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_DOT_DOT] = ACTIONS(3108), - [anon_sym_QMARK_COLON] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_as_QMARK] = ACTIONS(3108), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_BANG_BANG] = ACTIONS(3108), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3108), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3108), + [2589] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3794), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2584] = { - [sym_type_constraints] = STATE(2642), - [sym_property_delegate] = STATE(2759), - [sym_getter] = STATE(4989), - [sym_setter] = STATE(4989), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(6088), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_COMMA] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(6090), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [2590] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305596,75 +306195,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2585] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2591] = { + [sym_getter] = STATE(3701), + [sym_setter] = STATE(3701), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305688,75 +306287,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2586] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2592] = { + [sym_primary_constructor] = STATE(5254), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4852), + [sym_enum_class_body] = STATE(5043), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2593] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305780,75 +306471,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2587] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2594] = { + [sym_type_constraints] = STATE(2699), + [sym_property_delegate] = STATE(2774), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(6085), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(6087), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305872,75 +306564,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2588] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2595] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3782), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305964,59 +306655,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2589] = { - [sym_type_constraints] = STATE(2709), - [sym_property_delegate] = STATE(2774), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2596] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_EQ] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6054), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1694), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), [anon_sym_DOT_DOT] = ACTIONS(1696), [anon_sym_QMARK_COLON] = ACTIONS(1696), [anon_sym_AMP_AMP] = ACTIONS(1696), [anon_sym_PIPE_PIPE] = ACTIONS(1696), [anon_sym_else] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), [anon_sym_BANG_EQ] = ACTIONS(1694), [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), [anon_sym_EQ_EQ] = ACTIONS(1694), @@ -306029,7 +306719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1694), [anon_sym_DASH] = ACTIONS(1694), [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1694), [anon_sym_as_QMARK] = ACTIONS(1696), [anon_sym_PLUS_PLUS] = ACTIONS(1696), [anon_sym_DASH_DASH] = ACTIONS(1696), @@ -306057,74 +306747,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2590] = { - [sym_type_constraints] = STATE(2656), - [sym_property_delegate] = STATE(2756), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6094), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2597] = { + [sym_getter] = STATE(5041), + [sym_setter] = STATE(5041), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306148,168 +306839,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2591] = { - [sym_primary_constructor] = STATE(5205), - [sym_class_body] = STATE(4973), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4867), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6096), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [2598] = { + [sym_type_constraints] = STATE(2702), + [sym_property_delegate] = STATE(2788), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6091), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2592] = { - [sym_type_constraints] = STATE(2707), - [sym_property_delegate] = STATE(2767), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6098), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2599] = { + [sym_type_constraints] = STATE(2704), + [sym_property_delegate] = STATE(2791), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6093), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4350), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306333,74 +307024,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2593] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2600] = { + [sym_primary_constructor] = STATE(5342), + [sym_class_body] = STATE(4974), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2669), + [sym_type_constraints] = STATE(4864), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2601] = { + [sym_primary_constructor] = STATE(4068), + [sym_class_body] = STATE(3208), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3037), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [2602] = { + [sym_type_constraints] = STATE(2710), + [sym_property_delegate] = STATE(2794), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6101), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306424,75 +307300,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2594] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2603] = { + [sym_primary_constructor] = STATE(4109), + [sym_class_body] = STATE(3676), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2672), + [sym_type_constraints] = STATE(3546), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [2604] = { + [sym_type_constraints] = STATE(2679), + [sym_property_delegate] = STATE(2756), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6105), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4093), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306516,243 +307483,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2595] = { - [sym_primary_constructor] = STATE(5212), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4885), - [sym_enum_class_body] = STATE(4917), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6100), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2605] = { + [sym_primary_constructor] = STATE(5250), + [sym_class_body] = STATE(4658), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4536), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [2596] = { - [sym_primary_constructor] = STATE(5250), - [sym__class_parameters] = STATE(4841), + [2606] = { + [sym_primary_constructor] = STATE(4058), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2607] = { + [sym_primary_constructor] = STATE(5224), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4865), + [sym_enum_class_body] = STATE(4998), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2608] = { + [sym_primary_constructor] = STATE(5201), + [sym_class_body] = STATE(4969), + [sym__class_parameters] = STATE(4894), [sym_type_constraints] = STATE(4876), - [sym_enum_class_body] = STATE(4973), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [2597] = { - [sym_type_constraints] = STATE(2710), - [sym_property_delegate] = STATE(2791), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2609] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6104), + [anon_sym_EQ] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6054), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5173), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1752), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), [anon_sym_PIPE_PIPE] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), [anon_sym_BANG_EQ] = ACTIONS(1752), [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), [anon_sym_EQ_EQ] = ACTIONS(1752), @@ -306765,7 +307915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1752), [anon_sym_DASH] = ACTIONS(1752), [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1752), [anon_sym_as_QMARK] = ACTIONS(1754), [anon_sym_PLUS_PLUS] = ACTIONS(1754), [anon_sym_DASH_DASH] = ACTIONS(1754), @@ -306793,74 +307943,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2598] = { - [sym_type_constraints] = STATE(2653), + [2610] = { + [sym_primary_constructor] = STATE(5360), + [sym_class_body] = STATE(4953), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2662), + [sym_type_constraints] = STATE(4895), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6115), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3124), + [sym_label] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_QMARK_COLON] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_as_QMARK] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_BANG_BANG] = ACTIONS(3124), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3124), + [sym_multiline_comment] = ACTIONS(3), + }, + [2611] = { + [sym_primary_constructor] = STATE(5240), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4553), + [sym_enum_class_body] = STATE(4649), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2612] = { + [sym_primary_constructor] = STATE(5237), + [sym_class_body] = STATE(4649), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4548), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2613] = { + [sym_type_constraints] = STATE(2638), [sym_property_delegate] = STATE(2751), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6106), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4119), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [sym_getter] = STATE(4955), + [sym_setter] = STATE(4955), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(6123), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306884,75 +308311,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2599] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2614] = { + [sym_primary_constructor] = STATE(4055), + [sym_class_body] = STATE(3317), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3020), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2615] = { + [sym_primary_constructor] = STATE(5322), + [sym__class_parameters] = STATE(4894), + [sym_type_parameters] = STATE(2689), + [sym_type_constraints] = STATE(4861), + [sym_enum_class_body] = STATE(5017), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2616] = { + [sym_type_constraints] = STATE(2641), + [sym_property_delegate] = STATE(2760), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306976,45 +308587,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2600] = { - [sym_primary_constructor] = STATE(4071), - [sym_class_body] = STATE(3786), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3631), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [2617] = { + [sym_primary_constructor] = STATE(5230), + [sym__class_parameters] = STATE(4538), + [sym_type_constraints] = STATE(4550), + [sym_enum_class_body] = STATE(4628), + [sym_modifiers] = STATE(9522), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6131), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_constructor] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5145), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5127), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -307022,6 +308633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3200), [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), @@ -307045,98 +308657,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [2601] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2618] = { + [sym_type_constraints] = STATE(2691), + [sym_property_delegate] = STATE(2739), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307160,137 +308771,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2602] = { - [sym_primary_constructor] = STATE(4080), - [sym__class_parameters] = STATE(3039), - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym_modifiers] = STATE(9227), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6110), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2603] = { - [sym_primary_constructor] = STATE(5207), - [sym_class_body] = STATE(4962), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4875), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [2619] = { + [sym_primary_constructor] = STATE(4047), + [sym__class_parameters] = STATE(3044), + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), + [sym_modifiers] = STATE(9523), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6112), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6135), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), + [anon_sym_constructor] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5403), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -307298,6 +308817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3200), [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), @@ -307321,190 +308841,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [2604] = { - [sym_primary_constructor] = STATE(5260), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4528), - [sym_enum_class_body] = STATE(4703), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6114), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [2620] = { + [sym_primary_constructor] = STATE(4072), + [sym_class_body] = STATE(3825), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3604), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [2605] = { - [sym_getter] = STATE(3722), - [sym_setter] = STATE(3722), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [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), + [2621] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307528,75 +309047,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym__automatic_semicolon] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2606] = { - [sym_type_constraints] = STATE(2691), - [sym_property_delegate] = STATE(2744), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6116), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2622] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307620,174 +309139,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2607] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [2623] = { + [sym_primary_constructor] = STATE(4056), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [2608] = { - [sym_type_constraints] = STATE(2713), - [sym_property_delegate] = STATE(2778), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6118), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), + [2624] = { + [sym_primary_constructor] = STATE(4083), + [sym_class_body] = STATE(3776), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3580), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2625] = { + [sym_primary_constructor] = STATE(4086), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2626] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8793), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5819), + [anon_sym_set] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), [anon_sym_private] = ACTIONS(81), @@ -307805,57 +309507,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2609] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2627] = { + [sym_type_constraints] = STATE(2709), + [sym_property_delegate] = STATE(2793), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6145), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6053), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4348), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), [anon_sym_PIPE_PIPE] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), [anon_sym_BANG_EQ] = ACTIONS(1752), [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), [anon_sym_EQ_EQ] = ACTIONS(1752), @@ -307868,7 +309572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1752), [anon_sym_DASH] = ACTIONS(1752), [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), [anon_sym_as_QMARK] = ACTIONS(1754), [anon_sym_PLUS_PLUS] = ACTIONS(1754), [anon_sym_DASH_DASH] = ACTIONS(1754), @@ -307896,167 +309600,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2610] = { - [sym_primary_constructor] = STATE(5253), - [sym_class_body] = STATE(4697), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4514), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6120), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [2628] = { + [sym_primary_constructor] = STATE(5243), + [sym_class_body] = STATE(4998), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4862), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [2611] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2629] = { + [sym_primary_constructor] = STATE(4110), + [sym_class_body] = STATE(3850), + [sym__class_parameters] = STATE(3672), + [sym_type_parameters] = STATE(2645), + [sym_type_constraints] = STATE(3576), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3156), + [sym_label] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_QMARK_COLON] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_as_QMARK] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3156), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_safe_nav] = ACTIONS(3156), + [sym_multiline_comment] = ACTIONS(3), + }, + [2630] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308080,167 +309875,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2612] = { - [sym_primary_constructor] = STATE(5251), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4524), - [sym_enum_class_body] = STATE(4697), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6122), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2613] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2631] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308264,260 +309967,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2614] = { - [sym_primary_constructor] = STATE(5236), - [sym_class_body] = STATE(4603), - [sym__class_parameters] = STATE(4565), - [sym_type_constraints] = STATE(4557), - [sym_modifiers] = STATE(9275), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6124), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - }, - [2615] = { - [sym_primary_constructor] = STATE(5316), - [sym_class_body] = STATE(4946), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2671), - [sym_type_constraints] = STATE(4892), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6126), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2616] = { - [sym_type_constraints] = STATE(2700), - [sym_property_delegate] = STATE(2766), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6128), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2632] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8735), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5897), + [anon_sym_get] = ACTIONS(5794), + [anon_sym_set] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308541,74 +310059,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2617] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), + [2633] = { + [sym_type_constraints] = STATE(2644), + [sym_property_delegate] = STATE(2738), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6151), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308632,75 +310151,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2618] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3754), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2634] = { + [sym_type_constraints] = STATE(2661), + [sym_property_delegate] = STATE(2741), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308724,75 +310243,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2619] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2635] = { + [sym_type_constraints] = STATE(2716), + [sym_property_delegate] = STATE(2779), + [sym_getter] = STATE(4663), + [sym_setter] = STATE(4663), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(6155), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(6157), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308816,75 +310336,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2620] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2636] = { + [sym_type_constraints] = STATE(2639), + [sym_property_delegate] = STATE(2748), + [sym_getter] = STATE(3718), + [sym_setter] = STATE(3718), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(6159), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(6161), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308908,75 +310427,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2621] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2637] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309000,75 +310519,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2622] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8904), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3748), - [anon_sym_get] = ACTIONS(5782), - [anon_sym_set] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2638] = { + [sym_property_delegate] = STATE(2759), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309092,168 +310609,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2623] = { - [sym_primary_constructor] = STATE(5337), - [sym__class_parameters] = STATE(4841), - [sym_type_parameters] = STATE(2654), - [sym_type_constraints] = STATE(4880), - [sym_enum_class_body] = STATE(4946), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6130), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2624] = { - [sym_type_constraints] = STATE(2703), - [sym_property_delegate] = STATE(2771), - [sym_getter] = STATE(3343), - [sym_setter] = STATE(3343), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(6132), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_RPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(6134), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [2639] = { + [sym_property_delegate] = STATE(2733), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6047), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6049), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309277,74 +310700,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2625] = { - [sym_type_constraints] = STATE(2668), - [sym_property_delegate] = STATE(2748), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6138), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2640] = { + [sym_getter] = STATE(5300), + [sym_setter] = STATE(5300), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309368,75 +310781,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [2626] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8721), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5810), - [anon_sym_set] = ACTIONS(5812), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2641] = { + [sym_property_delegate] = STATE(2738), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6151), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309460,144 +310882,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2627] = { - [sym_primary_constructor] = STATE(4109), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2669), - [sym_type_constraints] = STATE(3620), - [sym_enum_class_body] = STATE(3842), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2628] = { - [sym_type_constraints] = STATE(2632), - [sym_property_delegate] = STATE(2749), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2642] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6142), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6032), + [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -309644,168 +310974,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2629] = { - [sym_primary_constructor] = STATE(4112), - [sym_class_body] = STATE(3842), - [sym__class_parameters] = STATE(3610), - [sym_type_parameters] = STATE(2674), - [sym_type_constraints] = STATE(3563), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6144), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_as] = ACTIONS(3136), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(5362), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3140), - [sym_label] = ACTIONS(3140), - [anon_sym_in] = ACTIONS(3136), - [anon_sym_DOT_DOT] = ACTIONS(3140), - [anon_sym_QMARK_COLON] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3140), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_BANGin] = ACTIONS(3140), - [anon_sym_is] = ACTIONS(3136), - [anon_sym_BANGis] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_as_QMARK] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_BANG_BANG] = ACTIONS(3140), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3140), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_safe_nav] = ACTIONS(3140), + [2643] = { + [sym_primary_constructor] = STATE(4108), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [2630] = { - [sym_type_constraints] = STATE(2708), - [sym_property_delegate] = STATE(2777), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6146), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4218), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2644] = { + [sym_property_delegate] = STATE(2758), + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309829,63 +311155,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2631] = { - [sym_getter] = STATE(5311), - [sym_setter] = STATE(5311), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), + [2645] = { + [sym_primary_constructor] = STATE(4095), + [sym_class_body] = STATE(3776), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3580), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2646] = { + [sym_getter] = STATE(5273), + [sym_setter] = STATE(5273), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -309909,84 +311327,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [2632] = { - [sym_property_delegate] = STATE(2738), - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6148), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4105), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2647] = { + [sym_getter] = STATE(4592), + [sym_setter] = STATE(4592), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310010,75 +311429,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2633] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2648] = { + [sym_type_constraints] = STATE(2724), + [sym_property_delegate] = STATE(2801), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310102,74 +311519,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2634] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2649] = { + [sym_type_constraints] = STATE(2721), + [sym_property_delegate] = STATE(2803), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6177), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6179), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310193,165 +311610,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [2635] = { - [sym_primary_constructor] = STATE(4115), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6150), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2636] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2650] = { + [sym_getter] = STATE(5326), + [sym_setter] = STATE(5326), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310375,73 +311691,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [2651] = { + [sym_primary_constructor] = STATE(4101), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [2637] = { - [sym_property_delegate] = STATE(2733), - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6152), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2652] = { + [sym_primary_constructor] = STATE(5341), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4865), + [sym_enum_class_body] = STATE(4998), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2653] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310465,166 +311975,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2638] = { - [sym_primary_constructor] = STATE(5338), - [sym_class_body] = STATE(4962), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4875), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6154), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [2654] = { + [sym_type_constraints] = STATE(2731), + [sym_property_delegate] = STATE(2824), + [sym_getter] = STATE(4955), + [sym_setter] = STATE(4955), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(6187), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2639] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2655] = { + [sym_type_constraints] = STATE(2723), + [sym_property_delegate] = STATE(2823), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6193), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310648,50 +312156,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2640] = { - [sym_type_constraints] = STATE(2726), - [sym_property_delegate] = STATE(2833), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2656] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6156), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6158), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), [anon_sym_DOT_DOT] = ACTIONS(1696), [anon_sym_QMARK_COLON] = ACTIONS(1696), [anon_sym_AMP_AMP] = ACTIONS(1696), @@ -310738,75 +312248,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2641] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2657] = { + [sym_getter] = STATE(5354), + [sym_setter] = STATE(5354), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310830,73 +312328,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [2642] = { - [sym_property_delegate] = STATE(2748), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6138), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2658] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310920,75 +312430,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2643] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_RBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [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), + [2659] = { + [sym_property_delegate] = STATE(2756), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6105), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4093), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311012,63 +312520,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2644] = { - [sym_getter] = STATE(5383), - [sym_setter] = STATE(5383), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), + [2660] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311092,84 +312612,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), }, - [2645] = { - [sym_type_constraints] = STATE(2725), - [sym_property_delegate] = STATE(2795), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4430), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2661] = { + [sym_property_delegate] = STATE(2734), + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4077), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311193,75 +312702,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2646] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2662] = { + [sym_primary_constructor] = STATE(5350), + [sym_class_body] = STATE(4969), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4876), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [2663] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311285,74 +312885,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2647] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2664] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311376,73 +312976,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2648] = { - [sym_type_constraints] = STATE(2721), - [sym_property_delegate] = STATE(2828), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6166), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4438), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2665] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311466,64 +313067,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2649] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5800), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [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(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), + [2666] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311547,85 +313158,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), }, - [2650] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(3810), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2667] = { + [sym_property_delegate] = STATE(2752), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6039), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311649,74 +313248,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2651] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2668] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311740,74 +313340,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2652] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2669] = { + [sym_primary_constructor] = STATE(5333), + [sym_class_body] = STATE(4998), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4862), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [2670] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311831,50 +313522,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2653] = { - [sym_property_delegate] = STATE(2749), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2671] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3798), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2672] = { + [sym_primary_constructor] = STATE(4113), + [sym_class_body] = STATE(3825), + [sym__class_parameters] = STATE(3672), + [sym_type_constraints] = STATE(3604), + [sym_modifiers] = STATE(9563), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_constructor] = ACTIONS(5437), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [2673] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6142), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6032), + [anon_sym_RPAREN] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -311921,337 +313795,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2654] = { - [sym_primary_constructor] = STATE(5314), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4876), - [sym_enum_class_body] = STATE(4973), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6168), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [2655] = { - [sym_type_constraints] = STATE(2722), - [sym_property_delegate] = STATE(2831), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(6170), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(6172), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), - [sym_multiline_comment] = ACTIONS(3), - }, - [2656] = { - [sym_property_delegate] = STATE(2751), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6106), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4119), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2657] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), + [2674] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312275,74 +313886,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [2658] = { - [sym_getter] = STATE(5392), - [sym_setter] = STATE(5392), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2675] = { + [sym_type_constraints] = STATE(2732), + [sym_property_delegate] = STATE(2833), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6203), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), [anon_sym_BANGin] = ACTIONS(1754), [anon_sym_is] = ACTIONS(1752), [anon_sym_BANGis] = ACTIONS(1754), [anon_sym_PLUS] = ACTIONS(1752), [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), [anon_sym_PLUS_PLUS] = ACTIONS(1754), [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312366,267 +313976,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), - }, - [2659] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3806), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2660] = { - [sym_type_constraints] = STATE(2723), - [sym_property_delegate] = STATE(2800), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6178), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4398), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2661] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2676] = { + [sym_type_constraints] = STATE(2730), + [sym_property_delegate] = STATE(2811), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6205), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4416), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312650,73 +314067,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2662] = { - [sym_type_constraints] = STATE(2716), - [sym_property_delegate] = STATE(2807), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6180), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6182), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2677] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312740,75 +314159,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2663] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2678] = { + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(5833), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312832,73 +314239,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), }, - [2664] = { - [sym_property_delegate] = STATE(2756), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6094), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2679] = { + [sym_property_delegate] = STATE(2739), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312922,75 +314340,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2665] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2680] = { + [sym_type_constraints] = STATE(2727), + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6209), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313014,74 +314431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2666] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2681] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313105,74 +314523,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2667] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3812), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2682] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313196,73 +314614,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2668] = { - [sym_property_delegate] = STATE(2744), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6116), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2683] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313286,166 +314705,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2669] = { - [sym_primary_constructor] = STATE(4100), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2670] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2684] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313469,164 +314796,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - }, - [2671] = { - [sym_primary_constructor] = STATE(5292), - [sym_class_body] = STATE(4973), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4867), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6186), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2672] = { - [sym_type_constraints] = STATE(2719), - [sym_property_delegate] = STATE(2834), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6188), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4382), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2685] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313650,75 +314887,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2673] = { - [sym_getter] = STATE(3329), - [sym_setter] = STATE(3329), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_RBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [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), + [2686] = { + [sym_property_delegate] = STATE(2760), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313742,165 +314977,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), - [sym_multiline_comment] = ACTIONS(3), - }, - [2674] = { - [sym_primary_constructor] = STATE(4091), - [sym_class_body] = STATE(3796), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3661), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2675] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5962), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2687] = { + [sym_type_constraints] = STATE(2728), + [sym_property_delegate] = STATE(2798), + [sym_getter] = STATE(3718), + [sym_setter] = STATE(3718), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(6211), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(6213), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313924,74 +315068,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2676] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(3800), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2688] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314015,43 +315160,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2677] = { - [sym_primary_constructor] = STATE(4103), - [sym_class_body] = STATE(3786), - [sym__class_parameters] = STATE(3610), - [sym_type_constraints] = STATE(3631), - [sym_modifiers] = STATE(9241), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), + [2689] = { + [sym_primary_constructor] = STATE(5310), + [sym__class_parameters] = STATE(4894), + [sym_type_constraints] = STATE(4852), + [sym_enum_class_body] = STATE(5043), + [sym_modifiers] = STATE(9472), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6192), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(6215), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_constructor] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_constructor] = ACTIONS(5403), + [anon_sym_LBRACE] = ACTIONS(5405), [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5407), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5411), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -314082,98 +315227,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), + [anon_sym_suspend] = ACTIONS(3136), + [anon_sym_sealed] = ACTIONS(3138), + [anon_sym_annotation] = ACTIONS(3138), + [anon_sym_data] = ACTIONS(3138), + [anon_sym_inner] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_internal] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [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(3144), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_open] = ACTIONS(3146), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3150), + [anon_sym_actual] = ACTIONS(3150), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [2678] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2690] = { + [sym_type_constraints] = STATE(2726), + [sym_property_delegate] = STATE(2834), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314197,47 +315341,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2679] = { - [sym_property_delegate] = STATE(2729), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2691] = { + [sym_property_delegate] = STATE(2741), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6080), + [anon_sym_EQ] = ACTIONS(6153), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6032), + [anon_sym_by] = ACTIONS(6041), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -314287,75 +315432,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2680] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2692] = { + [sym_type_constraints] = STATE(2729), + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6219), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4354), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314379,73 +315523,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2681] = { - [sym_type_constraints] = STATE(2718), - [sym_property_delegate] = STATE(2808), - [sym_getter] = STATE(4989), - [sym_setter] = STATE(4989), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3230), - [anon_sym_EQ] = ACTIONS(6194), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(6196), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_QMARK_COLON] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_PIPE_PIPE] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_BANG_EQ] = ACTIONS(3230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ] = ACTIONS(3230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3234), - [anon_sym_BANGin] = ACTIONS(3234), - [anon_sym_is] = ACTIONS(3230), - [anon_sym_BANGis] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3234), + [2693] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314469,64 +315615,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3234), - [sym__automatic_semicolon] = ACTIONS(3234), - [sym_safe_nav] = ACTIONS(3234), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2682] = { - [sym_getter] = STATE(5339), - [sym_setter] = STATE(5339), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), + [2694] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8758), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(5957), + [anon_sym_set] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314550,85 +315706,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), }, - [2683] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8934), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(5936), - [anon_sym_get] = ACTIONS(5908), - [anon_sym_set] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2695] = { + [sym_getter] = STATE(3361), + [sym_setter] = STATE(3361), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314652,74 +315797,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2684] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2696] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314743,74 +315888,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2685] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2697] = { + [sym_getter] = STATE(5284), + [sym_setter] = STATE(5284), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314834,164 +315968,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2686] = { - [sym_primary_constructor] = STATE(5279), - [sym__class_parameters] = STATE(4841), - [sym_type_constraints] = STATE(4885), - [sym_enum_class_body] = STATE(4917), - [sym_modifiers] = STATE(9347), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_COLON] = ACTIONS(6198), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_constructor] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3120), - [anon_sym_sealed] = ACTIONS(3122), - [anon_sym_annotation] = ACTIONS(3122), - [anon_sym_data] = ACTIONS(3122), - [anon_sym_inner] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_lateinit] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_tailrec] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_infix] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym_external] = ACTIONS(3120), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_open] = ACTIONS(3130), - [anon_sym_vararg] = ACTIONS(3132), - [anon_sym_noinline] = ACTIONS(3132), - [anon_sym_crossinline] = ACTIONS(3132), - [anon_sym_expect] = ACTIONS(3134), - [anon_sym_actual] = ACTIONS(3134), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [2687] = { - [sym_type_constraints] = STATE(2717), - [sym_property_delegate] = STATE(2822), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6200), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4428), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2698] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8883), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(3846), + [anon_sym_get] = ACTIONS(5919), + [anon_sym_set] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315015,75 +316070,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2688] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2699] = { + [sym_property_delegate] = STATE(2794), + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6101), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315107,73 +316160,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2689] = { - [sym_type_constraints] = STATE(2724), - [sym_property_delegate] = STATE(2817), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6202), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6204), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2700] = { + [sym_getter] = STATE(5300), + [sym_setter] = STATE(5300), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315197,75 +316239,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [2690] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8791), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(3794), - [anon_sym_get] = ACTIONS(5902), - [anon_sym_set] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2701] = { + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_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_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), + }, + [2702] = { + [sym_property_delegate] = STATE(2789), + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315289,73 +316430,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2691] = { - [sym_property_delegate] = STATE(2732), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2703] = { + [sym_getter] = STATE(5311), + [sym_setter] = STATE(5311), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6046), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), [anon_sym_BANGin] = ACTIONS(1696), [anon_sym_is] = ACTIONS(1694), [anon_sym_BANGis] = ACTIONS(1696), [anon_sym_PLUS] = ACTIONS(1694), [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), [anon_sym_PLUS_PLUS] = ACTIONS(1696), [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315379,74 +316509,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), [sym__backtick_identifier] = ACTIONS(1696), [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), }, - [2692] = { - [sym_property_delegate] = STATE(2752), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6042), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6032), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6044), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2704] = { + [sym_property_delegate] = STATE(2793), + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4348), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315470,63 +316610,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2693] = { - [sym_getter] = STATE(5339), - [sym_setter] = STATE(5339), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), + [2705] = { + [sym_property_delegate] = STATE(2791), + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6093), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4350), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315550,163 +316700,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [2694] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_interface] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_RPAREN] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3958), - [anon_sym_var] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3958), - [anon_sym_fun] = ACTIONS(3958), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3958), - [anon_sym_sealed] = ACTIONS(3958), - [anon_sym_annotation] = ACTIONS(3958), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3958), - [anon_sym_lateinit] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_internal] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_tailrec] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_infix] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym_external] = ACTIONS(3958), - [sym_property_modifier] = ACTIONS(3958), - [anon_sym_abstract] = ACTIONS(3958), - [anon_sym_final] = ACTIONS(3958), - [anon_sym_open] = ACTIONS(3958), - [anon_sym_vararg] = ACTIONS(3958), - [anon_sym_noinline] = ACTIONS(3958), - [anon_sym_crossinline] = ACTIONS(3958), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2695] = { - [sym_getter] = STATE(5311), - [sym_setter] = STATE(5311), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), + [2706] = { + [sym_property_delegate] = STATE(2786), + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315730,73 +316790,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), }, - [2696] = { - [sym_getter] = STATE(5300), - [sym_setter] = STATE(5300), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_fun] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(3278), - [anon_sym_super] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [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(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), + [2707] = { + [sym_property_delegate] = STATE(2767), + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(6069), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315820,84 +316880,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), }, - [2697] = { - [sym_property_delegate] = STATE(2787), - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6052), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2708] = { + [sym_getter] = STATE(5273), + [sym_setter] = STATE(5273), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315921,62 +316959,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [2698] = { - [sym_getter] = STATE(5327), - [sym_setter] = STATE(5327), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), + [2709] = { + [sym_property_delegate] = STATE(2771), + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4338), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316000,84 +317060,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), }, - [2699] = { - [sym_property_delegate] = STATE(2778), - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6118), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2710] = { + [sym_property_delegate] = STATE(2784), + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316101,73 +317150,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2700] = { - [sym_property_delegate] = STATE(2777), - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6146), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4218), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2711] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_RBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3897), + [anon_sym_var] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3897), + [anon_sym_fun] = ACTIONS(3897), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3899), + [anon_sym_sealed] = ACTIONS(3899), + [anon_sym_annotation] = ACTIONS(3899), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3899), + [anon_sym_lateinit] = ACTIONS(3899), + [anon_sym_public] = ACTIONS(3899), + [anon_sym_private] = ACTIONS(3899), + [anon_sym_internal] = ACTIONS(3899), + [anon_sym_protected] = ACTIONS(3899), + [anon_sym_tailrec] = ACTIONS(3899), + [anon_sym_operator] = ACTIONS(3899), + [anon_sym_infix] = ACTIONS(3899), + [anon_sym_inline] = ACTIONS(3899), + [anon_sym_external] = ACTIONS(3899), + [sym_property_modifier] = ACTIONS(3899), + [anon_sym_abstract] = ACTIONS(3899), + [anon_sym_final] = ACTIONS(3899), + [anon_sym_open] = ACTIONS(3899), + [anon_sym_vararg] = ACTIONS(3899), + [anon_sym_noinline] = ACTIONS(3899), + [anon_sym_crossinline] = ACTIONS(3899), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + }, + [2712] = { + [sym_property_delegate] = STATE(2773), + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6223), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316191,73 +317330,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2701] = { - [sym_property_delegate] = STATE(2766), - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6128), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2713] = { + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316281,62 +317409,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [2714] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_RBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3897), + [anon_sym_var] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3897), + [anon_sym_fun] = ACTIONS(3897), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3897), + [anon_sym_sealed] = ACTIONS(3897), + [anon_sym_annotation] = ACTIONS(3897), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3897), + [anon_sym_lateinit] = ACTIONS(3897), + [anon_sym_public] = ACTIONS(3897), + [anon_sym_private] = ACTIONS(3897), + [anon_sym_internal] = ACTIONS(3897), + [anon_sym_protected] = ACTIONS(3897), + [anon_sym_tailrec] = ACTIONS(3897), + [anon_sym_operator] = ACTIONS(3897), + [anon_sym_infix] = ACTIONS(3897), + [anon_sym_inline] = ACTIONS(3897), + [anon_sym_external] = ACTIONS(3897), + [sym_property_modifier] = ACTIONS(3897), + [anon_sym_abstract] = ACTIONS(3897), + [anon_sym_final] = ACTIONS(3897), + [anon_sym_open] = ACTIONS(3897), + [anon_sym_vararg] = ACTIONS(3897), + [anon_sym_noinline] = ACTIONS(3897), + [anon_sym_crossinline] = ACTIONS(3897), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), [sym_multiline_comment] = ACTIONS(3), }, - [2702] = { - [sym_getter] = STATE(5277), - [sym_setter] = STATE(5277), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), + [2715] = { + [sym_getter] = STATE(5284), + [sym_setter] = STATE(5284), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316360,84 +317589,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), }, - [2703] = { - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6062), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6064), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2716] = { + [sym_property_delegate] = STATE(2788), + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6091), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316461,62 +317690,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2704] = { - [sym_getter] = STATE(5392), - [sym_setter] = STATE(5392), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), + [2717] = { + [sym_getter] = STATE(5354), + [sym_setter] = STATE(5354), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316540,73 +317769,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [2718] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_RBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3873), + [anon_sym_fun] = ACTIONS(3873), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3875), + [anon_sym_sealed] = ACTIONS(3875), + [anon_sym_annotation] = ACTIONS(3875), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3875), + [anon_sym_lateinit] = ACTIONS(3875), + [anon_sym_public] = ACTIONS(3875), + [anon_sym_private] = ACTIONS(3875), + [anon_sym_internal] = ACTIONS(3875), + [anon_sym_protected] = ACTIONS(3875), + [anon_sym_tailrec] = ACTIONS(3875), + [anon_sym_operator] = ACTIONS(3875), + [anon_sym_infix] = ACTIONS(3875), + [anon_sym_inline] = ACTIONS(3875), + [anon_sym_external] = ACTIONS(3875), + [sym_property_modifier] = ACTIONS(3875), + [anon_sym_abstract] = ACTIONS(3875), + [anon_sym_final] = ACTIONS(3875), + [anon_sym_open] = ACTIONS(3875), + [anon_sym_vararg] = ACTIONS(3875), + [anon_sym_noinline] = ACTIONS(3875), + [anon_sym_crossinline] = ACTIONS(3875), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), }, - [2705] = { - [sym_getter] = STATE(5336), - [sym_setter] = STATE(5336), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [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(5792), - [anon_sym_set] = ACTIONS(5794), - [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), + [2719] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_RBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3873), + [anon_sym_fun] = ACTIONS(3873), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3873), + [anon_sym_sealed] = ACTIONS(3873), + [anon_sym_annotation] = ACTIONS(3873), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3873), + [anon_sym_lateinit] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_internal] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_tailrec] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_infix] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym_external] = ACTIONS(3873), + [sym_property_modifier] = ACTIONS(3873), + [anon_sym_abstract] = ACTIONS(3873), + [anon_sym_final] = ACTIONS(3873), + [anon_sym_open] = ACTIONS(3873), + [anon_sym_vararg] = ACTIONS(3873), + [anon_sym_noinline] = ACTIONS(3873), + [anon_sym_crossinline] = ACTIONS(3873), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + }, + [2720] = { + [sym_getter] = STATE(5326), + [sym_setter] = STATE(5326), + [sym_modifiers] = STATE(8631), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(5811), + [anon_sym_set] = ACTIONS(5813), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316630,174 +318039,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3340), - [anon_sym_continue_AT] = ACTIONS(3340), - [anon_sym_break_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), - }, - [2706] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_interface] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_RPAREN] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3950), - [anon_sym_fun] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3952), - [anon_sym_sealed] = ACTIONS(3952), - [anon_sym_annotation] = ACTIONS(3952), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_lateinit] = ACTIONS(3952), - [anon_sym_public] = ACTIONS(3952), - [anon_sym_private] = ACTIONS(3952), - [anon_sym_internal] = ACTIONS(3952), - [anon_sym_protected] = ACTIONS(3952), - [anon_sym_tailrec] = ACTIONS(3952), - [anon_sym_operator] = ACTIONS(3952), - [anon_sym_infix] = ACTIONS(3952), - [anon_sym_inline] = ACTIONS(3952), - [anon_sym_external] = ACTIONS(3952), - [sym_property_modifier] = ACTIONS(3952), - [anon_sym_abstract] = ACTIONS(3952), - [anon_sym_final] = ACTIONS(3952), - [anon_sym_open] = ACTIONS(3952), - [anon_sym_vararg] = ACTIONS(3952), - [anon_sym_noinline] = ACTIONS(3952), - [anon_sym_crossinline] = ACTIONS(3952), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), }, - [2707] = { - [sym_property_delegate] = STATE(2768), - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6206), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2721] = { + [sym_property_delegate] = STATE(2801), + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316821,50 +318138,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2708] = { - [sym_property_delegate] = STATE(2767), - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2722] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3897), + [anon_sym_var] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3897), + [anon_sym_fun] = ACTIONS(3897), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3897), + [anon_sym_sealed] = ACTIONS(3897), + [anon_sym_annotation] = ACTIONS(3897), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3897), + [anon_sym_lateinit] = ACTIONS(3897), + [anon_sym_public] = ACTIONS(3897), + [anon_sym_private] = ACTIONS(3897), + [anon_sym_internal] = ACTIONS(3897), + [anon_sym_protected] = ACTIONS(3897), + [anon_sym_tailrec] = ACTIONS(3897), + [anon_sym_operator] = ACTIONS(3897), + [anon_sym_infix] = ACTIONS(3897), + [anon_sym_inline] = ACTIONS(3897), + [anon_sym_external] = ACTIONS(3897), + [sym_property_modifier] = ACTIONS(3897), + [anon_sym_abstract] = ACTIONS(3897), + [anon_sym_final] = ACTIONS(3897), + [anon_sym_open] = ACTIONS(3897), + [anon_sym_vararg] = ACTIONS(3897), + [anon_sym_noinline] = ACTIONS(3897), + [anon_sym_crossinline] = ACTIONS(3897), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + }, + [2723] = { + [sym_property_delegate] = STATE(2811), + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_EQ] = ACTIONS(6205), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6054), + [anon_sym_by] = ACTIONS(6171), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), + [anon_sym_SEMI] = ACTIONS(4416), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -316911,50 +318316,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2709] = { - [sym_property_delegate] = STATE(2791), - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2724] = { + [sym_property_delegate] = STATE(2823), + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6193), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2725] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3873), + [anon_sym_fun] = ACTIONS(3873), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3873), + [anon_sym_sealed] = ACTIONS(3873), + [anon_sym_annotation] = ACTIONS(3873), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3873), + [anon_sym_lateinit] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_internal] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_tailrec] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_infix] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym_external] = ACTIONS(3873), + [sym_property_modifier] = ACTIONS(3873), + [anon_sym_abstract] = ACTIONS(3873), + [anon_sym_final] = ACTIONS(3873), + [anon_sym_open] = ACTIONS(3873), + [anon_sym_vararg] = ACTIONS(3873), + [anon_sym_noinline] = ACTIONS(3873), + [anon_sym_crossinline] = ACTIONS(3873), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + }, + [2726] = { + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6219), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4354), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2727] = { + [sym_property_delegate] = STATE(2834), + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2728] = { + [sym_property_delegate] = STATE(2803), + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6177), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6179), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [2729] = { + [sym_property_delegate] = STATE(2833), + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6104), + [anon_sym_EQ] = ACTIONS(6203), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6054), + [anon_sym_by] = ACTIONS(6171), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), [anon_sym_DOT_DOT] = ACTIONS(1754), [anon_sym_QMARK_COLON] = ACTIONS(1754), [anon_sym_AMP_AMP] = ACTIONS(1754), @@ -317001,73 +318850,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2710] = { - [sym_property_delegate] = STATE(2775), - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6208), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2730] = { + [sym_property_delegate] = STATE(2800), + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317091,62 +318939,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2711] = { - [sym_getter] = STATE(5383), - [sym_setter] = STATE(5383), - [sym_modifiers] = STATE(8811), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_get] = ACTIONS(5792), - [anon_sym_set] = ACTIONS(5794), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), + [2731] = { + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6209), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317170,174 +319028,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), - }, - [2712] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_interface] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_RPAREN] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3958), - [anon_sym_var] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3958), - [anon_sym_fun] = ACTIONS(3958), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3960), - [anon_sym_sealed] = ACTIONS(3960), - [anon_sym_annotation] = ACTIONS(3960), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_lateinit] = ACTIONS(3960), - [anon_sym_public] = ACTIONS(3960), - [anon_sym_private] = ACTIONS(3960), - [anon_sym_internal] = ACTIONS(3960), - [anon_sym_protected] = ACTIONS(3960), - [anon_sym_tailrec] = ACTIONS(3960), - [anon_sym_operator] = ACTIONS(3960), - [anon_sym_infix] = ACTIONS(3960), - [anon_sym_inline] = ACTIONS(3960), - [anon_sym_external] = ACTIONS(3960), - [sym_property_modifier] = ACTIONS(3960), - [anon_sym_abstract] = ACTIONS(3960), - [anon_sym_final] = ACTIONS(3960), - [anon_sym_open] = ACTIONS(3960), - [anon_sym_vararg] = ACTIONS(3960), - [anon_sym_noinline] = ACTIONS(3960), - [anon_sym_crossinline] = ACTIONS(3960), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2713] = { - [sym_property_delegate] = STATE(2774), - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6092), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2732] = { + [sym_property_delegate] = STATE(2825), + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(6227), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_by] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317361,250 +319117,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2714] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_interface] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_RPAREN] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3950), - [anon_sym_fun] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3950), - [anon_sym_sealed] = ACTIONS(3950), - [anon_sym_annotation] = ACTIONS(3950), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3950), - [anon_sym_lateinit] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_internal] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_tailrec] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_infix] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym_external] = ACTIONS(3950), - [sym_property_modifier] = ACTIONS(3950), - [anon_sym_abstract] = ACTIONS(3950), - [anon_sym_final] = ACTIONS(3950), - [anon_sym_open] = ACTIONS(3950), - [anon_sym_vararg] = ACTIONS(3950), - [anon_sym_noinline] = ACTIONS(3950), - [anon_sym_crossinline] = ACTIONS(3950), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2715] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_interface] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3950), - [anon_sym_fun] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3950), - [anon_sym_sealed] = ACTIONS(3950), - [anon_sym_annotation] = ACTIONS(3950), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3950), - [anon_sym_lateinit] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_internal] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_tailrec] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_infix] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym_external] = ACTIONS(3950), - [sym_property_modifier] = ACTIONS(3950), - [anon_sym_abstract] = ACTIONS(3950), - [anon_sym_final] = ACTIONS(3950), - [anon_sym_open] = ACTIONS(3950), - [anon_sym_vararg] = ACTIONS(3950), - [anon_sym_noinline] = ACTIONS(3950), - [anon_sym_crossinline] = ACTIONS(3950), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [2733] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2716] = { - [sym_property_delegate] = STATE(2822), - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6200), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4428), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2734] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317628,46 +319293,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2717] = { - [sym_property_delegate] = STATE(2800), - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2735] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6178), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6158), + [anon_sym_COMMA] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4398), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), [anon_sym_STAR] = ACTIONS(1696), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), @@ -317717,339 +319381,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2718] = { - [sym_property_delegate] = STATE(2817), - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6202), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6204), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2719] = { - [sym_property_delegate] = STATE(2816), - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2720] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_interface] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3958), - [anon_sym_var] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3958), - [anon_sym_fun] = ACTIONS(3958), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3958), - [anon_sym_sealed] = ACTIONS(3958), - [anon_sym_annotation] = ACTIONS(3958), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3958), - [anon_sym_lateinit] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_internal] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_tailrec] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_infix] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym_external] = ACTIONS(3958), - [sym_property_modifier] = ACTIONS(3958), - [anon_sym_abstract] = ACTIONS(3958), - [anon_sym_final] = ACTIONS(3958), - [anon_sym_open] = ACTIONS(3958), - [anon_sym_vararg] = ACTIONS(3958), - [anon_sym_noinline] = ACTIONS(3958), - [anon_sym_crossinline] = ACTIONS(3958), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [2736] = { + [sym_annotated_lambda] = STATE(3180), + [sym_lambda_literal] = STATE(3303), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_RBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RPAREN] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_DASH_GT] = ACTIONS(3914), + [sym_label] = ACTIONS(3914), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_while] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_suspend] = ACTIONS(3912), + [anon_sym_sealed] = ACTIONS(3912), + [anon_sym_annotation] = ACTIONS(3912), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_override] = ACTIONS(3912), + [anon_sym_lateinit] = ACTIONS(3912), + [anon_sym_public] = ACTIONS(3912), + [anon_sym_private] = ACTIONS(3912), + [anon_sym_internal] = ACTIONS(3912), + [anon_sym_protected] = ACTIONS(3912), + [anon_sym_tailrec] = ACTIONS(3912), + [anon_sym_operator] = ACTIONS(3912), + [anon_sym_infix] = ACTIONS(3912), + [anon_sym_inline] = ACTIONS(3912), + [anon_sym_external] = ACTIONS(3912), + [sym_property_modifier] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3912), + [anon_sym_final] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3912), + [anon_sym_vararg] = ACTIONS(3912), + [anon_sym_noinline] = ACTIONS(3912), + [anon_sym_crossinline] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), [sym_multiline_comment] = ACTIONS(3), }, - [2721] = { - [sym_property_delegate] = STATE(2821), - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2737] = { + [sym_getter] = STATE(5041), + [sym_setter] = STATE(5041), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318073,72 +319557,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2722] = { - [sym_property_delegate] = STATE(2807), - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(6180), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6182), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2738] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318162,46 +319645,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2723] = { - [sym_property_delegate] = STATE(2834), - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2739] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6188), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6158), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4382), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -318251,72 +319733,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2724] = { - [sym_property_delegate] = STATE(2795), - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4430), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2740] = { + [sym_annotated_lambda] = STATE(3210), + [sym_lambda_literal] = STATE(3303), + [sym_annotation] = STATE(7896), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7896), + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_RBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_RPAREN] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_DASH_GT] = ACTIONS(3880), + [sym_label] = ACTIONS(3880), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_suspend] = ACTIONS(3878), + [anon_sym_sealed] = ACTIONS(3878), + [anon_sym_annotation] = ACTIONS(3878), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_override] = ACTIONS(3878), + [anon_sym_lateinit] = ACTIONS(3878), + [anon_sym_public] = ACTIONS(3878), + [anon_sym_private] = ACTIONS(3878), + [anon_sym_internal] = ACTIONS(3878), + [anon_sym_protected] = ACTIONS(3878), + [anon_sym_tailrec] = ACTIONS(3878), + [anon_sym_operator] = ACTIONS(3878), + [anon_sym_infix] = ACTIONS(3878), + [anon_sym_inline] = ACTIONS(3878), + [anon_sym_external] = ACTIONS(3878), + [sym_property_modifier] = ACTIONS(3878), + [anon_sym_abstract] = ACTIONS(3878), + [anon_sym_final] = ACTIONS(3878), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_vararg] = ACTIONS(3878), + [anon_sym_noinline] = ACTIONS(3878), + [anon_sym_crossinline] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), + [sym_multiline_comment] = ACTIONS(3), + }, + [2741] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4077), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318340,72 +319909,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2725] = { - [sym_property_delegate] = STATE(2833), - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(6156), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_by] = ACTIONS(6158), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2742] = { + [sym_annotated_lambda] = STATE(3367), + [sym_lambda_literal] = STATE(3321), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_fun] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_this] = ACTIONS(3912), + [anon_sym_super] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [sym_label] = ACTIONS(3912), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_null] = ACTIONS(3912), + [anon_sym_if] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_when] = ACTIONS(3912), + [anon_sym_try] = ACTIONS(3912), + [anon_sym_throw] = ACTIONS(3912), + [anon_sym_return] = ACTIONS(3912), + [anon_sym_continue] = ACTIONS(3912), + [anon_sym_break] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3914), + [anon_sym_continue_AT] = ACTIONS(3914), + [anon_sym_break_AT] = ACTIONS(3914), + [sym_real_literal] = ACTIONS(3914), + [sym_integer_literal] = ACTIONS(3912), + [sym_hex_literal] = ACTIONS(3914), + [sym_bin_literal] = ACTIONS(3914), + [anon_sym_true] = ACTIONS(3912), + [anon_sym_false] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3914), + [sym__backtick_identifier] = ACTIONS(3914), + [sym__automatic_semicolon] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3914), + }, + [2743] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318429,46 +320085,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2726] = { - [sym_property_delegate] = STATE(2828), - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2744] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(6166), [anon_sym_LBRACE] = ACTIONS(1754), [anon_sym_RBRACE] = ACTIONS(1754), [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_by] = ACTIONS(6158), + [anon_sym_COMMA] = ACTIONS(1754), [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4438), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -318518,159 +320173,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2727] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_RPAREN] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3971), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(4011), - [anon_sym_DASH_EQ] = ACTIONS(4011), - [anon_sym_STAR_EQ] = ACTIONS(4011), - [anon_sym_SLASH_EQ] = ACTIONS(4011), - [anon_sym_PERCENT_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), + [2745] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2728] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2746] = { + [sym_getter] = STATE(3701), + [sym_setter] = STATE(3701), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318694,71 +320349,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2729] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2747] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318782,71 +320437,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2730] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2748] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6049), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318870,120 +320525,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2731] = { - [sym_annotated_lambda] = STATE(3352), - [sym_lambda_literal] = STATE(3415), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_object] = ACTIONS(4019), - [anon_sym_fun] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4019), - [anon_sym_super] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [sym_label] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_try] = ACTIONS(4019), - [anon_sym_throw] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4021), - [anon_sym_continue_AT] = ACTIONS(4021), - [anon_sym_break_AT] = ACTIONS(4021), - [sym_real_literal] = ACTIONS(4021), - [sym_integer_literal] = ACTIONS(4019), - [sym_hex_literal] = ACTIONS(4021), - [sym_bin_literal] = ACTIONS(4021), - [anon_sym_true] = ACTIONS(4019), - [anon_sym_false] = ACTIONS(4019), - [anon_sym_SQUOTE] = ACTIONS(4021), - [sym__backtick_identifier] = ACTIONS(4021), - [sym__automatic_semicolon] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4021), + [2749] = { + [sym_annotated_lambda] = STATE(3389), + [sym_lambda_literal] = STATE(3321), + [sym_annotation] = STATE(7883), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_object] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_this] = ACTIONS(3878), + [anon_sym_super] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [sym_label] = ACTIONS(3878), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_when] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_throw] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_continue] = ACTIONS(3878), + [anon_sym_break] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3880), + [anon_sym_continue_AT] = ACTIONS(3880), + [anon_sym_break_AT] = ACTIONS(3880), + [sym_real_literal] = ACTIONS(3880), + [sym_integer_literal] = ACTIONS(3878), + [sym_hex_literal] = ACTIONS(3880), + [sym_bin_literal] = ACTIONS(3880), + [anon_sym_true] = ACTIONS(3878), + [anon_sym_false] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3880), + [sym__backtick_identifier] = ACTIONS(3880), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3880), }, - [2732] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2750] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -318994,9 +320649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1752), [anon_sym_where] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -319046,71 +320701,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2733] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2751] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319134,71 +320789,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2734] = { - [sym_getter] = STATE(3722), - [sym_setter] = STATE(3722), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [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), + [2752] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319222,71 +320877,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym__automatic_semicolon] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2735] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2753] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319310,71 +320965,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2736] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2754] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319398,71 +321053,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2737] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2755] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319486,71 +321141,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2738] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4055), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2756] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319574,71 +321229,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2739] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6044), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2757] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319662,71 +321317,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2740] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2758] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319750,71 +321405,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2741] = { - [sym_getter] = STATE(4953), - [sym_setter] = STATE(4953), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [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), + [2759] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4093), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319838,71 +321493,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym__automatic_semicolon] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2742] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2760] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319926,159 +321581,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2743] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_object] = ACTIONS(3969), - [anon_sym_fun] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_this] = ACTIONS(3969), - [anon_sym_super] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3969), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_null] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3969), - [anon_sym_throw] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_continue] = ACTIONS(3969), - [anon_sym_break] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(4011), - [anon_sym_DASH_EQ] = ACTIONS(4011), - [anon_sym_STAR_EQ] = ACTIONS(4011), - [anon_sym_SLASH_EQ] = ACTIONS(4011), - [anon_sym_PERCENT_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3971), - [anon_sym_continue_AT] = ACTIONS(3971), - [anon_sym_break_AT] = ACTIONS(3971), - [sym_real_literal] = ACTIONS(3971), - [sym_integer_literal] = ACTIONS(3969), - [sym_hex_literal] = ACTIONS(3971), - [sym_bin_literal] = ACTIONS(3971), - [anon_sym_true] = ACTIONS(3969), - [anon_sym_false] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(3971), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3971), + [2761] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), }, - [2744] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2762] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320102,159 +321757,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2745] = { - [sym_annotated_lambda] = STATE(3226), - [sym_lambda_literal] = STATE(3351), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [sym_label] = ACTIONS(4007), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_while] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_suspend] = ACTIONS(4005), - [anon_sym_sealed] = ACTIONS(4005), - [anon_sym_annotation] = ACTIONS(4005), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_lateinit] = ACTIONS(4005), - [anon_sym_public] = ACTIONS(4005), - [anon_sym_private] = ACTIONS(4005), - [anon_sym_internal] = ACTIONS(4005), - [anon_sym_protected] = ACTIONS(4005), - [anon_sym_tailrec] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_infix] = ACTIONS(4005), - [anon_sym_inline] = ACTIONS(4005), - [anon_sym_external] = ACTIONS(4005), - [sym_property_modifier] = ACTIONS(4005), - [anon_sym_abstract] = ACTIONS(4005), - [anon_sym_final] = ACTIONS(4005), - [anon_sym_open] = ACTIONS(4005), - [anon_sym_vararg] = ACTIONS(4005), - [anon_sym_noinline] = ACTIONS(4005), - [anon_sym_crossinline] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), + [2763] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8875), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6079), + [anon_sym_set] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2746] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2764] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8932), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6043), + [anon_sym_set] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320278,71 +321933,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2747] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2765] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320366,71 +322021,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2748] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2766] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320454,71 +322108,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2749] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4105), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2767] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320542,71 +322195,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2750] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2768] = { + [sym_getter] = STATE(3404), + [sym_setter] = STATE(3404), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320630,71 +322282,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2751] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2769] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320718,71 +322369,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2752] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2770] = { + [sym_catch_block] = STATE(2810), + [sym_finally_block] = STATE(3204), + [aux_sym_try_expression_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_RBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_RPAREN] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [anon_sym_DASH_GT] = ACTIONS(4037), + [sym_label] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_while] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_catch] = ACTIONS(6229), + [anon_sym_finally] = ACTIONS(6231), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_suspend] = ACTIONS(4035), + [anon_sym_sealed] = ACTIONS(4035), + [anon_sym_annotation] = ACTIONS(4035), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_override] = ACTIONS(4035), + [anon_sym_lateinit] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_private] = ACTIONS(4035), + [anon_sym_internal] = ACTIONS(4035), + [anon_sym_protected] = ACTIONS(4035), + [anon_sym_tailrec] = ACTIONS(4035), + [anon_sym_operator] = ACTIONS(4035), + [anon_sym_infix] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_external] = ACTIONS(4035), + [sym_property_modifier] = ACTIONS(4035), + [anon_sym_abstract] = ACTIONS(4035), + [anon_sym_final] = ACTIONS(4035), + [anon_sym_open] = ACTIONS(4035), + [anon_sym_vararg] = ACTIONS(4035), + [anon_sym_noinline] = ACTIONS(4035), + [anon_sym_crossinline] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), + }, + [2771] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(4324), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320806,159 +322543,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2753] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_RPAREN] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3971), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(3985), - [anon_sym_DASH_EQ] = ACTIONS(3985), - [anon_sym_STAR_EQ] = ACTIONS(3985), - [anon_sym_SLASH_EQ] = ACTIONS(3985), - [anon_sym_PERCENT_EQ] = ACTIONS(3985), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), + [2772] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2754] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2773] = { + [sym_getter] = STATE(3390), + [sym_setter] = STATE(3390), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320982,71 +322717,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2755] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2774] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6101), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321070,48 +322804,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2756] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8943), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2775] = { + [sym_getter] = STATE(3378), + [sym_setter] = STATE(3378), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4119), - [anon_sym_get] = ACTIONS(6036), - [anon_sym_set] = ACTIONS(6038), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), [anon_sym_STAR] = ACTIONS(1696), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), [anon_sym_DOT_DOT] = ACTIONS(1696), [anon_sym_QMARK_COLON] = ACTIONS(1696), [anon_sym_AMP_AMP] = ACTIONS(1696), @@ -321158,71 +322891,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2757] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2776] = { + [sym_getter] = STATE(3361), + [sym_setter] = STATE(3361), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321246,71 +322978,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2758] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2777] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3897), + [anon_sym_var] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3897), + [anon_sym_fun] = ACTIONS(3897), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3899), + [anon_sym_sealed] = ACTIONS(3899), + [anon_sym_annotation] = ACTIONS(3899), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3899), + [anon_sym_lateinit] = ACTIONS(3899), + [anon_sym_public] = ACTIONS(3899), + [anon_sym_private] = ACTIONS(3899), + [anon_sym_internal] = ACTIONS(3899), + [anon_sym_protected] = ACTIONS(3899), + [anon_sym_tailrec] = ACTIONS(3899), + [anon_sym_operator] = ACTIONS(3899), + [anon_sym_infix] = ACTIONS(3899), + [anon_sym_inline] = ACTIONS(3899), + [anon_sym_external] = ACTIONS(3899), + [sym_property_modifier] = ACTIONS(3899), + [anon_sym_abstract] = ACTIONS(3899), + [anon_sym_final] = ACTIONS(3899), + [anon_sym_open] = ACTIONS(3899), + [anon_sym_vararg] = ACTIONS(3899), + [anon_sym_noinline] = ACTIONS(3899), + [anon_sym_crossinline] = ACTIONS(3899), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + }, + [2778] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321334,71 +323152,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2759] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8872), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6138), - [anon_sym_get] = ACTIONS(6048), - [anon_sym_set] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2779] = { + [sym_getter] = STATE(4568), + [sym_setter] = STATE(4568), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6091), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321422,296 +323239,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(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2760] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_object] = ACTIONS(3969), - [anon_sym_fun] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_this] = ACTIONS(3969), - [anon_sym_super] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3969), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_null] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3969), - [anon_sym_throw] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_continue] = ACTIONS(3969), - [anon_sym_break] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(3985), - [anon_sym_DASH_EQ] = ACTIONS(3985), - [anon_sym_STAR_EQ] = ACTIONS(3985), - [anon_sym_SLASH_EQ] = ACTIONS(3985), - [anon_sym_PERCENT_EQ] = ACTIONS(3985), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3971), - [anon_sym_continue_AT] = ACTIONS(3971), - [anon_sym_break_AT] = ACTIONS(3971), - [sym_real_literal] = ACTIONS(3971), - [sym_integer_literal] = ACTIONS(3969), - [sym_hex_literal] = ACTIONS(3971), - [sym_bin_literal] = ACTIONS(3971), - [anon_sym_true] = ACTIONS(3969), - [anon_sym_false] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(3971), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3971), - }, - [2761] = { - [sym_annotated_lambda] = STATE(3309), - [sym_lambda_literal] = STATE(3351), - [sym_annotation] = STATE(7893), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7893), - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4021), - [sym_label] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_while] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2762] = { - [sym_annotated_lambda] = STATE(3299), - [sym_lambda_literal] = STATE(3415), - [sym_annotation] = STATE(7887), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7887), - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_object] = ACTIONS(4005), - [anon_sym_fun] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_this] = ACTIONS(4005), - [anon_sym_super] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [sym_label] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_null] = ACTIONS(4005), - [anon_sym_if] = ACTIONS(4005), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [anon_sym_try] = ACTIONS(4005), - [anon_sym_throw] = ACTIONS(4005), - [anon_sym_return] = ACTIONS(4005), - [anon_sym_continue] = ACTIONS(4005), - [anon_sym_break] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4007), - [anon_sym_continue_AT] = ACTIONS(4007), - [anon_sym_break_AT] = ACTIONS(4007), - [sym_real_literal] = ACTIONS(4007), - [sym_integer_literal] = ACTIONS(4005), - [sym_hex_literal] = ACTIONS(4007), - [sym_bin_literal] = ACTIONS(4007), - [anon_sym_true] = ACTIONS(4005), - [anon_sym_false] = ACTIONS(4005), - [anon_sym_SQUOTE] = ACTIONS(4007), - [sym__backtick_identifier] = ACTIONS(4007), - [sym__automatic_semicolon] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4007), - }, - [2763] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2780] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -321722,8 +323274,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -321774,205 +323326,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2764] = { - [sym_catch_block] = STATE(2801), - [sym_finally_block] = STATE(3303), - [aux_sym_try_expression_repeat1] = STATE(2801), - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_object] = ACTIONS(4023), - [anon_sym_fun] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_this] = ACTIONS(4023), - [anon_sym_super] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [sym_label] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_null] = ACTIONS(4023), - [anon_sym_if] = ACTIONS(4023), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(4023), - [anon_sym_catch] = ACTIONS(6214), - [anon_sym_finally] = ACTIONS(6216), - [anon_sym_throw] = ACTIONS(4023), - [anon_sym_return] = ACTIONS(4023), - [anon_sym_continue] = ACTIONS(4023), - [anon_sym_break] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4023), - [anon_sym_inner] = ACTIONS(4023), - [anon_sym_expect] = ACTIONS(4023), - [anon_sym_actual] = ACTIONS(4023), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4025), - [anon_sym_continue_AT] = ACTIONS(4025), - [anon_sym_break_AT] = ACTIONS(4025), - [sym_real_literal] = ACTIONS(4025), - [sym_integer_literal] = ACTIONS(4023), - [sym_hex_literal] = ACTIONS(4025), - [sym_bin_literal] = ACTIONS(4025), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_SQUOTE] = ACTIONS(4025), - [sym__backtick_identifier] = ACTIONS(4025), - [sym__automatic_semicolon] = ACTIONS(4025), - [sym_safe_nav] = ACTIONS(4025), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4025), - }, - [2765] = { - [sym_getter] = STATE(3329), - [sym_setter] = STATE(3329), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), - [sym_multiline_comment] = ACTIONS(3), - }, - [2766] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2781] = { + [sym_getter] = STATE(4567), + [sym_setter] = STATE(4567), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), @@ -321982,9 +323360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4218), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), [anon_sym_STAR] = ACTIONS(1696), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), @@ -322035,157 +323413,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2767] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2768] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2782] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322209,70 +323500,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2769] = { - [sym_getter] = STATE(4602), - [sym_setter] = STATE(4602), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2783] = { + [sym_getter] = STATE(4597), + [sym_setter] = STATE(4597), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322296,70 +323587,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2770] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2784] = { + [sym_getter] = STATE(3452), + [sym_setter] = STATE(3452), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322383,70 +323674,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2771] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6064), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2785] = { + [sym_getter] = STATE(4592), + [sym_setter] = STATE(4592), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322470,31 +323761,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2772] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2786] = { + [sym_getter] = STATE(3427), + [sym_setter] = STATE(3427), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -322504,9 +323795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -322557,70 +323848,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2773] = { - [sym_getter] = STATE(3312), - [sym_setter] = STATE(3312), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2787] = { + [sym_getter] = STATE(3223), + [sym_setter] = STATE(3223), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322644,70 +323935,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2774] = { - [sym_getter] = STATE(3142), - [sym_setter] = STATE(3142), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), + [2788] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322731,70 +324022,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2775] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4314), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2789] = { + [sym_getter] = STATE(4633), + [sym_setter] = STATE(4633), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4350), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322818,70 +324109,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2776] = { - [sym_getter] = STATE(3243), - [sym_setter] = STATE(3243), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2790] = { + [sym_getter] = STATE(4648), + [sym_setter] = STATE(4648), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322905,31 +324196,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2777] = { - [sym_getter] = STATE(4659), - [sym_setter] = STATE(4659), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2791] = { + [sym_getter] = STATE(4622), + [sym_setter] = STATE(4622), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -322939,9 +324230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), + [anon_sym_SEMI] = ACTIONS(4348), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -322992,70 +324283,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2778] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2792] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323079,244 +324370,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2779] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_interface] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3950), - [anon_sym_fun] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3952), - [anon_sym_sealed] = ACTIONS(3952), - [anon_sym_annotation] = ACTIONS(3952), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_lateinit] = ACTIONS(3952), - [anon_sym_public] = ACTIONS(3952), - [anon_sym_private] = ACTIONS(3952), - [anon_sym_internal] = ACTIONS(3952), - [anon_sym_protected] = ACTIONS(3952), - [anon_sym_tailrec] = ACTIONS(3952), - [anon_sym_operator] = ACTIONS(3952), - [anon_sym_infix] = ACTIONS(3952), - [anon_sym_inline] = ACTIONS(3952), - [anon_sym_external] = ACTIONS(3952), - [sym_property_modifier] = ACTIONS(3952), - [anon_sym_abstract] = ACTIONS(3952), - [anon_sym_final] = ACTIONS(3952), - [anon_sym_open] = ACTIONS(3952), - [anon_sym_vararg] = ACTIONS(3952), - [anon_sym_noinline] = ACTIONS(3952), - [anon_sym_crossinline] = ACTIONS(3952), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - }, - [2780] = { - [sym_catch_block] = STATE(2798), - [sym_finally_block] = STATE(3192), - [aux_sym_try_expression_repeat1] = STATE(2798), - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_RBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_RPAREN] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4025), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_while] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_catch] = ACTIONS(6218), - [anon_sym_finally] = ACTIONS(6220), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [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_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(4025), - [sym_safe_nav] = ACTIONS(4025), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2781] = { - [sym_getter] = STATE(3291), - [sym_setter] = STATE(3291), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2793] = { + [sym_getter] = STATE(4604), + [sym_setter] = STATE(4604), + [sym_modifiers] = STATE(8640), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4338), + [anon_sym_get] = ACTIONS(6061), + [anon_sym_set] = ACTIONS(6063), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323340,70 +324457,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2782] = { - [sym_getter] = STATE(4682), - [sym_setter] = STATE(4682), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), + [2794] = { + [sym_getter] = STATE(3338), + [sym_setter] = STATE(3338), + [sym_modifiers] = STATE(8892), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym_get] = ACTIONS(6055), + [anon_sym_set] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323427,70 +324544,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2783] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2795] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_typealias] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3873), + [anon_sym_fun] = ACTIONS(3873), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3875), + [anon_sym_sealed] = ACTIONS(3875), + [anon_sym_annotation] = ACTIONS(3875), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3875), + [anon_sym_lateinit] = ACTIONS(3875), + [anon_sym_public] = ACTIONS(3875), + [anon_sym_private] = ACTIONS(3875), + [anon_sym_internal] = ACTIONS(3875), + [anon_sym_protected] = ACTIONS(3875), + [anon_sym_tailrec] = ACTIONS(3875), + [anon_sym_operator] = ACTIONS(3875), + [anon_sym_infix] = ACTIONS(3875), + [anon_sym_inline] = ACTIONS(3875), + [anon_sym_external] = ACTIONS(3875), + [sym_property_modifier] = ACTIONS(3875), + [anon_sym_abstract] = ACTIONS(3875), + [anon_sym_final] = ACTIONS(3875), + [anon_sym_open] = ACTIONS(3875), + [anon_sym_vararg] = ACTIONS(3875), + [anon_sym_noinline] = ACTIONS(3875), + [anon_sym_crossinline] = ACTIONS(3875), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + }, + [2796] = { + [sym_catch_block] = STATE(2815), + [sym_finally_block] = STATE(3387), + [aux_sym_try_expression_repeat1] = STATE(2815), + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4035), + [anon_sym_fun] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_this] = ACTIONS(4035), + [anon_sym_super] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_when] = ACTIONS(4035), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_catch] = ACTIONS(6233), + [anon_sym_finally] = ACTIONS(6235), + [anon_sym_throw] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4037), + [anon_sym_continue_AT] = ACTIONS(4037), + [anon_sym_break_AT] = ACTIONS(4037), + [sym_real_literal] = ACTIONS(4037), + [sym_integer_literal] = ACTIONS(4035), + [sym_hex_literal] = ACTIONS(4037), + [sym_bin_literal] = ACTIONS(4037), + [anon_sym_true] = ACTIONS(4035), + [anon_sym_false] = ACTIONS(4035), + [anon_sym_SQUOTE] = ACTIONS(4037), + [sym__backtick_identifier] = ACTIONS(4037), + [sym__automatic_semicolon] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4037), + }, + [2797] = { + [sym_type_constraints] = STATE(2906), + [sym_function_body] = STATE(3260), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6237), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_RBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_RPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [anon_sym_DASH_GT] = ACTIONS(4081), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + }, + [2798] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6179), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323514,70 +324889,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2784] = { - [sym_getter] = STATE(3255), - [sym_setter] = STATE(3255), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2799] = { + [sym_type_constraints] = STATE(2966), + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + }, + [2800] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323601,70 +325061,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2785] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2801] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323688,47 +325147,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2786] = { - [sym_getter] = STATE(4715), - [sym_setter] = STATE(4715), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2802] = { + [sym_getter] = STATE(3706), + [sym_setter] = STATE(3706), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), [anon_sym_STAR] = ACTIONS(1696), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), [anon_sym_DOT_DOT] = ACTIONS(1696), [anon_sym_QMARK_COLON] = ACTIONS(1696), [anon_sym_AMP_AMP] = ACTIONS(1696), @@ -323775,70 +325233,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2787] = { - [sym_getter] = STATE(4641), - [sym_setter] = STATE(4641), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4227), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2803] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323862,70 +325319,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2788] = { - [sym_getter] = STATE(3203), - [sym_setter] = STATE(3203), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2804] = { + [sym_getter] = STATE(3781), + [sym_setter] = STATE(3781), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323949,70 +325405,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2789] = { - [sym_getter] = STATE(4687), - [sym_setter] = STATE(4687), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [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), + [2805] = { + [sym_getter] = STATE(3900), + [sym_setter] = STATE(3900), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324036,70 +325491,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3340), - [sym_safe_nav] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2790] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2806] = { + [sym_type_constraints] = STATE(2936), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + }, + [2807] = { + [sym_getter] = STATE(3717), + [sym_setter] = STATE(3717), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324123,70 +325663,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2791] = { - [sym_getter] = STATE(3189), - [sym_setter] = STATE(3189), - [sym_modifiers] = STATE(8762), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(6066), - [anon_sym_set] = ACTIONS(6068), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2808] = { + [sym_getter] = STATE(3879), + [sym_setter] = STATE(3879), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324210,70 +325749,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2792] = { - [sym_getter] = STATE(4581), - [sym_setter] = STATE(4581), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2809] = { + [sym_type_constraints] = STATE(2960), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [2810] = { + [sym_catch_block] = STATE(2810), + [aux_sym_try_expression_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4095), + [anon_sym_AT] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4097), + [anon_sym_RBRACK] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4095), + [anon_sym_EQ] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_RBRACE] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_COMMA] = ACTIONS(4097), + [anon_sym_RPAREN] = ACTIONS(4097), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_GT] = ACTIONS(4095), + [anon_sym_where] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4095), + [anon_sym_SEMI] = ACTIONS(4097), + [anon_sym_get] = ACTIONS(4095), + [anon_sym_set] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4095), + [anon_sym_DASH_GT] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4095), + [anon_sym_while] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_QMARK_COLON] = ACTIONS(4097), + [anon_sym_AMP_AMP] = ACTIONS(4097), + [anon_sym_PIPE_PIPE] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4095), + [anon_sym_catch] = ACTIONS(6253), + [anon_sym_finally] = ACTIONS(4095), + [anon_sym_COLON_COLON] = ACTIONS(4097), + [anon_sym_PLUS_EQ] = ACTIONS(4097), + [anon_sym_DASH_EQ] = ACTIONS(4097), + [anon_sym_STAR_EQ] = ACTIONS(4097), + [anon_sym_SLASH_EQ] = ACTIONS(4097), + [anon_sym_PERCENT_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4097), + [anon_sym_LT_EQ] = ACTIONS(4097), + [anon_sym_GT_EQ] = ACTIONS(4097), + [anon_sym_BANGin] = ACTIONS(4097), + [anon_sym_is] = ACTIONS(4095), + [anon_sym_BANGis] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4095), + [anon_sym_DASH] = ACTIONS(4095), + [anon_sym_SLASH] = ACTIONS(4095), + [anon_sym_PERCENT] = ACTIONS(4095), + [anon_sym_as_QMARK] = ACTIONS(4097), + [anon_sym_PLUS_PLUS] = ACTIONS(4097), + [anon_sym_DASH_DASH] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4097), + [anon_sym_suspend] = ACTIONS(4095), + [anon_sym_sealed] = ACTIONS(4095), + [anon_sym_annotation] = ACTIONS(4095), + [anon_sym_data] = ACTIONS(4095), + [anon_sym_inner] = ACTIONS(4095), + [anon_sym_override] = ACTIONS(4095), + [anon_sym_lateinit] = ACTIONS(4095), + [anon_sym_public] = ACTIONS(4095), + [anon_sym_private] = ACTIONS(4095), + [anon_sym_internal] = ACTIONS(4095), + [anon_sym_protected] = ACTIONS(4095), + [anon_sym_tailrec] = ACTIONS(4095), + [anon_sym_operator] = ACTIONS(4095), + [anon_sym_infix] = ACTIONS(4095), + [anon_sym_inline] = ACTIONS(4095), + [anon_sym_external] = ACTIONS(4095), + [sym_property_modifier] = ACTIONS(4095), + [anon_sym_abstract] = ACTIONS(4095), + [anon_sym_final] = ACTIONS(4095), + [anon_sym_open] = ACTIONS(4095), + [anon_sym_vararg] = ACTIONS(4095), + [anon_sym_noinline] = ACTIONS(4095), + [anon_sym_crossinline] = ACTIONS(4095), + [anon_sym_expect] = ACTIONS(4095), + [anon_sym_actual] = ACTIONS(4095), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4097), + [sym_safe_nav] = ACTIONS(4097), + [sym_multiline_comment] = ACTIONS(3), + }, + [2811] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324297,70 +326007,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2793] = { - [sym_getter] = STATE(4607), - [sym_setter] = STATE(4607), - [sym_modifiers] = STATE(8747), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(6058), - [anon_sym_set] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2812] = { + [sym_type_constraints] = STATE(2939), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [2813] = { + [sym_getter] = STATE(3739), + [sym_setter] = STATE(3739), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324384,118 +326179,462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2794] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_typealias] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_interface] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3958), - [anon_sym_var] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3958), - [anon_sym_fun] = ACTIONS(3958), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3960), - [anon_sym_sealed] = ACTIONS(3960), - [anon_sym_annotation] = ACTIONS(3960), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_lateinit] = ACTIONS(3960), - [anon_sym_public] = ACTIONS(3960), - [anon_sym_private] = ACTIONS(3960), - [anon_sym_internal] = ACTIONS(3960), - [anon_sym_protected] = ACTIONS(3960), - [anon_sym_tailrec] = ACTIONS(3960), - [anon_sym_operator] = ACTIONS(3960), - [anon_sym_infix] = ACTIONS(3960), - [anon_sym_inline] = ACTIONS(3960), - [anon_sym_external] = ACTIONS(3960), - [sym_property_modifier] = ACTIONS(3960), - [anon_sym_abstract] = ACTIONS(3960), - [anon_sym_final] = ACTIONS(3960), - [anon_sym_open] = ACTIONS(3960), - [anon_sym_vararg] = ACTIONS(3960), - [anon_sym_noinline] = ACTIONS(3960), - [anon_sym_crossinline] = ACTIONS(3960), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [2814] = { + [sym_getter] = STATE(5041), + [sym_setter] = STATE(5041), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2795] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2815] = { + [sym_catch_block] = STATE(2815), + [aux_sym_try_expression_repeat1] = STATE(2815), + [sym__alpha_identifier] = ACTIONS(4095), + [anon_sym_AT] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4095), + [anon_sym_EQ] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_RBRACE] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_COMMA] = ACTIONS(4097), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_GT] = ACTIONS(4095), + [anon_sym_where] = ACTIONS(4095), + [anon_sym_object] = ACTIONS(4095), + [anon_sym_fun] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4095), + [anon_sym_SEMI] = ACTIONS(4097), + [anon_sym_get] = ACTIONS(4095), + [anon_sym_set] = ACTIONS(4095), + [anon_sym_this] = ACTIONS(4095), + [anon_sym_super] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4095), + [sym_label] = ACTIONS(4095), + [anon_sym_in] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_QMARK_COLON] = ACTIONS(4097), + [anon_sym_AMP_AMP] = ACTIONS(4097), + [anon_sym_PIPE_PIPE] = ACTIONS(4097), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_if] = ACTIONS(4095), + [anon_sym_else] = ACTIONS(4095), + [anon_sym_when] = ACTIONS(4095), + [anon_sym_try] = ACTIONS(4095), + [anon_sym_catch] = ACTIONS(6258), + [anon_sym_finally] = ACTIONS(4095), + [anon_sym_throw] = ACTIONS(4095), + [anon_sym_return] = ACTIONS(4095), + [anon_sym_continue] = ACTIONS(4095), + [anon_sym_break] = ACTIONS(4095), + [anon_sym_COLON_COLON] = ACTIONS(4097), + [anon_sym_PLUS_EQ] = ACTIONS(4097), + [anon_sym_DASH_EQ] = ACTIONS(4097), + [anon_sym_STAR_EQ] = ACTIONS(4097), + [anon_sym_SLASH_EQ] = ACTIONS(4097), + [anon_sym_PERCENT_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4097), + [anon_sym_LT_EQ] = ACTIONS(4097), + [anon_sym_GT_EQ] = ACTIONS(4097), + [anon_sym_BANGin] = ACTIONS(4097), + [anon_sym_is] = ACTIONS(4095), + [anon_sym_BANGis] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4095), + [anon_sym_DASH] = ACTIONS(4095), + [anon_sym_SLASH] = ACTIONS(4095), + [anon_sym_PERCENT] = ACTIONS(4095), + [anon_sym_as_QMARK] = ACTIONS(4097), + [anon_sym_PLUS_PLUS] = ACTIONS(4097), + [anon_sym_DASH_DASH] = ACTIONS(4097), + [anon_sym_BANG] = ACTIONS(4095), + [anon_sym_BANG_BANG] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4095), + [anon_sym_inner] = ACTIONS(4095), + [anon_sym_expect] = ACTIONS(4095), + [anon_sym_actual] = ACTIONS(4095), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4097), + [anon_sym_continue_AT] = ACTIONS(4097), + [anon_sym_break_AT] = ACTIONS(4097), + [sym_real_literal] = ACTIONS(4097), + [sym_integer_literal] = ACTIONS(4095), + [sym_hex_literal] = ACTIONS(4097), + [sym_bin_literal] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(4095), + [anon_sym_false] = ACTIONS(4095), + [anon_sym_SQUOTE] = ACTIONS(4097), + [sym__backtick_identifier] = ACTIONS(4097), + [sym__automatic_semicolon] = ACTIONS(4097), + [sym_safe_nav] = ACTIONS(4097), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4097), + }, + [2816] = { + [sym_type_constraints] = STATE(2988), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [2817] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [2818] = { + [sym_type_constraints] = STATE(2935), + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [2819] = { + [sym_getter] = STATE(5058), + [sym_setter] = STATE(5058), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1696), [anon_sym_as] = ACTIONS(1694), [anon_sym_LBRACE] = ACTIONS(1696), @@ -324504,9 +326643,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1694), [anon_sym_GT] = ACTIONS(1694), [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), [anon_sym_STAR] = ACTIONS(1696), [sym_label] = ACTIONS(1696), [anon_sym_in] = ACTIONS(1694), @@ -324556,155 +326695,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1696), [sym__automatic_semicolon] = ACTIONS(1696), [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [2796] = { - [sym_type_arguments] = STATE(5112), - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(6222), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_RBRACK] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(4109), - [anon_sym_RPAREN] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_DASH_GT] = ACTIONS(4109), - [sym_label] = ACTIONS(4109), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_while] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_QMARK_COLON] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_PIPE_PIPE] = ACTIONS(4109), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_PLUS_EQ] = ACTIONS(4109), - [anon_sym_DASH_EQ] = ACTIONS(4109), - [anon_sym_STAR_EQ] = ACTIONS(4109), - [anon_sym_SLASH_EQ] = ACTIONS(4109), - [anon_sym_PERCENT_EQ] = ACTIONS(4109), - [anon_sym_BANG_EQ] = ACTIONS(4107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4109), - [anon_sym_EQ_EQ] = ACTIONS(4107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4109), - [anon_sym_LT_EQ] = ACTIONS(4109), - [anon_sym_GT_EQ] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_PERCENT] = ACTIONS(4107), - [anon_sym_as_QMARK] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG_BANG] = ACTIONS(4109), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4109), - [sym_safe_nav] = ACTIONS(4109), - [sym_multiline_comment] = ACTIONS(3), - }, - [2797] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2820] = { + [sym_getter] = STATE(3701), + [sym_setter] = STATE(3701), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324728,204 +326781,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), [sym_multiline_comment] = ACTIONS(3), }, - [2798] = { - [sym_catch_block] = STATE(2798), - [aux_sym_try_expression_repeat1] = STATE(2798), - [sym__alpha_identifier] = ACTIONS(4121), - [anon_sym_AT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_RBRACK] = ACTIONS(4123), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4123), - [anon_sym_RPAREN] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4123), - [anon_sym_get] = ACTIONS(4121), - [anon_sym_set] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4123), - [sym_label] = ACTIONS(4123), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_while] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4123), - [anon_sym_QMARK_COLON] = ACTIONS(4123), - [anon_sym_AMP_AMP] = ACTIONS(4123), - [anon_sym_PIPE_PIPE] = ACTIONS(4123), - [anon_sym_else] = ACTIONS(4121), - [anon_sym_catch] = ACTIONS(6224), - [anon_sym_finally] = ACTIONS(4121), - [anon_sym_COLON_COLON] = ACTIONS(4123), - [anon_sym_PLUS_EQ] = ACTIONS(4123), - [anon_sym_DASH_EQ] = ACTIONS(4123), - [anon_sym_STAR_EQ] = ACTIONS(4123), - [anon_sym_SLASH_EQ] = ACTIONS(4123), - [anon_sym_PERCENT_EQ] = ACTIONS(4123), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4123), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4123), - [anon_sym_LT_EQ] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4123), - [anon_sym_BANGin] = ACTIONS(4123), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_BANGis] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_as_QMARK] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4123), - [anon_sym_BANG_BANG] = ACTIONS(4123), - [anon_sym_suspend] = ACTIONS(4121), - [anon_sym_sealed] = ACTIONS(4121), - [anon_sym_annotation] = ACTIONS(4121), - [anon_sym_data] = ACTIONS(4121), - [anon_sym_inner] = ACTIONS(4121), - [anon_sym_override] = ACTIONS(4121), - [anon_sym_lateinit] = ACTIONS(4121), - [anon_sym_public] = ACTIONS(4121), - [anon_sym_private] = ACTIONS(4121), - [anon_sym_internal] = ACTIONS(4121), - [anon_sym_protected] = ACTIONS(4121), - [anon_sym_tailrec] = ACTIONS(4121), - [anon_sym_operator] = ACTIONS(4121), - [anon_sym_infix] = ACTIONS(4121), - [anon_sym_inline] = ACTIONS(4121), - [anon_sym_external] = ACTIONS(4121), - [sym_property_modifier] = ACTIONS(4121), - [anon_sym_abstract] = ACTIONS(4121), - [anon_sym_final] = ACTIONS(4121), - [anon_sym_open] = ACTIONS(4121), - [anon_sym_vararg] = ACTIONS(4121), - [anon_sym_noinline] = ACTIONS(4121), - [anon_sym_crossinline] = ACTIONS(4121), - [anon_sym_expect] = ACTIONS(4121), - [anon_sym_actual] = ACTIONS(4121), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4123), - [sym_safe_nav] = ACTIONS(4123), - [sym_multiline_comment] = ACTIONS(3), - }, - [2799] = { - [sym_type_constraints] = STATE(2971), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - }, - [2800] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2821] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -324934,9 +326815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4382), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -324986,204 +326867,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2801] = { - [sym_catch_block] = STATE(2801), - [aux_sym_try_expression_repeat1] = STATE(2801), - [sym__alpha_identifier] = ACTIONS(4121), - [anon_sym_AT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_object] = ACTIONS(4121), - [anon_sym_fun] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4123), - [anon_sym_get] = ACTIONS(4121), - [anon_sym_set] = ACTIONS(4121), - [anon_sym_this] = ACTIONS(4121), - [anon_sym_super] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4121), - [sym_label] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4123), - [anon_sym_QMARK_COLON] = ACTIONS(4123), - [anon_sym_AMP_AMP] = ACTIONS(4123), - [anon_sym_PIPE_PIPE] = ACTIONS(4123), - [anon_sym_null] = ACTIONS(4121), - [anon_sym_if] = ACTIONS(4121), - [anon_sym_else] = ACTIONS(4121), - [anon_sym_when] = ACTIONS(4121), - [anon_sym_try] = ACTIONS(4121), - [anon_sym_catch] = ACTIONS(6233), - [anon_sym_finally] = ACTIONS(4121), - [anon_sym_throw] = ACTIONS(4121), - [anon_sym_return] = ACTIONS(4121), - [anon_sym_continue] = ACTIONS(4121), - [anon_sym_break] = ACTIONS(4121), - [anon_sym_COLON_COLON] = ACTIONS(4123), - [anon_sym_PLUS_EQ] = ACTIONS(4123), - [anon_sym_DASH_EQ] = ACTIONS(4123), - [anon_sym_STAR_EQ] = ACTIONS(4123), - [anon_sym_SLASH_EQ] = ACTIONS(4123), - [anon_sym_PERCENT_EQ] = ACTIONS(4123), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4123), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4123), - [anon_sym_LT_EQ] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4123), - [anon_sym_BANGin] = ACTIONS(4123), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_BANGis] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_as_QMARK] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4123), - [anon_sym_BANG] = ACTIONS(4121), - [anon_sym_BANG_BANG] = ACTIONS(4123), - [anon_sym_data] = ACTIONS(4121), - [anon_sym_inner] = ACTIONS(4121), - [anon_sym_expect] = ACTIONS(4121), - [anon_sym_actual] = ACTIONS(4121), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4123), - [anon_sym_continue_AT] = ACTIONS(4123), - [anon_sym_break_AT] = ACTIONS(4123), - [sym_real_literal] = ACTIONS(4123), - [sym_integer_literal] = ACTIONS(4121), - [sym_hex_literal] = ACTIONS(4123), - [sym_bin_literal] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4121), - [anon_sym_false] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4123), - [sym__backtick_identifier] = ACTIONS(4123), - [sym__automatic_semicolon] = ACTIONS(4123), - [sym_safe_nav] = ACTIONS(4123), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4123), - }, - [2802] = { - [sym_type_constraints] = STATE(2954), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6236), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [2822] = { + [sym_type_arguments] = STATE(5098), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(4144), + [sym_label] = ACTIONS(4144), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_while] = ACTIONS(4142), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_QMARK_COLON] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG_BANG] = ACTIONS(4144), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4144), + [sym_safe_nav] = ACTIONS(4144), [sym_multiline_comment] = ACTIONS(3), }, - [2803] = { - [sym_getter] = STATE(3702), - [sym_setter] = STATE(3702), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2823] = { + [sym_getter] = STATE(3795), + [sym_setter] = STATE(3795), + [sym_modifiers] = STATE(8937), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -325192,9 +326987,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), + [anon_sym_SEMI] = ACTIONS(4416), + [anon_sym_get] = ACTIONS(6173), + [anon_sym_set] = ACTIONS(6175), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -325244,69 +327039,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2804] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2824] = { + [sym_getter] = STATE(4975), + [sym_setter] = STATE(4975), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(6209), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325330,69 +327125,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [2805] = { - [sym_getter] = STATE(5062), - [sym_setter] = STATE(5062), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2825] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325416,155 +327211,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2806] = { - [sym_type_constraints] = STATE(2902), - [sym_function_body] = STATE(3285), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6238), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), + [2826] = { + [sym_type_constraints] = STATE(2972), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), }, - [2807] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4428), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), + [2827] = { + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325588,1273 +327383,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [2808] = { - [sym_getter] = STATE(4945), - [sym_setter] = STATE(4945), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6204), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2809] = { - [sym_type_constraints] = STATE(2907), - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [2810] = { - [sym_getter] = STATE(3817), - [sym_setter] = STATE(3817), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2811] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [2812] = { - [sym_getter] = STATE(3722), - [sym_setter] = STATE(3722), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2813] = { - [sym_type_constraints] = STATE(2923), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [2814] = { - [sym_getter] = STATE(4953), - [sym_setter] = STATE(4953), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [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), - }, - [2815] = { - [sym_getter] = STATE(3701), - [sym_setter] = STATE(3701), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - }, - [2816] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4499), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2817] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(4430), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2818] = { - [sym_type_constraints] = STATE(2933), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [2819] = { - [sym_getter] = STATE(4947), - [sym_setter] = STATE(4947), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - }, - [2820] = { - [sym_getter] = STATE(5058), - [sym_setter] = STATE(5058), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - }, - [2821] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - }, - [2822] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(4398), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2828] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326878,69 +327469,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2823] = { - [sym_getter] = STATE(4923), - [sym_setter] = STATE(4923), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), + [2829] = { + [sym_getter] = STATE(5070), + [sym_setter] = STATE(5070), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326964,69 +327555,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), [sym_multiline_comment] = ACTIONS(3), }, - [2824] = { - [sym_getter] = STATE(3715), - [sym_setter] = STATE(3715), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), + [2830] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327050,327 +327641,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2825] = { - [sym_type_constraints] = STATE(2986), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_RBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_while] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - }, - [2826] = { - [sym_type_constraints] = STATE(2985), - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_DASH_GT] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2827] = { - [sym_getter] = STATE(3760), - [sym_setter] = STATE(3760), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), + [2831] = { + [sym_type_constraints] = STATE(2983), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6269), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, - [2828] = { - [sym_getter] = STATE(4916), - [sym_setter] = STATE(4916), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2832] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327394,155 +327813,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2829] = { - [sym_type_constraints] = STATE(2958), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [2830] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2833] = { + [sym_getter] = STATE(5072), + [sym_setter] = STATE(5072), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327566,69 +327899,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [2831] = { - [sym_getter] = STATE(3875), - [sym_setter] = STATE(3875), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(6182), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [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), + [2834] = { + [sym_getter] = STATE(5031), + [sym_setter] = STATE(5031), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4354), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327652,118 +327985,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(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [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), - }, - [2832] = { - [sym_type_constraints] = STATE(2973), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [2833] = { - [sym_getter] = STATE(5029), - [sym_setter] = STATE(5029), - [sym_modifiers] = STATE(8625), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), + [2835] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1754), [anon_sym_as] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1754), @@ -327772,9 +328019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1752), [anon_sym_GT] = ACTIONS(1752), [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(4438), - [anon_sym_get] = ACTIONS(6160), - [anon_sym_set] = ACTIONS(6162), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), [anon_sym_STAR] = ACTIONS(1754), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1752), @@ -327824,155 +328071,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1754), [sym__automatic_semicolon] = ACTIONS(1754), [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [2834] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2835] = { - [sym_getter] = STATE(3766), - [sym_setter] = STATE(3766), - [sym_modifiers] = STATE(8770), - [sym__modifier] = STATE(5459), - [sym_class_modifier] = STATE(5459), - [sym_member_modifier] = STATE(5459), - [sym_visibility_modifier] = STATE(5459), - [sym_function_modifier] = STATE(5459), - [sym_inheritance_modifier] = STATE(5459), - [sym_parameter_modifier] = STATE(5459), - [sym_platform_modifier] = STATE(5459), - [sym_annotation] = STATE(5459), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [aux_sym_modifiers_repeat1] = STATE(5459), - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(6174), - [anon_sym_set] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), + [2836] = { + [sym_getter] = STATE(5055), + [sym_setter] = STATE(5055), + [sym_modifiers] = STATE(8946), + [sym__modifier] = STATE(5461), + [sym_class_modifier] = STATE(5461), + [sym_member_modifier] = STATE(5461), + [sym_visibility_modifier] = STATE(5461), + [sym_function_modifier] = STATE(5461), + [sym_inheritance_modifier] = STATE(5461), + [sym_parameter_modifier] = STATE(5461), + [sym_platform_modifier] = STATE(5461), + [sym_annotation] = STATE(5461), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [aux_sym_modifiers_repeat1] = STATE(5461), + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_get] = ACTIONS(6189), + [anon_sym_set] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327996,2179 +328157,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3246), - [anon_sym_actual] = ACTIONS(3246), + [anon_sym_expect] = ACTIONS(3252), + [anon_sym_actual] = ACTIONS(3252), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [2836] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(4011), - [anon_sym_DASH_EQ] = ACTIONS(4011), - [anon_sym_STAR_EQ] = ACTIONS(4011), - [anon_sym_SLASH_EQ] = ACTIONS(4011), - [anon_sym_PERCENT_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, [2837] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [sym__quest] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_type_constraints] = STATE(2907), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6271), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), }, [2838] = { - [sym_annotated_lambda] = STATE(3864), - [sym_lambda_literal] = STATE(3829), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [sym_label] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4021), - [sym__automatic_semicolon] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4282), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4282), + [anon_sym_GT] = ACTIONS(4282), + [anon_sym_where] = ACTIONS(4282), + [anon_sym_object] = ACTIONS(4282), + [anon_sym_fun] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4282), + [anon_sym_set] = ACTIONS(4282), + [anon_sym_this] = ACTIONS(4282), + [anon_sym_super] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4284), + [sym_label] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4282), + [anon_sym_while] = ACTIONS(4282), + [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(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4282), + [anon_sym_when] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [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(4282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [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(4282), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_PERCENT] = ACTIONS(4282), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4282), + [anon_sym_inner] = ACTIONS(4282), + [anon_sym_expect] = ACTIONS(4282), + [anon_sym_actual] = ACTIONS(4282), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4282), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4282), + [anon_sym_false] = ACTIONS(4282), + [anon_sym_SQUOTE] = ACTIONS(4284), + [sym__backtick_identifier] = ACTIONS(4284), + [sym_safe_nav] = ACTIONS(4284), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4284), }, [2839] = { - [sym_type_constraints] = STATE(3421), - [sym_function_body] = STATE(3285), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), - }, - [2840] = { - [sym_class_body] = STATE(3121), - [sym_type_constraints] = STATE(3047), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), - }, - [2841] = { - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [2842] = { - [sym_class_body] = STATE(3322), - [sym_type_constraints] = STATE(3078), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [2843] = { - [aux_sym_nullable_type_repeat1] = STATE(2860), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_by] = ACTIONS(4248), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [sym__quest] = ACTIONS(6264), - [anon_sym_STAR] = ACTIONS(4248), - [sym_label] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_QMARK_COLON] = ACTIONS(4250), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [anon_sym_null] = ACTIONS(4248), - [anon_sym_if] = ACTIONS(4248), - [anon_sym_else] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4248), - [anon_sym_try] = ACTIONS(4248), - [anon_sym_throw] = ACTIONS(4248), - [anon_sym_return] = ACTIONS(4248), - [anon_sym_continue] = ACTIONS(4248), - [anon_sym_break] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4250), - [anon_sym_PLUS_EQ] = ACTIONS(4250), - [anon_sym_DASH_EQ] = ACTIONS(4250), - [anon_sym_STAR_EQ] = ACTIONS(4250), - [anon_sym_SLASH_EQ] = ACTIONS(4250), - [anon_sym_PERCENT_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4248), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_BANGin] = ACTIONS(4250), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_BANGis] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4248), - [anon_sym_as_QMARK] = ACTIONS(4250), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_BANG_BANG] = ACTIONS(4250), - [anon_sym_data] = ACTIONS(4248), - [anon_sym_inner] = ACTIONS(4248), - [anon_sym_expect] = ACTIONS(4248), - [anon_sym_actual] = ACTIONS(4248), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4250), - [anon_sym_continue_AT] = ACTIONS(4250), - [anon_sym_break_AT] = ACTIONS(4250), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), - }, - [2844] = { - [sym_type_constraints] = STATE(2973), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [aux_sym_nullable_type_repeat1] = STATE(2877), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [sym__quest] = ACTIONS(6273), + [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_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), }, - [2845] = { - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_object] = ACTIONS(4262), - [anon_sym_fun] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [anon_sym_this] = ACTIONS(4262), - [anon_sym_super] = ACTIONS(4262), - [sym__quest] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4264), - [anon_sym_continue_AT] = ACTIONS(4264), - [anon_sym_break_AT] = ACTIONS(4264), - [sym_real_literal] = ACTIONS(4264), - [sym_integer_literal] = ACTIONS(4262), - [sym_hex_literal] = ACTIONS(4264), - [sym_bin_literal] = ACTIONS(4264), - [anon_sym_true] = ACTIONS(4262), - [anon_sym_false] = ACTIONS(4262), - [anon_sym_SQUOTE] = ACTIONS(4264), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4264), - }, - [2846] = { - [sym_function_body] = STATE(3364), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6266), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), - }, - [2847] = { - [sym_type_constraints] = STATE(3092), - [sym_enum_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6268), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [2848] = { - [sym_class_body] = STATE(3216), - [sym_type_constraints] = STATE(3111), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [2849] = { - [aux_sym_nullable_type_repeat1] = STATE(2849), - [sym__alpha_identifier] = ACTIONS(4235), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(4235), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4235), - [anon_sym_LT] = ACTIONS(4235), - [anon_sym_GT] = ACTIONS(4235), - [anon_sym_where] = ACTIONS(4235), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4235), - [anon_sym_set] = ACTIONS(4235), - [sym__quest] = ACTIONS(6272), - [anon_sym_STAR] = ACTIONS(4235), - [anon_sym_DASH_GT] = ACTIONS(4237), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4235), - [anon_sym_while] = ACTIONS(4235), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_QMARK_COLON] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_else] = ACTIONS(4235), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_BANGin] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4235), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_SLASH] = ACTIONS(4235), - [anon_sym_PERCENT] = ACTIONS(4235), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4235), - [anon_sym_sealed] = ACTIONS(4235), - [anon_sym_annotation] = ACTIONS(4235), - [anon_sym_data] = ACTIONS(4235), - [anon_sym_inner] = ACTIONS(4235), - [anon_sym_override] = ACTIONS(4235), - [anon_sym_lateinit] = ACTIONS(4235), - [anon_sym_public] = ACTIONS(4235), - [anon_sym_private] = ACTIONS(4235), - [anon_sym_internal] = ACTIONS(4235), - [anon_sym_protected] = ACTIONS(4235), - [anon_sym_tailrec] = ACTIONS(4235), - [anon_sym_operator] = ACTIONS(4235), - [anon_sym_infix] = ACTIONS(4235), - [anon_sym_inline] = ACTIONS(4235), - [anon_sym_external] = ACTIONS(4235), - [sym_property_modifier] = ACTIONS(4235), - [anon_sym_abstract] = ACTIONS(4235), - [anon_sym_final] = ACTIONS(4235), - [anon_sym_open] = ACTIONS(4235), - [anon_sym_vararg] = ACTIONS(4235), - [anon_sym_noinline] = ACTIONS(4235), - [anon_sym_crossinline] = ACTIONS(4235), - [anon_sym_expect] = ACTIONS(4235), - [anon_sym_actual] = ACTIONS(4235), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [2840] = { + [sym_class_body] = STATE(3317), + [sym_type_constraints] = STATE(3020), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [2850] = { - [aux_sym_nullable_type_repeat1] = STATE(2867), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [sym__quest] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_DASH_GT] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [2841] = { + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6275), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [2851] = { - [sym_function_body] = STATE(3193), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), + [2842] = { + [sym_class_body] = STATE(3455), + [sym_type_constraints] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [anon_sym_DASH_GT] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - }, - [2852] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [2853] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6283), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_DASH_GT] = ACTIONS(4144), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [2854] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [2855] = { - [aux_sym_nullable_type_repeat1] = STATE(2843), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [sym__quest] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [2856] = { - [sym_type_constraints] = STATE(3110), - [sym_enum_class_body] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3112), - [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(3118), - [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_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), - [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), - }, - [2857] = { - [sym_type_constraints] = STATE(2971), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - }, - [2858] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_RPAREN] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [sym__quest] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [2859] = { + [2843] = { [sym_type_constraints] = STATE(2975), - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [2860] = { - [aux_sym_nullable_type_repeat1] = STATE(2860), - [sym__alpha_identifier] = ACTIONS(4235), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(4235), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4235), - [anon_sym_LT] = ACTIONS(4235), - [anon_sym_GT] = ACTIONS(4235), - [anon_sym_where] = ACTIONS(4235), - [anon_sym_object] = ACTIONS(4235), - [anon_sym_fun] = ACTIONS(4235), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4235), - [anon_sym_set] = ACTIONS(4235), - [anon_sym_this] = ACTIONS(4235), - [anon_sym_super] = ACTIONS(4235), - [sym__quest] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(4235), - [sym_label] = ACTIONS(4235), - [anon_sym_in] = ACTIONS(4235), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_QMARK_COLON] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_null] = ACTIONS(4235), - [anon_sym_if] = ACTIONS(4235), - [anon_sym_else] = ACTIONS(4235), - [anon_sym_when] = ACTIONS(4235), - [anon_sym_try] = ACTIONS(4235), - [anon_sym_throw] = ACTIONS(4235), - [anon_sym_return] = ACTIONS(4235), - [anon_sym_continue] = ACTIONS(4235), - [anon_sym_break] = ACTIONS(4235), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_BANGin] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4235), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_SLASH] = ACTIONS(4235), - [anon_sym_PERCENT] = ACTIONS(4235), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_data] = ACTIONS(4235), - [anon_sym_inner] = ACTIONS(4235), - [anon_sym_expect] = ACTIONS(4235), - [anon_sym_actual] = ACTIONS(4235), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4235), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_RBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [anon_sym_DASH_GT] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), }, - [2861] = { - [sym_class_body] = STATE(3472), - [sym_type_constraints] = STATE(3016), + [2844] = { + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3218), + [anon_sym_COLON] = ACTIONS(5225), [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), + [anon_sym_DASH_GT] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), [anon_sym_COLON_COLON] = ACTIONS(3200), [anon_sym_PLUS_EQ] = ACTIONS(3200), [anon_sym_DASH_EQ] = ACTIONS(3200), @@ -330191,911 +328815,2202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(3200), [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), [anon_sym_data] = ACTIONS(3196), [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), [anon_sym_expect] = ACTIONS(3196), [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), }, - [2862] = { - [sym_type_constraints] = STATE(2954), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [2845] = { + [sym_type_constraints] = STATE(3267), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6279), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), + }, + [2846] = { + [sym_type_constraints] = STATE(3080), + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6283), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, - [2863] = { - [sym_type_constraints] = STATE(3269), - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), + [2847] = { + [sym_type_constraints] = STATE(2962), + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [2848] = { + [aux_sym_user_type_repeat1] = STATE(2879), + [sym__alpha_identifier] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_RBRACK] = ACTIONS(4273), + [anon_sym_as] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_COMMA] = ACTIONS(4273), + [anon_sym_RPAREN] = ACTIONS(4273), + [anon_sym_by] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_where] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(6285), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym_get] = ACTIONS(4271), + [anon_sym_set] = ACTIONS(4271), + [sym__quest] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4273), + [sym_label] = ACTIONS(4273), + [anon_sym_in] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_DOT_DOT] = ACTIONS(4273), + [anon_sym_QMARK_COLON] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_PIPE_PIPE] = ACTIONS(4273), + [anon_sym_else] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_PLUS_EQ] = ACTIONS(4273), + [anon_sym_DASH_EQ] = ACTIONS(4273), + [anon_sym_STAR_EQ] = ACTIONS(4273), + [anon_sym_SLASH_EQ] = ACTIONS(4273), + [anon_sym_PERCENT_EQ] = ACTIONS(4273), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4273), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4273), + [anon_sym_LT_EQ] = ACTIONS(4273), + [anon_sym_GT_EQ] = ACTIONS(4273), + [anon_sym_BANGin] = ACTIONS(4273), + [anon_sym_is] = ACTIONS(4271), + [anon_sym_BANGis] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_as_QMARK] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_BANG_BANG] = ACTIONS(4273), + [anon_sym_suspend] = ACTIONS(4271), + [anon_sym_sealed] = ACTIONS(4271), + [anon_sym_annotation] = ACTIONS(4271), + [anon_sym_data] = ACTIONS(4271), + [anon_sym_inner] = ACTIONS(4271), + [anon_sym_override] = ACTIONS(4271), + [anon_sym_lateinit] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_internal] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_tailrec] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_infix] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_external] = ACTIONS(4271), + [sym_property_modifier] = ACTIONS(4271), + [anon_sym_abstract] = ACTIONS(4271), + [anon_sym_final] = ACTIONS(4271), + [anon_sym_open] = ACTIONS(4271), + [anon_sym_vararg] = ACTIONS(4271), + [anon_sym_noinline] = ACTIONS(4271), + [anon_sym_crossinline] = ACTIONS(4271), + [anon_sym_expect] = ACTIONS(4271), + [anon_sym_actual] = ACTIONS(4271), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4273), + [sym_safe_nav] = ACTIONS(4273), + [sym_multiline_comment] = ACTIONS(3), + }, + [2849] = { + [aux_sym_nullable_type_repeat1] = STATE(2877), + [sym__alpha_identifier] = ACTIONS(4278), + [anon_sym_AT] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_RBRACK] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_RPAREN] = ACTIONS(4280), + [anon_sym_by] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4278), + [anon_sym_GT] = ACTIONS(4278), + [anon_sym_where] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [sym__quest] = ACTIONS(6273), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_DASH_GT] = ACTIONS(4280), + [sym_label] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4278), + [anon_sym_while] = ACTIONS(4278), + [anon_sym_DOT_DOT] = ACTIONS(4280), + [anon_sym_QMARK_COLON] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_else] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_PLUS_EQ] = ACTIONS(4280), + [anon_sym_DASH_EQ] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(4280), + [anon_sym_SLASH_EQ] = ACTIONS(4280), + [anon_sym_PERCENT_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4280), + [anon_sym_GT_EQ] = ACTIONS(4280), + [anon_sym_BANGin] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4278), + [anon_sym_BANGis] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_SLASH] = ACTIONS(4278), + [anon_sym_PERCENT] = ACTIONS(4278), + [anon_sym_as_QMARK] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_BANG_BANG] = ACTIONS(4280), + [anon_sym_suspend] = ACTIONS(4278), + [anon_sym_sealed] = ACTIONS(4278), + [anon_sym_annotation] = ACTIONS(4278), + [anon_sym_data] = ACTIONS(4278), + [anon_sym_inner] = ACTIONS(4278), + [anon_sym_override] = ACTIONS(4278), + [anon_sym_lateinit] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_internal] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_tailrec] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_infix] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym_external] = ACTIONS(4278), + [sym_property_modifier] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_open] = ACTIONS(4278), + [anon_sym_vararg] = ACTIONS(4278), + [anon_sym_noinline] = ACTIONS(4278), + [anon_sym_crossinline] = ACTIONS(4278), + [anon_sym_expect] = ACTIONS(4278), + [anon_sym_actual] = ACTIONS(4278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4280), + [sym_safe_nav] = ACTIONS(4280), + [sym_multiline_comment] = ACTIONS(3), + }, + [2850] = { + [sym_class_body] = STATE(3293), + [sym_type_constraints] = STATE(3019), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [2851] = { + [aux_sym_nullable_type_repeat1] = STATE(2874), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_COMMA] = ACTIONS(4261), + [anon_sym_by] = ACTIONS(4259), + [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(4261), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [sym__quest] = ACTIONS(6288), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4261), + [anon_sym_QMARK_COLON] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [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(4261), + [anon_sym_PLUS_EQ] = ACTIONS(4261), + [anon_sym_DASH_EQ] = ACTIONS(4261), + [anon_sym_STAR_EQ] = ACTIONS(4261), + [anon_sym_SLASH_EQ] = ACTIONS(4261), + [anon_sym_PERCENT_EQ] = ACTIONS(4261), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4261), + [anon_sym_LT_EQ] = ACTIONS(4261), + [anon_sym_GT_EQ] = ACTIONS(4261), + [anon_sym_BANGin] = ACTIONS(4261), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4261), + [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(4261), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_BANG_BANG] = ACTIONS(4261), + [anon_sym_data] = ACTIONS(4259), + [anon_sym_inner] = ACTIONS(4259), + [anon_sym_expect] = ACTIONS(4259), + [anon_sym_actual] = ACTIONS(4259), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4261), + [anon_sym_continue_AT] = ACTIONS(4261), + [anon_sym_break_AT] = ACTIONS(4261), + [sym_real_literal] = ACTIONS(4261), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4261), + [sym_bin_literal] = ACTIONS(4261), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [sym__backtick_identifier] = ACTIONS(4261), + [sym__automatic_semicolon] = ACTIONS(4261), + [sym_safe_nav] = ACTIONS(4261), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4261), + }, + [2852] = { + [sym_type_constraints] = STATE(3141), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6290), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [2853] = { + [sym_class_body] = STATE(3235), + [sym_type_constraints] = STATE(3050), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [2854] = { + [sym_type_constraints] = STATE(2986), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [2855] = { + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [2856] = { + [sym_type_constraints] = STATE(2991), + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + }, + [2857] = { + [sym_type_constraints] = STATE(2939), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [2858] = { + [sym_class_body] = STATE(3296), + [sym_type_constraints] = STATE(3008), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), [anon_sym_COLON] = ACTIONS(6294), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [anon_sym_DASH_GT] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), }, - [2864] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6296), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_RBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [2859] = { + [sym_class_body] = STATE(3208), + [sym_type_constraints] = STATE(3037), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [2860] = { + [sym__alpha_identifier] = ACTIONS(4265), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_by] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4265), + [anon_sym_where] = ACTIONS(4265), + [anon_sym_object] = ACTIONS(4265), + [anon_sym_fun] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_get] = ACTIONS(4265), + [anon_sym_set] = ACTIONS(4265), + [anon_sym_this] = ACTIONS(4265), + [anon_sym_super] = ACTIONS(4265), + [sym__quest] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_QMARK_COLON] = ACTIONS(4267), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4267), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_if] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4265), + [anon_sym_when] = ACTIONS(4265), + [anon_sym_try] = ACTIONS(4265), + [anon_sym_throw] = ACTIONS(4265), + [anon_sym_return] = ACTIONS(4265), + [anon_sym_continue] = ACTIONS(4265), + [anon_sym_break] = ACTIONS(4265), + [anon_sym_COLON_COLON] = ACTIONS(4267), + [anon_sym_PLUS_EQ] = ACTIONS(4267), + [anon_sym_DASH_EQ] = ACTIONS(4267), + [anon_sym_STAR_EQ] = ACTIONS(4267), + [anon_sym_SLASH_EQ] = ACTIONS(4267), + [anon_sym_PERCENT_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4267), + [anon_sym_LT_EQ] = ACTIONS(4267), + [anon_sym_GT_EQ] = ACTIONS(4267), + [anon_sym_BANGin] = ACTIONS(4267), + [anon_sym_is] = ACTIONS(4265), + [anon_sym_BANGis] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4265), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4265), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4265), + [anon_sym_BANG_BANG] = ACTIONS(4267), + [anon_sym_data] = ACTIONS(4265), + [anon_sym_inner] = ACTIONS(4265), + [anon_sym_expect] = ACTIONS(4265), + [anon_sym_actual] = ACTIONS(4265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4267), + [anon_sym_continue_AT] = ACTIONS(4267), + [anon_sym_break_AT] = ACTIONS(4267), + [sym_real_literal] = ACTIONS(4267), + [sym_integer_literal] = ACTIONS(4265), + [sym_hex_literal] = ACTIONS(4267), + [sym_bin_literal] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4265), + [anon_sym_false] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4267), + [sym__backtick_identifier] = ACTIONS(4267), + [sym__automatic_semicolon] = ACTIONS(4267), + [sym_safe_nav] = ACTIONS(4267), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4267), + }, + [2861] = { + [aux_sym_nullable_type_repeat1] = STATE(2851), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [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_DOT] = 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), + [sym__quest] = ACTIONS(6296), + [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_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), + [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), + }, + [2862] = { + [sym_type_constraints] = STATE(2983), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [2863] = { + [aux_sym_nullable_type_repeat1] = STATE(2863), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_by] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [sym__quest] = ACTIONS(6298), + [anon_sym_STAR] = ACTIONS(4244), + [anon_sym_DASH_GT] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), [sym_multiline_comment] = ACTIONS(3), }, + [2864] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6301), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4310), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, [2865] = { - [sym_type_constraints] = STATE(3173), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym_class_body] = STATE(3230), + [sym_type_constraints] = STATE(3081), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, [2866] = { - [sym_type_constraints] = STATE(2963), - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [sym_type_constraints] = STATE(3095), + [sym_enum_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6305), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [2867] = { - [aux_sym_nullable_type_repeat1] = STATE(2849), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_by] = ACTIONS(4248), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [sym__quest] = ACTIONS(6300), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4250), - [sym_label] = ACTIONS(4250), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_while] = ACTIONS(4248), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_QMARK_COLON] = ACTIONS(4250), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [anon_sym_else] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4250), - [anon_sym_PLUS_EQ] = ACTIONS(4250), - [anon_sym_DASH_EQ] = ACTIONS(4250), - [anon_sym_STAR_EQ] = ACTIONS(4250), - [anon_sym_SLASH_EQ] = ACTIONS(4250), - [anon_sym_PERCENT_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4248), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_BANGin] = ACTIONS(4250), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_BANGis] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4248), - [anon_sym_as_QMARK] = ACTIONS(4250), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_BANG_BANG] = ACTIONS(4250), - [anon_sym_suspend] = ACTIONS(4248), - [anon_sym_sealed] = ACTIONS(4248), - [anon_sym_annotation] = ACTIONS(4248), - [anon_sym_data] = ACTIONS(4248), - [anon_sym_inner] = ACTIONS(4248), - [anon_sym_override] = ACTIONS(4248), - [anon_sym_lateinit] = ACTIONS(4248), - [anon_sym_public] = ACTIONS(4248), - [anon_sym_private] = ACTIONS(4248), - [anon_sym_internal] = ACTIONS(4248), - [anon_sym_protected] = ACTIONS(4248), - [anon_sym_tailrec] = ACTIONS(4248), - [anon_sym_operator] = ACTIONS(4248), - [anon_sym_infix] = ACTIONS(4248), - [anon_sym_inline] = ACTIONS(4248), - [anon_sym_external] = ACTIONS(4248), - [sym_property_modifier] = ACTIONS(4248), - [anon_sym_abstract] = ACTIONS(4248), - [anon_sym_final] = ACTIONS(4248), - [anon_sym_open] = ACTIONS(4248), - [anon_sym_vararg] = ACTIONS(4248), - [anon_sym_noinline] = ACTIONS(4248), - [anon_sym_crossinline] = ACTIONS(4248), - [anon_sym_expect] = ACTIONS(4248), - [anon_sym_actual] = ACTIONS(4248), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3162), + [sym_type_constraints] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6307), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [2868] = { - [sym_type_constraints] = STATE(2939), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_RBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_DASH_GT] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(2988), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [2869] = { - [sym_function_body] = STATE(3365), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6302), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, [2870] = { - [sym_type_constraints] = STATE(2958), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [2871] = { - [sym_annotated_lambda] = STATE(3777), - [sym_lambda_literal] = STATE(3829), - [sym_annotation] = STATE(7883), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7883), - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [sym_label] = ACTIONS(4007), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_suspend] = ACTIONS(4005), - [anon_sym_sealed] = ACTIONS(4005), - [anon_sym_annotation] = ACTIONS(4005), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_lateinit] = ACTIONS(4005), - [anon_sym_public] = ACTIONS(4005), - [anon_sym_private] = ACTIONS(4005), - [anon_sym_internal] = ACTIONS(4005), - [anon_sym_protected] = ACTIONS(4005), - [anon_sym_tailrec] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_infix] = ACTIONS(4005), - [anon_sym_inline] = ACTIONS(4005), - [anon_sym_external] = ACTIONS(4005), - [sym_property_modifier] = ACTIONS(4005), - [anon_sym_abstract] = ACTIONS(4005), - [anon_sym_final] = ACTIONS(4005), - [anon_sym_open] = ACTIONS(4005), - [anon_sym_vararg] = ACTIONS(4005), - [anon_sym_noinline] = ACTIONS(4005), - [anon_sym_crossinline] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4007), - [sym__automatic_semicolon] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), - [sym_multiline_comment] = ACTIONS(3), - }, - [2872] = { - [sym_class_body] = STATE(3319), - [sym_type_constraints] = STATE(3055), + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(3198), [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_LBRACE] = ACTIONS(3182), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_DASH_GT] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), [anon_sym_COLON_COLON] = ACTIONS(3200), [anon_sym_PLUS_EQ] = ACTIONS(3200), [anon_sym_DASH_EQ] = ACTIONS(3200), @@ -331118,2262 +331033,2508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(3200), [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), [anon_sym_data] = ACTIONS(3196), [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), [anon_sym_expect] = ACTIONS(3196), [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), + }, + [2871] = { + [sym_type_constraints] = STATE(3102), + [sym_enum_class_body] = STATE(3146), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6309), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [2872] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(4296), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [2873] = { - [aux_sym_user_type_repeat1] = STATE(2873), - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_RBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_RPAREN] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(6304), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_DASH_GT] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(2851), + [sym__alpha_identifier] = ACTIONS(4278), + [anon_sym_AT] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_by] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4278), + [anon_sym_GT] = ACTIONS(4278), + [anon_sym_where] = ACTIONS(4278), + [anon_sym_object] = ACTIONS(4278), + [anon_sym_fun] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_this] = ACTIONS(4278), + [anon_sym_super] = ACTIONS(4278), + [sym__quest] = ACTIONS(6296), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4278), + [anon_sym_DOT_DOT] = ACTIONS(4280), + [anon_sym_QMARK_COLON] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4278), + [anon_sym_when] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_PLUS_EQ] = ACTIONS(4280), + [anon_sym_DASH_EQ] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(4280), + [anon_sym_SLASH_EQ] = ACTIONS(4280), + [anon_sym_PERCENT_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4280), + [anon_sym_GT_EQ] = ACTIONS(4280), + [anon_sym_BANGin] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4278), + [anon_sym_BANGis] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_SLASH] = ACTIONS(4278), + [anon_sym_PERCENT] = ACTIONS(4278), + [anon_sym_as_QMARK] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4280), + [anon_sym_data] = ACTIONS(4278), + [anon_sym_inner] = ACTIONS(4278), + [anon_sym_expect] = ACTIONS(4278), + [anon_sym_actual] = ACTIONS(4278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4280), + [anon_sym_continue_AT] = ACTIONS(4280), + [anon_sym_break_AT] = ACTIONS(4280), + [sym_real_literal] = ACTIONS(4280), + [sym_integer_literal] = ACTIONS(4278), + [sym_hex_literal] = ACTIONS(4280), + [sym_bin_literal] = ACTIONS(4280), + [anon_sym_true] = ACTIONS(4278), + [anon_sym_false] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4280), + [sym__backtick_identifier] = ACTIONS(4280), + [sym__automatic_semicolon] = ACTIONS(4280), + [sym_safe_nav] = ACTIONS(4280), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4280), }, [2874] = { - [aux_sym_user_type_repeat1] = STATE(2894), - [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(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_DOT] = ACTIONS(6307), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_get] = ACTIONS(4307), - [anon_sym_set] = 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_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), + [aux_sym_nullable_type_repeat1] = STATE(2874), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_by] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [sym__quest] = ACTIONS(6315), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_null] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), }, [2875] = { - [sym__alpha_identifier] = ACTIONS(4279), - [anon_sym_AT] = ACTIONS(4281), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_RBRACK] = ACTIONS(4281), - [anon_sym_as] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4281), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_COMMA] = ACTIONS(4281), - [anon_sym_RPAREN] = ACTIONS(4281), - [anon_sym_LT] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4279), - [anon_sym_where] = ACTIONS(4279), - [anon_sym_object] = ACTIONS(4279), - [anon_sym_fun] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_SEMI] = ACTIONS(4281), - [anon_sym_get] = ACTIONS(4279), - [anon_sym_set] = ACTIONS(4279), - [anon_sym_this] = ACTIONS(4279), - [anon_sym_super] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [anon_sym_DASH_GT] = ACTIONS(4281), - [sym_label] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4279), - [anon_sym_while] = ACTIONS(4279), - [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(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_else] = ACTIONS(4279), - [anon_sym_when] = ACTIONS(4279), - [anon_sym_try] = ACTIONS(4279), - [anon_sym_throw] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [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(4279), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [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(4279), - [anon_sym_BANGis] = ACTIONS(4281), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_SLASH] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_as_QMARK] = ACTIONS(4281), - [anon_sym_PLUS_PLUS] = ACTIONS(4281), - [anon_sym_DASH_DASH] = ACTIONS(4281), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_BANG_BANG] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4279), - [anon_sym_inner] = ACTIONS(4279), - [anon_sym_expect] = ACTIONS(4279), - [anon_sym_actual] = ACTIONS(4279), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4281), - [anon_sym_continue_AT] = ACTIONS(4281), - [anon_sym_break_AT] = ACTIONS(4281), - [sym_real_literal] = ACTIONS(4281), - [sym_integer_literal] = ACTIONS(4279), - [sym_hex_literal] = ACTIONS(4281), - [sym_bin_literal] = ACTIONS(4281), - [anon_sym_true] = ACTIONS(4279), - [anon_sym_false] = ACTIONS(4279), - [anon_sym_SQUOTE] = ACTIONS(4281), - [sym__backtick_identifier] = ACTIONS(4281), - [sym_safe_nav] = ACTIONS(4281), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4281), + [sym_function_body] = STATE(3439), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6318), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), }, [2876] = { - [aux_sym_nullable_type_repeat1] = STATE(2867), - [sym__alpha_identifier] = ACTIONS(4320), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4320), - [anon_sym_EQ] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_get] = ACTIONS(4320), - [anon_sym_set] = ACTIONS(4320), - [sym__quest] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(4320), - [anon_sym_DASH_GT] = ACTIONS(4322), - [sym_label] = ACTIONS(4322), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_while] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_QMARK_COLON] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [anon_sym_else] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(4322), - [anon_sym_PLUS_EQ] = ACTIONS(4322), - [anon_sym_DASH_EQ] = ACTIONS(4322), - [anon_sym_STAR_EQ] = ACTIONS(4322), - [anon_sym_SLASH_EQ] = ACTIONS(4322), - [anon_sym_PERCENT_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_BANGin] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_BANGis] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4320), - [anon_sym_as_QMARK] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_BANG_BANG] = ACTIONS(4322), - [anon_sym_suspend] = ACTIONS(4320), - [anon_sym_sealed] = ACTIONS(4320), - [anon_sym_annotation] = ACTIONS(4320), - [anon_sym_data] = ACTIONS(4320), - [anon_sym_inner] = ACTIONS(4320), - [anon_sym_override] = ACTIONS(4320), - [anon_sym_lateinit] = ACTIONS(4320), - [anon_sym_public] = ACTIONS(4320), - [anon_sym_private] = ACTIONS(4320), - [anon_sym_internal] = ACTIONS(4320), - [anon_sym_protected] = ACTIONS(4320), - [anon_sym_tailrec] = ACTIONS(4320), - [anon_sym_operator] = ACTIONS(4320), - [anon_sym_infix] = ACTIONS(4320), - [anon_sym_inline] = ACTIONS(4320), - [anon_sym_external] = ACTIONS(4320), - [sym_property_modifier] = ACTIONS(4320), - [anon_sym_abstract] = ACTIONS(4320), - [anon_sym_final] = ACTIONS(4320), - [anon_sym_open] = ACTIONS(4320), - [anon_sym_vararg] = ACTIONS(4320), - [anon_sym_noinline] = ACTIONS(4320), - [anon_sym_crossinline] = ACTIONS(4320), - [anon_sym_expect] = ACTIONS(4320), - [anon_sym_actual] = ACTIONS(4320), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4322), - [sym_safe_nav] = ACTIONS(4322), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, [2877] = { - [sym_type_constraints] = STATE(2938), - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_RBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [anon_sym_DASH_GT] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [aux_sym_nullable_type_repeat1] = STATE(2863), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_RBRACK] = ACTIONS(4261), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_COMMA] = ACTIONS(4261), + [anon_sym_RPAREN] = ACTIONS(4261), + [anon_sym_by] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [sym__quest] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_DASH_GT] = ACTIONS(4261), + [sym_label] = ACTIONS(4261), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4261), + [anon_sym_QMARK_COLON] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4261), + [anon_sym_PLUS_EQ] = ACTIONS(4261), + [anon_sym_DASH_EQ] = ACTIONS(4261), + [anon_sym_STAR_EQ] = ACTIONS(4261), + [anon_sym_SLASH_EQ] = ACTIONS(4261), + [anon_sym_PERCENT_EQ] = ACTIONS(4261), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4261), + [anon_sym_LT_EQ] = ACTIONS(4261), + [anon_sym_GT_EQ] = ACTIONS(4261), + [anon_sym_BANGin] = ACTIONS(4261), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4261), + [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(4261), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_BANG_BANG] = ACTIONS(4261), + [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_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(4261), + [sym_safe_nav] = ACTIONS(4261), [sym_multiline_comment] = ACTIONS(3), }, [2878] = { - [sym_type_constraints] = STATE(3120), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6310), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_type_arguments] = STATE(2947), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(6324), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [sym_label] = ACTIONS(4148), + [anon_sym_in] = ACTIONS(4148), + [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(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_when] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [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(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [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(4148), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [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), }, [2879] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6312), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), + [aux_sym_user_type_repeat1] = STATE(2885), + [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_by] = ACTIONS(4216), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(6326), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [sym__quest] = 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_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), }, [2880] = { - [sym_function_body] = STATE(3205), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6314), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [sym_type_constraints] = STATE(3213), + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6329), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, [2881] = { - [aux_sym_user_type_repeat1] = STATE(2889), - [sym__alpha_identifier] = ACTIONS(4307), - [anon_sym_AT] = ACTIONS(4309), - [anon_sym_LBRACK] = ACTIONS(4309), - [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_DOT] = ACTIONS(6316), - [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), - [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_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), - [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(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6331), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), }, [2882] = { - [sym_type_constraints] = STATE(2933), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_annotated_lambda] = STATE(3696), + [sym_lambda_literal] = STATE(3770), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [sym_label] = ACTIONS(3914), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_suspend] = ACTIONS(3912), + [anon_sym_sealed] = ACTIONS(3912), + [anon_sym_annotation] = ACTIONS(3912), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_override] = ACTIONS(3912), + [anon_sym_lateinit] = ACTIONS(3912), + [anon_sym_public] = ACTIONS(3912), + [anon_sym_private] = ACTIONS(3912), + [anon_sym_internal] = ACTIONS(3912), + [anon_sym_protected] = ACTIONS(3912), + [anon_sym_tailrec] = ACTIONS(3912), + [anon_sym_operator] = ACTIONS(3912), + [anon_sym_infix] = ACTIONS(3912), + [anon_sym_inline] = ACTIONS(3912), + [anon_sym_external] = ACTIONS(3912), + [sym_property_modifier] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3912), + [anon_sym_final] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3912), + [anon_sym_vararg] = ACTIONS(3912), + [anon_sym_noinline] = ACTIONS(3912), + [anon_sym_crossinline] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3914), + [sym__automatic_semicolon] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), }, [2883] = { - [aux_sym_nullable_type_repeat1] = STATE(2843), - [sym__alpha_identifier] = ACTIONS(4320), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4320), - [anon_sym_EQ] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_object] = ACTIONS(4320), - [anon_sym_fun] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_get] = ACTIONS(4320), - [anon_sym_set] = ACTIONS(4320), - [anon_sym_this] = ACTIONS(4320), - [anon_sym_super] = ACTIONS(4320), - [sym__quest] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(4320), - [sym_label] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_QMARK_COLON] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [anon_sym_null] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_else] = ACTIONS(4320), - [anon_sym_when] = ACTIONS(4320), - [anon_sym_try] = ACTIONS(4320), - [anon_sym_throw] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(4322), - [anon_sym_PLUS_EQ] = ACTIONS(4322), - [anon_sym_DASH_EQ] = ACTIONS(4322), - [anon_sym_STAR_EQ] = ACTIONS(4322), - [anon_sym_SLASH_EQ] = ACTIONS(4322), - [anon_sym_PERCENT_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_BANGin] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_BANGis] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4320), - [anon_sym_as_QMARK] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_BANG_BANG] = ACTIONS(4322), - [anon_sym_data] = ACTIONS(4320), - [anon_sym_inner] = ACTIONS(4320), - [anon_sym_expect] = ACTIONS(4320), - [anon_sym_actual] = ACTIONS(4320), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4322), - [anon_sym_continue_AT] = ACTIONS(4322), - [anon_sym_break_AT] = ACTIONS(4322), - [sym_real_literal] = ACTIONS(4322), - [sym_integer_literal] = ACTIONS(4320), - [sym_hex_literal] = ACTIONS(4322), - [sym_bin_literal] = ACTIONS(4322), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [anon_sym_SQUOTE] = ACTIONS(4322), - [sym__backtick_identifier] = ACTIONS(4322), - [sym__automatic_semicolon] = ACTIONS(4322), - [sym_safe_nav] = ACTIONS(4322), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4322), + [aux_sym_user_type_repeat1] = STATE(2883), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(6333), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [sym_label] = ACTIONS(4223), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), }, [2884] = { - [aux_sym_user_type_repeat1] = STATE(2884), - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), + [sym_type_constraints] = STATE(2960), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [2885] = { - [sym_type_constraints] = STATE(3154), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6322), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [aux_sym_user_type_repeat1] = STATE(2885), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [anon_sym_DASH_GT] = ACTIONS(4225), + [sym_label] = ACTIONS(4225), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), }, [2886] = { - [sym_class_body] = STATE(3270), - [sym_type_constraints] = STATE(3068), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6324), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [anon_sym_DASH_GT] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [sym_function_body] = STATE(3246), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6339), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), [sym_multiline_comment] = ACTIONS(3), }, [2887] = { - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3123), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6341), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [2888] = { - [sym_class_body] = STATE(3261), - [sym_type_constraints] = STATE(3076), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_type_arguments] = STATE(2932), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [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_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(6343), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [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(4148), + [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(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [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(4148), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [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(4148), + [anon_sym_sealed] = ACTIONS(4148), + [anon_sym_annotation] = ACTIONS(4148), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_override] = ACTIONS(4148), + [anon_sym_lateinit] = ACTIONS(4148), + [anon_sym_public] = ACTIONS(4148), + [anon_sym_private] = ACTIONS(4148), + [anon_sym_internal] = ACTIONS(4148), + [anon_sym_protected] = ACTIONS(4148), + [anon_sym_tailrec] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_infix] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym_external] = ACTIONS(4148), + [sym_property_modifier] = ACTIONS(4148), + [anon_sym_abstract] = ACTIONS(4148), + [anon_sym_final] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4148), + [anon_sym_vararg] = ACTIONS(4148), + [anon_sym_noinline] = ACTIONS(4148), + [anon_sym_crossinline] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), [sym_multiline_comment] = ACTIONS(3), }, [2889] = { - [aux_sym_user_type_repeat1] = STATE(2884), - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(6326), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [sym__quest] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_QMARK_COLON] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [anon_sym_try] = ACTIONS(4220), - [anon_sym_throw] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4222), - [anon_sym_PLUS_EQ] = ACTIONS(4222), - [anon_sym_DASH_EQ] = ACTIONS(4222), - [anon_sym_STAR_EQ] = ACTIONS(4222), - [anon_sym_SLASH_EQ] = ACTIONS(4222), - [anon_sym_PERCENT_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_BANGin] = ACTIONS(4222), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4220), - [anon_sym_as_QMARK] = ACTIONS(4222), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4222), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4222), - [anon_sym_continue_AT] = ACTIONS(4222), - [anon_sym_break_AT] = ACTIONS(4222), - [sym_real_literal] = ACTIONS(4222), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4222), - [sym_bin_literal] = ACTIONS(4222), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4222), - [sym__backtick_identifier] = ACTIONS(4222), - [sym__automatic_semicolon] = ACTIONS(4222), - [sym_safe_nav] = ACTIONS(4222), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4222), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [sym__quest] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [2890] = { - [sym_type_constraints] = STATE(3093), - [sym_enum_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = 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_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_function_body] = STATE(3171), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6345), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), [sym_multiline_comment] = ACTIONS(3), }, [2891] = { - [sym_class_body] = STATE(3209), - [sym_type_constraints] = STATE(3098), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6331), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = 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_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_type_constraints] = STATE(2936), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [2892] = { - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_RBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [sym__quest] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), [sym_multiline_comment] = ACTIONS(3), }, [2893] = { - [sym_type_constraints] = STATE(3117), - [sym_enum_class_body] = STATE(3127), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5169), - [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(5173), - [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_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), + [aux_sym_user_type_repeat1] = STATE(2898), + [sym__alpha_identifier] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_as] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_COMMA] = ACTIONS(4273), + [anon_sym_by] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_where] = ACTIONS(4271), + [anon_sym_object] = ACTIONS(4271), + [anon_sym_fun] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(6347), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym_get] = ACTIONS(4271), + [anon_sym_set] = ACTIONS(4271), + [anon_sym_this] = ACTIONS(4271), + [anon_sym_super] = ACTIONS(4271), + [sym__quest] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [sym_label] = ACTIONS(4271), + [anon_sym_in] = ACTIONS(4271), + [anon_sym_DOT_DOT] = ACTIONS(4273), + [anon_sym_QMARK_COLON] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_PIPE_PIPE] = ACTIONS(4273), + [anon_sym_null] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_else] = ACTIONS(4271), + [anon_sym_when] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_PLUS_EQ] = ACTIONS(4273), + [anon_sym_DASH_EQ] = ACTIONS(4273), + [anon_sym_STAR_EQ] = ACTIONS(4273), + [anon_sym_SLASH_EQ] = ACTIONS(4273), + [anon_sym_PERCENT_EQ] = ACTIONS(4273), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4273), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4273), + [anon_sym_LT_EQ] = ACTIONS(4273), + [anon_sym_GT_EQ] = ACTIONS(4273), + [anon_sym_BANGin] = ACTIONS(4273), + [anon_sym_is] = ACTIONS(4271), + [anon_sym_BANGis] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_as_QMARK] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_BANG_BANG] = ACTIONS(4273), + [anon_sym_data] = ACTIONS(4271), + [anon_sym_inner] = ACTIONS(4271), + [anon_sym_expect] = ACTIONS(4271), + [anon_sym_actual] = ACTIONS(4271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4273), + [anon_sym_continue_AT] = ACTIONS(4273), + [anon_sym_break_AT] = ACTIONS(4273), + [sym_real_literal] = ACTIONS(4273), + [sym_integer_literal] = ACTIONS(4271), + [sym_hex_literal] = ACTIONS(4273), + [sym_bin_literal] = ACTIONS(4273), + [anon_sym_true] = ACTIONS(4271), + [anon_sym_false] = ACTIONS(4271), + [anon_sym_SQUOTE] = ACTIONS(4273), + [sym__backtick_identifier] = ACTIONS(4273), + [sym__automatic_semicolon] = ACTIONS(4273), + [sym_safe_nav] = ACTIONS(4273), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4273), }, [2894] = { - [aux_sym_user_type_repeat1] = STATE(2873), - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(6335), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [sym__quest] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4222), - [sym_label] = ACTIONS(4222), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_QMARK_COLON] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4222), - [anon_sym_PLUS_EQ] = ACTIONS(4222), - [anon_sym_DASH_EQ] = ACTIONS(4222), - [anon_sym_STAR_EQ] = ACTIONS(4222), - [anon_sym_SLASH_EQ] = ACTIONS(4222), - [anon_sym_PERCENT_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_BANGin] = ACTIONS(4222), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4220), - [anon_sym_as_QMARK] = ACTIONS(4222), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_BANG_BANG] = ACTIONS(4222), - [anon_sym_suspend] = ACTIONS(4220), - [anon_sym_sealed] = ACTIONS(4220), - [anon_sym_annotation] = ACTIONS(4220), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4220), - [anon_sym_lateinit] = ACTIONS(4220), - [anon_sym_public] = ACTIONS(4220), - [anon_sym_private] = ACTIONS(4220), - [anon_sym_internal] = ACTIONS(4220), - [anon_sym_protected] = ACTIONS(4220), - [anon_sym_tailrec] = ACTIONS(4220), - [anon_sym_operator] = ACTIONS(4220), - [anon_sym_infix] = ACTIONS(4220), - [anon_sym_inline] = ACTIONS(4220), - [anon_sym_external] = ACTIONS(4220), - [sym_property_modifier] = ACTIONS(4220), - [anon_sym_abstract] = ACTIONS(4220), - [anon_sym_final] = ACTIONS(4220), - [anon_sym_open] = ACTIONS(4220), - [anon_sym_vararg] = ACTIONS(4220), - [anon_sym_noinline] = ACTIONS(4220), - [anon_sym_crossinline] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4222), - [sym_safe_nav] = ACTIONS(4222), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3157), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, [2895] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(3985), - [anon_sym_DASH_EQ] = ACTIONS(3985), - [anon_sym_STAR_EQ] = ACTIONS(3985), - [anon_sym_SLASH_EQ] = ACTIONS(3985), - [anon_sym_PERCENT_EQ] = ACTIONS(3985), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), + [sym_annotated_lambda] = STATE(3691), + [sym_lambda_literal] = STATE(3770), + [sym_annotation] = STATE(7884), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7884), + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [sym_label] = ACTIONS(3880), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_suspend] = ACTIONS(3878), + [anon_sym_sealed] = ACTIONS(3878), + [anon_sym_annotation] = ACTIONS(3878), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_override] = ACTIONS(3878), + [anon_sym_lateinit] = ACTIONS(3878), + [anon_sym_public] = ACTIONS(3878), + [anon_sym_private] = ACTIONS(3878), + [anon_sym_internal] = ACTIONS(3878), + [anon_sym_protected] = ACTIONS(3878), + [anon_sym_tailrec] = ACTIONS(3878), + [anon_sym_operator] = ACTIONS(3878), + [anon_sym_infix] = ACTIONS(3878), + [anon_sym_inline] = ACTIONS(3878), + [anon_sym_external] = ACTIONS(3878), + [sym_property_modifier] = ACTIONS(3878), + [anon_sym_abstract] = ACTIONS(3878), + [anon_sym_final] = ACTIONS(3878), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_vararg] = ACTIONS(3878), + [anon_sym_noinline] = ACTIONS(3878), + [anon_sym_crossinline] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3880), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), [sym_multiline_comment] = ACTIONS(3), }, [2896] = { - [sym_type_constraints] = STATE(2923), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym_function_body] = STATE(3362), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), }, [2897] = { - [sym_type_arguments] = STATE(2904), - [sym__alpha_identifier] = ACTIONS(4113), - [anon_sym_AT] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_RBRACK] = ACTIONS(4190), - [anon_sym_as] = ACTIONS(4113), - [anon_sym_EQ] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_COMMA] = ACTIONS(4190), - [anon_sym_RPAREN] = ACTIONS(4190), - [anon_sym_by] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(6338), - [anon_sym_GT] = ACTIONS(4113), - [anon_sym_where] = ACTIONS(4113), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_DASH_GT] = ACTIONS(4190), - [sym_label] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4113), - [anon_sym_while] = ACTIONS(4113), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_QMARK_COLON] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_PIPE_PIPE] = ACTIONS(4190), - [anon_sym_else] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4190), - [anon_sym_DASH_EQ] = ACTIONS(4190), - [anon_sym_STAR_EQ] = ACTIONS(4190), - [anon_sym_SLASH_EQ] = ACTIONS(4190), - [anon_sym_PERCENT_EQ] = ACTIONS(4190), - [anon_sym_BANG_EQ] = ACTIONS(4113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), - [anon_sym_LT_EQ] = ACTIONS(4190), - [anon_sym_GT_EQ] = ACTIONS(4190), - [anon_sym_BANGin] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4113), - [anon_sym_BANGis] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_SLASH] = ACTIONS(4113), - [anon_sym_PERCENT] = ACTIONS(4113), - [anon_sym_as_QMARK] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_BANG_BANG] = ACTIONS(4190), - [anon_sym_suspend] = ACTIONS(4113), - [anon_sym_sealed] = ACTIONS(4113), - [anon_sym_annotation] = ACTIONS(4113), - [anon_sym_data] = ACTIONS(4113), - [anon_sym_inner] = ACTIONS(4113), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_lateinit] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4113), - [anon_sym_private] = ACTIONS(4113), - [anon_sym_internal] = ACTIONS(4113), - [anon_sym_protected] = ACTIONS(4113), - [anon_sym_tailrec] = ACTIONS(4113), - [anon_sym_operator] = ACTIONS(4113), - [anon_sym_infix] = ACTIONS(4113), - [anon_sym_inline] = ACTIONS(4113), - [anon_sym_external] = ACTIONS(4113), - [sym_property_modifier] = ACTIONS(4113), - [anon_sym_abstract] = ACTIONS(4113), - [anon_sym_final] = ACTIONS(4113), - [anon_sym_open] = ACTIONS(4113), - [anon_sym_vararg] = ACTIONS(4113), - [anon_sym_noinline] = ACTIONS(4113), - [anon_sym_crossinline] = ACTIONS(4113), - [anon_sym_expect] = ACTIONS(4113), - [anon_sym_actual] = ACTIONS(4113), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4190), - [sym_safe_nav] = ACTIONS(4190), + [sym_type_constraints] = STATE(2972), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [2898] = { - [sym_type_arguments] = STATE(2911), - [sym__alpha_identifier] = ACTIONS(4113), - [anon_sym_AT] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_as] = ACTIONS(4113), - [anon_sym_EQ] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_COMMA] = ACTIONS(4190), - [anon_sym_by] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(6340), - [anon_sym_GT] = ACTIONS(4113), - [anon_sym_where] = ACTIONS(4113), - [anon_sym_object] = ACTIONS(4113), - [anon_sym_fun] = ACTIONS(4113), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [anon_sym_this] = ACTIONS(4113), - [anon_sym_super] = ACTIONS(4113), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [sym_label] = ACTIONS(4113), - [anon_sym_in] = ACTIONS(4113), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_QMARK_COLON] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_PIPE_PIPE] = ACTIONS(4190), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_if] = ACTIONS(4113), - [anon_sym_else] = ACTIONS(4113), - [anon_sym_when] = ACTIONS(4113), - [anon_sym_try] = ACTIONS(4113), - [anon_sym_throw] = ACTIONS(4113), - [anon_sym_return] = ACTIONS(4113), - [anon_sym_continue] = ACTIONS(4113), - [anon_sym_break] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4190), - [anon_sym_DASH_EQ] = ACTIONS(4190), - [anon_sym_STAR_EQ] = ACTIONS(4190), - [anon_sym_SLASH_EQ] = ACTIONS(4190), - [anon_sym_PERCENT_EQ] = ACTIONS(4190), - [anon_sym_BANG_EQ] = ACTIONS(4113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), - [anon_sym_LT_EQ] = ACTIONS(4190), - [anon_sym_GT_EQ] = ACTIONS(4190), - [anon_sym_BANGin] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4113), - [anon_sym_BANGis] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_SLASH] = ACTIONS(4113), - [anon_sym_PERCENT] = ACTIONS(4113), - [anon_sym_as_QMARK] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_BANG_BANG] = ACTIONS(4190), - [anon_sym_data] = ACTIONS(4113), - [anon_sym_inner] = ACTIONS(4113), - [anon_sym_expect] = ACTIONS(4113), - [anon_sym_actual] = ACTIONS(4113), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4190), - [anon_sym_continue_AT] = ACTIONS(4190), - [anon_sym_break_AT] = ACTIONS(4190), - [sym_real_literal] = ACTIONS(4190), - [sym_integer_literal] = ACTIONS(4113), - [sym_hex_literal] = ACTIONS(4190), - [sym_bin_literal] = ACTIONS(4190), - [anon_sym_true] = ACTIONS(4113), - [anon_sym_false] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4190), - [sym__backtick_identifier] = ACTIONS(4190), - [sym__automatic_semicolon] = ACTIONS(4190), - [sym_safe_nav] = ACTIONS(4190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4190), + [aux_sym_user_type_repeat1] = STATE(2883), + [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_by] = ACTIONS(4216), + [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(6354), + [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), + [sym__quest] = 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_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), + [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), }, [2899] = { - [sym_type_constraints] = STATE(3103), - [sym_enum_class_body] = STATE(3167), + [sym_type_arguments] = STATE(3469), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(6357), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [sym__quest] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4148), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_when] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_suspend] = ACTIONS(4148), + [anon_sym_sealed] = ACTIONS(4148), + [anon_sym_annotation] = ACTIONS(4148), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_override] = ACTIONS(4148), + [anon_sym_lateinit] = ACTIONS(4148), + [anon_sym_public] = ACTIONS(4148), + [anon_sym_private] = ACTIONS(4148), + [anon_sym_internal] = ACTIONS(4148), + [anon_sym_protected] = ACTIONS(4148), + [anon_sym_tailrec] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_infix] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym_external] = ACTIONS(4148), + [sym_property_modifier] = ACTIONS(4148), + [anon_sym_abstract] = ACTIONS(4148), + [anon_sym_final] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4148), + [anon_sym_vararg] = ACTIONS(4148), + [anon_sym_noinline] = ACTIONS(4148), + [anon_sym_crossinline] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [2900] = { + [sym_class_body] = STATE(3305), [sym__alpha_identifier] = ACTIONS(4390), [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(6359), [anon_sym_LBRACK] = ACTIONS(4392), [anon_sym_as] = ACTIONS(4390), [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3172), [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_LPAREN] = ACTIONS(4392), [anon_sym_COMMA] = ACTIONS(4392), [anon_sym_LT] = ACTIONS(4390), [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(4390), [anon_sym_object] = ACTIONS(4390), [anon_sym_fun] = ACTIONS(4390), [anon_sym_DOT] = ACTIONS(4390), @@ -333443,4055 +333604,4643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4392), }, - [2900] = { - [aux_sym_type_constraints_repeat1] = STATE(2900), - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [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(6342), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_by] = ACTIONS(4462), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4462), - [anon_sym_DOT] = 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_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), - }, [2901] = { - [sym_type_arguments] = STATE(5112), - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_EQ] = ACTIONS(4109), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(6347), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_object] = ACTIONS(4107), - [anon_sym_fun] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [anon_sym_this] = ACTIONS(4107), - [anon_sym_super] = ACTIONS(4107), - [sym__quest] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4109), - [sym_label] = ACTIONS(4107), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_null] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_when] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4107), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4109), - [anon_sym_continue_AT] = ACTIONS(4109), - [anon_sym_break_AT] = ACTIONS(4109), - [sym_real_literal] = ACTIONS(4109), - [sym_integer_literal] = ACTIONS(4107), - [sym_hex_literal] = ACTIONS(4109), - [sym_bin_literal] = ACTIONS(4109), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [anon_sym_SQUOTE] = ACTIONS(4109), - [sym__backtick_identifier] = ACTIONS(4109), - [sym__automatic_semicolon] = ACTIONS(4109), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4109), + [sym_class_body] = STATE(3431), + [sym_type_constraints] = STATE(3098), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RPAREN] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_DASH_GT] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), }, [2902] = { - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), + [sym_type_constraints] = STATE(3102), + [sym_enum_class_body] = STATE(3146), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6361), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, [2903] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_EQ] = ACTIONS(3948), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [sym__quest] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3948), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_RBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_RPAREN] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_DASH_GT] = ACTIONS(4496), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_while] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_catch] = ACTIONS(4494), + [anon_sym_finally] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), }, [2904] = { - [sym__alpha_identifier] = ACTIONS(4513), - [anon_sym_AT] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_RBRACK] = ACTIONS(4515), - [anon_sym_as] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_COMMA] = ACTIONS(4515), - [anon_sym_RPAREN] = ACTIONS(4515), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_SEMI] = ACTIONS(4515), - [anon_sym_get] = ACTIONS(4513), - [anon_sym_set] = ACTIONS(4513), - [sym__quest] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_DASH_GT] = ACTIONS(4515), - [sym_label] = ACTIONS(4515), - [anon_sym_in] = ACTIONS(4513), - [anon_sym_while] = ACTIONS(4513), - [anon_sym_DOT_DOT] = ACTIONS(4515), - [anon_sym_QMARK_COLON] = ACTIONS(4515), - [anon_sym_AMP_AMP] = ACTIONS(4515), - [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_else] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(4515), - [anon_sym_PLUS_EQ] = ACTIONS(4515), - [anon_sym_DASH_EQ] = ACTIONS(4515), - [anon_sym_STAR_EQ] = ACTIONS(4515), - [anon_sym_SLASH_EQ] = ACTIONS(4515), - [anon_sym_PERCENT_EQ] = ACTIONS(4515), - [anon_sym_BANG_EQ] = ACTIONS(4513), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4515), - [anon_sym_EQ_EQ] = ACTIONS(4513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4515), - [anon_sym_LT_EQ] = ACTIONS(4515), - [anon_sym_GT_EQ] = ACTIONS(4515), - [anon_sym_BANGin] = ACTIONS(4515), - [anon_sym_is] = ACTIONS(4513), - [anon_sym_BANGis] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_as_QMARK] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_BANG_BANG] = ACTIONS(4515), - [anon_sym_suspend] = ACTIONS(4513), - [anon_sym_sealed] = ACTIONS(4513), - [anon_sym_annotation] = ACTIONS(4513), - [anon_sym_data] = ACTIONS(4513), - [anon_sym_inner] = ACTIONS(4513), - [anon_sym_override] = ACTIONS(4513), - [anon_sym_lateinit] = ACTIONS(4513), - [anon_sym_public] = ACTIONS(4513), - [anon_sym_private] = ACTIONS(4513), - [anon_sym_internal] = ACTIONS(4513), - [anon_sym_protected] = ACTIONS(4513), - [anon_sym_tailrec] = ACTIONS(4513), - [anon_sym_operator] = ACTIONS(4513), - [anon_sym_infix] = ACTIONS(4513), - [anon_sym_inline] = ACTIONS(4513), - [anon_sym_external] = ACTIONS(4513), - [sym_property_modifier] = ACTIONS(4513), - [anon_sym_abstract] = ACTIONS(4513), - [anon_sym_final] = ACTIONS(4513), - [anon_sym_open] = ACTIONS(4513), - [anon_sym_vararg] = ACTIONS(4513), - [anon_sym_noinline] = ACTIONS(4513), - [anon_sym_crossinline] = ACTIONS(4513), - [anon_sym_expect] = ACTIONS(4513), - [anon_sym_actual] = ACTIONS(4513), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4515), - [sym_safe_nav] = ACTIONS(4515), + [sym_type_constraints] = STATE(3090), + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), [sym_multiline_comment] = ACTIONS(3), }, [2905] = { - [sym_class_body] = STATE(3436), - [sym_type_constraints] = STATE(3115), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_while] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3101), + [sym_enum_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), }, [2906] = { - [sym_type_constraints] = STATE(3117), - [sym_enum_class_body] = STATE(3127), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5169), - [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(5173), - [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_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_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, [2907] = { - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, [2908] = { - [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_catch] = ACTIONS(4505), - [anon_sym_finally] = 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_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__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_RBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_RPAREN] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_DASH_GT] = ACTIONS(4504), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_while] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4502), + [anon_sym_finally] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, [2909] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_RBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_RPAREN] = ACTIONS(4497), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_DASH_GT] = ACTIONS(4497), - [sym_label] = ACTIONS(4497), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_while] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_catch] = ACTIONS(4495), - [anon_sym_finally] = 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_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3102), + [sym_enum_class_body] = STATE(3146), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, [2910] = { - [sym_type_constraints] = STATE(3174), - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [sym_class_body] = STATE(3135), + [sym_type_constraints] = STATE(3111), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), }, [2911] = { - [sym__alpha_identifier] = ACTIONS(4513), - [anon_sym_AT] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_as] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_COMMA] = ACTIONS(4515), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_object] = ACTIONS(4513), - [anon_sym_fun] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_SEMI] = ACTIONS(4515), - [anon_sym_get] = ACTIONS(4513), - [anon_sym_set] = ACTIONS(4513), - [anon_sym_this] = ACTIONS(4513), - [anon_sym_super] = ACTIONS(4513), - [sym__quest] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [sym_label] = ACTIONS(4513), - [anon_sym_in] = ACTIONS(4513), - [anon_sym_DOT_DOT] = ACTIONS(4515), - [anon_sym_QMARK_COLON] = ACTIONS(4515), - [anon_sym_AMP_AMP] = ACTIONS(4515), - [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_if] = ACTIONS(4513), - [anon_sym_else] = ACTIONS(4513), - [anon_sym_when] = ACTIONS(4513), - [anon_sym_try] = ACTIONS(4513), - [anon_sym_throw] = ACTIONS(4513), - [anon_sym_return] = ACTIONS(4513), - [anon_sym_continue] = ACTIONS(4513), - [anon_sym_break] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(4515), - [anon_sym_PLUS_EQ] = ACTIONS(4515), - [anon_sym_DASH_EQ] = ACTIONS(4515), - [anon_sym_STAR_EQ] = ACTIONS(4515), - [anon_sym_SLASH_EQ] = ACTIONS(4515), - [anon_sym_PERCENT_EQ] = ACTIONS(4515), - [anon_sym_BANG_EQ] = ACTIONS(4513), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4515), - [anon_sym_EQ_EQ] = ACTIONS(4513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4515), - [anon_sym_LT_EQ] = ACTIONS(4515), - [anon_sym_GT_EQ] = ACTIONS(4515), - [anon_sym_BANGin] = ACTIONS(4515), - [anon_sym_is] = ACTIONS(4513), - [anon_sym_BANGis] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_as_QMARK] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_BANG_BANG] = ACTIONS(4515), - [anon_sym_data] = ACTIONS(4513), - [anon_sym_inner] = ACTIONS(4513), - [anon_sym_expect] = ACTIONS(4513), - [anon_sym_actual] = ACTIONS(4513), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4515), - [anon_sym_continue_AT] = ACTIONS(4515), - [anon_sym_break_AT] = ACTIONS(4515), - [sym_real_literal] = ACTIONS(4515), - [sym_integer_literal] = ACTIONS(4513), - [sym_hex_literal] = ACTIONS(4515), - [sym_bin_literal] = ACTIONS(4515), - [anon_sym_true] = ACTIONS(4513), - [anon_sym_false] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4515), - [sym__backtick_identifier] = ACTIONS(4515), - [sym__automatic_semicolon] = ACTIONS(4515), - [sym_safe_nav] = ACTIONS(4515), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4515), + [sym_function_body] = STATE(3256), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_RBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_DASH_GT] = ACTIONS(4444), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), }, [2912] = { - [sym_class_body] = STATE(3218), - [sym_type_constraints] = STATE(3091), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_RBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_RPAREN] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [anon_sym_DASH_GT] = ACTIONS(4402), - [sym_label] = ACTIONS(4402), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_while] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3151), + [sym_type_constraints] = STATE(3097), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), }, [2913] = { - [sym_type_constraints] = STATE(3165), - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [sym_class_body] = STATE(3430), + [sym_type_constraints] = STATE(3082), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), }, [2914] = { - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_RBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_RPAREN] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [sym__quest] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_while] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), + [sym_type_constraints] = STATE(3080), + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, [2915] = { - [sym__alpha_identifier] = ACTIONS(4475), - [anon_sym_AT] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_RBRACK] = ACTIONS(4477), - [anon_sym_as] = ACTIONS(4475), - [anon_sym_EQ] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_RPAREN] = ACTIONS(4477), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_where] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_SEMI] = ACTIONS(4477), - [anon_sym_get] = ACTIONS(4475), - [anon_sym_set] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_DASH_GT] = ACTIONS(4477), - [sym_label] = ACTIONS(4477), - [anon_sym_in] = ACTIONS(4475), - [anon_sym_while] = ACTIONS(4475), - [anon_sym_DOT_DOT] = ACTIONS(4477), - [anon_sym_QMARK_COLON] = ACTIONS(4477), - [anon_sym_AMP_AMP] = ACTIONS(4477), - [anon_sym_PIPE_PIPE] = ACTIONS(4477), - [anon_sym_else] = ACTIONS(4475), - [anon_sym_COLON_COLON] = ACTIONS(4477), - [anon_sym_PLUS_EQ] = ACTIONS(4477), - [anon_sym_DASH_EQ] = ACTIONS(4477), - [anon_sym_STAR_EQ] = ACTIONS(4477), - [anon_sym_SLASH_EQ] = ACTIONS(4477), - [anon_sym_PERCENT_EQ] = ACTIONS(4477), - [anon_sym_BANG_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4477), - [anon_sym_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4477), - [anon_sym_LT_EQ] = ACTIONS(4477), - [anon_sym_GT_EQ] = ACTIONS(4477), - [anon_sym_BANGin] = ACTIONS(4477), - [anon_sym_is] = ACTIONS(4475), - [anon_sym_BANGis] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_PERCENT] = ACTIONS(4475), - [anon_sym_as_QMARK] = ACTIONS(4477), - [anon_sym_PLUS_PLUS] = ACTIONS(4477), - [anon_sym_DASH_DASH] = ACTIONS(4477), - [anon_sym_BANG_BANG] = ACTIONS(4477), - [anon_sym_suspend] = ACTIONS(4475), - [anon_sym_sealed] = ACTIONS(4475), - [anon_sym_annotation] = ACTIONS(4475), - [anon_sym_data] = ACTIONS(4475), - [anon_sym_inner] = ACTIONS(4475), - [anon_sym_override] = ACTIONS(4475), - [anon_sym_lateinit] = ACTIONS(4475), - [anon_sym_public] = ACTIONS(4475), - [anon_sym_private] = ACTIONS(4475), - [anon_sym_internal] = ACTIONS(4475), - [anon_sym_protected] = ACTIONS(4475), - [anon_sym_tailrec] = ACTIONS(4475), - [anon_sym_operator] = ACTIONS(4475), - [anon_sym_infix] = ACTIONS(4475), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_external] = ACTIONS(4475), - [sym_property_modifier] = ACTIONS(4475), - [anon_sym_abstract] = ACTIONS(4475), - [anon_sym_final] = ACTIONS(4475), - [anon_sym_open] = ACTIONS(4475), - [anon_sym_vararg] = ACTIONS(4475), - [anon_sym_noinline] = ACTIONS(4475), - [anon_sym_crossinline] = ACTIONS(4475), - [anon_sym_expect] = ACTIONS(4475), - [anon_sym_actual] = ACTIONS(4475), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6349), - [anon_sym_L] = ACTIONS(6351), - [sym__backtick_identifier] = ACTIONS(4477), - [sym_safe_nav] = ACTIONS(4477), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3096), + [sym_enum_class_body] = STATE(3160), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4482), + [anon_sym_fun] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_this] = ACTIONS(4482), + [anon_sym_super] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4482), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_when] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_throw] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4484), + [anon_sym_continue_AT] = ACTIONS(4484), + [anon_sym_break_AT] = ACTIONS(4484), + [sym_real_literal] = ACTIONS(4484), + [sym_integer_literal] = ACTIONS(4482), + [sym_hex_literal] = ACTIONS(4484), + [sym_bin_literal] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4484), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4484), }, [2916] = { - [sym_type_constraints] = STATE(3102), - [sym_enum_class_body] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), + [sym_function_body] = STATE(3254), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_RBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_DASH_GT] = ACTIONS(4440), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, [2917] = { - [sym_type_constraints] = STATE(3105), - [sym_enum_class_body] = STATE(3157), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_this] = ACTIONS(4344), - [anon_sym_super] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4344), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_throw] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4346), - [anon_sym_continue_AT] = ACTIONS(4346), - [anon_sym_break_AT] = ACTIONS(4346), - [sym_real_literal] = ACTIONS(4346), - [sym_integer_literal] = ACTIONS(4344), - [sym_hex_literal] = ACTIONS(4346), - [sym_bin_literal] = ACTIONS(4346), - [anon_sym_true] = ACTIONS(4344), - [anon_sym_false] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4346), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4346), + [sym_type_constraints] = STATE(3141), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [2918] = { - [sym_class_body] = STATE(3148), - [sym_type_constraints] = STATE(3106), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), + [sym_type_constraints] = STATE(3168), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), }, [2919] = { - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), + [sym_type_constraints] = STATE(3113), + [sym_enum_class_body] = STATE(3135), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), }, [2920] = { - [sym_class_body] = STATE(3272), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_RBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_RPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [anon_sym_DASH_GT] = ACTIONS(4410), + [sym_class_body] = STATE(3134), + [sym_type_constraints] = STATE(3110), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_this] = ACTIONS(4410), + [anon_sym_super] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_while] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_when] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_throw] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4412), + [anon_sym_continue_AT] = ACTIONS(4412), + [anon_sym_break_AT] = ACTIONS(4412), + [sym_real_literal] = ACTIONS(4412), + [sym_integer_literal] = ACTIONS(4410), + [sym_hex_literal] = ACTIONS(4412), + [sym_bin_literal] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4410), + [anon_sym_false] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4412), }, [2921] = { - [sym_function_body] = STATE(3308), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_COMMA] = ACTIONS(4426), - [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_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), - [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), + [sym_type_constraints] = STATE(3088), + [sym_enum_class_body] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4498), + [anon_sym_fun] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_this] = ACTIONS(4498), + [anon_sym_super] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4498), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_when] = ACTIONS(4498), + [anon_sym_try] = ACTIONS(4498), + [anon_sym_throw] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4500), + [anon_sym_continue_AT] = ACTIONS(4500), + [anon_sym_break_AT] = ACTIONS(4500), + [sym_real_literal] = ACTIONS(4500), + [sym_integer_literal] = ACTIONS(4498), + [sym_hex_literal] = ACTIONS(4500), + [sym_bin_literal] = ACTIONS(4500), + [anon_sym_true] = ACTIONS(4498), + [anon_sym_false] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4500), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4500), }, [2922] = { - [sym_type_constraints] = STATE(3154), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym_type_constraints] = STATE(3177), + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, [2923] = { - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_type_constraints] = STATE(3070), + [sym_enum_class_body] = STATE(3278), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_RBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_DASH_GT] = ACTIONS(4478), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), }, [2924] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4502), + [anon_sym_finally] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, [2925] = { - [sym_type_constraints] = STATE(3107), - [sym_enum_class_body] = STATE(3148), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, [2926] = { - [sym_type_constraints] = STATE(3108), - [sym_enum_class_body] = STATE(3436), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_while] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), + [sym_type_arguments] = STATE(5098), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6363), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(6365), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_object] = ACTIONS(4142), + [anon_sym_fun] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_this] = ACTIONS(4142), + [anon_sym_super] = ACTIONS(4142), + [sym__quest] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4144), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_when] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4144), + [anon_sym_continue_AT] = ACTIONS(4144), + [anon_sym_break_AT] = ACTIONS(4144), + [sym_real_literal] = ACTIONS(4144), + [sym_integer_literal] = ACTIONS(4142), + [sym_hex_literal] = ACTIONS(4144), + [sym_bin_literal] = ACTIONS(4144), + [anon_sym_true] = ACTIONS(4142), + [anon_sym_false] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(4144), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4144), }, [2927] = { - [sym_catch_block] = STATE(3014), - [sym_finally_block] = STATE(3855), - [aux_sym_try_expression_repeat1] = STATE(3014), - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_catch] = ACTIONS(6355), - [anon_sym_finally] = ACTIONS(6357), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [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_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(4025), - [sym__automatic_semicolon] = ACTIONS(4025), - [sym_safe_nav] = ACTIONS(4025), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3162), + [sym_type_constraints] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6367), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [2928] = { - [sym_class_body] = STATE(3164), - [sym_type_constraints] = STATE(3095), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_as] = ACTIONS(4448), + [anon_sym_EQ] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_COMMA] = ACTIONS(4450), + [anon_sym_by] = ACTIONS(4448), + [anon_sym_LT] = ACTIONS(4448), + [anon_sym_GT] = ACTIONS(4448), + [anon_sym_where] = ACTIONS(4448), + [anon_sym_object] = ACTIONS(4448), + [anon_sym_fun] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym_get] = ACTIONS(4448), + [anon_sym_set] = ACTIONS(4448), + [anon_sym_this] = ACTIONS(4448), + [anon_sym_super] = ACTIONS(4448), + [sym__quest] = ACTIONS(4448), + [anon_sym_STAR] = ACTIONS(4448), + [sym_label] = ACTIONS(4448), + [anon_sym_in] = ACTIONS(4448), + [anon_sym_DOT_DOT] = ACTIONS(4450), + [anon_sym_QMARK_COLON] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE_PIPE] = ACTIONS(4450), + [anon_sym_null] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4448), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_when] = ACTIONS(4448), + [anon_sym_try] = ACTIONS(4448), + [anon_sym_throw] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4448), + [anon_sym_continue] = ACTIONS(4448), + [anon_sym_break] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_PLUS_EQ] = ACTIONS(4450), + [anon_sym_DASH_EQ] = ACTIONS(4450), + [anon_sym_STAR_EQ] = ACTIONS(4450), + [anon_sym_SLASH_EQ] = ACTIONS(4450), + [anon_sym_PERCENT_EQ] = ACTIONS(4450), + [anon_sym_BANG_EQ] = ACTIONS(4448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4450), + [anon_sym_EQ_EQ] = ACTIONS(4448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4450), + [anon_sym_LT_EQ] = ACTIONS(4450), + [anon_sym_GT_EQ] = ACTIONS(4450), + [anon_sym_BANGin] = ACTIONS(4450), + [anon_sym_is] = ACTIONS(4448), + [anon_sym_BANGis] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_SLASH] = ACTIONS(4448), + [anon_sym_PERCENT] = ACTIONS(4448), + [anon_sym_as_QMARK] = ACTIONS(4450), + [anon_sym_PLUS_PLUS] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4448), + [anon_sym_BANG_BANG] = ACTIONS(4450), + [anon_sym_data] = ACTIONS(4448), + [anon_sym_inner] = ACTIONS(4448), + [anon_sym_expect] = ACTIONS(4448), + [anon_sym_actual] = ACTIONS(4448), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4450), + [anon_sym_continue_AT] = ACTIONS(4450), + [anon_sym_break_AT] = ACTIONS(4450), + [sym_real_literal] = ACTIONS(4450), + [sym_integer_literal] = ACTIONS(4448), + [sym_hex_literal] = ACTIONS(4450), + [sym_bin_literal] = ACTIONS(4450), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [anon_sym_SQUOTE] = ACTIONS(4450), + [sym__backtick_identifier] = ACTIONS(4450), + [sym__automatic_semicolon] = ACTIONS(4450), + [sym_safe_nav] = ACTIONS(4450), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4450), }, [2929] = { - [sym_type_constraints] = STATE(3110), - [sym_enum_class_body] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6359), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym_LT] = ACTIONS(4229), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(3118), - [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_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), - [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_catch_block] = STATE(3033), + [sym_finally_block] = STATE(3777), + [aux_sym_try_expression_repeat1] = STATE(3033), + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_catch] = ACTIONS(6369), + [anon_sym_finally] = ACTIONS(6371), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_suspend] = ACTIONS(4035), + [anon_sym_sealed] = ACTIONS(4035), + [anon_sym_annotation] = ACTIONS(4035), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_override] = ACTIONS(4035), + [anon_sym_lateinit] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_private] = ACTIONS(4035), + [anon_sym_internal] = ACTIONS(4035), + [anon_sym_protected] = ACTIONS(4035), + [anon_sym_tailrec] = ACTIONS(4035), + [anon_sym_operator] = ACTIONS(4035), + [anon_sym_infix] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_external] = ACTIONS(4035), + [sym_property_modifier] = ACTIONS(4035), + [anon_sym_abstract] = ACTIONS(4035), + [anon_sym_final] = ACTIONS(4035), + [anon_sym_open] = ACTIONS(4035), + [anon_sym_vararg] = ACTIONS(4035), + [anon_sym_noinline] = ACTIONS(4035), + [anon_sym_crossinline] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4037), + [sym__automatic_semicolon] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), }, [2930] = { - [sym_type_constraints] = STATE(3110), - [sym_enum_class_body] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3112), - [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(3118), - [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_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), - [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_class_body] = STATE(3162), + [sym_type_constraints] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [2931] = { - [sym_type_constraints] = STATE(3088), - [sym_enum_class_body] = STATE(3217), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [anon_sym_DASH_GT] = ACTIONS(4346), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_while] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), + [sym_class_body] = STATE(3278), + [sym_type_constraints] = STATE(2993), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_RBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_DASH_GT] = ACTIONS(4478), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), }, [2932] = { - [sym_class_body] = STATE(3169), - [sym_type_constraints] = STATE(3104), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_RBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_RPAREN] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_DASH_GT] = ACTIONS(4406), - [sym_label] = ACTIONS(4406), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_while] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), + [sym__alpha_identifier] = ACTIONS(4486), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_RBRACK] = ACTIONS(4488), + [anon_sym_as] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(4488), + [anon_sym_by] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_where] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_get] = ACTIONS(4486), + [anon_sym_set] = ACTIONS(4486), + [sym__quest] = ACTIONS(4486), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_DASH_GT] = ACTIONS(4488), + [sym_label] = ACTIONS(4488), + [anon_sym_in] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4488), + [anon_sym_QMARK_COLON] = ACTIONS(4488), + [anon_sym_AMP_AMP] = ACTIONS(4488), + [anon_sym_PIPE_PIPE] = ACTIONS(4488), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_COLON_COLON] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4488), + [anon_sym_EQ_EQ] = ACTIONS(4486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4488), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_BANGin] = ACTIONS(4488), + [anon_sym_is] = ACTIONS(4486), + [anon_sym_BANGis] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_PERCENT] = ACTIONS(4486), + [anon_sym_as_QMARK] = ACTIONS(4488), + [anon_sym_PLUS_PLUS] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4488), + [anon_sym_BANG_BANG] = ACTIONS(4488), + [anon_sym_suspend] = ACTIONS(4486), + [anon_sym_sealed] = ACTIONS(4486), + [anon_sym_annotation] = ACTIONS(4486), + [anon_sym_data] = ACTIONS(4486), + [anon_sym_inner] = ACTIONS(4486), + [anon_sym_override] = ACTIONS(4486), + [anon_sym_lateinit] = ACTIONS(4486), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_private] = ACTIONS(4486), + [anon_sym_internal] = ACTIONS(4486), + [anon_sym_protected] = ACTIONS(4486), + [anon_sym_tailrec] = ACTIONS(4486), + [anon_sym_operator] = ACTIONS(4486), + [anon_sym_infix] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym_external] = ACTIONS(4486), + [sym_property_modifier] = ACTIONS(4486), + [anon_sym_abstract] = ACTIONS(4486), + [anon_sym_final] = ACTIONS(4486), + [anon_sym_open] = ACTIONS(4486), + [anon_sym_vararg] = ACTIONS(4486), + [anon_sym_noinline] = ACTIONS(4486), + [anon_sym_crossinline] = ACTIONS(4486), + [anon_sym_expect] = ACTIONS(4486), + [anon_sym_actual] = ACTIONS(4486), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4488), + [sym_safe_nav] = ACTIONS(4488), [sym_multiline_comment] = ACTIONS(3), }, [2933] = { - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym_type_constraints] = STATE(3123), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [2934] = { - [sym_class_body] = STATE(3124), - [sym_type_constraints] = STATE(3112), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), + [sym_type_constraints] = STATE(3053), + [sym_enum_class_body] = STATE(3396), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_RBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_DASH_GT] = ACTIONS(4484), + [sym_label] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_while] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), }, [2935] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, [2936] = { - [sym_type_constraints] = STATE(3120), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), }, [2937] = { - [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_catch] = ACTIONS(4505), - [anon_sym_finally] = 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_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), - [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__alpha_identifier] = ACTIONS(4464), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_as] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4464), + [anon_sym_GT] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_object] = ACTIONS(4464), + [anon_sym_fun] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_get] = ACTIONS(4464), + [anon_sym_set] = ACTIONS(4464), + [anon_sym_this] = ACTIONS(4464), + [anon_sym_super] = ACTIONS(4464), + [sym__quest] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_QMARK_COLON] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_null] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4464), + [anon_sym_when] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_PERCENT_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4466), + [anon_sym_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4466), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_BANGin] = ACTIONS(4466), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_BANGis] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_SLASH] = ACTIONS(4464), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4466), + [anon_sym_data] = ACTIONS(4464), + [anon_sym_inner] = ACTIONS(4464), + [anon_sym_expect] = ACTIONS(4464), + [anon_sym_actual] = ACTIONS(4464), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4466), + [anon_sym_continue_AT] = ACTIONS(4466), + [anon_sym_break_AT] = ACTIONS(4466), + [sym_real_literal] = ACTIONS(4466), + [sym_integer_literal] = ACTIONS(4464), + [sym_hex_literal] = ACTIONS(4466), + [sym_bin_literal] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4464), + [anon_sym_false] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4466), + [sym__backtick_identifier] = ACTIONS(4466), + [sym__automatic_semicolon] = ACTIONS(4466), + [sym_safe_nav] = ACTIONS(4466), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4466), }, [2938] = { - [sym_function_body] = STATE(3332), - [sym__block] = STATE(3464), - [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(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [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_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_override] = ACTIONS(4485), - [anon_sym_lateinit] = ACTIONS(4485), - [anon_sym_public] = ACTIONS(4485), - [anon_sym_private] = ACTIONS(4485), - [anon_sym_internal] = ACTIONS(4485), - [anon_sym_protected] = ACTIONS(4485), - [anon_sym_tailrec] = ACTIONS(4485), - [anon_sym_operator] = ACTIONS(4485), - [anon_sym_infix] = ACTIONS(4485), - [anon_sym_inline] = ACTIONS(4485), - [anon_sym_external] = ACTIONS(4485), - [sym_property_modifier] = ACTIONS(4485), - [anon_sym_abstract] = ACTIONS(4485), - [anon_sym_final] = ACTIONS(4485), - [anon_sym_open] = ACTIONS(4485), - [anon_sym_vararg] = ACTIONS(4485), - [anon_sym_noinline] = ACTIONS(4485), - [anon_sym_crossinline] = ACTIONS(4485), - [anon_sym_expect] = ACTIONS(4485), - [anon_sym_actual] = ACTIONS(4485), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4487), - [sym_safe_nav] = ACTIONS(4487), + [sym__alpha_identifier] = ACTIONS(4432), + [anon_sym_AT] = ACTIONS(4434), + [anon_sym_COLON] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4434), + [anon_sym_RBRACK] = ACTIONS(4434), + [anon_sym_as] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_constructor] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym_COMMA] = ACTIONS(4434), + [anon_sym_RPAREN] = ACTIONS(4434), + [anon_sym_LT] = ACTIONS(4432), + [anon_sym_GT] = ACTIONS(4432), + [anon_sym_where] = ACTIONS(4432), + [anon_sym_DOT] = ACTIONS(4432), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym_get] = ACTIONS(4432), + [anon_sym_set] = ACTIONS(4432), + [anon_sym_STAR] = ACTIONS(4432), + [anon_sym_DASH_GT] = ACTIONS(4434), + [sym_label] = ACTIONS(4434), + [anon_sym_in] = ACTIONS(4432), + [anon_sym_while] = ACTIONS(4432), + [anon_sym_DOT_DOT] = ACTIONS(4434), + [anon_sym_QMARK_COLON] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_PIPE_PIPE] = ACTIONS(4434), + [anon_sym_else] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_PLUS_EQ] = ACTIONS(4434), + [anon_sym_DASH_EQ] = ACTIONS(4434), + [anon_sym_STAR_EQ] = ACTIONS(4434), + [anon_sym_SLASH_EQ] = ACTIONS(4434), + [anon_sym_PERCENT_EQ] = ACTIONS(4434), + [anon_sym_BANG_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4434), + [anon_sym_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4434), + [anon_sym_LT_EQ] = ACTIONS(4434), + [anon_sym_GT_EQ] = ACTIONS(4434), + [anon_sym_BANGin] = ACTIONS(4434), + [anon_sym_is] = ACTIONS(4432), + [anon_sym_BANGis] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(4432), + [anon_sym_SLASH] = ACTIONS(4432), + [anon_sym_PERCENT] = ACTIONS(4432), + [anon_sym_as_QMARK] = ACTIONS(4434), + [anon_sym_PLUS_PLUS] = ACTIONS(4434), + [anon_sym_DASH_DASH] = ACTIONS(4434), + [anon_sym_BANG_BANG] = ACTIONS(4434), + [anon_sym_suspend] = ACTIONS(4432), + [anon_sym_sealed] = ACTIONS(4432), + [anon_sym_annotation] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4432), + [anon_sym_inner] = ACTIONS(4432), + [anon_sym_override] = ACTIONS(4432), + [anon_sym_lateinit] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_internal] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_tailrec] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_infix] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym_external] = ACTIONS(4432), + [sym_property_modifier] = ACTIONS(4432), + [anon_sym_abstract] = ACTIONS(4432), + [anon_sym_final] = ACTIONS(4432), + [anon_sym_open] = ACTIONS(4432), + [anon_sym_vararg] = ACTIONS(4432), + [anon_sym_noinline] = ACTIONS(4432), + [anon_sym_crossinline] = ACTIONS(4432), + [anon_sym_expect] = ACTIONS(4432), + [anon_sym_actual] = ACTIONS(4432), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4434), + [sym_safe_nav] = ACTIONS(4434), [sym_multiline_comment] = ACTIONS(3), }, [2939] = { - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_RBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [anon_sym_DASH_GT] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [2940] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_constructor] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_RPAREN] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3948), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [sym_label] = ACTIONS(4223), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), }, [2941] = { - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_RBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_RPAREN] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_DASH_GT] = ACTIONS(4272), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), + [sym_class_body] = STATE(3296), + [sym_type_constraints] = STATE(3008), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [anon_sym_DASH_GT] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, [2942] = { - [sym_value_arguments] = STATE(3187), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [anon_sym_DASH_GT] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [sym_value_arguments] = STATE(3190), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(6373), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = 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_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), }, [2943] = { - [sym_function_body] = STATE(3418), - [sym__block] = STATE(3464), - [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(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_COMMA] = ACTIONS(4426), - [anon_sym_RPAREN] = ACTIONS(4426), - [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_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__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [anon_sym_DASH_GT] = ACTIONS(4225), + [sym_label] = ACTIONS(4225), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), [sym_multiline_comment] = ACTIONS(3), }, [2944] = { - [sym_type_constraints] = STATE(3116), - [sym_enum_class_body] = STATE(3124), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), + [sym_type_constraints] = STATE(3095), + [sym_enum_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6375), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [2945] = { - [sym_class_body] = STATE(3122), - [sym_type_constraints] = STATE(3118), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4404), - [anon_sym_fun] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_this] = ACTIONS(4404), - [anon_sym_super] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4404), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_when] = ACTIONS(4404), - [anon_sym_try] = ACTIONS(4404), - [anon_sym_throw] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4406), - [anon_sym_continue_AT] = ACTIONS(4406), - [anon_sym_break_AT] = ACTIONS(4406), - [sym_real_literal] = ACTIONS(4406), - [sym_integer_literal] = ACTIONS(4404), - [sym_hex_literal] = ACTIONS(4406), - [sym_bin_literal] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4404), - [anon_sym_false] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4406), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4406), + [sym__alpha_identifier] = ACTIONS(4265), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_RBRACK] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [anon_sym_by] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4265), + [anon_sym_where] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_get] = ACTIONS(4265), + [anon_sym_set] = ACTIONS(4265), + [sym__quest] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4265), + [anon_sym_while] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_QMARK_COLON] = ACTIONS(4267), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4265), + [anon_sym_COLON_COLON] = ACTIONS(4267), + [anon_sym_PLUS_EQ] = ACTIONS(4267), + [anon_sym_DASH_EQ] = ACTIONS(4267), + [anon_sym_STAR_EQ] = ACTIONS(4267), + [anon_sym_SLASH_EQ] = ACTIONS(4267), + [anon_sym_PERCENT_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4267), + [anon_sym_LT_EQ] = ACTIONS(4267), + [anon_sym_GT_EQ] = ACTIONS(4267), + [anon_sym_BANGin] = ACTIONS(4267), + [anon_sym_is] = ACTIONS(4265), + [anon_sym_BANGis] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4265), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4265), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4267), + [anon_sym_suspend] = ACTIONS(4265), + [anon_sym_sealed] = ACTIONS(4265), + [anon_sym_annotation] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4265), + [anon_sym_inner] = ACTIONS(4265), + [anon_sym_override] = ACTIONS(4265), + [anon_sym_lateinit] = ACTIONS(4265), + [anon_sym_public] = ACTIONS(4265), + [anon_sym_private] = ACTIONS(4265), + [anon_sym_internal] = ACTIONS(4265), + [anon_sym_protected] = ACTIONS(4265), + [anon_sym_tailrec] = ACTIONS(4265), + [anon_sym_operator] = ACTIONS(4265), + [anon_sym_infix] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym_external] = ACTIONS(4265), + [sym_property_modifier] = ACTIONS(4265), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_final] = ACTIONS(4265), + [anon_sym_open] = ACTIONS(4265), + [anon_sym_vararg] = ACTIONS(4265), + [anon_sym_noinline] = ACTIONS(4265), + [anon_sym_crossinline] = ACTIONS(4265), + [anon_sym_expect] = ACTIONS(4265), + [anon_sym_actual] = ACTIONS(4265), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4267), + [sym_safe_nav] = ACTIONS(4267), + [sym_multiline_comment] = ACTIONS(3), }, [2946] = { - [sym_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6363), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), + [sym_type_constraints] = STATE(3095), + [sym_enum_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, [2947] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(4486), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_as] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_by] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_where] = ACTIONS(4486), + [anon_sym_object] = ACTIONS(4486), + [anon_sym_fun] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_get] = ACTIONS(4486), + [anon_sym_set] = ACTIONS(4486), + [anon_sym_this] = ACTIONS(4486), + [anon_sym_super] = ACTIONS(4486), + [sym__quest] = ACTIONS(4486), + [anon_sym_STAR] = ACTIONS(4486), + [sym_label] = ACTIONS(4486), + [anon_sym_in] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4488), + [anon_sym_QMARK_COLON] = ACTIONS(4488), + [anon_sym_AMP_AMP] = ACTIONS(4488), + [anon_sym_PIPE_PIPE] = ACTIONS(4488), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_when] = ACTIONS(4486), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_throw] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_COLON_COLON] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4488), + [anon_sym_EQ_EQ] = ACTIONS(4486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4488), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_BANGin] = ACTIONS(4488), + [anon_sym_is] = ACTIONS(4486), + [anon_sym_BANGis] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_PERCENT] = ACTIONS(4486), + [anon_sym_as_QMARK] = ACTIONS(4488), + [anon_sym_PLUS_PLUS] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_BANG_BANG] = ACTIONS(4488), + [anon_sym_data] = ACTIONS(4486), + [anon_sym_inner] = ACTIONS(4486), + [anon_sym_expect] = ACTIONS(4486), + [anon_sym_actual] = ACTIONS(4486), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4488), + [anon_sym_continue_AT] = ACTIONS(4488), + [anon_sym_break_AT] = ACTIONS(4488), + [sym_real_literal] = ACTIONS(4488), + [sym_integer_literal] = ACTIONS(4486), + [sym_hex_literal] = ACTIONS(4488), + [sym_bin_literal] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4488), + [sym__backtick_identifier] = ACTIONS(4488), + [sym__automatic_semicolon] = ACTIONS(4488), + [sym_safe_nav] = ACTIONS(4488), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4488), }, [2948] = { - [sym_type_constraints] = STATE(3060), - [sym_enum_class_body] = STATE(3273), + [sym_class_body] = STATE(3172), + [sym_type_constraints] = STATE(3093), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(3172), + [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(3176), + [anon_sym_object] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_DOT] = 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_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_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), + [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(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(3871), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [sym__quest] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3871), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [2950] = { + [aux_sym_type_constraints_repeat1] = STATE(2974), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4521), + [anon_sym_EQ] = ACTIONS(4521), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(6377), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_by] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4521), + [anon_sym_where] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_get] = ACTIONS(4521), + [anon_sym_set] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4521), + [anon_sym_DASH_GT] = ACTIONS(4523), + [sym_label] = ACTIONS(4523), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_while] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4523), + [anon_sym_else] = ACTIONS(4521), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_BANGin] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4521), + [anon_sym_BANGis] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4521), + [anon_sym_PERCENT] = ACTIONS(4521), + [anon_sym_as_QMARK] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_BANG_BANG] = ACTIONS(4523), + [anon_sym_suspend] = ACTIONS(4521), + [anon_sym_sealed] = ACTIONS(4521), + [anon_sym_annotation] = ACTIONS(4521), + [anon_sym_data] = ACTIONS(4521), + [anon_sym_inner] = ACTIONS(4521), + [anon_sym_override] = ACTIONS(4521), + [anon_sym_lateinit] = ACTIONS(4521), + [anon_sym_public] = ACTIONS(4521), + [anon_sym_private] = ACTIONS(4521), + [anon_sym_internal] = ACTIONS(4521), + [anon_sym_protected] = ACTIONS(4521), + [anon_sym_tailrec] = ACTIONS(4521), + [anon_sym_operator] = ACTIONS(4521), + [anon_sym_infix] = ACTIONS(4521), + [anon_sym_inline] = ACTIONS(4521), + [anon_sym_external] = ACTIONS(4521), + [sym_property_modifier] = ACTIONS(4521), + [anon_sym_abstract] = ACTIONS(4521), + [anon_sym_final] = ACTIONS(4521), + [anon_sym_open] = ACTIONS(4521), + [anon_sym_vararg] = ACTIONS(4521), + [anon_sym_noinline] = ACTIONS(4521), + [anon_sym_crossinline] = ACTIONS(4521), + [anon_sym_expect] = ACTIONS(4521), + [anon_sym_actual] = ACTIONS(4521), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4523), + [sym_safe_nav] = ACTIONS(4523), + [sym_multiline_comment] = ACTIONS(3), + }, + [2951] = { + [sym_type_constraints] = STATE(3039), + [sym_enum_class_body] = STATE(3379), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_RBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_DASH_GT] = ACTIONS(4500), + [sym_label] = ACTIONS(4500), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_while] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + }, + [2952] = { + [sym_class_body] = STATE(3230), + [sym_type_constraints] = STATE(3081), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [2953] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [2954] = { + [sym_type_constraints] = STATE(3157), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [2955] = { + [sym__alpha_identifier] = ACTIONS(4464), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_RBRACK] = ACTIONS(4466), + [anon_sym_as] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4464), + [anon_sym_GT] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_get] = ACTIONS(4464), + [anon_sym_set] = ACTIONS(4464), + [sym__quest] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_DASH_GT] = ACTIONS(4466), + [sym_label] = ACTIONS(4466), + [anon_sym_in] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_QMARK_COLON] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_else] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_PERCENT_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4466), + [anon_sym_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4466), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_BANGin] = ACTIONS(4466), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_BANGis] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_SLASH] = ACTIONS(4464), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_BANG_BANG] = ACTIONS(4466), + [anon_sym_suspend] = ACTIONS(4464), + [anon_sym_sealed] = ACTIONS(4464), + [anon_sym_annotation] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4464), + [anon_sym_inner] = ACTIONS(4464), + [anon_sym_override] = ACTIONS(4464), + [anon_sym_lateinit] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_internal] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_tailrec] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_infix] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym_external] = ACTIONS(4464), + [sym_property_modifier] = ACTIONS(4464), + [anon_sym_abstract] = ACTIONS(4464), + [anon_sym_final] = ACTIONS(4464), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_vararg] = ACTIONS(4464), + [anon_sym_noinline] = ACTIONS(4464), + [anon_sym_crossinline] = ACTIONS(4464), + [anon_sym_expect] = ACTIONS(4464), + [anon_sym_actual] = ACTIONS(4464), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4466), + [sym_safe_nav] = ACTIONS(4466), + [sym_multiline_comment] = ACTIONS(3), + }, + [2956] = { + [sym_class_body] = STATE(3189), [sym__alpha_identifier] = ACTIONS(4390), [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(6379), [anon_sym_LBRACK] = ACTIONS(4392), [anon_sym_RBRACK] = ACTIONS(4392), [anon_sym_as] = ACTIONS(4390), [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_LBRACE] = ACTIONS(5141), [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_LPAREN] = ACTIONS(4392), [anon_sym_COMMA] = ACTIONS(4392), [anon_sym_RPAREN] = ACTIONS(4392), [anon_sym_LT] = ACTIONS(4390), [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(4390), [anon_sym_DOT] = ACTIONS(4390), [anon_sym_SEMI] = ACTIONS(4392), [anon_sym_get] = ACTIONS(4390), @@ -337559,5204 +338308,5694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), }, - [2949] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_RBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_RPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_DASH_GT] = ACTIONS(4422), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_while] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - }, - [2950] = { - [sym_class_body] = STATE(3216), - [sym_type_constraints] = STATE(3111), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [2951] = { - [sym_class_body] = STATE(3216), - [sym_type_constraints] = STATE(3111), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [2952] = { - [sym_type_constraints] = STATE(3173), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [2953] = { - [sym_class_body] = STATE(3337), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6367), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_RBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_RPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_DASH_GT] = ACTIONS(4386), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_while] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - }, - [2954] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_RBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_DASH_GT] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [2955] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [anon_sym_DASH_GT] = ACTIONS(4511), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_while] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_catch] = ACTIONS(4509), - [anon_sym_finally] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - }, - [2956] = { - [sym_class_body] = STATE(3209), - [sym_type_constraints] = STATE(3098), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = 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_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), - }, [2957] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_RBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [sym__alpha_identifier] = ACTIONS(4460), + [anon_sym_AT] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_RBRACK] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_COMMA] = ACTIONS(4462), + [anon_sym_RPAREN] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_where] = ACTIONS(4460), + [anon_sym_DOT] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym_get] = ACTIONS(4460), + [anon_sym_set] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4460), + [anon_sym_DASH_GT] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4460), + [anon_sym_DOT_DOT] = ACTIONS(4462), + [anon_sym_QMARK_COLON] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_PIPE_PIPE] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4460), + [anon_sym_catch] = ACTIONS(4460), + [anon_sym_finally] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_PLUS_EQ] = ACTIONS(4462), + [anon_sym_DASH_EQ] = ACTIONS(4462), + [anon_sym_STAR_EQ] = ACTIONS(4462), + [anon_sym_SLASH_EQ] = ACTIONS(4462), + [anon_sym_PERCENT_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ] = ACTIONS(4460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ] = ACTIONS(4460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_BANGin] = ACTIONS(4462), + [anon_sym_is] = ACTIONS(4460), + [anon_sym_BANGis] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_SLASH] = ACTIONS(4460), + [anon_sym_PERCENT] = ACTIONS(4460), + [anon_sym_as_QMARK] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4462), + [anon_sym_suspend] = ACTIONS(4460), + [anon_sym_sealed] = ACTIONS(4460), + [anon_sym_annotation] = ACTIONS(4460), + [anon_sym_data] = ACTIONS(4460), + [anon_sym_inner] = ACTIONS(4460), + [anon_sym_override] = ACTIONS(4460), + [anon_sym_lateinit] = ACTIONS(4460), + [anon_sym_public] = ACTIONS(4460), + [anon_sym_private] = ACTIONS(4460), + [anon_sym_internal] = ACTIONS(4460), + [anon_sym_protected] = ACTIONS(4460), + [anon_sym_tailrec] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_infix] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym_external] = ACTIONS(4460), + [sym_property_modifier] = ACTIONS(4460), + [anon_sym_abstract] = ACTIONS(4460), + [anon_sym_final] = ACTIONS(4460), + [anon_sym_open] = ACTIONS(4460), + [anon_sym_vararg] = ACTIONS(4460), + [anon_sym_noinline] = ACTIONS(4460), + [anon_sym_crossinline] = ACTIONS(4460), + [anon_sym_expect] = ACTIONS(4460), + [anon_sym_actual] = ACTIONS(4460), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4462), + [sym_safe_nav] = ACTIONS(4462), [sym_multiline_comment] = ACTIONS(3), }, [2958] = { - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [sym__alpha_identifier] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_RBRACK] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(4418), + [anon_sym_constructor] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4420), + [anon_sym_RPAREN] = ACTIONS(4420), + [anon_sym_LT] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4418), + [anon_sym_where] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_SEMI] = ACTIONS(4420), + [anon_sym_get] = ACTIONS(4418), + [anon_sym_set] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_DASH_GT] = ACTIONS(4420), + [sym_label] = ACTIONS(4420), + [anon_sym_in] = ACTIONS(4418), + [anon_sym_while] = ACTIONS(4418), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_QMARK_COLON] = ACTIONS(4420), + [anon_sym_AMP_AMP] = ACTIONS(4420), + [anon_sym_PIPE_PIPE] = ACTIONS(4420), + [anon_sym_else] = ACTIONS(4418), + [anon_sym_COLON_COLON] = ACTIONS(4420), + [anon_sym_PLUS_EQ] = ACTIONS(4420), + [anon_sym_DASH_EQ] = ACTIONS(4420), + [anon_sym_STAR_EQ] = ACTIONS(4420), + [anon_sym_SLASH_EQ] = ACTIONS(4420), + [anon_sym_PERCENT_EQ] = ACTIONS(4420), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4420), + [anon_sym_BANGin] = ACTIONS(4420), + [anon_sym_is] = ACTIONS(4418), + [anon_sym_BANGis] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_SLASH] = ACTIONS(4418), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4420), + [anon_sym_PLUS_PLUS] = ACTIONS(4420), + [anon_sym_DASH_DASH] = ACTIONS(4420), + [anon_sym_BANG_BANG] = ACTIONS(4420), + [anon_sym_suspend] = ACTIONS(4418), + [anon_sym_sealed] = ACTIONS(4418), + [anon_sym_annotation] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4418), + [anon_sym_inner] = ACTIONS(4418), + [anon_sym_override] = ACTIONS(4418), + [anon_sym_lateinit] = ACTIONS(4418), + [anon_sym_public] = ACTIONS(4418), + [anon_sym_private] = ACTIONS(4418), + [anon_sym_internal] = ACTIONS(4418), + [anon_sym_protected] = ACTIONS(4418), + [anon_sym_tailrec] = ACTIONS(4418), + [anon_sym_operator] = ACTIONS(4418), + [anon_sym_infix] = ACTIONS(4418), + [anon_sym_inline] = ACTIONS(4418), + [anon_sym_external] = ACTIONS(4418), + [sym_property_modifier] = ACTIONS(4418), + [anon_sym_abstract] = ACTIONS(4418), + [anon_sym_final] = ACTIONS(4418), + [anon_sym_open] = ACTIONS(4418), + [anon_sym_vararg] = ACTIONS(4418), + [anon_sym_noinline] = ACTIONS(4418), + [anon_sym_crossinline] = ACTIONS(4418), + [anon_sym_expect] = ACTIONS(4418), + [anon_sym_actual] = ACTIONS(4418), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4420), + [sym_safe_nav] = ACTIONS(4420), + [sym_multiline_comment] = ACTIONS(3), }, [2959] = { - [sym_type_constraints] = STATE(3092), - [sym_enum_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_RBRACK] = ACTIONS(4474), + [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_DOT] = 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_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), }, [2960] = { - [sym_type_constraints] = STATE(3092), - [sym_enum_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, [2961] = { - [sym_class_body] = STATE(3220), - [sym_type_constraints] = STATE(3090), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_this] = ACTIONS(4400), - [anon_sym_super] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4400), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_when] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_throw] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4402), - [anon_sym_continue_AT] = ACTIONS(4402), - [anon_sym_break_AT] = ACTIONS(4402), - [sym_real_literal] = ACTIONS(4402), - [sym_integer_literal] = ACTIONS(4400), - [sym_hex_literal] = ACTIONS(4402), - [sym_bin_literal] = ACTIONS(4402), - [anon_sym_true] = ACTIONS(4400), - [anon_sym_false] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4402), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4402), + [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(4426), + [anon_sym_RPAREN] = ACTIONS(4426), + [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_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), + [aux_sym_unsigned_literal_token1] = ACTIONS(6381), + [anon_sym_L] = ACTIONS(6383), + [sym__backtick_identifier] = ACTIONS(4426), + [sym_safe_nav] = ACTIONS(4426), + [sym_multiline_comment] = ACTIONS(3), }, [2962] = { - [sym__alpha_identifier] = ACTIONS(4489), - [anon_sym_AT] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_as] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_by] = ACTIONS(4489), - [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), - [sym__quest] = 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_data] = ACTIONS(4489), - [anon_sym_inner] = 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), - [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), + [sym_function_body] = STATE(3179), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), }, [2963] = { - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [sym__alpha_identifier] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_RBRACK] = ACTIONS(4450), + [anon_sym_as] = ACTIONS(4448), + [anon_sym_EQ] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_COMMA] = ACTIONS(4450), + [anon_sym_RPAREN] = ACTIONS(4450), + [anon_sym_by] = ACTIONS(4448), + [anon_sym_LT] = ACTIONS(4448), + [anon_sym_GT] = ACTIONS(4448), + [anon_sym_where] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym_get] = ACTIONS(4448), + [anon_sym_set] = ACTIONS(4448), + [sym__quest] = ACTIONS(4448), + [anon_sym_STAR] = ACTIONS(4448), + [anon_sym_DASH_GT] = ACTIONS(4450), + [sym_label] = ACTIONS(4450), + [anon_sym_in] = ACTIONS(4448), + [anon_sym_while] = ACTIONS(4448), + [anon_sym_DOT_DOT] = ACTIONS(4450), + [anon_sym_QMARK_COLON] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE_PIPE] = ACTIONS(4450), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_PLUS_EQ] = ACTIONS(4450), + [anon_sym_DASH_EQ] = ACTIONS(4450), + [anon_sym_STAR_EQ] = ACTIONS(4450), + [anon_sym_SLASH_EQ] = ACTIONS(4450), + [anon_sym_PERCENT_EQ] = ACTIONS(4450), + [anon_sym_BANG_EQ] = ACTIONS(4448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4450), + [anon_sym_EQ_EQ] = ACTIONS(4448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4450), + [anon_sym_LT_EQ] = ACTIONS(4450), + [anon_sym_GT_EQ] = ACTIONS(4450), + [anon_sym_BANGin] = ACTIONS(4450), + [anon_sym_is] = ACTIONS(4448), + [anon_sym_BANGis] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_SLASH] = ACTIONS(4448), + [anon_sym_PERCENT] = ACTIONS(4448), + [anon_sym_as_QMARK] = ACTIONS(4450), + [anon_sym_PLUS_PLUS] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4450), + [anon_sym_BANG_BANG] = ACTIONS(4450), + [anon_sym_suspend] = ACTIONS(4448), + [anon_sym_sealed] = ACTIONS(4448), + [anon_sym_annotation] = ACTIONS(4448), + [anon_sym_data] = ACTIONS(4448), + [anon_sym_inner] = ACTIONS(4448), + [anon_sym_override] = ACTIONS(4448), + [anon_sym_lateinit] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_internal] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_tailrec] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_infix] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym_external] = ACTIONS(4448), + [sym_property_modifier] = ACTIONS(4448), + [anon_sym_abstract] = ACTIONS(4448), + [anon_sym_final] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4448), + [anon_sym_vararg] = ACTIONS(4448), + [anon_sym_noinline] = ACTIONS(4448), + [anon_sym_crossinline] = ACTIONS(4448), + [anon_sym_expect] = ACTIONS(4448), + [anon_sym_actual] = ACTIONS(4448), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4450), + [sym_safe_nav] = ACTIONS(4450), + [sym_multiline_comment] = ACTIONS(3), }, [2964] = { - [aux_sym_type_constraints_repeat1] = STATE(2900), - [sym__alpha_identifier] = ACTIONS(4454), - [anon_sym_AT] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_RBRACK] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_EQ] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(4456), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_get] = ACTIONS(4454), - [anon_sym_set] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [sym_label] = ACTIONS(4456), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_while] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_QMARK_COLON] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [anon_sym_else] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_PLUS_EQ] = ACTIONS(4456), - [anon_sym_DASH_EQ] = ACTIONS(4456), - [anon_sym_STAR_EQ] = ACTIONS(4456), - [anon_sym_SLASH_EQ] = ACTIONS(4456), - [anon_sym_PERCENT_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_BANGin] = ACTIONS(4456), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_BANGis] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_BANG_BANG] = ACTIONS(4456), - [anon_sym_suspend] = ACTIONS(4454), - [anon_sym_sealed] = ACTIONS(4454), - [anon_sym_annotation] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4454), - [anon_sym_inner] = ACTIONS(4454), - [anon_sym_override] = ACTIONS(4454), - [anon_sym_lateinit] = ACTIONS(4454), - [anon_sym_public] = ACTIONS(4454), - [anon_sym_private] = ACTIONS(4454), - [anon_sym_internal] = ACTIONS(4454), - [anon_sym_protected] = ACTIONS(4454), - [anon_sym_tailrec] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_infix] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym_external] = ACTIONS(4454), - [sym_property_modifier] = ACTIONS(4454), - [anon_sym_abstract] = ACTIONS(4454), - [anon_sym_final] = ACTIONS(4454), - [anon_sym_open] = ACTIONS(4454), - [anon_sym_vararg] = ACTIONS(4454), - [anon_sym_noinline] = ACTIONS(4454), - [anon_sym_crossinline] = ACTIONS(4454), - [anon_sym_expect] = ACTIONS(4454), - [anon_sym_actual] = ACTIONS(4454), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4456), - [sym_safe_nav] = ACTIONS(4456), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, [2965] = { - [sym_class_body] = STATE(3322), - [sym_type_constraints] = STATE(3078), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_class_body] = STATE(3235), + [sym_type_constraints] = STATE(3050), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6385), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), }, [2966] = { - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(6222), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_RBRACK] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(4109), - [anon_sym_RPAREN] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_DASH_GT] = ACTIONS(4109), - [sym_label] = ACTIONS(4109), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_while] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_QMARK_COLON] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_PIPE_PIPE] = ACTIONS(4109), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_PLUS_EQ] = ACTIONS(4109), - [anon_sym_DASH_EQ] = ACTIONS(4109), - [anon_sym_STAR_EQ] = ACTIONS(4109), - [anon_sym_SLASH_EQ] = ACTIONS(4109), - [anon_sym_PERCENT_EQ] = ACTIONS(4109), - [anon_sym_BANG_EQ] = ACTIONS(4107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4109), - [anon_sym_EQ_EQ] = ACTIONS(4107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4109), - [anon_sym_LT_EQ] = ACTIONS(4109), - [anon_sym_GT_EQ] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_PERCENT] = ACTIONS(4107), - [anon_sym_as_QMARK] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG_BANG] = ACTIONS(4109), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4109), - [sym_safe_nav] = ACTIONS(4109), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, [2967] = { - [sym__alpha_identifier] = ACTIONS(4475), - [anon_sym_AT] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_as] = ACTIONS(4475), - [anon_sym_EQ] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_where] = ACTIONS(4475), - [anon_sym_object] = ACTIONS(4475), - [anon_sym_fun] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_SEMI] = ACTIONS(4477), - [anon_sym_get] = ACTIONS(4475), - [anon_sym_set] = ACTIONS(4475), - [anon_sym_this] = ACTIONS(4475), - [anon_sym_super] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [sym_label] = ACTIONS(4475), - [anon_sym_in] = ACTIONS(4475), - [anon_sym_DOT_DOT] = ACTIONS(4477), - [anon_sym_QMARK_COLON] = ACTIONS(4477), - [anon_sym_AMP_AMP] = ACTIONS(4477), - [anon_sym_PIPE_PIPE] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4475), - [anon_sym_if] = ACTIONS(4475), - [anon_sym_else] = ACTIONS(4475), - [anon_sym_when] = ACTIONS(4475), - [anon_sym_try] = ACTIONS(4475), - [anon_sym_throw] = ACTIONS(4475), - [anon_sym_return] = ACTIONS(4475), - [anon_sym_continue] = ACTIONS(4475), - [anon_sym_break] = ACTIONS(4475), - [anon_sym_COLON_COLON] = ACTIONS(4477), - [anon_sym_PLUS_EQ] = ACTIONS(4477), - [anon_sym_DASH_EQ] = ACTIONS(4477), - [anon_sym_STAR_EQ] = ACTIONS(4477), - [anon_sym_SLASH_EQ] = ACTIONS(4477), - [anon_sym_PERCENT_EQ] = ACTIONS(4477), - [anon_sym_BANG_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4477), - [anon_sym_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4477), - [anon_sym_LT_EQ] = ACTIONS(4477), - [anon_sym_GT_EQ] = ACTIONS(4477), - [anon_sym_BANGin] = ACTIONS(4477), - [anon_sym_is] = ACTIONS(4475), - [anon_sym_BANGis] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_PERCENT] = ACTIONS(4475), - [anon_sym_as_QMARK] = ACTIONS(4477), - [anon_sym_PLUS_PLUS] = ACTIONS(4477), - [anon_sym_DASH_DASH] = ACTIONS(4477), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_BANG_BANG] = ACTIONS(4477), - [anon_sym_data] = ACTIONS(4475), - [anon_sym_inner] = ACTIONS(4475), - [anon_sym_expect] = ACTIONS(4475), - [anon_sym_actual] = ACTIONS(4475), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4477), - [anon_sym_continue_AT] = ACTIONS(4477), - [anon_sym_break_AT] = ACTIONS(4477), - [sym_real_literal] = ACTIONS(4477), - [sym_integer_literal] = ACTIONS(4475), - [sym_hex_literal] = ACTIONS(4477), - [sym_bin_literal] = ACTIONS(4477), - [aux_sym_unsigned_literal_token1] = ACTIONS(6373), - [anon_sym_L] = ACTIONS(6375), - [anon_sym_true] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4477), - [sym__backtick_identifier] = ACTIONS(4477), - [sym__automatic_semicolon] = ACTIONS(4477), - [sym_safe_nav] = ACTIONS(4477), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4477), + [sym_class_body] = STATE(3286), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6387), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_RBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [anon_sym_DASH_GT] = ACTIONS(4404), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), }, [2968] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_catch] = ACTIONS(4509), - [anon_sym_finally] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), + [sym_class_body] = STATE(3455), + [sym_type_constraints] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), }, [2969] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_RBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_RPAREN] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [anon_sym_DASH_GT] = ACTIONS(4519), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_while] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_catch] = ACTIONS(4517), - [anon_sym_finally] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), + [aux_sym_type_constraints_repeat1] = STATE(2950), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_RBRACK] = ACTIONS(4517), + [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(6377), + [anon_sym_RPAREN] = ACTIONS(4517), + [anon_sym_by] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_DOT] = 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_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), }, [2970] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_by] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [sym__quest] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), }, [2971] = { - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3235), + [sym_type_constraints] = STATE(3050), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), }, [2972] = { - [sym_class_body] = STATE(3270), - [sym_type_constraints] = STATE(3068), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [anon_sym_DASH_GT] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [2973] = { - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_RBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_constructor] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_DASH_GT] = ACTIONS(3871), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), [sym_multiline_comment] = ACTIONS(3), }, [2974] = { - [sym_type_arguments] = STATE(3466), - [sym__alpha_identifier] = ACTIONS(4113), - [anon_sym_AT] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_EQ] = ACTIONS(4190), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_COMMA] = ACTIONS(4190), - [anon_sym_by] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_where] = ACTIONS(4113), - [anon_sym_object] = ACTIONS(4113), - [anon_sym_fun] = ACTIONS(4113), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [anon_sym_this] = ACTIONS(4113), - [anon_sym_super] = ACTIONS(4113), - [sym__quest] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [sym_label] = ACTIONS(4113), - [anon_sym_in] = ACTIONS(4113), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_if] = ACTIONS(4113), - [anon_sym_else] = ACTIONS(4113), - [anon_sym_when] = ACTIONS(4113), - [anon_sym_try] = ACTIONS(4113), - [anon_sym_throw] = ACTIONS(4113), - [anon_sym_return] = ACTIONS(4113), - [anon_sym_continue] = ACTIONS(4113), - [anon_sym_break] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_BANGin] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4113), - [anon_sym_BANGis] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_suspend] = ACTIONS(4113), - [anon_sym_sealed] = ACTIONS(4113), - [anon_sym_annotation] = ACTIONS(4113), - [anon_sym_data] = ACTIONS(4113), - [anon_sym_inner] = ACTIONS(4113), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_lateinit] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4113), - [anon_sym_private] = ACTIONS(4113), - [anon_sym_internal] = ACTIONS(4113), - [anon_sym_protected] = ACTIONS(4113), - [anon_sym_tailrec] = ACTIONS(4113), - [anon_sym_operator] = ACTIONS(4113), - [anon_sym_infix] = ACTIONS(4113), - [anon_sym_inline] = ACTIONS(4113), - [anon_sym_external] = ACTIONS(4113), - [sym_property_modifier] = ACTIONS(4113), - [anon_sym_abstract] = ACTIONS(4113), - [anon_sym_final] = ACTIONS(4113), - [anon_sym_open] = ACTIONS(4113), - [anon_sym_vararg] = ACTIONS(4113), - [anon_sym_noinline] = ACTIONS(4113), - [anon_sym_crossinline] = ACTIONS(4113), - [anon_sym_expect] = ACTIONS(4113), - [anon_sym_actual] = ACTIONS(4113), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4190), - [anon_sym_continue_AT] = ACTIONS(4190), - [anon_sym_break_AT] = ACTIONS(4190), - [sym_real_literal] = ACTIONS(4190), - [sym_integer_literal] = ACTIONS(4113), - [sym_hex_literal] = ACTIONS(4190), - [sym_bin_literal] = ACTIONS(4190), - [anon_sym_true] = ACTIONS(4113), - [anon_sym_false] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4190), - [sym__backtick_identifier] = ACTIONS(4190), - [sym__automatic_semicolon] = ACTIONS(4190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4190), + [aux_sym_type_constraints_repeat1] = STATE(2974), + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_RBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(6389), + [anon_sym_RPAREN] = ACTIONS(4508), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [anon_sym_DASH_GT] = ACTIONS(4508), + [sym_label] = ACTIONS(4508), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_while] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), }, [2975] = { - [sym_function_body] = STATE(3176), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6240), - [anon_sym_LBRACE] = ACTIONS(6242), - [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_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_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), - [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), + [sym_function_body] = STATE(3350), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_RBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [anon_sym_DASH_GT] = ACTIONS(4454), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), }, [2976] = { - [sym__alpha_identifier] = ACTIONS(4489), - [anon_sym_AT] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_RBRACK] = ACTIONS(4491), - [anon_sym_as] = ACTIONS(4489), - [anon_sym_EQ] = 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_by] = ACTIONS(4489), - [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), - [sym__quest] = 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_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), + [sym_function_body] = STATE(3450), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, [2977] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_RBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4471), - [anon_sym_by] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [sym__quest] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_DASH_GT] = ACTIONS(4471), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_while] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), + [sym__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(4426), + [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_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), + [sym_real_literal] = ACTIONS(4426), + [sym_integer_literal] = ACTIONS(4424), + [sym_hex_literal] = ACTIONS(4426), + [sym_bin_literal] = ACTIONS(4426), + [aux_sym_unsigned_literal_token1] = ACTIONS(6392), + [anon_sym_L] = ACTIONS(6394), + [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), }, [2978] = { - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_function_body] = STATE(3473), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), }, [2979] = { - [sym_class_body] = STATE(3121), - [sym_type_constraints] = STATE(3047), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6379), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), }, [2980] = { - [aux_sym_type_constraints_repeat1] = STATE(2964), - [sym__alpha_identifier] = ACTIONS(4440), - [anon_sym_AT] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_RBRACK] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_EQ] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4442), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(4442), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4440), - [anon_sym_GT] = ACTIONS(4440), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_SEMI] = ACTIONS(4442), - [anon_sym_get] = ACTIONS(4440), - [anon_sym_set] = ACTIONS(4440), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4442), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_while] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4442), - [anon_sym_QMARK_COLON] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4442), - [anon_sym_PIPE_PIPE] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4440), - [anon_sym_COLON_COLON] = ACTIONS(4442), - [anon_sym_PLUS_EQ] = ACTIONS(4442), - [anon_sym_DASH_EQ] = ACTIONS(4442), - [anon_sym_STAR_EQ] = ACTIONS(4442), - [anon_sym_SLASH_EQ] = ACTIONS(4442), - [anon_sym_PERCENT_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4442), - [anon_sym_LT_EQ] = ACTIONS(4442), - [anon_sym_GT_EQ] = ACTIONS(4442), - [anon_sym_BANGin] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_BANGis] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4440), - [anon_sym_DASH] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4440), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_as_QMARK] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4442), - [anon_sym_DASH_DASH] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4442), - [anon_sym_suspend] = ACTIONS(4440), - [anon_sym_sealed] = ACTIONS(4440), - [anon_sym_annotation] = ACTIONS(4440), - [anon_sym_data] = ACTIONS(4440), - [anon_sym_inner] = ACTIONS(4440), - [anon_sym_override] = ACTIONS(4440), - [anon_sym_lateinit] = ACTIONS(4440), - [anon_sym_public] = ACTIONS(4440), - [anon_sym_private] = ACTIONS(4440), - [anon_sym_internal] = ACTIONS(4440), - [anon_sym_protected] = ACTIONS(4440), - [anon_sym_tailrec] = ACTIONS(4440), - [anon_sym_operator] = ACTIONS(4440), - [anon_sym_infix] = ACTIONS(4440), - [anon_sym_inline] = ACTIONS(4440), - [anon_sym_external] = ACTIONS(4440), - [sym_property_modifier] = ACTIONS(4440), - [anon_sym_abstract] = ACTIONS(4440), - [anon_sym_final] = ACTIONS(4440), - [anon_sym_open] = ACTIONS(4440), - [anon_sym_vararg] = ACTIONS(4440), - [anon_sym_noinline] = ACTIONS(4440), - [anon_sym_crossinline] = ACTIONS(4440), - [anon_sym_expect] = ACTIONS(4440), - [anon_sym_actual] = ACTIONS(4440), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4442), - [sym_safe_nav] = ACTIONS(4442), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(4144), + [sym_label] = ACTIONS(4144), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_while] = ACTIONS(4142), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_QMARK_COLON] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG_BANG] = ACTIONS(4144), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4144), + [sym_safe_nav] = ACTIONS(4144), [sym_multiline_comment] = ACTIONS(3), }, [2981] = { - [sym_class_body] = STATE(3472), - [sym_type_constraints] = STATE(3016), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), + [sym__alpha_identifier] = ACTIONS(4460), + [anon_sym_AT] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_COMMA] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_where] = ACTIONS(4460), + [anon_sym_object] = ACTIONS(4460), + [anon_sym_fun] = ACTIONS(4460), + [anon_sym_DOT] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym_get] = ACTIONS(4460), + [anon_sym_set] = ACTIONS(4460), + [anon_sym_this] = ACTIONS(4460), + [anon_sym_super] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4460), + [sym_label] = ACTIONS(4460), + [anon_sym_in] = ACTIONS(4460), + [anon_sym_DOT_DOT] = ACTIONS(4462), + [anon_sym_QMARK_COLON] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_PIPE_PIPE] = ACTIONS(4462), + [anon_sym_null] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_else] = ACTIONS(4460), + [anon_sym_when] = ACTIONS(4460), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_catch] = ACTIONS(4460), + [anon_sym_finally] = ACTIONS(4460), + [anon_sym_throw] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_PLUS_EQ] = ACTIONS(4462), + [anon_sym_DASH_EQ] = ACTIONS(4462), + [anon_sym_STAR_EQ] = ACTIONS(4462), + [anon_sym_SLASH_EQ] = ACTIONS(4462), + [anon_sym_PERCENT_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ] = ACTIONS(4460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ] = ACTIONS(4460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_BANGin] = ACTIONS(4462), + [anon_sym_is] = ACTIONS(4460), + [anon_sym_BANGis] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_SLASH] = ACTIONS(4460), + [anon_sym_PERCENT] = ACTIONS(4460), + [anon_sym_as_QMARK] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_BANG_BANG] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4460), + [anon_sym_inner] = ACTIONS(4460), + [anon_sym_expect] = ACTIONS(4460), + [anon_sym_actual] = ACTIONS(4460), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4462), + [anon_sym_continue_AT] = ACTIONS(4462), + [anon_sym_break_AT] = ACTIONS(4462), + [sym_real_literal] = ACTIONS(4462), + [sym_integer_literal] = ACTIONS(4460), + [sym_hex_literal] = ACTIONS(4462), + [sym_bin_literal] = ACTIONS(4462), + [anon_sym_true] = ACTIONS(4460), + [anon_sym_false] = ACTIONS(4460), + [anon_sym_SQUOTE] = ACTIONS(4462), + [sym__backtick_identifier] = ACTIONS(4462), + [sym__automatic_semicolon] = ACTIONS(4462), + [sym_safe_nav] = ACTIONS(4462), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4462), }, [2982] = { - [sym_class_body] = STATE(3121), - [sym_type_constraints] = STATE(3047), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [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_DOT] = 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_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), + [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), }, [2983] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_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_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_this] = ACTIONS(4495), - [anon_sym_super] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_when] = ACTIONS(4495), - [anon_sym_try] = ACTIONS(4495), - [anon_sym_catch] = ACTIONS(4495), - [anon_sym_finally] = 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_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), - [sym_real_literal] = ACTIONS(4497), - [sym_integer_literal] = ACTIONS(4495), - [sym_hex_literal] = ACTIONS(4497), - [sym_bin_literal] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4495), - [anon_sym_false] = ACTIONS(4495), - [anon_sym_SQUOTE] = ACTIONS(4497), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4497), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), }, [2984] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_COLON] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_RBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4394), - [anon_sym_constructor] = ACTIONS(4394), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_RPAREN] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [anon_sym_DASH_GT] = ACTIONS(4396), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_override] = ACTIONS(4394), - [anon_sym_lateinit] = ACTIONS(4394), - [anon_sym_public] = ACTIONS(4394), - [anon_sym_private] = ACTIONS(4394), - [anon_sym_internal] = ACTIONS(4394), - [anon_sym_protected] = ACTIONS(4394), - [anon_sym_tailrec] = ACTIONS(4394), - [anon_sym_operator] = ACTIONS(4394), - [anon_sym_infix] = ACTIONS(4394), - [anon_sym_inline] = ACTIONS(4394), - [anon_sym_external] = ACTIONS(4394), - [sym_property_modifier] = ACTIONS(4394), - [anon_sym_abstract] = ACTIONS(4394), - [anon_sym_final] = ACTIONS(4394), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_vararg] = ACTIONS(4394), - [anon_sym_noinline] = ACTIONS(4394), - [anon_sym_crossinline] = ACTIONS(4394), - [anon_sym_expect] = ACTIONS(4394), - [anon_sym_actual] = ACTIONS(4394), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4396), - [sym_safe_nav] = ACTIONS(4396), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3293), + [sym_type_constraints] = STATE(3019), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, [2985] = { - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym_class_body] = STATE(3456), + [sym_type_constraints] = STATE(3045), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_RBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(5141), + [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(5137), + [anon_sym_DOT] = 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_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_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), }, [2986] = { - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6229), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_DASH_GT] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, [2987] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_catch] = ACTIONS(4517), - [anon_sym_finally] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), + [sym_class_body] = STATE(3253), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), }, [2988] = { - [sym_class_body] = STATE(3344), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, [2989] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_constructor] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [anon_sym_DASH_GT] = ACTIONS(4460), - [sym_label] = ACTIONS(4460), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), + [sym_value_arguments] = STATE(3394), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(6398), + [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_DOT] = 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_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), + [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), }, [2990] = { - [sym_type_constraints] = STATE(3093), - [sym_enum_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = 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_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), + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_catch] = ACTIONS(4494), + [anon_sym_finally] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, [2991] = { - [sym_value_arguments] = STATE(3391), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_RBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [anon_sym_DASH_GT] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), }, [2992] = { - [sym_enum_class_body] = STATE(3322), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_type_constraints] = STATE(3500), + [sym_function_body] = STATE(3806), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6400), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), }, [2993] = { - [sym__alpha_identifier] = ACTIONS(4597), - [anon_sym_AT] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_as] = ACTIONS(4597), - [anon_sym_EQ] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_RBRACE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4597), - [anon_sym_where] = ACTIONS(4597), - [anon_sym_object] = ACTIONS(4597), - [anon_sym_fun] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_get] = ACTIONS(4597), - [anon_sym_set] = ACTIONS(4597), - [anon_sym_this] = ACTIONS(4597), - [anon_sym_super] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4597), - [sym_label] = ACTIONS(4597), - [anon_sym_in] = ACTIONS(4597), - [anon_sym_DOT_DOT] = ACTIONS(4599), - [anon_sym_QMARK_COLON] = ACTIONS(4599), - [anon_sym_AMP_AMP] = ACTIONS(4599), - [anon_sym_PIPE_PIPE] = ACTIONS(4599), - [anon_sym_null] = ACTIONS(4597), - [anon_sym_if] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4597), - [anon_sym_when] = ACTIONS(4597), - [anon_sym_try] = ACTIONS(4597), - [anon_sym_throw] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_continue] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym_PLUS_EQ] = ACTIONS(4599), - [anon_sym_DASH_EQ] = ACTIONS(4599), - [anon_sym_STAR_EQ] = ACTIONS(4599), - [anon_sym_SLASH_EQ] = ACTIONS(4599), - [anon_sym_PERCENT_EQ] = ACTIONS(4599), - [anon_sym_BANG_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4599), - [anon_sym_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4599), - [anon_sym_LT_EQ] = ACTIONS(4599), - [anon_sym_GT_EQ] = ACTIONS(4599), - [anon_sym_BANGin] = ACTIONS(4599), - [anon_sym_is] = ACTIONS(4597), - [anon_sym_BANGis] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4597), - [anon_sym_PERCENT] = ACTIONS(4597), - [anon_sym_as_QMARK] = ACTIONS(4599), - [anon_sym_PLUS_PLUS] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4597), - [anon_sym_BANG_BANG] = ACTIONS(4599), - [anon_sym_data] = ACTIONS(4597), - [anon_sym_inner] = ACTIONS(4597), - [anon_sym_expect] = ACTIONS(4597), - [anon_sym_actual] = ACTIONS(4597), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4599), - [anon_sym_continue_AT] = ACTIONS(4599), - [anon_sym_break_AT] = ACTIONS(4599), - [sym_real_literal] = ACTIONS(4599), - [sym_integer_literal] = ACTIONS(4597), - [sym_hex_literal] = ACTIONS(4599), - [sym_bin_literal] = ACTIONS(4599), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4599), - [sym__backtick_identifier] = ACTIONS(4599), - [sym__automatic_semicolon] = ACTIONS(4599), - [sym_safe_nav] = ACTIONS(4599), + [sym_class_body] = STATE(3391), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_RBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [anon_sym_DASH_GT] = ACTIONS(4625), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_while] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4599), }, [2994] = { - [sym_class_body] = STATE(3472), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym_type_constraints] = STATE(3502), + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6406), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), }, [2995] = { - [sym_type_constraints] = STATE(3644), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_while] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3084), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [2996] = { - [sym_type_arguments] = STATE(5112), - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4107), - [sym_label] = ACTIONS(4109), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_QMARK_COLON] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_PIPE_PIPE] = ACTIONS(4109), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_PLUS_EQ] = ACTIONS(4109), - [anon_sym_DASH_EQ] = ACTIONS(4109), - [anon_sym_STAR_EQ] = ACTIONS(4109), - [anon_sym_SLASH_EQ] = ACTIONS(4109), - [anon_sym_PERCENT_EQ] = ACTIONS(4109), - [anon_sym_BANG_EQ] = ACTIONS(4107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4109), - [anon_sym_EQ_EQ] = ACTIONS(4107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4109), - [anon_sym_LT_EQ] = ACTIONS(4109), - [anon_sym_GT_EQ] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_PERCENT] = ACTIONS(4107), - [anon_sym_as_QMARK] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG_BANG] = ACTIONS(4109), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4109), - [sym__automatic_semicolon] = ACTIONS(4109), - [sym_safe_nav] = ACTIONS(4109), + [aux_sym__delegation_specifiers_repeat1] = STATE(3034), + [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_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), }, [2997] = { - [sym_type_constraints] = STATE(3641), - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6391), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), + [aux_sym__delegation_specifiers_repeat1] = STATE(3068), + [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_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), + [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), }, [2998] = { - [sym_type_constraints] = STATE(3634), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_COLON] = ACTIONS(4674), + [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_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_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), + [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), }, [2999] = { - [sym_type_constraints] = STATE(3627), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6395), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3293), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), }, [3000] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), + [sym__alpha_identifier] = ACTIONS(4627), + [anon_sym_AT] = ACTIONS(4629), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_as] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4629), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [anon_sym_COMMA] = ACTIONS(4629), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_where] = ACTIONS(4627), + [anon_sym_object] = ACTIONS(4627), + [anon_sym_fun] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(4627), + [anon_sym_set] = ACTIONS(4627), + [anon_sym_this] = ACTIONS(4627), + [anon_sym_super] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [sym_label] = ACTIONS(4627), + [anon_sym_in] = ACTIONS(4627), + [anon_sym_DOT_DOT] = ACTIONS(4629), + [anon_sym_QMARK_COLON] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [anon_sym_null] = ACTIONS(4627), + [anon_sym_if] = ACTIONS(4627), + [anon_sym_else] = ACTIONS(4627), + [anon_sym_when] = ACTIONS(4627), + [anon_sym_try] = ACTIONS(4627), + [anon_sym_throw] = ACTIONS(4627), + [anon_sym_return] = ACTIONS(4627), + [anon_sym_continue] = ACTIONS(4627), + [anon_sym_break] = ACTIONS(4627), + [anon_sym_COLON_COLON] = ACTIONS(4629), + [anon_sym_PLUS_EQ] = ACTIONS(4629), + [anon_sym_DASH_EQ] = ACTIONS(4629), + [anon_sym_STAR_EQ] = ACTIONS(4629), + [anon_sym_SLASH_EQ] = ACTIONS(4629), + [anon_sym_PERCENT_EQ] = ACTIONS(4629), + [anon_sym_BANG_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_BANGin] = ACTIONS(4629), + [anon_sym_is] = ACTIONS(4627), + [anon_sym_BANGis] = ACTIONS(4629), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4629), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_BANG_BANG] = ACTIONS(4629), + [anon_sym_data] = ACTIONS(4627), + [anon_sym_inner] = ACTIONS(4627), + [anon_sym_expect] = ACTIONS(4627), + [anon_sym_actual] = ACTIONS(4627), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4629), + [anon_sym_continue_AT] = ACTIONS(4629), + [anon_sym_break_AT] = ACTIONS(4629), + [sym_real_literal] = ACTIONS(4629), + [sym_integer_literal] = ACTIONS(4627), + [sym_hex_literal] = ACTIONS(4629), + [sym_bin_literal] = ACTIONS(4629), + [anon_sym_true] = ACTIONS(4627), + [anon_sym_false] = ACTIONS(4627), + [anon_sym_SQUOTE] = ACTIONS(4629), + [sym__backtick_identifier] = ACTIONS(4629), + [sym__automatic_semicolon] = ACTIONS(4629), + [sym_safe_nav] = ACTIONS(4629), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4629), }, [3001] = { - [sym_type_constraints] = STATE(3619), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4702), + [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_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_data] = ACTIONS(4702), + [anon_sym_inner] = 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), + [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), }, [3002] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_DASH_GT] = ACTIONS(4244), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_user_type_repeat1] = STATE(3013), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(6452), + [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), + [sym__quest] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4216), + [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_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_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4216), + [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_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), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3003] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3061), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [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_by] = ACTIONS(4581), + [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_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), + [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), }, [3004] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4531), - [anon_sym_RBRACK] = ACTIONS(4531), - [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_DOT] = 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_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_enum_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, [3005] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3065), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym__alpha_identifier] = ACTIONS(4597), + [anon_sym_AT] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4597), + [anon_sym_LBRACK] = ACTIONS(4599), + [anon_sym_RBRACK] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_RBRACE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_RPAREN] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_where] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_get] = ACTIONS(4597), + [anon_sym_set] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4597), + [anon_sym_DASH_GT] = ACTIONS(4599), + [sym_label] = ACTIONS(4599), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(4597), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4599), + [anon_sym_AMP_AMP] = ACTIONS(4599), + [anon_sym_PIPE_PIPE] = ACTIONS(4599), + [anon_sym_else] = ACTIONS(4597), + [anon_sym_COLON_COLON] = ACTIONS(4599), + [anon_sym_PLUS_EQ] = ACTIONS(4599), + [anon_sym_DASH_EQ] = ACTIONS(4599), + [anon_sym_STAR_EQ] = ACTIONS(4599), + [anon_sym_SLASH_EQ] = ACTIONS(4599), + [anon_sym_PERCENT_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4599), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_BANGin] = ACTIONS(4599), + [anon_sym_is] = ACTIONS(4597), + [anon_sym_BANGis] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4597), + [anon_sym_PERCENT] = ACTIONS(4597), + [anon_sym_as_QMARK] = ACTIONS(4599), + [anon_sym_PLUS_PLUS] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4599), + [anon_sym_BANG_BANG] = ACTIONS(4599), + [anon_sym_suspend] = ACTIONS(4597), + [anon_sym_sealed] = ACTIONS(4597), + [anon_sym_annotation] = ACTIONS(4597), + [anon_sym_data] = ACTIONS(4597), + [anon_sym_inner] = ACTIONS(4597), + [anon_sym_override] = ACTIONS(4597), + [anon_sym_lateinit] = ACTIONS(4597), + [anon_sym_public] = ACTIONS(4597), + [anon_sym_private] = ACTIONS(4597), + [anon_sym_internal] = ACTIONS(4597), + [anon_sym_protected] = ACTIONS(4597), + [anon_sym_tailrec] = ACTIONS(4597), + [anon_sym_operator] = ACTIONS(4597), + [anon_sym_infix] = ACTIONS(4597), + [anon_sym_inline] = ACTIONS(4597), + [anon_sym_external] = ACTIONS(4597), + [sym_property_modifier] = ACTIONS(4597), + [anon_sym_abstract] = ACTIONS(4597), + [anon_sym_final] = ACTIONS(4597), + [anon_sym_open] = ACTIONS(4597), + [anon_sym_vararg] = ACTIONS(4597), + [anon_sym_noinline] = ACTIONS(4597), + [anon_sym_crossinline] = ACTIONS(4597), + [anon_sym_expect] = ACTIONS(4597), + [anon_sym_actual] = ACTIONS(4597), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__backtick_identifier] = ACTIONS(4599), + [sym_safe_nav] = ACTIONS(4599), [sym_multiline_comment] = ACTIONS(3), }, [3006] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(6398), + [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_DOT] = 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_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), + [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), + }, + [3007] = { + [sym__alpha_identifier] = ACTIONS(4615), + [anon_sym_AT] = ACTIONS(4617), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_RBRACK] = ACTIONS(4617), + [anon_sym_as] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4617), + [anon_sym_RBRACE] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4617), + [anon_sym_RPAREN] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_where] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [anon_sym_get] = ACTIONS(4615), + [anon_sym_set] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_DASH_GT] = ACTIONS(4617), + [sym_label] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(4615), + [anon_sym_while] = ACTIONS(4615), + [anon_sym_DOT_DOT] = ACTIONS(4617), + [anon_sym_QMARK_COLON] = ACTIONS(4617), + [anon_sym_AMP_AMP] = ACTIONS(4617), + [anon_sym_PIPE_PIPE] = ACTIONS(4617), + [anon_sym_else] = ACTIONS(4615), + [anon_sym_COLON_COLON] = ACTIONS(4617), + [anon_sym_PLUS_EQ] = ACTIONS(4617), + [anon_sym_DASH_EQ] = ACTIONS(4617), + [anon_sym_STAR_EQ] = ACTIONS(4617), + [anon_sym_SLASH_EQ] = ACTIONS(4617), + [anon_sym_PERCENT_EQ] = ACTIONS(4617), + [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(4617), + [anon_sym_GT_EQ] = ACTIONS(4617), + [anon_sym_BANGin] = ACTIONS(4617), + [anon_sym_is] = ACTIONS(4615), + [anon_sym_BANGis] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_as_QMARK] = ACTIONS(4617), + [anon_sym_PLUS_PLUS] = ACTIONS(4617), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_BANG_BANG] = ACTIONS(4617), + [anon_sym_suspend] = ACTIONS(4615), + [anon_sym_sealed] = ACTIONS(4615), + [anon_sym_annotation] = ACTIONS(4615), + [anon_sym_data] = ACTIONS(4615), + [anon_sym_inner] = ACTIONS(4615), + [anon_sym_override] = ACTIONS(4615), + [anon_sym_lateinit] = ACTIONS(4615), + [anon_sym_public] = ACTIONS(4615), + [anon_sym_private] = ACTIONS(4615), + [anon_sym_internal] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4615), + [anon_sym_tailrec] = ACTIONS(4615), + [anon_sym_operator] = ACTIONS(4615), + [anon_sym_infix] = ACTIONS(4615), + [anon_sym_inline] = ACTIONS(4615), + [anon_sym_external] = ACTIONS(4615), + [sym_property_modifier] = ACTIONS(4615), + [anon_sym_abstract] = ACTIONS(4615), + [anon_sym_final] = ACTIONS(4615), + [anon_sym_open] = ACTIONS(4615), + [anon_sym_vararg] = ACTIONS(4615), + [anon_sym_noinline] = ACTIONS(4615), + [anon_sym_crossinline] = ACTIONS(4615), + [anon_sym_expect] = ACTIONS(4615), + [anon_sym_actual] = ACTIONS(4615), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4617), + [sym_safe_nav] = ACTIONS(4617), + [sym_multiline_comment] = ACTIONS(3), + }, + [3008] = { + [sym_class_body] = STATE(3456), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_RBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(5141), + [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_DOT] = 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_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_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), + }, + [3009] = { + [sym_class_body] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [3010] = { + [aux_sym_type_constraints_repeat1] = STATE(3010), + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(6454), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_object] = ACTIONS(4506), + [anon_sym_fun] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_this] = ACTIONS(4506), + [anon_sym_super] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [sym_label] = ACTIONS(4506), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_null] = ACTIONS(4506), + [anon_sym_if] = ACTIONS(4506), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_when] = ACTIONS(4506), + [anon_sym_try] = ACTIONS(4506), + [anon_sym_throw] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4506), + [anon_sym_continue] = ACTIONS(4506), + [anon_sym_break] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4508), + [anon_sym_continue_AT] = ACTIONS(4508), + [anon_sym_break_AT] = ACTIONS(4508), + [sym_real_literal] = ACTIONS(4508), + [sym_integer_literal] = ACTIONS(4506), + [sym_hex_literal] = ACTIONS(4508), + [sym_bin_literal] = ACTIONS(4508), + [anon_sym_true] = ACTIONS(4506), + [anon_sym_false] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4508), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4508), + }, + [3011] = { + [sym__alpha_identifier] = ACTIONS(4605), + [anon_sym_AT] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4605), + [anon_sym_LBRACK] = ACTIONS(4607), + [anon_sym_RBRACK] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4605), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_RPAREN] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_where] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4605), + [anon_sym_set] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4605), + [anon_sym_DASH_GT] = ACTIONS(4607), + [sym_label] = ACTIONS(4607), + [anon_sym_in] = ACTIONS(4605), + [anon_sym_while] = ACTIONS(4605), + [anon_sym_DOT_DOT] = ACTIONS(4607), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4607), + [anon_sym_PIPE_PIPE] = ACTIONS(4607), + [anon_sym_else] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(4607), + [anon_sym_PLUS_EQ] = ACTIONS(4607), + [anon_sym_DASH_EQ] = ACTIONS(4607), + [anon_sym_STAR_EQ] = ACTIONS(4607), + [anon_sym_SLASH_EQ] = ACTIONS(4607), + [anon_sym_PERCENT_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4607), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_BANGin] = ACTIONS(4607), + [anon_sym_is] = ACTIONS(4605), + [anon_sym_BANGis] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4605), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4605), + [anon_sym_PERCENT] = ACTIONS(4605), + [anon_sym_as_QMARK] = ACTIONS(4607), + [anon_sym_PLUS_PLUS] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4607), + [anon_sym_BANG_BANG] = ACTIONS(4607), + [anon_sym_suspend] = ACTIONS(4605), + [anon_sym_sealed] = ACTIONS(4605), + [anon_sym_annotation] = ACTIONS(4605), + [anon_sym_data] = ACTIONS(4605), + [anon_sym_inner] = ACTIONS(4605), + [anon_sym_override] = ACTIONS(4605), + [anon_sym_lateinit] = ACTIONS(4605), + [anon_sym_public] = ACTIONS(4605), + [anon_sym_private] = ACTIONS(4605), + [anon_sym_internal] = ACTIONS(4605), + [anon_sym_protected] = ACTIONS(4605), + [anon_sym_tailrec] = ACTIONS(4605), + [anon_sym_operator] = ACTIONS(4605), + [anon_sym_infix] = ACTIONS(4605), + [anon_sym_inline] = ACTIONS(4605), + [anon_sym_external] = ACTIONS(4605), + [sym_property_modifier] = ACTIONS(4605), + [anon_sym_abstract] = ACTIONS(4605), + [anon_sym_final] = ACTIONS(4605), + [anon_sym_open] = ACTIONS(4605), + [anon_sym_vararg] = ACTIONS(4605), + [anon_sym_noinline] = ACTIONS(4605), + [anon_sym_crossinline] = ACTIONS(4605), + [anon_sym_expect] = ACTIONS(4605), + [anon_sym_actual] = ACTIONS(4605), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4607), + [sym_safe_nav] = ACTIONS(4607), + [sym_multiline_comment] = ACTIONS(3), + }, + [3012] = { + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + }, + [3013] = { + [aux_sym_user_type_repeat1] = STATE(3013), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [sym__quest] = ACTIONS(4225), + [anon_sym_STAR] = ACTIONS(4225), + [sym_label] = ACTIONS(4223), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), + }, + [3014] = { + [sym_type_constraints] = STATE(3476), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6460), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3015] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_object] = ACTIONS(4682), + [anon_sym_fun] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_this] = ACTIONS(4682), + [anon_sym_super] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_when] = ACTIONS(4682), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_throw] = ACTIONS(4682), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4684), + [anon_sym_continue_AT] = ACTIONS(4684), + [anon_sym_break_AT] = ACTIONS(4684), + [sym_real_literal] = ACTIONS(4684), + [sym_integer_literal] = ACTIONS(4682), + [sym_hex_literal] = ACTIONS(4684), + [sym_bin_literal] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_SQUOTE] = ACTIONS(4684), + [sym__backtick_identifier] = ACTIONS(4684), + [sym__automatic_semicolon] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4684), + }, + [3016] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_object] = ACTIONS(4698), + [anon_sym_fun] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_this] = ACTIONS(4698), + [anon_sym_super] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_null] = ACTIONS(4698), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_when] = ACTIONS(4698), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_throw] = ACTIONS(4698), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4700), + [anon_sym_continue_AT] = ACTIONS(4700), + [anon_sym_break_AT] = ACTIONS(4700), + [sym_real_literal] = ACTIONS(4700), + [sym_integer_literal] = ACTIONS(4698), + [sym_hex_literal] = ACTIONS(4700), + [sym_bin_literal] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_SQUOTE] = ACTIONS(4700), + [sym__backtick_identifier] = ACTIONS(4700), + [sym__automatic_semicolon] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4700), + }, + [3017] = { + [sym_function_body] = STATE(3362), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6462), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3018] = { + [sym__alpha_identifier] = ACTIONS(4708), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_where] = ACTIONS(4708), + [anon_sym_object] = ACTIONS(4708), + [anon_sym_fun] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(4708), + [anon_sym_set] = ACTIONS(4708), + [anon_sym_this] = ACTIONS(4708), + [anon_sym_super] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4708), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_QMARK_COLON] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(4708), + [anon_sym_if] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4708), + [anon_sym_when] = ACTIONS(4708), + [anon_sym_try] = ACTIONS(4708), + [anon_sym_throw] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4708), + [anon_sym_continue] = ACTIONS(4708), + [anon_sym_break] = ACTIONS(4708), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_STAR_EQ] = ACTIONS(4710), + [anon_sym_SLASH_EQ] = ACTIONS(4710), + [anon_sym_PERCENT_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_BANGin] = ACTIONS(4710), + [anon_sym_is] = ACTIONS(4708), + [anon_sym_BANGis] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_PERCENT] = ACTIONS(4708), + [anon_sym_as_QMARK] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4708), + [anon_sym_inner] = ACTIONS(4708), + [anon_sym_expect] = ACTIONS(4708), + [anon_sym_actual] = ACTIONS(4708), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4710), + [anon_sym_continue_AT] = ACTIONS(4710), + [anon_sym_break_AT] = ACTIONS(4710), + [sym_real_literal] = ACTIONS(4710), + [sym_integer_literal] = ACTIONS(4708), + [sym_hex_literal] = ACTIONS(4710), + [sym_bin_literal] = ACTIONS(4710), + [anon_sym_L] = ACTIONS(6464), + [anon_sym_true] = ACTIONS(4708), + [anon_sym_false] = ACTIONS(4708), + [anon_sym_SQUOTE] = ACTIONS(4710), + [sym__backtick_identifier] = ACTIONS(4710), + [sym__automatic_semicolon] = ACTIONS(4710), + [sym_safe_nav] = ACTIONS(4710), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4710), + }, + [3019] = { + [sym_class_body] = STATE(3235), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [3020] = { + [sym_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [3021] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3074), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3076), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3007] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3022] = { + [sym_enum_class_body] = STATE(3230), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [3023] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_as] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4577), + [anon_sym_where] = ACTIONS(4577), + [anon_sym_object] = ACTIONS(4577), + [anon_sym_fun] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4577), + [anon_sym_set] = ACTIONS(4577), + [anon_sym_this] = ACTIONS(4577), + [anon_sym_super] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [sym_label] = ACTIONS(4577), + [anon_sym_in] = ACTIONS(4577), + [anon_sym_DOT_DOT] = ACTIONS(4579), + [anon_sym_QMARK_COLON] = ACTIONS(4579), + [anon_sym_AMP_AMP] = ACTIONS(4579), + [anon_sym_PIPE_PIPE] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_else] = ACTIONS(4577), + [anon_sym_when] = ACTIONS(4577), + [anon_sym_try] = ACTIONS(4577), + [anon_sym_throw] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4579), + [anon_sym_PLUS_EQ] = ACTIONS(4579), + [anon_sym_DASH_EQ] = ACTIONS(4579), + [anon_sym_STAR_EQ] = ACTIONS(4579), + [anon_sym_SLASH_EQ] = ACTIONS(4579), + [anon_sym_PERCENT_EQ] = ACTIONS(4579), + [anon_sym_BANG_EQ] = ACTIONS(4577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4579), + [anon_sym_EQ_EQ] = ACTIONS(4577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4579), + [anon_sym_LT_EQ] = ACTIONS(4579), + [anon_sym_GT_EQ] = ACTIONS(4579), + [anon_sym_BANGin] = ACTIONS(4579), + [anon_sym_is] = ACTIONS(4577), + [anon_sym_BANGis] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_as_QMARK] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_BANG_BANG] = ACTIONS(4579), + [anon_sym_data] = ACTIONS(4577), + [anon_sym_inner] = ACTIONS(4577), + [anon_sym_expect] = ACTIONS(4577), + [anon_sym_actual] = ACTIONS(4577), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4579), + [anon_sym_continue_AT] = ACTIONS(4579), + [anon_sym_break_AT] = ACTIONS(4579), + [sym_real_literal] = ACTIONS(4579), + [sym_integer_literal] = ACTIONS(4577), + [sym_hex_literal] = ACTIONS(4579), + [sym_bin_literal] = ACTIONS(4579), + [anon_sym_true] = ACTIONS(4577), + [anon_sym_false] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4579), + [sym__backtick_identifier] = ACTIONS(4579), + [sym__automatic_semicolon] = ACTIONS(4579), + [sym_safe_nav] = ACTIONS(4579), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4579), + }, + [3024] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3047), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3049), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3008] = { - [aux_sym_user_type_repeat1] = STATE(3015), - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_EQ] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(6443), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [sym__quest] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4222), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [anon_sym_try] = ACTIONS(4220), - [anon_sym_throw] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4222), - [anon_sym_BANGin] = ACTIONS(4222), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_suspend] = ACTIONS(4220), - [anon_sym_sealed] = ACTIONS(4220), - [anon_sym_annotation] = ACTIONS(4220), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4220), - [anon_sym_lateinit] = ACTIONS(4220), - [anon_sym_public] = ACTIONS(4220), - [anon_sym_private] = ACTIONS(4220), - [anon_sym_internal] = ACTIONS(4220), - [anon_sym_protected] = ACTIONS(4220), - [anon_sym_tailrec] = ACTIONS(4220), - [anon_sym_operator] = ACTIONS(4220), - [anon_sym_infix] = ACTIONS(4220), - [anon_sym_inline] = ACTIONS(4220), - [anon_sym_external] = ACTIONS(4220), - [sym_property_modifier] = ACTIONS(4220), - [anon_sym_abstract] = ACTIONS(4220), - [anon_sym_final] = ACTIONS(4220), - [anon_sym_open] = ACTIONS(4220), - [anon_sym_vararg] = ACTIONS(4220), - [anon_sym_noinline] = ACTIONS(4220), - [anon_sym_crossinline] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4222), - [anon_sym_continue_AT] = ACTIONS(4222), - [anon_sym_break_AT] = ACTIONS(4222), - [sym_real_literal] = ACTIONS(4222), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4222), - [sym_bin_literal] = ACTIONS(4222), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4222), - [sym__backtick_identifier] = ACTIONS(4222), - [sym__automatic_semicolon] = ACTIONS(4222), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4222), - }, - [3009] = { - [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_by] = ACTIONS(4644), - [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_override] = ACTIONS(4644), - [anon_sym_lateinit] = ACTIONS(4644), - [anon_sym_public] = ACTIONS(4644), - [anon_sym_private] = ACTIONS(4644), - [anon_sym_internal] = ACTIONS(4644), - [anon_sym_protected] = ACTIONS(4644), - [anon_sym_tailrec] = ACTIONS(4644), - [anon_sym_operator] = ACTIONS(4644), - [anon_sym_infix] = ACTIONS(4644), - [anon_sym_inline] = ACTIONS(4644), - [anon_sym_external] = ACTIONS(4644), - [sym_property_modifier] = ACTIONS(4644), - [anon_sym_abstract] = ACTIONS(4644), - [anon_sym_final] = ACTIONS(4644), - [anon_sym_open] = ACTIONS(4644), - [anon_sym_vararg] = ACTIONS(4644), - [anon_sym_noinline] = ACTIONS(4644), - [anon_sym_crossinline] = ACTIONS(4644), - [anon_sym_expect] = ACTIONS(4644), - [anon_sym_actual] = ACTIONS(4644), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4646), - [sym_safe_nav] = ACTIONS(4646), - [sym_multiline_comment] = ACTIONS(3), - }, - [3010] = { - [sym__alpha_identifier] = ACTIONS(4666), - [anon_sym_AT] = ACTIONS(4668), - [anon_sym_COLON] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4668), - [anon_sym_RBRACK] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4666), - [anon_sym_EQ] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4668), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_LPAREN] = ACTIONS(4668), - [anon_sym_COMMA] = ACTIONS(4668), - [anon_sym_RPAREN] = ACTIONS(4668), - [anon_sym_LT] = ACTIONS(4666), - [anon_sym_GT] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_SEMI] = ACTIONS(4668), - [anon_sym_get] = ACTIONS(4666), - [anon_sym_set] = ACTIONS(4666), - [anon_sym_STAR] = ACTIONS(4666), - [anon_sym_DASH_GT] = ACTIONS(4668), - [sym_label] = ACTIONS(4668), - [anon_sym_in] = ACTIONS(4666), - [anon_sym_while] = ACTIONS(4666), - [anon_sym_DOT_DOT] = ACTIONS(4668), - [anon_sym_QMARK_COLON] = ACTIONS(4668), - [anon_sym_AMP_AMP] = ACTIONS(4668), - [anon_sym_PIPE_PIPE] = ACTIONS(4668), - [anon_sym_else] = ACTIONS(4666), - [anon_sym_COLON_COLON] = ACTIONS(4668), - [anon_sym_PLUS_EQ] = ACTIONS(4668), - [anon_sym_DASH_EQ] = ACTIONS(4668), - [anon_sym_STAR_EQ] = ACTIONS(4668), - [anon_sym_SLASH_EQ] = ACTIONS(4668), - [anon_sym_PERCENT_EQ] = ACTIONS(4668), - [anon_sym_BANG_EQ] = ACTIONS(4666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4668), - [anon_sym_EQ_EQ] = ACTIONS(4666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4668), - [anon_sym_LT_EQ] = ACTIONS(4668), - [anon_sym_GT_EQ] = ACTIONS(4668), - [anon_sym_BANGin] = ACTIONS(4668), - [anon_sym_is] = ACTIONS(4666), - [anon_sym_BANGis] = ACTIONS(4668), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_SLASH] = ACTIONS(4666), - [anon_sym_PERCENT] = ACTIONS(4666), - [anon_sym_as_QMARK] = ACTIONS(4668), - [anon_sym_PLUS_PLUS] = ACTIONS(4668), - [anon_sym_DASH_DASH] = ACTIONS(4668), - [anon_sym_BANG_BANG] = ACTIONS(4668), - [anon_sym_suspend] = ACTIONS(4666), - [anon_sym_sealed] = ACTIONS(4666), - [anon_sym_annotation] = ACTIONS(4666), - [anon_sym_data] = ACTIONS(4666), - [anon_sym_inner] = ACTIONS(4666), - [anon_sym_override] = ACTIONS(4666), - [anon_sym_lateinit] = ACTIONS(4666), - [anon_sym_public] = ACTIONS(4666), - [anon_sym_private] = ACTIONS(4666), - [anon_sym_internal] = ACTIONS(4666), - [anon_sym_protected] = ACTIONS(4666), - [anon_sym_tailrec] = ACTIONS(4666), - [anon_sym_operator] = ACTIONS(4666), - [anon_sym_infix] = ACTIONS(4666), - [anon_sym_inline] = ACTIONS(4666), - [anon_sym_external] = ACTIONS(4666), - [sym_property_modifier] = ACTIONS(4666), - [anon_sym_abstract] = ACTIONS(4666), - [anon_sym_final] = ACTIONS(4666), - [anon_sym_open] = ACTIONS(4666), - [anon_sym_vararg] = ACTIONS(4666), - [anon_sym_noinline] = ACTIONS(4666), - [anon_sym_crossinline] = ACTIONS(4666), - [anon_sym_expect] = ACTIONS(4666), - [anon_sym_actual] = ACTIONS(4666), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4668), - [sym_safe_nav] = ACTIONS(4668), - [sym_multiline_comment] = ACTIONS(3), - }, - [3011] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3100), + [3025] = { + [sym_class_body] = STATE(3392), [sym__alpha_identifier] = ACTIONS(4662), [anon_sym_AT] = ACTIONS(4664), [anon_sym_LBRACK] = ACTIONS(4664), [anon_sym_RBRACK] = ACTIONS(4664), [anon_sym_as] = ACTIONS(4662), [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(5141), [anon_sym_RBRACE] = ACTIONS(4664), [anon_sym_LPAREN] = ACTIONS(4664), [anon_sym_COMMA] = ACTIONS(4664), @@ -342831,1845 +344070,1098 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4664), [sym_multiline_comment] = ACTIONS(3), }, - [3012] = { - [sym__alpha_identifier] = ACTIONS(4521), - [anon_sym_AT] = ACTIONS(4523), - [anon_sym_COLON] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_as] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(4521), - [anon_sym_LBRACE] = ACTIONS(4523), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_LT] = ACTIONS(4521), - [anon_sym_GT] = ACTIONS(4521), - [anon_sym_where] = ACTIONS(4521), - [anon_sym_object] = ACTIONS(4521), - [anon_sym_fun] = ACTIONS(4521), - [anon_sym_DOT] = ACTIONS(4521), - [anon_sym_SEMI] = ACTIONS(4523), - [anon_sym_get] = ACTIONS(4521), - [anon_sym_set] = ACTIONS(4521), - [anon_sym_this] = ACTIONS(4521), - [anon_sym_super] = ACTIONS(4521), - [anon_sym_STAR] = ACTIONS(4521), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_QMARK_COLON] = ACTIONS(4523), - [anon_sym_AMP_AMP] = ACTIONS(4523), - [anon_sym_PIPE_PIPE] = ACTIONS(4523), - [anon_sym_null] = ACTIONS(4521), - [anon_sym_if] = ACTIONS(4521), - [anon_sym_else] = ACTIONS(4521), - [anon_sym_when] = ACTIONS(4521), - [anon_sym_try] = ACTIONS(4521), - [anon_sym_throw] = ACTIONS(4521), - [anon_sym_return] = ACTIONS(4521), - [anon_sym_continue] = ACTIONS(4521), - [anon_sym_break] = ACTIONS(4521), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(4523), - [anon_sym_DASH_EQ] = ACTIONS(4523), - [anon_sym_STAR_EQ] = ACTIONS(4523), - [anon_sym_SLASH_EQ] = ACTIONS(4523), - [anon_sym_PERCENT_EQ] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(4521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), - [anon_sym_EQ_EQ] = ACTIONS(4521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), - [anon_sym_LT_EQ] = ACTIONS(4523), - [anon_sym_GT_EQ] = ACTIONS(4523), - [anon_sym_BANGin] = ACTIONS(4523), - [anon_sym_is] = ACTIONS(4521), - [anon_sym_BANGis] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4521), - [anon_sym_DASH] = ACTIONS(4521), - [anon_sym_SLASH] = ACTIONS(4521), - [anon_sym_PERCENT] = ACTIONS(4521), - [anon_sym_as_QMARK] = ACTIONS(4523), - [anon_sym_PLUS_PLUS] = ACTIONS(4523), - [anon_sym_DASH_DASH] = ACTIONS(4523), - [anon_sym_BANG] = ACTIONS(4521), - [anon_sym_BANG_BANG] = ACTIONS(4523), - [anon_sym_data] = ACTIONS(4521), - [anon_sym_inner] = ACTIONS(4521), - [anon_sym_expect] = ACTIONS(4521), - [anon_sym_actual] = ACTIONS(4521), + [3026] = { + [sym_type_arguments] = STATE(5098), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6466), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4144), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_QMARK_COLON] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG_BANG] = ACTIONS(4144), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4523), - [anon_sym_continue_AT] = ACTIONS(4523), - [anon_sym_break_AT] = ACTIONS(4523), - [sym_real_literal] = ACTIONS(4523), - [sym_integer_literal] = ACTIONS(4521), - [sym_hex_literal] = ACTIONS(4523), - [sym_bin_literal] = ACTIONS(4523), - [anon_sym_true] = ACTIONS(4521), - [anon_sym_false] = ACTIONS(4521), - [anon_sym_SQUOTE] = ACTIONS(4523), - [sym__backtick_identifier] = ACTIONS(4523), - [sym__automatic_semicolon] = ACTIONS(4523), - [sym_safe_nav] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(4144), + [sym_safe_nav] = ACTIONS(4144), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4523), }, - [3013] = { - [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_expect] = ACTIONS(4585), - [anon_sym_actual] = ACTIONS(4585), + [3027] = { + [sym_type_constraints] = STATE(3535), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6468), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3028] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_RBRACK] = ACTIONS(4696), + [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_by] = ACTIONS(4694), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_DOT] = 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_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(4587), - [anon_sym_continue_AT] = ACTIONS(4587), - [anon_sym_break_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__backtick_identifier] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4587), }, - [3014] = { - [sym_catch_block] = STATE(3014), - [aux_sym_try_expression_repeat1] = STATE(3014), - [sym__alpha_identifier] = ACTIONS(4121), - [anon_sym_AT] = ACTIONS(4123), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4123), - [anon_sym_LT] = ACTIONS(4121), - [anon_sym_GT] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4123), - [anon_sym_get] = ACTIONS(4121), - [anon_sym_set] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4121), - [sym_label] = ACTIONS(4123), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4123), - [anon_sym_QMARK_COLON] = ACTIONS(4123), - [anon_sym_AMP_AMP] = ACTIONS(4123), - [anon_sym_PIPE_PIPE] = ACTIONS(4123), - [anon_sym_else] = ACTIONS(4121), - [anon_sym_catch] = ACTIONS(6445), - [anon_sym_finally] = ACTIONS(4121), - [anon_sym_COLON_COLON] = ACTIONS(4123), - [anon_sym_PLUS_EQ] = ACTIONS(4123), - [anon_sym_DASH_EQ] = ACTIONS(4123), - [anon_sym_STAR_EQ] = ACTIONS(4123), - [anon_sym_SLASH_EQ] = ACTIONS(4123), - [anon_sym_PERCENT_EQ] = ACTIONS(4123), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4123), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4123), - [anon_sym_LT_EQ] = ACTIONS(4123), - [anon_sym_GT_EQ] = ACTIONS(4123), - [anon_sym_BANGin] = ACTIONS(4123), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_BANGis] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4121), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_as_QMARK] = ACTIONS(4123), - [anon_sym_PLUS_PLUS] = ACTIONS(4123), - [anon_sym_DASH_DASH] = ACTIONS(4123), - [anon_sym_BANG_BANG] = ACTIONS(4123), - [anon_sym_suspend] = ACTIONS(4121), - [anon_sym_sealed] = ACTIONS(4121), - [anon_sym_annotation] = ACTIONS(4121), - [anon_sym_data] = ACTIONS(4121), - [anon_sym_inner] = ACTIONS(4121), - [anon_sym_override] = ACTIONS(4121), - [anon_sym_lateinit] = ACTIONS(4121), - [anon_sym_public] = ACTIONS(4121), - [anon_sym_private] = ACTIONS(4121), - [anon_sym_internal] = ACTIONS(4121), - [anon_sym_protected] = ACTIONS(4121), - [anon_sym_tailrec] = ACTIONS(4121), - [anon_sym_operator] = ACTIONS(4121), - [anon_sym_infix] = ACTIONS(4121), - [anon_sym_inline] = ACTIONS(4121), - [anon_sym_external] = ACTIONS(4121), - [sym_property_modifier] = ACTIONS(4121), - [anon_sym_abstract] = ACTIONS(4121), - [anon_sym_final] = ACTIONS(4121), - [anon_sym_open] = ACTIONS(4121), - [anon_sym_vararg] = ACTIONS(4121), - [anon_sym_noinline] = ACTIONS(4121), - [anon_sym_crossinline] = ACTIONS(4121), - [anon_sym_expect] = ACTIONS(4121), - [anon_sym_actual] = ACTIONS(4121), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4123), - [sym__automatic_semicolon] = ACTIONS(4123), - [sym_safe_nav] = ACTIONS(4123), + [3029] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [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_DOT] = 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_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), + [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), + }, + [3030] = { + [sym_type_constraints] = STATE(3492), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6470), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [3015] = { - [aux_sym_user_type_repeat1] = STATE(3015), - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(6448), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [sym__quest] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), + [3031] = { + [sym_import_list] = STATE(3031), + [sym_import_header] = STATE(8224), + [aux_sym_source_file_repeat2] = STATE(3031), + [aux_sym_import_list_repeat1] = STATE(8224), + [ts_builtin_sym_end] = ACTIONS(6472), + [sym__alpha_identifier] = ACTIONS(6474), + [anon_sym_AT] = ACTIONS(6472), + [anon_sym_LBRACK] = ACTIONS(6472), + [anon_sym_import] = ACTIONS(6476), + [anon_sym_typealias] = ACTIONS(6474), + [anon_sym_class] = ACTIONS(6474), + [anon_sym_interface] = ACTIONS(6474), + [anon_sym_enum] = ACTIONS(6474), + [anon_sym_LBRACE] = ACTIONS(6472), + [anon_sym_LPAREN] = ACTIONS(6472), + [anon_sym_val] = ACTIONS(6474), + [anon_sym_var] = ACTIONS(6474), + [anon_sym_object] = ACTIONS(6474), + [anon_sym_fun] = ACTIONS(6474), + [anon_sym_get] = ACTIONS(6474), + [anon_sym_set] = ACTIONS(6474), + [anon_sym_this] = ACTIONS(6474), + [anon_sym_super] = ACTIONS(6474), + [anon_sym_STAR] = ACTIONS(6472), + [sym_label] = ACTIONS(6474), + [anon_sym_for] = ACTIONS(6474), + [anon_sym_while] = ACTIONS(6474), + [anon_sym_do] = ACTIONS(6474), + [anon_sym_null] = ACTIONS(6474), + [anon_sym_if] = ACTIONS(6474), + [anon_sym_when] = ACTIONS(6474), + [anon_sym_try] = ACTIONS(6474), + [anon_sym_throw] = ACTIONS(6474), + [anon_sym_return] = ACTIONS(6474), + [anon_sym_continue] = ACTIONS(6474), + [anon_sym_break] = ACTIONS(6474), + [anon_sym_COLON_COLON] = ACTIONS(6472), + [anon_sym_PLUS] = ACTIONS(6474), + [anon_sym_DASH] = ACTIONS(6474), + [anon_sym_PLUS_PLUS] = ACTIONS(6472), + [anon_sym_DASH_DASH] = ACTIONS(6472), + [anon_sym_BANG] = ACTIONS(6472), + [anon_sym_suspend] = ACTIONS(6474), + [anon_sym_sealed] = ACTIONS(6474), + [anon_sym_annotation] = ACTIONS(6474), + [anon_sym_data] = ACTIONS(6474), + [anon_sym_inner] = ACTIONS(6474), + [anon_sym_override] = ACTIONS(6474), + [anon_sym_lateinit] = ACTIONS(6474), + [anon_sym_public] = ACTIONS(6474), + [anon_sym_private] = ACTIONS(6474), + [anon_sym_internal] = ACTIONS(6474), + [anon_sym_protected] = ACTIONS(6474), + [anon_sym_tailrec] = ACTIONS(6474), + [anon_sym_operator] = ACTIONS(6474), + [anon_sym_infix] = ACTIONS(6474), + [anon_sym_inline] = ACTIONS(6474), + [anon_sym_external] = ACTIONS(6474), + [sym_property_modifier] = ACTIONS(6474), + [anon_sym_abstract] = ACTIONS(6474), + [anon_sym_final] = ACTIONS(6474), + [anon_sym_open] = ACTIONS(6474), + [anon_sym_vararg] = ACTIONS(6474), + [anon_sym_noinline] = ACTIONS(6474), + [anon_sym_crossinline] = ACTIONS(6474), + [anon_sym_expect] = ACTIONS(6474), + [anon_sym_actual] = ACTIONS(6474), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6472), + [anon_sym_continue_AT] = ACTIONS(6472), + [anon_sym_break_AT] = ACTIONS(6472), + [sym_real_literal] = ACTIONS(6472), + [sym_integer_literal] = ACTIONS(6474), + [sym_hex_literal] = ACTIONS(6472), + [sym_bin_literal] = ACTIONS(6472), + [anon_sym_true] = ACTIONS(6474), + [anon_sym_false] = ACTIONS(6474), + [anon_sym_SQUOTE] = ACTIONS(6472), + [sym__backtick_identifier] = ACTIONS(6472), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6472), }, - [3016] = { - [sym_class_body] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [3032] = { + [sym_enum_class_body] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), }, - [3017] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3077), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6423), + [3033] = { + [sym_catch_block] = STATE(3033), + [aux_sym_try_expression_repeat1] = STATE(3033), + [sym__alpha_identifier] = ACTIONS(4095), + [anon_sym_AT] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4095), + [anon_sym_EQ] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_RBRACE] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_COMMA] = ACTIONS(4097), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_GT] = ACTIONS(4095), + [anon_sym_where] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4095), + [anon_sym_SEMI] = ACTIONS(4097), + [anon_sym_get] = ACTIONS(4095), + [anon_sym_set] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4095), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_QMARK_COLON] = ACTIONS(4097), + [anon_sym_AMP_AMP] = ACTIONS(4097), + [anon_sym_PIPE_PIPE] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4095), + [anon_sym_catch] = ACTIONS(6479), + [anon_sym_finally] = ACTIONS(4095), + [anon_sym_COLON_COLON] = ACTIONS(4097), + [anon_sym_PLUS_EQ] = ACTIONS(4097), + [anon_sym_DASH_EQ] = ACTIONS(4097), + [anon_sym_STAR_EQ] = ACTIONS(4097), + [anon_sym_SLASH_EQ] = ACTIONS(4097), + [anon_sym_PERCENT_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4097), + [anon_sym_LT_EQ] = ACTIONS(4097), + [anon_sym_GT_EQ] = ACTIONS(4097), + [anon_sym_BANGin] = ACTIONS(4097), + [anon_sym_is] = ACTIONS(4095), + [anon_sym_BANGis] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4095), + [anon_sym_DASH] = ACTIONS(4095), + [anon_sym_SLASH] = ACTIONS(4095), + [anon_sym_PERCENT] = ACTIONS(4095), + [anon_sym_as_QMARK] = ACTIONS(4097), + [anon_sym_PLUS_PLUS] = ACTIONS(4097), + [anon_sym_DASH_DASH] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4097), + [anon_sym_suspend] = ACTIONS(4095), + [anon_sym_sealed] = ACTIONS(4095), + [anon_sym_annotation] = ACTIONS(4095), + [anon_sym_data] = ACTIONS(4095), + [anon_sym_inner] = ACTIONS(4095), + [anon_sym_override] = ACTIONS(4095), + [anon_sym_lateinit] = ACTIONS(4095), + [anon_sym_public] = ACTIONS(4095), + [anon_sym_private] = ACTIONS(4095), + [anon_sym_internal] = ACTIONS(4095), + [anon_sym_protected] = ACTIONS(4095), + [anon_sym_tailrec] = ACTIONS(4095), + [anon_sym_operator] = ACTIONS(4095), + [anon_sym_infix] = ACTIONS(4095), + [anon_sym_inline] = ACTIONS(4095), + [anon_sym_external] = ACTIONS(4095), + [sym_property_modifier] = ACTIONS(4095), + [anon_sym_abstract] = ACTIONS(4095), + [anon_sym_final] = ACTIONS(4095), + [anon_sym_open] = ACTIONS(4095), + [anon_sym_vararg] = ACTIONS(4095), + [anon_sym_noinline] = ACTIONS(4095), + [anon_sym_crossinline] = ACTIONS(4095), + [anon_sym_expect] = ACTIONS(4095), + [anon_sym_actual] = ACTIONS(4095), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4097), + [sym__automatic_semicolon] = ACTIONS(4097), + [sym_safe_nav] = ACTIONS(4097), [sym_multiline_comment] = ACTIONS(3), }, - [3018] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3054), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [3034] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3034), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_RBRACK] = ACTIONS(4637), + [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(6482), + [anon_sym_RPAREN] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_DOT] = 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_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), }, - [3019] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3084), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3020] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RPAREN] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3050), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3021] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3046), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3022] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3040), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3042), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3023] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3024] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3031), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3035] = { + [sym_class_body] = STATE(3217), + [sym__alpha_identifier] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), + [anon_sym_LBRACK] = ACTIONS(4664), + [anon_sym_as] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(4662), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4664), + [anon_sym_LPAREN] = ACTIONS(4664), + [anon_sym_COMMA] = ACTIONS(4664), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_where] = ACTIONS(4662), + [anon_sym_object] = ACTIONS(4662), + [anon_sym_fun] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(4662), + [anon_sym_set] = ACTIONS(4662), + [anon_sym_this] = ACTIONS(4662), + [anon_sym_super] = ACTIONS(4662), + [anon_sym_STAR] = ACTIONS(4662), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4662), + [anon_sym_DOT_DOT] = ACTIONS(4664), + [anon_sym_QMARK_COLON] = ACTIONS(4664), + [anon_sym_AMP_AMP] = ACTIONS(4664), + [anon_sym_PIPE_PIPE] = ACTIONS(4664), + [anon_sym_null] = ACTIONS(4662), + [anon_sym_if] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4662), + [anon_sym_when] = ACTIONS(4662), + [anon_sym_try] = ACTIONS(4662), + [anon_sym_throw] = ACTIONS(4662), + [anon_sym_return] = ACTIONS(4662), + [anon_sym_continue] = ACTIONS(4662), + [anon_sym_break] = ACTIONS(4662), + [anon_sym_COLON_COLON] = ACTIONS(4664), + [anon_sym_PLUS_EQ] = ACTIONS(4664), + [anon_sym_DASH_EQ] = ACTIONS(4664), + [anon_sym_STAR_EQ] = ACTIONS(4664), + [anon_sym_SLASH_EQ] = ACTIONS(4664), + [anon_sym_PERCENT_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_BANGin] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(4662), + [anon_sym_BANGis] = ACTIONS(4664), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [anon_sym_SLASH] = ACTIONS(4662), + [anon_sym_PERCENT] = ACTIONS(4662), + [anon_sym_as_QMARK] = ACTIONS(4664), + [anon_sym_PLUS_PLUS] = ACTIONS(4664), + [anon_sym_DASH_DASH] = ACTIONS(4664), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4664), + [anon_sym_data] = ACTIONS(4662), + [anon_sym_inner] = ACTIONS(4662), + [anon_sym_expect] = ACTIONS(4662), + [anon_sym_actual] = ACTIONS(4662), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3025] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3024), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3026] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3013), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3027] = { - [sym_function_body] = STATE(3364), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6451), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), - }, - [3028] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(2994), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_return_AT] = ACTIONS(4664), + [anon_sym_continue_AT] = ACTIONS(4664), + [anon_sym_break_AT] = ACTIONS(4664), + [sym_real_literal] = ACTIONS(4664), + [sym_integer_literal] = ACTIONS(4662), + [sym_hex_literal] = ACTIONS(4664), + [sym_bin_literal] = ACTIONS(4664), + [anon_sym_true] = ACTIONS(4662), + [anon_sym_false] = ACTIONS(4662), + [anon_sym_SQUOTE] = ACTIONS(4664), + [sym__backtick_identifier] = ACTIONS(4664), + [sym__automatic_semicolon] = ACTIONS(4664), + [sym_safe_nav] = ACTIONS(4664), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4664), }, - [3029] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), + [3036] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3063), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3005), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3065), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3030] = { - [sym__alpha_identifier] = ACTIONS(4615), - [anon_sym_AT] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_as] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4617), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LT] = ACTIONS(4615), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_where] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [anon_sym_get] = ACTIONS(4615), - [anon_sym_set] = ACTIONS(4615), - [anon_sym_STAR] = ACTIONS(4615), - [anon_sym_DASH_GT] = ACTIONS(4617), - [sym_label] = ACTIONS(4617), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_while] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4617), - [anon_sym_AMP_AMP] = ACTIONS(4617), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(4615), - [anon_sym_COLON_COLON] = ACTIONS(4617), - [anon_sym_PLUS_EQ] = ACTIONS(4617), - [anon_sym_DASH_EQ] = ACTIONS(4617), - [anon_sym_STAR_EQ] = ACTIONS(4617), - [anon_sym_SLASH_EQ] = ACTIONS(4617), - [anon_sym_PERCENT_EQ] = ACTIONS(4617), - [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(4617), - [anon_sym_GT_EQ] = ACTIONS(4617), - [anon_sym_BANGin] = ACTIONS(4617), - [anon_sym_is] = ACTIONS(4615), - [anon_sym_BANGis] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4615), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_as_QMARK] = ACTIONS(4617), - [anon_sym_PLUS_PLUS] = ACTIONS(4617), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_BANG_BANG] = ACTIONS(4617), - [anon_sym_suspend] = ACTIONS(4615), - [anon_sym_sealed] = ACTIONS(4615), - [anon_sym_annotation] = ACTIONS(4615), - [anon_sym_data] = ACTIONS(4615), - [anon_sym_inner] = ACTIONS(4615), - [anon_sym_override] = ACTIONS(4615), - [anon_sym_lateinit] = ACTIONS(4615), - [anon_sym_public] = ACTIONS(4615), - [anon_sym_private] = ACTIONS(4615), - [anon_sym_internal] = ACTIONS(4615), - [anon_sym_protected] = ACTIONS(4615), - [anon_sym_tailrec] = ACTIONS(4615), - [anon_sym_operator] = ACTIONS(4615), - [anon_sym_infix] = ACTIONS(4615), - [anon_sym_inline] = ACTIONS(4615), - [anon_sym_external] = ACTIONS(4615), - [sym_property_modifier] = ACTIONS(4615), - [anon_sym_abstract] = ACTIONS(4615), - [anon_sym_final] = ACTIONS(4615), - [anon_sym_open] = ACTIONS(4615), - [anon_sym_vararg] = ACTIONS(4615), - [anon_sym_noinline] = ACTIONS(4615), - [anon_sym_crossinline] = ACTIONS(4615), - [anon_sym_expect] = ACTIONS(4615), - [anon_sym_actual] = ACTIONS(4615), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4617), - [sym_safe_nav] = ACTIONS(4617), + [3037] = { + [sym_class_body] = STATE(3296), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [anon_sym_DASH_GT] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, - [3031] = { - [sym__alpha_identifier] = ACTIONS(4638), - [anon_sym_AT] = ACTIONS(4640), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_as] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_COMMA] = ACTIONS(4640), - [anon_sym_LT] = ACTIONS(4638), - [anon_sym_GT] = ACTIONS(4638), - [anon_sym_where] = ACTIONS(4638), - [anon_sym_object] = ACTIONS(4638), - [anon_sym_fun] = ACTIONS(4638), - [anon_sym_DOT] = ACTIONS(4638), - [anon_sym_SEMI] = ACTIONS(4640), - [anon_sym_get] = ACTIONS(4638), - [anon_sym_set] = ACTIONS(4638), - [anon_sym_this] = ACTIONS(4638), - [anon_sym_super] = ACTIONS(4638), - [anon_sym_STAR] = ACTIONS(4638), - [sym_label] = ACTIONS(4638), - [anon_sym_in] = ACTIONS(4638), - [anon_sym_DOT_DOT] = ACTIONS(4640), - [anon_sym_QMARK_COLON] = ACTIONS(4640), - [anon_sym_AMP_AMP] = ACTIONS(4640), - [anon_sym_PIPE_PIPE] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4638), - [anon_sym_if] = ACTIONS(4638), - [anon_sym_else] = ACTIONS(4638), - [anon_sym_when] = ACTIONS(4638), - [anon_sym_try] = ACTIONS(4638), - [anon_sym_throw] = ACTIONS(4638), - [anon_sym_return] = ACTIONS(4638), - [anon_sym_continue] = ACTIONS(4638), - [anon_sym_break] = ACTIONS(4638), - [anon_sym_COLON_COLON] = ACTIONS(4640), - [anon_sym_PLUS_EQ] = ACTIONS(4640), - [anon_sym_DASH_EQ] = ACTIONS(4640), - [anon_sym_STAR_EQ] = ACTIONS(4640), - [anon_sym_SLASH_EQ] = ACTIONS(4640), - [anon_sym_PERCENT_EQ] = ACTIONS(4640), - [anon_sym_BANG_EQ] = ACTIONS(4638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4640), - [anon_sym_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4640), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_BANGin] = ACTIONS(4640), - [anon_sym_is] = ACTIONS(4638), - [anon_sym_BANGis] = ACTIONS(4640), - [anon_sym_PLUS] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_SLASH] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_as_QMARK] = ACTIONS(4640), - [anon_sym_PLUS_PLUS] = ACTIONS(4640), - [anon_sym_DASH_DASH] = ACTIONS(4640), - [anon_sym_BANG] = ACTIONS(4638), - [anon_sym_BANG_BANG] = ACTIONS(4640), - [anon_sym_data] = ACTIONS(4638), - [anon_sym_inner] = ACTIONS(4638), - [anon_sym_expect] = ACTIONS(4638), - [anon_sym_actual] = ACTIONS(4638), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4640), - [anon_sym_continue_AT] = ACTIONS(4640), - [anon_sym_break_AT] = ACTIONS(4640), - [sym_real_literal] = ACTIONS(4640), - [sym_integer_literal] = ACTIONS(4638), - [sym_hex_literal] = ACTIONS(4640), - [sym_bin_literal] = ACTIONS(4640), - [anon_sym_L] = ACTIONS(6453), - [anon_sym_true] = ACTIONS(4638), - [anon_sym_false] = ACTIONS(4638), - [anon_sym_SQUOTE] = ACTIONS(4640), - [sym__backtick_identifier] = ACTIONS(4640), - [sym__automatic_semicolon] = ACTIONS(4640), - [sym_safe_nav] = ACTIONS(4640), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4640), - }, - [3032] = { - [sym_class_body] = STATE(3156), - [sym__alpha_identifier] = ACTIONS(4533), - [anon_sym_AT] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_object] = ACTIONS(4533), - [anon_sym_fun] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SEMI] = ACTIONS(4535), - [anon_sym_get] = ACTIONS(4533), - [anon_sym_set] = ACTIONS(4533), - [anon_sym_this] = ACTIONS(4533), - [anon_sym_super] = ACTIONS(4533), - [anon_sym_STAR] = ACTIONS(4533), - [sym_label] = ACTIONS(4533), - [anon_sym_in] = ACTIONS(4533), - [anon_sym_DOT_DOT] = ACTIONS(4535), - [anon_sym_QMARK_COLON] = ACTIONS(4535), - [anon_sym_AMP_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4535), - [anon_sym_null] = ACTIONS(4533), - [anon_sym_if] = ACTIONS(4533), - [anon_sym_else] = ACTIONS(4533), - [anon_sym_when] = ACTIONS(4533), - [anon_sym_try] = ACTIONS(4533), - [anon_sym_throw] = ACTIONS(4533), - [anon_sym_return] = ACTIONS(4533), - [anon_sym_continue] = ACTIONS(4533), - [anon_sym_break] = ACTIONS(4533), - [anon_sym_COLON_COLON] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ] = ACTIONS(4533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4535), - [anon_sym_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_EQ] = ACTIONS(4535), - [anon_sym_BANGin] = ACTIONS(4535), - [anon_sym_is] = ACTIONS(4533), - [anon_sym_BANGis] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4533), - [anon_sym_PERCENT] = ACTIONS(4533), - [anon_sym_as_QMARK] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4533), - [anon_sym_BANG_BANG] = ACTIONS(4535), - [anon_sym_data] = ACTIONS(4533), - [anon_sym_inner] = ACTIONS(4533), - [anon_sym_expect] = ACTIONS(4533), - [anon_sym_actual] = ACTIONS(4533), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4535), - [anon_sym_continue_AT] = ACTIONS(4535), - [anon_sym_break_AT] = ACTIONS(4535), - [sym_real_literal] = ACTIONS(4535), - [sym_integer_literal] = ACTIONS(4533), - [sym_hex_literal] = ACTIONS(4535), - [sym_bin_literal] = ACTIONS(4535), - [anon_sym_true] = ACTIONS(4533), - [anon_sym_false] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4535), - [sym__backtick_identifier] = ACTIONS(4535), - [sym__automatic_semicolon] = ACTIONS(4535), - [sym_safe_nav] = ACTIONS(4535), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4535), - }, - [3033] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3038] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(2995), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3009), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(2997), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3034] = { + [3039] = { + [sym_enum_class_body] = STATE(3374), [sym__alpha_identifier] = ACTIONS(4619), [anon_sym_AT] = ACTIONS(4621), [anon_sym_LBRACK] = ACTIONS(4621), [anon_sym_RBRACK] = ACTIONS(4621), [anon_sym_as] = ACTIONS(4619), [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4621), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(4621), [anon_sym_LPAREN] = ACTIONS(4621), [anon_sym_COMMA] = ACTIONS(4621), [anon_sym_RPAREN] = ACTIONS(4621), - [anon_sym_by] = ACTIONS(4619), [anon_sym_LT] = ACTIONS(4619), [anon_sym_GT] = ACTIONS(4619), [anon_sym_where] = ACTIONS(4619), @@ -344740,430 +345232,1011 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4621), [sym_multiline_comment] = ACTIONS(3), }, - [3035] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [anon_sym_DASH_GT] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [3040] = { + [aux_sym_type_constraints_repeat1] = STATE(3010), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4521), + [anon_sym_EQ] = ACTIONS(4521), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(6485), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4521), + [anon_sym_where] = ACTIONS(4521), + [anon_sym_object] = ACTIONS(4521), + [anon_sym_fun] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_get] = ACTIONS(4521), + [anon_sym_set] = ACTIONS(4521), + [anon_sym_this] = ACTIONS(4521), + [anon_sym_super] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4521), + [sym_label] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4521), + [anon_sym_if] = ACTIONS(4521), + [anon_sym_else] = ACTIONS(4521), + [anon_sym_when] = ACTIONS(4521), + [anon_sym_try] = ACTIONS(4521), + [anon_sym_throw] = ACTIONS(4521), + [anon_sym_return] = ACTIONS(4521), + [anon_sym_continue] = ACTIONS(4521), + [anon_sym_break] = ACTIONS(4521), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_BANGin] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4521), + [anon_sym_BANGis] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4521), + [anon_sym_PERCENT] = ACTIONS(4521), + [anon_sym_as_QMARK] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4521), + [anon_sym_BANG_BANG] = ACTIONS(4523), + [anon_sym_data] = ACTIONS(4521), + [anon_sym_inner] = ACTIONS(4521), + [anon_sym_expect] = ACTIONS(4521), + [anon_sym_actual] = ACTIONS(4521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4523), + [anon_sym_continue_AT] = ACTIONS(4523), + [anon_sym_break_AT] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4523), + [sym_integer_literal] = ACTIONS(4521), + [sym_hex_literal] = ACTIONS(4523), + [sym_bin_literal] = ACTIONS(4523), + [anon_sym_true] = ACTIONS(4521), + [anon_sym_false] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(4523), + [sym__automatic_semicolon] = ACTIONS(4523), + [sym_safe_nav] = ACTIONS(4523), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4523), }, - [3036] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1883), - [sym__comparison_operator] = STATE(1876), - [sym__in_operator] = STATE(1873), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1866), - [sym__multiplicative_operator] = STATE(1865), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1725), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6409), - [anon_sym_DASH_GT] = ACTIONS(3001), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6413), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_QMARK_COLON] = ACTIONS(6417), - [anon_sym_AMP_AMP] = ACTIONS(6419), - [anon_sym_PIPE_PIPE] = ACTIONS(6421), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(6425), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6427), - [anon_sym_EQ_EQ] = ACTIONS(6425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6427), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_BANGin] = ACTIONS(6431), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6437), - [anon_sym_DASH] = ACTIONS(6437), - [anon_sym_SLASH] = ACTIONS(6409), - [anon_sym_PERCENT] = ACTIONS(6409), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3041] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4700), + [sym_label] = ACTIONS(4700), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_suspend] = ACTIONS(4698), + [anon_sym_sealed] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_lateinit] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4698), + [anon_sym_tailrec] = ACTIONS(4698), + [anon_sym_operator] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_inline] = ACTIONS(4698), + [anon_sym_external] = ACTIONS(4698), + [sym_property_modifier] = ACTIONS(4698), + [anon_sym_abstract] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_vararg] = ACTIONS(4698), + [anon_sym_noinline] = ACTIONS(4698), + [anon_sym_crossinline] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__backtick_identifier] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), [sym_multiline_comment] = ACTIONS(3), }, - [3037] = { - [sym_type_constraints] = STATE(3505), - [sym_function_body] = STATE(3891), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6455), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), + [3042] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4692), + [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_by] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_DOT] = 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_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), }, - [3038] = { - [sym__alpha_identifier] = ACTIONS(4638), - [anon_sym_AT] = ACTIONS(4640), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_RBRACK] = ACTIONS(4640), - [anon_sym_as] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_COMMA] = ACTIONS(4640), - [anon_sym_RPAREN] = ACTIONS(4640), - [anon_sym_LT] = ACTIONS(4638), - [anon_sym_GT] = ACTIONS(4638), - [anon_sym_where] = ACTIONS(4638), - [anon_sym_DOT] = ACTIONS(4638), - [anon_sym_SEMI] = ACTIONS(4640), - [anon_sym_get] = ACTIONS(4638), - [anon_sym_set] = ACTIONS(4638), - [anon_sym_STAR] = ACTIONS(4638), - [anon_sym_DASH_GT] = ACTIONS(4640), - [sym_label] = ACTIONS(4640), - [anon_sym_in] = ACTIONS(4638), - [anon_sym_while] = ACTIONS(4638), - [anon_sym_DOT_DOT] = ACTIONS(4640), - [anon_sym_QMARK_COLON] = ACTIONS(4640), - [anon_sym_AMP_AMP] = ACTIONS(4640), - [anon_sym_PIPE_PIPE] = ACTIONS(4640), - [anon_sym_else] = ACTIONS(4638), - [anon_sym_COLON_COLON] = ACTIONS(4640), - [anon_sym_PLUS_EQ] = ACTIONS(4640), - [anon_sym_DASH_EQ] = ACTIONS(4640), - [anon_sym_STAR_EQ] = ACTIONS(4640), - [anon_sym_SLASH_EQ] = ACTIONS(4640), - [anon_sym_PERCENT_EQ] = ACTIONS(4640), - [anon_sym_BANG_EQ] = ACTIONS(4638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4640), - [anon_sym_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4640), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_BANGin] = ACTIONS(4640), - [anon_sym_is] = ACTIONS(4638), - [anon_sym_BANGis] = ACTIONS(4640), - [anon_sym_PLUS] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_SLASH] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_as_QMARK] = ACTIONS(4640), - [anon_sym_PLUS_PLUS] = ACTIONS(4640), - [anon_sym_DASH_DASH] = ACTIONS(4640), - [anon_sym_BANG_BANG] = ACTIONS(4640), - [anon_sym_suspend] = ACTIONS(4638), - [anon_sym_sealed] = ACTIONS(4638), - [anon_sym_annotation] = ACTIONS(4638), - [anon_sym_data] = ACTIONS(4638), - [anon_sym_inner] = ACTIONS(4638), - [anon_sym_override] = ACTIONS(4638), - [anon_sym_lateinit] = ACTIONS(4638), - [anon_sym_public] = ACTIONS(4638), - [anon_sym_private] = ACTIONS(4638), - [anon_sym_internal] = ACTIONS(4638), - [anon_sym_protected] = ACTIONS(4638), - [anon_sym_tailrec] = ACTIONS(4638), - [anon_sym_operator] = ACTIONS(4638), - [anon_sym_infix] = ACTIONS(4638), - [anon_sym_inline] = ACTIONS(4638), - [anon_sym_external] = ACTIONS(4638), - [sym_property_modifier] = ACTIONS(4638), - [anon_sym_abstract] = ACTIONS(4638), - [anon_sym_final] = ACTIONS(4638), - [anon_sym_open] = ACTIONS(4638), - [anon_sym_vararg] = ACTIONS(4638), - [anon_sym_noinline] = ACTIONS(4638), - [anon_sym_crossinline] = ACTIONS(4638), - [anon_sym_expect] = ACTIONS(4638), - [anon_sym_actual] = ACTIONS(4638), - [sym_line_comment] = ACTIONS(3), - [anon_sym_L] = ACTIONS(6461), - [sym__backtick_identifier] = ACTIONS(4640), - [sym_safe_nav] = ACTIONS(4640), + [3043] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6487), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [3044] = { + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_COLON] = ACTIONS(4674), + [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_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_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), }, - [3039] = { - [sym__alpha_identifier] = ACTIONS(4611), - [anon_sym_AT] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_RBRACK] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_RPAREN] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4611), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_where] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_get] = ACTIONS(4611), - [anon_sym_set] = ACTIONS(4611), - [anon_sym_STAR] = ACTIONS(4611), - [anon_sym_DASH_GT] = ACTIONS(4613), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4611), - [anon_sym_while] = ACTIONS(4611), - [anon_sym_DOT_DOT] = ACTIONS(4613), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4613), - [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_else] = ACTIONS(4611), - [anon_sym_COLON_COLON] = ACTIONS(4613), - [anon_sym_PLUS_EQ] = ACTIONS(4613), - [anon_sym_DASH_EQ] = ACTIONS(4613), - [anon_sym_STAR_EQ] = ACTIONS(4613), - [anon_sym_SLASH_EQ] = ACTIONS(4613), - [anon_sym_PERCENT_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4613), - [anon_sym_LT_EQ] = ACTIONS(4613), - [anon_sym_GT_EQ] = ACTIONS(4613), - [anon_sym_BANGin] = ACTIONS(4613), - [anon_sym_is] = ACTIONS(4611), - [anon_sym_BANGis] = ACTIONS(4613), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4611), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4613), - [anon_sym_PLUS_PLUS] = ACTIONS(4613), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_BANG_BANG] = ACTIONS(4613), - [anon_sym_suspend] = ACTIONS(4611), - [anon_sym_sealed] = ACTIONS(4611), - [anon_sym_annotation] = ACTIONS(4611), - [anon_sym_data] = ACTIONS(4611), - [anon_sym_inner] = ACTIONS(4611), - [anon_sym_override] = ACTIONS(4611), - [anon_sym_lateinit] = ACTIONS(4611), - [anon_sym_public] = ACTIONS(4611), - [anon_sym_private] = ACTIONS(4611), - [anon_sym_internal] = ACTIONS(4611), - [anon_sym_protected] = ACTIONS(4611), - [anon_sym_tailrec] = ACTIONS(4611), - [anon_sym_operator] = ACTIONS(4611), - [anon_sym_infix] = ACTIONS(4611), - [anon_sym_inline] = ACTIONS(4611), - [anon_sym_external] = ACTIONS(4611), - [sym_property_modifier] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4611), - [anon_sym_final] = ACTIONS(4611), - [anon_sym_open] = ACTIONS(4611), - [anon_sym_vararg] = ACTIONS(4611), - [anon_sym_noinline] = ACTIONS(4611), - [anon_sym_crossinline] = ACTIONS(4611), - [anon_sym_expect] = ACTIONS(4611), - [anon_sym_actual] = ACTIONS(4611), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4613), - [sym_safe_nav] = ACTIONS(4613), + [3045] = { + [sym_class_body] = STATE(3431), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RPAREN] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_DASH_GT] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), [sym_multiline_comment] = ACTIONS(3), }, - [3040] = { - [sym_class_body] = STATE(3319), + [3046] = { + [sym_class_body] = STATE(3230), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [3047] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3068), + [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(6489), + [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_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), + [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), + }, + [3048] = { + [sym_type_constraints] = STATE(3616), + [sym_function_body] = STATE(3260), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6491), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_RPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + }, + [3049] = { + [sym_type_constraints] = STATE(3617), + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + }, + [3050] = { + [sym_class_body] = STATE(3172), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(3172), + [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_DOT] = 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_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_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), + [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), + }, + [3051] = { + [sym__alpha_identifier] = ACTIONS(4615), + [anon_sym_AT] = ACTIONS(4617), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_as] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4617), + [anon_sym_RBRACE] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_where] = ACTIONS(4615), + [anon_sym_object] = ACTIONS(4615), + [anon_sym_fun] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [anon_sym_get] = ACTIONS(4615), + [anon_sym_set] = ACTIONS(4615), + [anon_sym_this] = ACTIONS(4615), + [anon_sym_super] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [sym_label] = ACTIONS(4615), + [anon_sym_in] = ACTIONS(4615), + [anon_sym_DOT_DOT] = ACTIONS(4617), + [anon_sym_QMARK_COLON] = ACTIONS(4617), + [anon_sym_AMP_AMP] = ACTIONS(4617), + [anon_sym_PIPE_PIPE] = ACTIONS(4617), + [anon_sym_null] = ACTIONS(4615), + [anon_sym_if] = ACTIONS(4615), + [anon_sym_else] = ACTIONS(4615), + [anon_sym_when] = ACTIONS(4615), + [anon_sym_try] = ACTIONS(4615), + [anon_sym_throw] = ACTIONS(4615), + [anon_sym_return] = ACTIONS(4615), + [anon_sym_continue] = ACTIONS(4615), + [anon_sym_break] = ACTIONS(4615), + [anon_sym_COLON_COLON] = ACTIONS(4617), + [anon_sym_PLUS_EQ] = ACTIONS(4617), + [anon_sym_DASH_EQ] = ACTIONS(4617), + [anon_sym_STAR_EQ] = ACTIONS(4617), + [anon_sym_SLASH_EQ] = ACTIONS(4617), + [anon_sym_PERCENT_EQ] = ACTIONS(4617), + [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(4617), + [anon_sym_GT_EQ] = ACTIONS(4617), + [anon_sym_BANGin] = ACTIONS(4617), + [anon_sym_is] = ACTIONS(4615), + [anon_sym_BANGis] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_as_QMARK] = ACTIONS(4617), + [anon_sym_PLUS_PLUS] = ACTIONS(4617), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4615), + [anon_sym_BANG_BANG] = ACTIONS(4617), + [anon_sym_data] = ACTIONS(4615), + [anon_sym_inner] = ACTIONS(4615), + [anon_sym_expect] = ACTIONS(4615), + [anon_sym_actual] = ACTIONS(4615), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4617), + [anon_sym_continue_AT] = ACTIONS(4617), + [anon_sym_break_AT] = ACTIONS(4617), + [sym_real_literal] = ACTIONS(4617), + [sym_integer_literal] = ACTIONS(4615), + [sym_hex_literal] = ACTIONS(4617), + [sym_bin_literal] = ACTIONS(4617), + [anon_sym_true] = ACTIONS(4615), + [anon_sym_false] = ACTIONS(4615), + [anon_sym_SQUOTE] = ACTIONS(4617), + [sym__backtick_identifier] = ACTIONS(4617), + [sym__automatic_semicolon] = ACTIONS(4617), + [sym_safe_nav] = ACTIONS(4617), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4617), + }, + [3052] = { + [sym_enum_class_body] = STATE(3436), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_COMMA] = ACTIONS(3200), @@ -345238,844 +346311,2753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [3041] = { - [sym_type_constraints] = STATE(3474), - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6463), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [3053] = { + [sym_enum_class_body] = STATE(3379), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_RBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_DASH_GT] = ACTIONS(4500), + [sym_label] = ACTIONS(4500), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_while] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), [sym_multiline_comment] = ACTIONS(3), }, - [3042] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3065), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4662), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_PLUS_EQ] = ACTIONS(4664), - [anon_sym_DASH_EQ] = ACTIONS(4664), - [anon_sym_STAR_EQ] = ACTIONS(4664), - [anon_sym_SLASH_EQ] = ACTIONS(4664), - [anon_sym_PERCENT_EQ] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4662), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [3054] = { + [sym__alpha_identifier] = ACTIONS(4597), + [anon_sym_AT] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4597), + [anon_sym_LBRACK] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_RBRACE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_where] = ACTIONS(4597), + [anon_sym_object] = ACTIONS(4597), + [anon_sym_fun] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_get] = ACTIONS(4597), + [anon_sym_set] = ACTIONS(4597), + [anon_sym_this] = ACTIONS(4597), + [anon_sym_super] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4597), + [sym_label] = ACTIONS(4597), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4599), + [anon_sym_AMP_AMP] = ACTIONS(4599), + [anon_sym_PIPE_PIPE] = ACTIONS(4599), + [anon_sym_null] = ACTIONS(4597), + [anon_sym_if] = ACTIONS(4597), + [anon_sym_else] = ACTIONS(4597), + [anon_sym_when] = ACTIONS(4597), + [anon_sym_try] = ACTIONS(4597), + [anon_sym_throw] = ACTIONS(4597), + [anon_sym_return] = ACTIONS(4597), + [anon_sym_continue] = ACTIONS(4597), + [anon_sym_break] = ACTIONS(4597), + [anon_sym_COLON_COLON] = ACTIONS(4599), + [anon_sym_PLUS_EQ] = ACTIONS(4599), + [anon_sym_DASH_EQ] = ACTIONS(4599), + [anon_sym_STAR_EQ] = ACTIONS(4599), + [anon_sym_SLASH_EQ] = ACTIONS(4599), + [anon_sym_PERCENT_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4599), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_BANGin] = ACTIONS(4599), + [anon_sym_is] = ACTIONS(4597), + [anon_sym_BANGis] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4597), + [anon_sym_PERCENT] = ACTIONS(4597), + [anon_sym_as_QMARK] = ACTIONS(4599), + [anon_sym_PLUS_PLUS] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4597), + [anon_sym_BANG_BANG] = ACTIONS(4599), + [anon_sym_data] = ACTIONS(4597), + [anon_sym_inner] = ACTIONS(4597), + [anon_sym_expect] = ACTIONS(4597), + [anon_sym_actual] = ACTIONS(4597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [anon_sym_return_AT] = ACTIONS(4599), + [anon_sym_continue_AT] = ACTIONS(4599), + [anon_sym_break_AT] = ACTIONS(4599), + [sym_real_literal] = ACTIONS(4599), + [sym_integer_literal] = ACTIONS(4597), + [sym_hex_literal] = ACTIONS(4599), + [sym_bin_literal] = ACTIONS(4599), + [anon_sym_true] = ACTIONS(4597), + [anon_sym_false] = ACTIONS(4597), + [anon_sym_SQUOTE] = ACTIONS(4599), + [sym__backtick_identifier] = ACTIONS(4599), + [sym__automatic_semicolon] = ACTIONS(4599), + [sym_safe_nav] = ACTIONS(4599), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4664), - }, - [3043] = { - [sym_class_body] = STATE(3322), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym__string_start] = ACTIONS(4599), }, - [3044] = { - [sym__alpha_identifier] = ACTIONS(4589), - [anon_sym_AT] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_as] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4589), - [anon_sym_where] = ACTIONS(4589), - [anon_sym_object] = ACTIONS(4589), - [anon_sym_fun] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_get] = ACTIONS(4589), - [anon_sym_set] = ACTIONS(4589), - [anon_sym_this] = ACTIONS(4589), - [anon_sym_super] = ACTIONS(4589), - [anon_sym_STAR] = ACTIONS(4589), - [sym_label] = ACTIONS(4589), - [anon_sym_in] = ACTIONS(4589), - [anon_sym_DOT_DOT] = ACTIONS(4591), - [anon_sym_QMARK_COLON] = ACTIONS(4591), - [anon_sym_AMP_AMP] = ACTIONS(4591), - [anon_sym_PIPE_PIPE] = ACTIONS(4591), - [anon_sym_null] = ACTIONS(4589), - [anon_sym_if] = ACTIONS(4589), - [anon_sym_else] = ACTIONS(4589), - [anon_sym_when] = ACTIONS(4589), - [anon_sym_try] = ACTIONS(4589), - [anon_sym_throw] = ACTIONS(4589), - [anon_sym_return] = ACTIONS(4589), - [anon_sym_continue] = ACTIONS(4589), - [anon_sym_break] = ACTIONS(4589), - [anon_sym_COLON_COLON] = ACTIONS(4591), - [anon_sym_PLUS_EQ] = ACTIONS(4591), - [anon_sym_DASH_EQ] = ACTIONS(4591), - [anon_sym_STAR_EQ] = ACTIONS(4591), - [anon_sym_SLASH_EQ] = ACTIONS(4591), - [anon_sym_PERCENT_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4591), - [anon_sym_LT_EQ] = ACTIONS(4591), - [anon_sym_GT_EQ] = ACTIONS(4591), - [anon_sym_BANGin] = ACTIONS(4591), - [anon_sym_is] = ACTIONS(4589), - [anon_sym_BANGis] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4589), - [anon_sym_PERCENT] = ACTIONS(4589), - [anon_sym_as_QMARK] = ACTIONS(4591), - [anon_sym_PLUS_PLUS] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4589), - [anon_sym_BANG_BANG] = ACTIONS(4591), - [anon_sym_data] = ACTIONS(4589), - [anon_sym_inner] = ACTIONS(4589), - [anon_sym_expect] = ACTIONS(4589), - [anon_sym_actual] = ACTIONS(4589), + [3055] = { + [sym__alpha_identifier] = ACTIONS(4601), + [anon_sym_AT] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4603), + [anon_sym_RBRACK] = ACTIONS(4603), + [anon_sym_as] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4601), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_RBRACE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_RPAREN] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_where] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_get] = ACTIONS(4601), + [anon_sym_set] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4601), + [anon_sym_DASH_GT] = ACTIONS(4603), + [sym_label] = ACTIONS(4603), + [anon_sym_in] = ACTIONS(4601), + [anon_sym_while] = ACTIONS(4601), + [anon_sym_DOT_DOT] = ACTIONS(4603), + [anon_sym_QMARK_COLON] = ACTIONS(4603), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4603), + [anon_sym_else] = ACTIONS(4601), + [anon_sym_COLON_COLON] = ACTIONS(4603), + [anon_sym_PLUS_EQ] = ACTIONS(4603), + [anon_sym_DASH_EQ] = ACTIONS(4603), + [anon_sym_STAR_EQ] = ACTIONS(4603), + [anon_sym_SLASH_EQ] = ACTIONS(4603), + [anon_sym_PERCENT_EQ] = ACTIONS(4603), + [anon_sym_BANG_EQ] = ACTIONS(4601), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4603), + [anon_sym_EQ_EQ] = ACTIONS(4601), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4603), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_BANGin] = ACTIONS(4603), + [anon_sym_is] = ACTIONS(4601), + [anon_sym_BANGis] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4601), + [anon_sym_PERCENT] = ACTIONS(4601), + [anon_sym_as_QMARK] = ACTIONS(4603), + [anon_sym_PLUS_PLUS] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4603), + [anon_sym_BANG_BANG] = ACTIONS(4603), + [anon_sym_suspend] = ACTIONS(4601), + [anon_sym_sealed] = ACTIONS(4601), + [anon_sym_annotation] = ACTIONS(4601), + [anon_sym_data] = ACTIONS(4601), + [anon_sym_inner] = ACTIONS(4601), + [anon_sym_override] = ACTIONS(4601), + [anon_sym_lateinit] = ACTIONS(4601), + [anon_sym_public] = ACTIONS(4601), + [anon_sym_private] = ACTIONS(4601), + [anon_sym_internal] = ACTIONS(4601), + [anon_sym_protected] = ACTIONS(4601), + [anon_sym_tailrec] = ACTIONS(4601), + [anon_sym_operator] = ACTIONS(4601), + [anon_sym_infix] = ACTIONS(4601), + [anon_sym_inline] = ACTIONS(4601), + [anon_sym_external] = ACTIONS(4601), + [sym_property_modifier] = ACTIONS(4601), + [anon_sym_abstract] = ACTIONS(4601), + [anon_sym_final] = ACTIONS(4601), + [anon_sym_open] = ACTIONS(4601), + [anon_sym_vararg] = ACTIONS(4601), + [anon_sym_noinline] = ACTIONS(4601), + [anon_sym_crossinline] = ACTIONS(4601), + [anon_sym_expect] = ACTIONS(4601), + [anon_sym_actual] = ACTIONS(4601), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4591), - [anon_sym_continue_AT] = ACTIONS(4591), - [anon_sym_break_AT] = ACTIONS(4591), - [sym_real_literal] = ACTIONS(4591), - [sym_integer_literal] = ACTIONS(4589), - [sym_hex_literal] = ACTIONS(4591), - [sym_bin_literal] = ACTIONS(4591), - [anon_sym_true] = ACTIONS(4589), - [anon_sym_false] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4591), - [sym__backtick_identifier] = ACTIONS(4591), - [sym__automatic_semicolon] = ACTIONS(4591), - [sym_safe_nav] = ACTIONS(4591), + [sym__backtick_identifier] = ACTIONS(4603), + [sym_safe_nav] = ACTIONS(4603), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4591), }, - [3045] = { - [sym_type_constraints] = STATE(3542), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3056] = { + [sym_type_constraints] = STATE(3618), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, - [3046] = { - [sym__alpha_identifier] = ACTIONS(4698), - [anon_sym_AT] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4700), - [anon_sym_RBRACK] = ACTIONS(4700), - [anon_sym_as] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_RBRACE] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(4700), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_RPAREN] = ACTIONS(4700), - [anon_sym_by] = ACTIONS(4698), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_where] = ACTIONS(4698), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_get] = ACTIONS(4698), - [anon_sym_set] = ACTIONS(4698), - [anon_sym_STAR] = ACTIONS(4698), - [anon_sym_DASH_GT] = ACTIONS(4700), - [sym_label] = ACTIONS(4700), - [anon_sym_in] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_DOT_DOT] = ACTIONS(4700), - [anon_sym_QMARK_COLON] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_else] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4700), - [anon_sym_PLUS_EQ] = ACTIONS(4700), - [anon_sym_DASH_EQ] = ACTIONS(4700), - [anon_sym_STAR_EQ] = ACTIONS(4700), - [anon_sym_SLASH_EQ] = ACTIONS(4700), - [anon_sym_PERCENT_EQ] = ACTIONS(4700), - [anon_sym_BANG_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4700), - [anon_sym_is] = ACTIONS(4698), - [anon_sym_BANGis] = ACTIONS(4700), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_SLASH] = ACTIONS(4698), - [anon_sym_PERCENT] = ACTIONS(4698), - [anon_sym_as_QMARK] = ACTIONS(4700), - [anon_sym_PLUS_PLUS] = ACTIONS(4700), - [anon_sym_DASH_DASH] = ACTIONS(4700), - [anon_sym_BANG_BANG] = ACTIONS(4700), - [anon_sym_suspend] = ACTIONS(4698), - [anon_sym_sealed] = ACTIONS(4698), - [anon_sym_annotation] = ACTIONS(4698), - [anon_sym_data] = ACTIONS(4698), - [anon_sym_inner] = ACTIONS(4698), - [anon_sym_override] = ACTIONS(4698), - [anon_sym_lateinit] = ACTIONS(4698), - [anon_sym_public] = ACTIONS(4698), - [anon_sym_private] = ACTIONS(4698), - [anon_sym_internal] = ACTIONS(4698), - [anon_sym_protected] = ACTIONS(4698), - [anon_sym_tailrec] = ACTIONS(4698), - [anon_sym_operator] = ACTIONS(4698), - [anon_sym_infix] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_external] = ACTIONS(4698), - [sym_property_modifier] = ACTIONS(4698), - [anon_sym_abstract] = ACTIONS(4698), - [anon_sym_final] = ACTIONS(4698), - [anon_sym_open] = ACTIONS(4698), - [anon_sym_vararg] = ACTIONS(4698), - [anon_sym_noinline] = ACTIONS(4698), - [anon_sym_crossinline] = ACTIONS(4698), - [anon_sym_expect] = ACTIONS(4698), - [anon_sym_actual] = ACTIONS(4698), + [3057] = { + [sym_enum_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [3058] = { + [sym_type_constraints] = STATE(3619), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6499), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + }, + [3059] = { + [sym_class_body] = STATE(3434), + [sym__alpha_identifier] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_RBRACK] = ACTIONS(4688), + [anon_sym_as] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_RPAREN] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_where] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4686), + [anon_sym_STAR] = ACTIONS(4686), + [anon_sym_DASH_GT] = ACTIONS(4688), + [sym_label] = ACTIONS(4688), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4688), + [anon_sym_QMARK_COLON] = ACTIONS(4688), + [anon_sym_AMP_AMP] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4688), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_PERCENT_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_BANGin] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_BANGis] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4688), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_BANG_BANG] = ACTIONS(4688), + [anon_sym_suspend] = ACTIONS(4686), + [anon_sym_sealed] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4686), + [anon_sym_inner] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_lateinit] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_protected] = ACTIONS(4686), + [anon_sym_tailrec] = ACTIONS(4686), + [anon_sym_operator] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_inline] = ACTIONS(4686), + [anon_sym_external] = ACTIONS(4686), + [sym_property_modifier] = ACTIONS(4686), + [anon_sym_abstract] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_vararg] = ACTIONS(4686), + [anon_sym_noinline] = ACTIONS(4686), + [anon_sym_crossinline] = ACTIONS(4686), + [anon_sym_expect] = ACTIONS(4686), + [anon_sym_actual] = ACTIONS(4686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4700), - [sym_safe_nav] = ACTIONS(4700), + [sym__backtick_identifier] = ACTIONS(4688), + [sym_safe_nav] = ACTIONS(4688), [sym_multiline_comment] = ACTIONS(3), }, - [3047] = { - [sym_class_body] = STATE(3220), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_object] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_this] = ACTIONS(4400), - [anon_sym_super] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4400), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_when] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_throw] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4402), - [anon_sym_continue_AT] = ACTIONS(4402), - [anon_sym_break_AT] = ACTIONS(4402), - [sym_real_literal] = ACTIONS(4402), - [sym_integer_literal] = ACTIONS(4400), - [sym_hex_literal] = ACTIONS(4402), - [sym_bin_literal] = ACTIONS(4402), - [anon_sym_true] = ACTIONS(4400), - [anon_sym_false] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4402), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4402), + [3060] = { + [aux_sym_type_constraints_repeat1] = STATE(3040), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [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(6485), + [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_DOT] = 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_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), + [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), }, - [3048] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_as] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(4648), - [anon_sym_LBRACE] = ACTIONS(4650), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4650), - [anon_sym_COMMA] = ACTIONS(4650), - [anon_sym_LT] = ACTIONS(4648), - [anon_sym_GT] = ACTIONS(4648), - [anon_sym_where] = ACTIONS(4648), - [anon_sym_object] = ACTIONS(4648), - [anon_sym_fun] = ACTIONS(4648), - [anon_sym_DOT] = ACTIONS(4648), - [anon_sym_SEMI] = ACTIONS(4650), - [anon_sym_get] = ACTIONS(4648), - [anon_sym_set] = ACTIONS(4648), - [anon_sym_this] = ACTIONS(4648), - [anon_sym_super] = ACTIONS(4648), - [anon_sym_STAR] = ACTIONS(4648), - [sym_label] = ACTIONS(4648), - [anon_sym_in] = ACTIONS(4648), - [anon_sym_DOT_DOT] = ACTIONS(4650), - [anon_sym_QMARK_COLON] = ACTIONS(4650), - [anon_sym_AMP_AMP] = ACTIONS(4650), - [anon_sym_PIPE_PIPE] = ACTIONS(4650), - [anon_sym_null] = ACTIONS(4648), - [anon_sym_if] = ACTIONS(4648), - [anon_sym_else] = ACTIONS(4648), - [anon_sym_when] = ACTIONS(4648), - [anon_sym_try] = ACTIONS(4648), - [anon_sym_throw] = ACTIONS(4648), - [anon_sym_return] = ACTIONS(4648), - [anon_sym_continue] = ACTIONS(4648), - [anon_sym_break] = ACTIONS(4648), - [anon_sym_COLON_COLON] = ACTIONS(4650), - [anon_sym_PLUS_EQ] = ACTIONS(4650), - [anon_sym_DASH_EQ] = ACTIONS(4650), - [anon_sym_STAR_EQ] = ACTIONS(4650), - [anon_sym_SLASH_EQ] = ACTIONS(4650), - [anon_sym_PERCENT_EQ] = ACTIONS(4650), - [anon_sym_BANG_EQ] = ACTIONS(4648), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), - [anon_sym_EQ_EQ] = ACTIONS(4648), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), - [anon_sym_LT_EQ] = ACTIONS(4650), - [anon_sym_GT_EQ] = ACTIONS(4650), - [anon_sym_BANGin] = ACTIONS(4650), - [anon_sym_is] = ACTIONS(4648), - [anon_sym_BANGis] = ACTIONS(4650), - [anon_sym_PLUS] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_as_QMARK] = ACTIONS(4650), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_BANG] = ACTIONS(4648), - [anon_sym_BANG_BANG] = ACTIONS(4650), - [anon_sym_data] = ACTIONS(4648), - [anon_sym_inner] = ACTIONS(4648), - [anon_sym_expect] = ACTIONS(4648), - [anon_sym_actual] = ACTIONS(4648), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4650), - [anon_sym_continue_AT] = ACTIONS(4650), - [anon_sym_break_AT] = ACTIONS(4650), - [sym_real_literal] = ACTIONS(4650), - [sym_integer_literal] = ACTIONS(4648), - [sym_hex_literal] = ACTIONS(4650), - [sym_bin_literal] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4648), - [anon_sym_false] = ACTIONS(4648), - [anon_sym_SQUOTE] = ACTIONS(4650), - [sym__backtick_identifier] = ACTIONS(4650), - [sym__automatic_semicolon] = ACTIONS(4650), - [sym_safe_nav] = ACTIONS(4650), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4650), + [3061] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_RBRACK] = ACTIONS(4684), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_DASH_GT] = ACTIONS(4684), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), }, - [3049] = { - [sym__alpha_identifier] = ACTIONS(4694), - [anon_sym_AT] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_RBRACK] = ACTIONS(4696), - [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_by] = ACTIONS(4694), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4694), - [anon_sym_DOT] = 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_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), + [3062] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [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_by] = ACTIONS(4581), + [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_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), + [sym_multiline_comment] = ACTIONS(3), + }, + [3063] = { + [sym__alpha_identifier] = ACTIONS(4668), + [anon_sym_AT] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_RBRACK] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_by] = ACTIONS(4668), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_where] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(4668), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4668), + [anon_sym_DASH_GT] = ACTIONS(4670), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4670), + [anon_sym_QMARK_COLON] = ACTIONS(4670), + [anon_sym_AMP_AMP] = ACTIONS(4670), + [anon_sym_PIPE_PIPE] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_COLON_COLON] = ACTIONS(4670), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_PERCENT_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4668), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ] = ACTIONS(4668), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4670), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_BANGin] = ACTIONS(4670), + [anon_sym_is] = ACTIONS(4668), + [anon_sym_BANGis] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_SLASH] = ACTIONS(4668), + [anon_sym_PERCENT] = ACTIONS(4668), + [anon_sym_as_QMARK] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4670), + [anon_sym_suspend] = ACTIONS(4668), + [anon_sym_sealed] = ACTIONS(4668), + [anon_sym_annotation] = ACTIONS(4668), + [anon_sym_data] = ACTIONS(4668), + [anon_sym_inner] = ACTIONS(4668), + [anon_sym_override] = ACTIONS(4668), + [anon_sym_lateinit] = ACTIONS(4668), + [anon_sym_public] = ACTIONS(4668), + [anon_sym_private] = ACTIONS(4668), + [anon_sym_internal] = ACTIONS(4668), + [anon_sym_protected] = ACTIONS(4668), + [anon_sym_tailrec] = ACTIONS(4668), + [anon_sym_operator] = ACTIONS(4668), + [anon_sym_infix] = ACTIONS(4668), + [anon_sym_inline] = ACTIONS(4668), + [anon_sym_external] = ACTIONS(4668), + [sym_property_modifier] = ACTIONS(4668), + [anon_sym_abstract] = ACTIONS(4668), + [anon_sym_final] = ACTIONS(4668), + [anon_sym_open] = ACTIONS(4668), + [anon_sym_vararg] = ACTIONS(4668), + [anon_sym_noinline] = ACTIONS(4668), + [anon_sym_crossinline] = ACTIONS(4668), + [anon_sym_expect] = ACTIONS(4668), + [anon_sym_actual] = ACTIONS(4668), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4670), + [sym_safe_nav] = ACTIONS(4670), + [sym_multiline_comment] = ACTIONS(3), + }, + [3064] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(6373), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = 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_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(4696), - [sym_safe_nav] = ACTIONS(4696), + [sym__backtick_identifier] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), [sym_multiline_comment] = ACTIONS(3), }, - [3050] = { - [sym_type_constraints] = STATE(3509), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6467), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3065] = { + [sym__alpha_identifier] = ACTIONS(4708), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_RBRACK] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_where] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(4708), + [anon_sym_set] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [anon_sym_DASH_GT] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4708), + [anon_sym_while] = ACTIONS(4708), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_QMARK_COLON] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4708), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_STAR_EQ] = ACTIONS(4710), + [anon_sym_SLASH_EQ] = ACTIONS(4710), + [anon_sym_PERCENT_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_BANGin] = ACTIONS(4710), + [anon_sym_is] = ACTIONS(4708), + [anon_sym_BANGis] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_PERCENT] = ACTIONS(4708), + [anon_sym_as_QMARK] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4710), + [anon_sym_suspend] = ACTIONS(4708), + [anon_sym_sealed] = ACTIONS(4708), + [anon_sym_annotation] = ACTIONS(4708), + [anon_sym_data] = ACTIONS(4708), + [anon_sym_inner] = ACTIONS(4708), + [anon_sym_override] = ACTIONS(4708), + [anon_sym_lateinit] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(4708), + [anon_sym_internal] = ACTIONS(4708), + [anon_sym_protected] = ACTIONS(4708), + [anon_sym_tailrec] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(4708), + [anon_sym_infix] = ACTIONS(4708), + [anon_sym_inline] = ACTIONS(4708), + [anon_sym_external] = ACTIONS(4708), + [sym_property_modifier] = ACTIONS(4708), + [anon_sym_abstract] = ACTIONS(4708), + [anon_sym_final] = ACTIONS(4708), + [anon_sym_open] = ACTIONS(4708), + [anon_sym_vararg] = ACTIONS(4708), + [anon_sym_noinline] = ACTIONS(4708), + [anon_sym_crossinline] = ACTIONS(4708), + [anon_sym_expect] = ACTIONS(4708), + [anon_sym_actual] = ACTIONS(4708), + [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(6501), + [sym__backtick_identifier] = ACTIONS(4710), + [sym_safe_nav] = ACTIONS(4710), [sym_multiline_comment] = ACTIONS(3), }, - [3051] = { + [3066] = { + [sym__alpha_identifier] = ACTIONS(4593), + [anon_sym_AT] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_RBRACK] = ACTIONS(4595), + [anon_sym_as] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4593), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_RPAREN] = ACTIONS(4595), + [anon_sym_by] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_where] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_get] = ACTIONS(4593), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4593), + [anon_sym_DASH_GT] = ACTIONS(4595), + [sym_label] = ACTIONS(4595), + [anon_sym_in] = ACTIONS(4593), + [anon_sym_while] = ACTIONS(4593), + [anon_sym_DOT_DOT] = ACTIONS(4595), + [anon_sym_QMARK_COLON] = ACTIONS(4595), + [anon_sym_AMP_AMP] = ACTIONS(4595), + [anon_sym_PIPE_PIPE] = ACTIONS(4595), + [anon_sym_else] = ACTIONS(4593), + [anon_sym_COLON_COLON] = ACTIONS(4595), + [anon_sym_PLUS_EQ] = ACTIONS(4595), + [anon_sym_DASH_EQ] = ACTIONS(4595), + [anon_sym_STAR_EQ] = ACTIONS(4595), + [anon_sym_SLASH_EQ] = ACTIONS(4595), + [anon_sym_PERCENT_EQ] = ACTIONS(4595), + [anon_sym_BANG_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), + [anon_sym_EQ_EQ] = ACTIONS(4593), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_BANGin] = ACTIONS(4595), + [anon_sym_is] = ACTIONS(4593), + [anon_sym_BANGis] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4593), + [anon_sym_PERCENT] = ACTIONS(4593), + [anon_sym_as_QMARK] = ACTIONS(4595), + [anon_sym_PLUS_PLUS] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4595), + [anon_sym_BANG_BANG] = ACTIONS(4595), + [anon_sym_suspend] = ACTIONS(4593), + [anon_sym_sealed] = ACTIONS(4593), + [anon_sym_annotation] = ACTIONS(4593), + [anon_sym_data] = ACTIONS(4593), + [anon_sym_inner] = ACTIONS(4593), + [anon_sym_override] = ACTIONS(4593), + [anon_sym_lateinit] = ACTIONS(4593), + [anon_sym_public] = ACTIONS(4593), + [anon_sym_private] = ACTIONS(4593), + [anon_sym_internal] = ACTIONS(4593), + [anon_sym_protected] = ACTIONS(4593), + [anon_sym_tailrec] = ACTIONS(4593), + [anon_sym_operator] = ACTIONS(4593), + [anon_sym_infix] = ACTIONS(4593), + [anon_sym_inline] = ACTIONS(4593), + [anon_sym_external] = ACTIONS(4593), + [sym_property_modifier] = ACTIONS(4593), + [anon_sym_abstract] = ACTIONS(4593), + [anon_sym_final] = ACTIONS(4593), + [anon_sym_open] = ACTIONS(4593), + [anon_sym_vararg] = ACTIONS(4593), + [anon_sym_noinline] = ACTIONS(4593), + [anon_sym_crossinline] = ACTIONS(4593), + [anon_sym_expect] = ACTIONS(4593), + [anon_sym_actual] = ACTIONS(4593), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4595), + [sym_safe_nav] = ACTIONS(4595), + [sym_multiline_comment] = ACTIONS(3), + }, + [3067] = { + [sym_type_constraints] = STATE(3620), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3068] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3068), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [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(6505), + [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_DOT] = 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_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), + [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_class_body] = STATE(3208), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [3070] = { + [sym_enum_class_body] = STATE(3391), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_RBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [anon_sym_DASH_GT] = ACTIONS(4625), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_while] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + }, + [3071] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3092), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3072] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3004), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3073] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3047), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(6489), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_object] = ACTIONS(4646), + [anon_sym_fun] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_this] = ACTIONS(4646), + [anon_sym_super] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4646), + [anon_sym_if] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_when] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4646), + [anon_sym_throw] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4646), + [anon_sym_continue] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4648), + [anon_sym_DASH_EQ] = ACTIONS(4648), + [anon_sym_STAR_EQ] = ACTIONS(4648), + [anon_sym_SLASH_EQ] = ACTIONS(4648), + [anon_sym_PERCENT_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4648), + [anon_sym_continue_AT] = ACTIONS(4648), + [anon_sym_break_AT] = ACTIONS(4648), + [sym_real_literal] = ACTIONS(4648), + [sym_integer_literal] = ACTIONS(4646), + [sym_hex_literal] = ACTIONS(4648), + [sym_bin_literal] = ACTIONS(4648), + [anon_sym_true] = ACTIONS(4646), + [anon_sym_false] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4648), + [sym__automatic_semicolon] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4648), + }, + [3074] = { + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4702), + [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_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_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), + [sym_multiline_comment] = ACTIONS(3), + }, + [3075] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3045), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3076] = { + [aux_sym_user_type_repeat1] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_EQ] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_COMMA] = ACTIONS(4273), + [anon_sym_by] = ACTIONS(4271), + [anon_sym_where] = ACTIONS(4271), + [anon_sym_object] = ACTIONS(4271), + [anon_sym_fun] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(6508), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym_get] = ACTIONS(4271), + [anon_sym_set] = ACTIONS(4271), + [anon_sym_this] = ACTIONS(4271), + [anon_sym_super] = ACTIONS(4271), + [sym__quest] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [sym_label] = ACTIONS(4271), + [anon_sym_in] = ACTIONS(4271), + [anon_sym_null] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_else] = ACTIONS(4271), + [anon_sym_when] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_BANGin] = ACTIONS(4273), + [anon_sym_is] = ACTIONS(4271), + [anon_sym_BANGis] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_suspend] = ACTIONS(4271), + [anon_sym_sealed] = ACTIONS(4271), + [anon_sym_annotation] = ACTIONS(4271), + [anon_sym_data] = ACTIONS(4271), + [anon_sym_inner] = ACTIONS(4271), + [anon_sym_override] = ACTIONS(4271), + [anon_sym_lateinit] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_internal] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_tailrec] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_infix] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_external] = ACTIONS(4271), + [sym_property_modifier] = ACTIONS(4271), + [anon_sym_abstract] = ACTIONS(4271), + [anon_sym_final] = ACTIONS(4271), + [anon_sym_open] = ACTIONS(4271), + [anon_sym_vararg] = ACTIONS(4271), + [anon_sym_noinline] = ACTIONS(4271), + [anon_sym_crossinline] = ACTIONS(4271), + [anon_sym_expect] = ACTIONS(4271), + [anon_sym_actual] = ACTIONS(4271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4273), + [anon_sym_continue_AT] = ACTIONS(4273), + [anon_sym_break_AT] = ACTIONS(4273), + [sym_real_literal] = ACTIONS(4273), + [sym_integer_literal] = ACTIONS(4271), + [sym_hex_literal] = ACTIONS(4273), + [sym_bin_literal] = ACTIONS(4273), + [anon_sym_true] = ACTIONS(4271), + [anon_sym_false] = ACTIONS(4271), + [anon_sym_SQUOTE] = ACTIONS(4273), + [sym__backtick_identifier] = ACTIONS(4273), + [sym__automatic_semicolon] = ACTIONS(4273), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4273), + }, + [3077] = { + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_RBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(4508), + [anon_sym_RPAREN] = ACTIONS(4508), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [anon_sym_DASH_GT] = ACTIONS(4508), + [sym_label] = ACTIONS(4508), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_while] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + }, + [3078] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3015), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3079] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(2990), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3080] = { + [sym_enum_class_body] = STATE(3396), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_RBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_DASH_GT] = ACTIONS(4484), + [sym_label] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_while] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + }, + [3081] = { + [sym_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [3082] = { + [sym_class_body] = STATE(3278), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_RBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_DASH_GT] = ACTIONS(4478), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + }, + [3083] = { + [sym_function_body] = STATE(3439), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6510), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [3084] = { + [sym_enum_class_body] = STATE(3130), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), + }, + [3085] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_RPAREN] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3088), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3086] = { + [sym_class_body] = STATE(3132), [sym__alpha_identifier] = ACTIONS(4686), [anon_sym_AT] = ACTIONS(4688), - [anon_sym_COLON] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4688), [anon_sym_as] = ACTIONS(4686), [anon_sym_EQ] = ACTIONS(4686), - [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(3172), [anon_sym_RBRACE] = ACTIONS(4688), [anon_sym_LPAREN] = ACTIONS(4688), [anon_sym_COMMA] = ACTIONS(4688), @@ -346151,93 +349133,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4688), }, - [3052] = { - [sym__alpha_identifier] = ACTIONS(4521), - [anon_sym_AT] = ACTIONS(4523), - [anon_sym_COLON] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_as] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(4521), - [anon_sym_LBRACE] = ACTIONS(4523), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_LT] = ACTIONS(4521), - [anon_sym_GT] = ACTIONS(4521), - [anon_sym_where] = ACTIONS(4521), - [anon_sym_DOT] = ACTIONS(4521), - [anon_sym_SEMI] = ACTIONS(4523), - [anon_sym_get] = ACTIONS(4521), - [anon_sym_set] = ACTIONS(4521), - [anon_sym_STAR] = ACTIONS(4521), - [anon_sym_DASH_GT] = ACTIONS(4523), - [sym_label] = ACTIONS(4523), - [anon_sym_in] = ACTIONS(4521), - [anon_sym_while] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_QMARK_COLON] = ACTIONS(4523), - [anon_sym_AMP_AMP] = ACTIONS(4523), - [anon_sym_PIPE_PIPE] = ACTIONS(4523), - [anon_sym_else] = ACTIONS(4521), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(4523), - [anon_sym_DASH_EQ] = ACTIONS(4523), - [anon_sym_STAR_EQ] = ACTIONS(4523), - [anon_sym_SLASH_EQ] = ACTIONS(4523), - [anon_sym_PERCENT_EQ] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(4521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), - [anon_sym_EQ_EQ] = ACTIONS(4521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), - [anon_sym_LT_EQ] = ACTIONS(4523), - [anon_sym_GT_EQ] = ACTIONS(4523), - [anon_sym_BANGin] = ACTIONS(4523), - [anon_sym_is] = ACTIONS(4521), - [anon_sym_BANGis] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4521), - [anon_sym_DASH] = ACTIONS(4521), - [anon_sym_SLASH] = ACTIONS(4521), - [anon_sym_PERCENT] = ACTIONS(4521), - [anon_sym_as_QMARK] = ACTIONS(4523), - [anon_sym_PLUS_PLUS] = ACTIONS(4523), - [anon_sym_DASH_DASH] = ACTIONS(4523), - [anon_sym_BANG_BANG] = ACTIONS(4523), - [anon_sym_suspend] = ACTIONS(4521), - [anon_sym_sealed] = ACTIONS(4521), - [anon_sym_annotation] = ACTIONS(4521), - [anon_sym_data] = ACTIONS(4521), - [anon_sym_inner] = ACTIONS(4521), - [anon_sym_override] = ACTIONS(4521), - [anon_sym_lateinit] = ACTIONS(4521), - [anon_sym_public] = ACTIONS(4521), - [anon_sym_private] = ACTIONS(4521), - [anon_sym_internal] = ACTIONS(4521), - [anon_sym_protected] = ACTIONS(4521), - [anon_sym_tailrec] = ACTIONS(4521), - [anon_sym_operator] = ACTIONS(4521), - [anon_sym_infix] = ACTIONS(4521), - [anon_sym_inline] = ACTIONS(4521), - [anon_sym_external] = ACTIONS(4521), - [sym_property_modifier] = ACTIONS(4521), - [anon_sym_abstract] = ACTIONS(4521), - [anon_sym_final] = ACTIONS(4521), - [anon_sym_open] = ACTIONS(4521), - [anon_sym_vararg] = ACTIONS(4521), - [anon_sym_noinline] = ACTIONS(4521), - [anon_sym_crossinline] = ACTIONS(4521), - [anon_sym_expect] = ACTIONS(4521), - [anon_sym_actual] = ACTIONS(4521), + [3087] = { + [sym__alpha_identifier] = ACTIONS(4593), + [anon_sym_AT] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_as] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4593), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_by] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_where] = ACTIONS(4593), + [anon_sym_object] = ACTIONS(4593), + [anon_sym_fun] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_get] = ACTIONS(4593), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_this] = ACTIONS(4593), + [anon_sym_super] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4593), + [sym_label] = ACTIONS(4593), + [anon_sym_in] = ACTIONS(4593), + [anon_sym_DOT_DOT] = ACTIONS(4595), + [anon_sym_QMARK_COLON] = ACTIONS(4595), + [anon_sym_AMP_AMP] = ACTIONS(4595), + [anon_sym_PIPE_PIPE] = ACTIONS(4595), + [anon_sym_null] = ACTIONS(4593), + [anon_sym_if] = ACTIONS(4593), + [anon_sym_else] = ACTIONS(4593), + [anon_sym_when] = ACTIONS(4593), + [anon_sym_try] = ACTIONS(4593), + [anon_sym_throw] = ACTIONS(4593), + [anon_sym_return] = ACTIONS(4593), + [anon_sym_continue] = ACTIONS(4593), + [anon_sym_break] = ACTIONS(4593), + [anon_sym_COLON_COLON] = ACTIONS(4595), + [anon_sym_PLUS_EQ] = ACTIONS(4595), + [anon_sym_DASH_EQ] = ACTIONS(4595), + [anon_sym_STAR_EQ] = ACTIONS(4595), + [anon_sym_SLASH_EQ] = ACTIONS(4595), + [anon_sym_PERCENT_EQ] = ACTIONS(4595), + [anon_sym_BANG_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), + [anon_sym_EQ_EQ] = ACTIONS(4593), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_BANGin] = ACTIONS(4595), + [anon_sym_is] = ACTIONS(4593), + [anon_sym_BANGis] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4593), + [anon_sym_PERCENT] = ACTIONS(4593), + [anon_sym_as_QMARK] = ACTIONS(4595), + [anon_sym_PLUS_PLUS] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4593), + [anon_sym_BANG_BANG] = ACTIONS(4595), + [anon_sym_data] = ACTIONS(4593), + [anon_sym_inner] = ACTIONS(4593), + [anon_sym_expect] = ACTIONS(4593), + [anon_sym_actual] = ACTIONS(4593), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4523), - [sym_safe_nav] = ACTIONS(4523), + [anon_sym_return_AT] = ACTIONS(4595), + [anon_sym_continue_AT] = ACTIONS(4595), + [anon_sym_break_AT] = ACTIONS(4595), + [sym_real_literal] = ACTIONS(4595), + [sym_integer_literal] = ACTIONS(4593), + [sym_hex_literal] = ACTIONS(4595), + [sym_bin_literal] = ACTIONS(4595), + [anon_sym_true] = ACTIONS(4593), + [anon_sym_false] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4595), + [sym__backtick_identifier] = ACTIONS(4595), + [sym__automatic_semicolon] = ACTIONS(4595), + [sym_safe_nav] = ACTIONS(4595), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4595), }, - [3053] = { + [3088] = { + [sym_enum_class_body] = STATE(3175), + [sym__alpha_identifier] = ACTIONS(4619), + [anon_sym_AT] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_object] = ACTIONS(4619), + [anon_sym_fun] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_get] = ACTIONS(4619), + [anon_sym_set] = ACTIONS(4619), + [anon_sym_this] = ACTIONS(4619), + [anon_sym_super] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [sym_label] = ACTIONS(4619), + [anon_sym_in] = ACTIONS(4619), + [anon_sym_DOT_DOT] = ACTIONS(4621), + [anon_sym_QMARK_COLON] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_null] = ACTIONS(4619), + [anon_sym_if] = ACTIONS(4619), + [anon_sym_else] = ACTIONS(4619), + [anon_sym_when] = ACTIONS(4619), + [anon_sym_try] = ACTIONS(4619), + [anon_sym_throw] = ACTIONS(4619), + [anon_sym_return] = ACTIONS(4619), + [anon_sym_continue] = ACTIONS(4619), + [anon_sym_break] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4621), + [anon_sym_PLUS_EQ] = ACTIONS(4621), + [anon_sym_DASH_EQ] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(4621), + [anon_sym_SLASH_EQ] = ACTIONS(4621), + [anon_sym_PERCENT_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ] = ACTIONS(4619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ] = ACTIONS(4619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_as_QMARK] = ACTIONS(4621), + [anon_sym_PLUS_PLUS] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_BANG_BANG] = ACTIONS(4621), + [anon_sym_data] = ACTIONS(4619), + [anon_sym_inner] = ACTIONS(4619), + [anon_sym_expect] = ACTIONS(4619), + [anon_sym_actual] = ACTIONS(4619), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4621), + [anon_sym_continue_AT] = ACTIONS(4621), + [anon_sym_break_AT] = ACTIONS(4621), + [sym_real_literal] = ACTIONS(4621), + [sym_integer_literal] = ACTIONS(4619), + [sym_hex_literal] = ACTIONS(4621), + [sym_bin_literal] = ACTIONS(4621), + [anon_sym_true] = ACTIONS(4619), + [anon_sym_false] = ACTIONS(4619), + [anon_sym_SQUOTE] = ACTIONS(4621), + [sym__backtick_identifier] = ACTIONS(4621), + [sym__automatic_semicolon] = ACTIONS(4621), + [sym_safe_nav] = ACTIONS(4621), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4621), + }, + [3089] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3008), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3090] = { + [sym_enum_class_body] = STATE(3278), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_RBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_DASH_GT] = ACTIONS(4478), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + }, + [3091] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_DOT] = 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_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), + }, + [3092] = { [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), @@ -346247,6 +349560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(4587), [anon_sym_COMMA] = ACTIONS(4587), [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_by] = ACTIONS(4585), [anon_sym_LT] = ACTIONS(4585), [anon_sym_GT] = ACTIONS(4585), [anon_sym_where] = ACTIONS(4585), @@ -346317,3337 +349631,1096 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4587), [sym_multiline_comment] = ACTIONS(3), }, - [3054] = { - [sym_enum_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [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_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3055] = { - [sym_class_body] = STATE(3270), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [anon_sym_DASH_GT] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), + [3093] = { + [sym_class_body] = STATE(3134), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_object] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_this] = ACTIONS(4410), + [anon_sym_super] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4410), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_when] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_throw] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4412), + [anon_sym_continue_AT] = ACTIONS(4412), + [anon_sym_break_AT] = ACTIONS(4412), + [sym_real_literal] = ACTIONS(4412), + [sym_integer_literal] = ACTIONS(4410), + [sym_hex_literal] = ACTIONS(4412), + [sym_bin_literal] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4410), + [anon_sym_false] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4412), }, - [3056] = { - [sym__alpha_identifier] = ACTIONS(4589), - [anon_sym_AT] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_RBRACK] = ACTIONS(4591), - [anon_sym_as] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4589), - [anon_sym_where] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_get] = ACTIONS(4589), - [anon_sym_set] = ACTIONS(4589), - [anon_sym_STAR] = ACTIONS(4589), - [anon_sym_DASH_GT] = ACTIONS(4591), - [sym_label] = ACTIONS(4591), - [anon_sym_in] = ACTIONS(4589), - [anon_sym_while] = ACTIONS(4589), - [anon_sym_DOT_DOT] = ACTIONS(4591), - [anon_sym_QMARK_COLON] = ACTIONS(4591), - [anon_sym_AMP_AMP] = ACTIONS(4591), - [anon_sym_PIPE_PIPE] = ACTIONS(4591), - [anon_sym_else] = ACTIONS(4589), - [anon_sym_COLON_COLON] = ACTIONS(4591), - [anon_sym_PLUS_EQ] = ACTIONS(4591), - [anon_sym_DASH_EQ] = ACTIONS(4591), - [anon_sym_STAR_EQ] = ACTIONS(4591), - [anon_sym_SLASH_EQ] = ACTIONS(4591), - [anon_sym_PERCENT_EQ] = ACTIONS(4591), - [anon_sym_BANG_EQ] = ACTIONS(4589), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4591), - [anon_sym_EQ_EQ] = ACTIONS(4589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4591), - [anon_sym_LT_EQ] = ACTIONS(4591), - [anon_sym_GT_EQ] = ACTIONS(4591), - [anon_sym_BANGin] = ACTIONS(4591), - [anon_sym_is] = ACTIONS(4589), - [anon_sym_BANGis] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4589), - [anon_sym_PERCENT] = ACTIONS(4589), - [anon_sym_as_QMARK] = ACTIONS(4591), - [anon_sym_PLUS_PLUS] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4591), - [anon_sym_BANG_BANG] = ACTIONS(4591), - [anon_sym_suspend] = ACTIONS(4589), - [anon_sym_sealed] = ACTIONS(4589), - [anon_sym_annotation] = ACTIONS(4589), - [anon_sym_data] = ACTIONS(4589), - [anon_sym_inner] = ACTIONS(4589), - [anon_sym_override] = ACTIONS(4589), - [anon_sym_lateinit] = ACTIONS(4589), - [anon_sym_public] = ACTIONS(4589), - [anon_sym_private] = ACTIONS(4589), - [anon_sym_internal] = ACTIONS(4589), - [anon_sym_protected] = ACTIONS(4589), - [anon_sym_tailrec] = ACTIONS(4589), - [anon_sym_operator] = ACTIONS(4589), - [anon_sym_infix] = ACTIONS(4589), - [anon_sym_inline] = ACTIONS(4589), - [anon_sym_external] = ACTIONS(4589), - [sym_property_modifier] = ACTIONS(4589), - [anon_sym_abstract] = ACTIONS(4589), - [anon_sym_final] = ACTIONS(4589), - [anon_sym_open] = ACTIONS(4589), - [anon_sym_vararg] = ACTIONS(4589), - [anon_sym_noinline] = ACTIONS(4589), - [anon_sym_crossinline] = ACTIONS(4589), - [anon_sym_expect] = ACTIONS(4589), - [anon_sym_actual] = ACTIONS(4589), + [3094] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(2986), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4591), - [sym_safe_nav] = ACTIONS(4591), - [sym_multiline_comment] = ACTIONS(3), - }, - [3057] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [3058] = { - [sym_enum_class_body] = STATE(3261), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3059] = { - [aux_sym_type_constraints_repeat1] = STATE(3059), - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [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(6471), - [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_DOT] = 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_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), - [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), + [3095] = { + [sym_enum_class_body] = STATE(3135), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), }, - [3060] = { - [sym_enum_class_body] = STATE(3325), - [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(5169), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RPAREN] = ACTIONS(4672), - [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_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), + [3096] = { + [sym_enum_class_body] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_object] = ACTIONS(4498), + [anon_sym_fun] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_this] = ACTIONS(4498), + [anon_sym_super] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4498), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_when] = ACTIONS(4498), + [anon_sym_try] = ACTIONS(4498), + [anon_sym_throw] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4500), + [anon_sym_continue_AT] = ACTIONS(4500), + [anon_sym_break_AT] = ACTIONS(4500), + [sym_real_literal] = ACTIONS(4500), + [sym_integer_literal] = ACTIONS(4498), + [sym_hex_literal] = ACTIONS(4500), + [sym_bin_literal] = ACTIONS(4500), + [anon_sym_true] = ACTIONS(4498), + [anon_sym_false] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4500), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4500), }, - [3061] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [3097] = { + [sym_class_body] = STATE(3165), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_object] = ACTIONS(4623), + [anon_sym_fun] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_this] = ACTIONS(4623), + [anon_sym_super] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_null] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_try] = ACTIONS(4623), + [anon_sym_throw] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4625), + [anon_sym_continue_AT] = ACTIONS(4625), + [anon_sym_break_AT] = ACTIONS(4625), + [sym_real_literal] = ACTIONS(4625), + [sym_integer_literal] = ACTIONS(4623), + [sym_hex_literal] = ACTIONS(4625), + [sym_bin_literal] = ACTIONS(4625), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4625), }, - [3062] = { - [sym_type_constraints] = STATE(3513), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6474), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [3098] = { + [sym_class_body] = STATE(3415), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_RBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_RPAREN] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_DASH_GT] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_while] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_suspend] = ACTIONS(4642), + [anon_sym_sealed] = ACTIONS(4642), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_lateinit] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_tailrec] = ACTIONS(4642), + [anon_sym_operator] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_inline] = ACTIONS(4642), + [anon_sym_external] = ACTIONS(4642), + [sym_property_modifier] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_vararg] = ACTIONS(4642), + [anon_sym_noinline] = ACTIONS(4642), + [anon_sym_crossinline] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), [sym_multiline_comment] = ACTIONS(3), }, - [3063] = { - [sym_class_body] = STATE(3253), - [sym__alpha_identifier] = ACTIONS(4533), - [anon_sym_AT] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_RBRACK] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_RPAREN] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SEMI] = ACTIONS(4535), - [anon_sym_get] = ACTIONS(4533), - [anon_sym_set] = ACTIONS(4533), - [anon_sym_STAR] = ACTIONS(4533), - [anon_sym_DASH_GT] = ACTIONS(4535), - [sym_label] = ACTIONS(4535), - [anon_sym_in] = ACTIONS(4533), - [anon_sym_while] = ACTIONS(4533), - [anon_sym_DOT_DOT] = ACTIONS(4535), - [anon_sym_QMARK_COLON] = ACTIONS(4535), - [anon_sym_AMP_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4535), - [anon_sym_else] = ACTIONS(4533), - [anon_sym_COLON_COLON] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ] = ACTIONS(4533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4535), - [anon_sym_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_EQ] = ACTIONS(4535), - [anon_sym_BANGin] = ACTIONS(4535), - [anon_sym_is] = ACTIONS(4533), - [anon_sym_BANGis] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4533), - [anon_sym_PERCENT] = ACTIONS(4533), - [anon_sym_as_QMARK] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_BANG_BANG] = ACTIONS(4535), - [anon_sym_suspend] = ACTIONS(4533), - [anon_sym_sealed] = ACTIONS(4533), - [anon_sym_annotation] = ACTIONS(4533), - [anon_sym_data] = ACTIONS(4533), - [anon_sym_inner] = ACTIONS(4533), - [anon_sym_override] = ACTIONS(4533), - [anon_sym_lateinit] = ACTIONS(4533), - [anon_sym_public] = ACTIONS(4533), - [anon_sym_private] = ACTIONS(4533), - [anon_sym_internal] = ACTIONS(4533), - [anon_sym_protected] = ACTIONS(4533), - [anon_sym_tailrec] = ACTIONS(4533), - [anon_sym_operator] = ACTIONS(4533), - [anon_sym_infix] = ACTIONS(4533), - [anon_sym_inline] = ACTIONS(4533), - [anon_sym_external] = ACTIONS(4533), - [sym_property_modifier] = ACTIONS(4533), - [anon_sym_abstract] = ACTIONS(4533), - [anon_sym_final] = ACTIONS(4533), - [anon_sym_open] = ACTIONS(4533), - [anon_sym_vararg] = ACTIONS(4533), - [anon_sym_noinline] = ACTIONS(4533), - [anon_sym_crossinline] = ACTIONS(4533), - [anon_sym_expect] = ACTIONS(4533), - [anon_sym_actual] = ACTIONS(4533), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4535), - [sym_safe_nav] = ACTIONS(4535), - [sym_multiline_comment] = ACTIONS(3), + [3099] = { + [sym__alpha_identifier] = ACTIONS(4605), + [anon_sym_AT] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4605), + [anon_sym_LBRACK] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4605), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_where] = ACTIONS(4605), + [anon_sym_object] = ACTIONS(4605), + [anon_sym_fun] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4605), + [anon_sym_set] = ACTIONS(4605), + [anon_sym_this] = ACTIONS(4605), + [anon_sym_super] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4605), + [sym_label] = ACTIONS(4605), + [anon_sym_in] = ACTIONS(4605), + [anon_sym_DOT_DOT] = ACTIONS(4607), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4607), + [anon_sym_PIPE_PIPE] = ACTIONS(4607), + [anon_sym_null] = ACTIONS(4605), + [anon_sym_if] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(4605), + [anon_sym_when] = ACTIONS(4605), + [anon_sym_try] = ACTIONS(4605), + [anon_sym_throw] = ACTIONS(4605), + [anon_sym_return] = ACTIONS(4605), + [anon_sym_continue] = ACTIONS(4605), + [anon_sym_break] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(4607), + [anon_sym_PLUS_EQ] = ACTIONS(4607), + [anon_sym_DASH_EQ] = ACTIONS(4607), + [anon_sym_STAR_EQ] = ACTIONS(4607), + [anon_sym_SLASH_EQ] = ACTIONS(4607), + [anon_sym_PERCENT_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4607), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_BANGin] = ACTIONS(4607), + [anon_sym_is] = ACTIONS(4605), + [anon_sym_BANGis] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4605), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4605), + [anon_sym_PERCENT] = ACTIONS(4605), + [anon_sym_as_QMARK] = ACTIONS(4607), + [anon_sym_PLUS_PLUS] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4605), + [anon_sym_BANG_BANG] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4605), + [anon_sym_inner] = ACTIONS(4605), + [anon_sym_expect] = ACTIONS(4605), + [anon_sym_actual] = ACTIONS(4605), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4607), + [anon_sym_continue_AT] = ACTIONS(4607), + [anon_sym_break_AT] = ACTIONS(4607), + [sym_real_literal] = ACTIONS(4607), + [sym_integer_literal] = ACTIONS(4605), + [sym_hex_literal] = ACTIONS(4607), + [sym_bin_literal] = ACTIONS(4607), + [anon_sym_true] = ACTIONS(4605), + [anon_sym_false] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4607), + [sym__backtick_identifier] = ACTIONS(4607), + [sym__automatic_semicolon] = ACTIONS(4607), + [sym_safe_nav] = ACTIONS(4607), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4607), }, - [3064] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4531), - [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_DOT] = 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_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), - [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] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3065), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [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(6476), - [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_DOT] = 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_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), - [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), - }, - [3066] = { - [sym__alpha_identifier] = ACTIONS(4601), - [anon_sym_AT] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4603), - [anon_sym_RBRACK] = ACTIONS(4603), - [anon_sym_as] = ACTIONS(4601), - [anon_sym_EQ] = ACTIONS(4601), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_RBRACE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_RPAREN] = ACTIONS(4603), - [anon_sym_by] = ACTIONS(4601), - [anon_sym_LT] = ACTIONS(4601), - [anon_sym_GT] = ACTIONS(4601), - [anon_sym_where] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_get] = ACTIONS(4601), - [anon_sym_set] = ACTIONS(4601), - [anon_sym_STAR] = ACTIONS(4601), - [anon_sym_DASH_GT] = ACTIONS(4603), - [sym_label] = ACTIONS(4603), - [anon_sym_in] = ACTIONS(4601), - [anon_sym_while] = ACTIONS(4601), - [anon_sym_DOT_DOT] = ACTIONS(4603), - [anon_sym_QMARK_COLON] = ACTIONS(4603), - [anon_sym_AMP_AMP] = ACTIONS(4603), - [anon_sym_PIPE_PIPE] = ACTIONS(4603), - [anon_sym_else] = ACTIONS(4601), - [anon_sym_COLON_COLON] = ACTIONS(4603), - [anon_sym_PLUS_EQ] = ACTIONS(4603), - [anon_sym_DASH_EQ] = ACTIONS(4603), - [anon_sym_STAR_EQ] = ACTIONS(4603), - [anon_sym_SLASH_EQ] = ACTIONS(4603), - [anon_sym_PERCENT_EQ] = ACTIONS(4603), - [anon_sym_BANG_EQ] = ACTIONS(4601), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4603), - [anon_sym_EQ_EQ] = ACTIONS(4601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4603), - [anon_sym_LT_EQ] = ACTIONS(4603), - [anon_sym_GT_EQ] = ACTIONS(4603), - [anon_sym_BANGin] = ACTIONS(4603), - [anon_sym_is] = ACTIONS(4601), - [anon_sym_BANGis] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_SLASH] = ACTIONS(4601), - [anon_sym_PERCENT] = ACTIONS(4601), - [anon_sym_as_QMARK] = ACTIONS(4603), - [anon_sym_PLUS_PLUS] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4603), - [anon_sym_BANG_BANG] = ACTIONS(4603), - [anon_sym_suspend] = ACTIONS(4601), - [anon_sym_sealed] = ACTIONS(4601), - [anon_sym_annotation] = ACTIONS(4601), - [anon_sym_data] = ACTIONS(4601), - [anon_sym_inner] = ACTIONS(4601), - [anon_sym_override] = ACTIONS(4601), - [anon_sym_lateinit] = ACTIONS(4601), - [anon_sym_public] = ACTIONS(4601), - [anon_sym_private] = ACTIONS(4601), - [anon_sym_internal] = ACTIONS(4601), - [anon_sym_protected] = ACTIONS(4601), - [anon_sym_tailrec] = ACTIONS(4601), - [anon_sym_operator] = ACTIONS(4601), - [anon_sym_infix] = ACTIONS(4601), - [anon_sym_inline] = ACTIONS(4601), - [anon_sym_external] = ACTIONS(4601), - [sym_property_modifier] = ACTIONS(4601), - [anon_sym_abstract] = ACTIONS(4601), - [anon_sym_final] = ACTIONS(4601), - [anon_sym_open] = ACTIONS(4601), - [anon_sym_vararg] = ACTIONS(4601), - [anon_sym_noinline] = ACTIONS(4601), - [anon_sym_crossinline] = ACTIONS(4601), - [anon_sym_expect] = ACTIONS(4601), - [anon_sym_actual] = ACTIONS(4601), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4603), - [sym_safe_nav] = ACTIONS(4603), - [sym_multiline_comment] = ACTIONS(3), - }, - [3067] = { - [sym_class_body] = STATE(3261), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [3068] = { - [sym_class_body] = STATE(3218), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_RBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_RPAREN] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [anon_sym_DASH_GT] = ACTIONS(4402), - [sym_label] = ACTIONS(4402), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_while] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - }, - [3069] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_RBRACK] = ACTIONS(4650), - [anon_sym_as] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(4648), - [anon_sym_LBRACE] = ACTIONS(4650), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4650), - [anon_sym_COMMA] = ACTIONS(4650), - [anon_sym_RPAREN] = ACTIONS(4650), - [anon_sym_LT] = ACTIONS(4648), - [anon_sym_GT] = ACTIONS(4648), - [anon_sym_where] = ACTIONS(4648), - [anon_sym_DOT] = ACTIONS(4648), - [anon_sym_SEMI] = ACTIONS(4650), - [anon_sym_get] = ACTIONS(4648), - [anon_sym_set] = ACTIONS(4648), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_DASH_GT] = ACTIONS(4650), - [sym_label] = ACTIONS(4650), - [anon_sym_in] = ACTIONS(4648), - [anon_sym_while] = ACTIONS(4648), - [anon_sym_DOT_DOT] = ACTIONS(4650), - [anon_sym_QMARK_COLON] = ACTIONS(4650), - [anon_sym_AMP_AMP] = ACTIONS(4650), - [anon_sym_PIPE_PIPE] = ACTIONS(4650), - [anon_sym_else] = ACTIONS(4648), - [anon_sym_COLON_COLON] = ACTIONS(4650), - [anon_sym_PLUS_EQ] = ACTIONS(4650), - [anon_sym_DASH_EQ] = ACTIONS(4650), - [anon_sym_STAR_EQ] = ACTIONS(4650), - [anon_sym_SLASH_EQ] = ACTIONS(4650), - [anon_sym_PERCENT_EQ] = ACTIONS(4650), - [anon_sym_BANG_EQ] = ACTIONS(4648), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), - [anon_sym_EQ_EQ] = ACTIONS(4648), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), - [anon_sym_LT_EQ] = ACTIONS(4650), - [anon_sym_GT_EQ] = ACTIONS(4650), - [anon_sym_BANGin] = ACTIONS(4650), - [anon_sym_is] = ACTIONS(4648), - [anon_sym_BANGis] = ACTIONS(4650), - [anon_sym_PLUS] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_as_QMARK] = ACTIONS(4650), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_BANG_BANG] = ACTIONS(4650), - [anon_sym_suspend] = ACTIONS(4648), - [anon_sym_sealed] = ACTIONS(4648), - [anon_sym_annotation] = ACTIONS(4648), - [anon_sym_data] = ACTIONS(4648), - [anon_sym_inner] = ACTIONS(4648), - [anon_sym_override] = ACTIONS(4648), - [anon_sym_lateinit] = ACTIONS(4648), - [anon_sym_public] = ACTIONS(4648), - [anon_sym_private] = ACTIONS(4648), - [anon_sym_internal] = ACTIONS(4648), - [anon_sym_protected] = ACTIONS(4648), - [anon_sym_tailrec] = ACTIONS(4648), - [anon_sym_operator] = ACTIONS(4648), - [anon_sym_infix] = ACTIONS(4648), - [anon_sym_inline] = ACTIONS(4648), - [anon_sym_external] = ACTIONS(4648), - [sym_property_modifier] = ACTIONS(4648), - [anon_sym_abstract] = ACTIONS(4648), - [anon_sym_final] = ACTIONS(4648), - [anon_sym_open] = ACTIONS(4648), - [anon_sym_vararg] = ACTIONS(4648), - [anon_sym_noinline] = ACTIONS(4648), - [anon_sym_crossinline] = ACTIONS(4648), - [anon_sym_expect] = ACTIONS(4648), - [anon_sym_actual] = ACTIONS(4648), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4650), - [sym_safe_nav] = ACTIONS(4650), - [sym_multiline_comment] = ACTIONS(3), - }, - [3070] = { - [sym__alpha_identifier] = ACTIONS(4686), - [anon_sym_AT] = ACTIONS(4688), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4688), - [anon_sym_RBRACK] = ACTIONS(4688), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_EQ] = ACTIONS(4686), - [anon_sym_LBRACE] = ACTIONS(4688), - [anon_sym_RBRACE] = ACTIONS(4688), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_COMMA] = ACTIONS(4688), - [anon_sym_RPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_SEMI] = ACTIONS(4688), - [anon_sym_get] = ACTIONS(4686), - [anon_sym_set] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4688), - [sym_label] = ACTIONS(4688), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4688), - [anon_sym_AMP_AMP] = ACTIONS(4688), - [anon_sym_PIPE_PIPE] = ACTIONS(4688), - [anon_sym_else] = ACTIONS(4686), - [anon_sym_COLON_COLON] = ACTIONS(4688), - [anon_sym_PLUS_EQ] = ACTIONS(4688), - [anon_sym_DASH_EQ] = ACTIONS(4688), - [anon_sym_STAR_EQ] = ACTIONS(4688), - [anon_sym_SLASH_EQ] = ACTIONS(4688), - [anon_sym_PERCENT_EQ] = ACTIONS(4688), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), - [anon_sym_LT_EQ] = ACTIONS(4688), - [anon_sym_GT_EQ] = ACTIONS(4688), - [anon_sym_BANGin] = ACTIONS(4688), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_BANGis] = ACTIONS(4688), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_as_QMARK] = ACTIONS(4688), - [anon_sym_PLUS_PLUS] = ACTIONS(4688), - [anon_sym_DASH_DASH] = ACTIONS(4688), - [anon_sym_BANG_BANG] = ACTIONS(4688), - [anon_sym_suspend] = ACTIONS(4686), - [anon_sym_sealed] = ACTIONS(4686), - [anon_sym_annotation] = ACTIONS(4686), - [anon_sym_data] = ACTIONS(4686), - [anon_sym_inner] = ACTIONS(4686), - [anon_sym_override] = ACTIONS(4686), - [anon_sym_lateinit] = ACTIONS(4686), - [anon_sym_public] = ACTIONS(4686), - [anon_sym_private] = ACTIONS(4686), - [anon_sym_internal] = ACTIONS(4686), - [anon_sym_protected] = ACTIONS(4686), - [anon_sym_tailrec] = ACTIONS(4686), - [anon_sym_operator] = ACTIONS(4686), - [anon_sym_infix] = ACTIONS(4686), - [anon_sym_inline] = ACTIONS(4686), - [anon_sym_external] = ACTIONS(4686), - [sym_property_modifier] = ACTIONS(4686), - [anon_sym_abstract] = ACTIONS(4686), - [anon_sym_final] = ACTIONS(4686), - [anon_sym_open] = ACTIONS(4686), - [anon_sym_vararg] = ACTIONS(4686), - [anon_sym_noinline] = ACTIONS(4686), - [anon_sym_crossinline] = ACTIONS(4686), - [anon_sym_expect] = ACTIONS(4686), - [anon_sym_actual] = ACTIONS(4686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4688), - [sym_safe_nav] = ACTIONS(4688), - [sym_multiline_comment] = ACTIONS(3), - }, - [3071] = { - [sym_enum_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - }, - [3072] = { - [aux_sym_type_constraints_repeat1] = STATE(3059), - [sym__alpha_identifier] = ACTIONS(4454), - [anon_sym_AT] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_EQ] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_object] = ACTIONS(4454), - [anon_sym_fun] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_get] = ACTIONS(4454), - [anon_sym_set] = ACTIONS(4454), - [anon_sym_this] = ACTIONS(4454), - [anon_sym_super] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_QMARK_COLON] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [anon_sym_null] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [anon_sym_try] = ACTIONS(4454), - [anon_sym_throw] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_PLUS_EQ] = ACTIONS(4456), - [anon_sym_DASH_EQ] = ACTIONS(4456), - [anon_sym_STAR_EQ] = ACTIONS(4456), - [anon_sym_SLASH_EQ] = ACTIONS(4456), - [anon_sym_PERCENT_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_BANGin] = ACTIONS(4456), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_BANGis] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_BANG_BANG] = ACTIONS(4456), - [anon_sym_data] = ACTIONS(4454), - [anon_sym_inner] = ACTIONS(4454), - [anon_sym_expect] = ACTIONS(4454), - [anon_sym_actual] = ACTIONS(4454), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4456), - [anon_sym_continue_AT] = ACTIONS(4456), - [anon_sym_break_AT] = ACTIONS(4456), - [sym_real_literal] = ACTIONS(4456), - [sym_integer_literal] = ACTIONS(4454), - [sym_hex_literal] = ACTIONS(4456), - [sym_bin_literal] = ACTIONS(4456), - [anon_sym_true] = ACTIONS(4454), - [anon_sym_false] = ACTIONS(4454), - [anon_sym_SQUOTE] = ACTIONS(4456), - [sym__backtick_identifier] = ACTIONS(4456), - [sym__automatic_semicolon] = ACTIONS(4456), - [sym_safe_nav] = ACTIONS(4456), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4456), - }, - [3073] = { - [sym_function_body] = STATE(3205), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [3074] = { - [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_by] = ACTIONS(4644), - [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_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), - [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), - }, - [3075] = { - [sym__alpha_identifier] = ACTIONS(4666), - [anon_sym_AT] = ACTIONS(4668), - [anon_sym_COLON] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4666), - [anon_sym_EQ] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4668), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_LPAREN] = ACTIONS(4668), - [anon_sym_COMMA] = ACTIONS(4668), - [anon_sym_LT] = ACTIONS(4666), - [anon_sym_GT] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_object] = ACTIONS(4666), - [anon_sym_fun] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_SEMI] = ACTIONS(4668), - [anon_sym_get] = ACTIONS(4666), - [anon_sym_set] = ACTIONS(4666), - [anon_sym_this] = ACTIONS(4666), - [anon_sym_super] = ACTIONS(4666), - [anon_sym_STAR] = ACTIONS(4666), - [sym_label] = ACTIONS(4666), - [anon_sym_in] = ACTIONS(4666), - [anon_sym_DOT_DOT] = ACTIONS(4668), - [anon_sym_QMARK_COLON] = ACTIONS(4668), - [anon_sym_AMP_AMP] = ACTIONS(4668), - [anon_sym_PIPE_PIPE] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(4666), - [anon_sym_if] = ACTIONS(4666), - [anon_sym_else] = ACTIONS(4666), - [anon_sym_when] = ACTIONS(4666), - [anon_sym_try] = ACTIONS(4666), - [anon_sym_throw] = ACTIONS(4666), - [anon_sym_return] = ACTIONS(4666), - [anon_sym_continue] = ACTIONS(4666), - [anon_sym_break] = ACTIONS(4666), - [anon_sym_COLON_COLON] = ACTIONS(4668), - [anon_sym_PLUS_EQ] = ACTIONS(4668), - [anon_sym_DASH_EQ] = ACTIONS(4668), - [anon_sym_STAR_EQ] = ACTIONS(4668), - [anon_sym_SLASH_EQ] = ACTIONS(4668), - [anon_sym_PERCENT_EQ] = ACTIONS(4668), - [anon_sym_BANG_EQ] = ACTIONS(4666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4668), - [anon_sym_EQ_EQ] = ACTIONS(4666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4668), - [anon_sym_LT_EQ] = ACTIONS(4668), - [anon_sym_GT_EQ] = ACTIONS(4668), - [anon_sym_BANGin] = ACTIONS(4668), - [anon_sym_is] = ACTIONS(4666), - [anon_sym_BANGis] = ACTIONS(4668), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_SLASH] = ACTIONS(4666), - [anon_sym_PERCENT] = ACTIONS(4666), - [anon_sym_as_QMARK] = ACTIONS(4668), - [anon_sym_PLUS_PLUS] = ACTIONS(4668), - [anon_sym_DASH_DASH] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(4666), - [anon_sym_BANG_BANG] = ACTIONS(4668), - [anon_sym_data] = ACTIONS(4666), - [anon_sym_inner] = ACTIONS(4666), - [anon_sym_expect] = ACTIONS(4666), - [anon_sym_actual] = ACTIONS(4666), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4668), - [anon_sym_continue_AT] = ACTIONS(4668), - [anon_sym_break_AT] = ACTIONS(4668), - [sym_real_literal] = ACTIONS(4668), - [sym_integer_literal] = ACTIONS(4666), - [sym_hex_literal] = ACTIONS(4668), - [sym_bin_literal] = ACTIONS(4668), - [anon_sym_true] = ACTIONS(4666), - [anon_sym_false] = ACTIONS(4666), - [anon_sym_SQUOTE] = ACTIONS(4668), - [sym__backtick_identifier] = ACTIONS(4668), - [sym__automatic_semicolon] = ACTIONS(4668), - [sym_safe_nav] = ACTIONS(4668), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4668), - }, - [3076] = { - [sym_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - }, - [3077] = { - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [3078] = { - [sym_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [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_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3079] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3065), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4662), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_PLUS_EQ] = ACTIONS(4664), - [anon_sym_DASH_EQ] = ACTIONS(4664), - [anon_sym_STAR_EQ] = ACTIONS(4664), - [anon_sym_SLASH_EQ] = ACTIONS(4664), - [anon_sym_PERCENT_EQ] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4662), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [3100] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3041), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4664), - }, - [3080] = { - [aux_sym_type_constraints_repeat1] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4440), - [anon_sym_AT] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_EQ] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4442), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(4440), - [anon_sym_GT] = ACTIONS(4440), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_object] = ACTIONS(4440), - [anon_sym_fun] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_SEMI] = ACTIONS(4442), - [anon_sym_get] = ACTIONS(4440), - [anon_sym_set] = ACTIONS(4440), - [anon_sym_this] = ACTIONS(4440), - [anon_sym_super] = ACTIONS(4440), - [anon_sym_STAR] = ACTIONS(4440), - [sym_label] = ACTIONS(4440), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4442), - [anon_sym_QMARK_COLON] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4442), - [anon_sym_PIPE_PIPE] = ACTIONS(4442), - [anon_sym_null] = ACTIONS(4440), - [anon_sym_if] = ACTIONS(4440), - [anon_sym_else] = ACTIONS(4440), - [anon_sym_when] = ACTIONS(4440), - [anon_sym_try] = ACTIONS(4440), - [anon_sym_throw] = ACTIONS(4440), - [anon_sym_return] = ACTIONS(4440), - [anon_sym_continue] = ACTIONS(4440), - [anon_sym_break] = ACTIONS(4440), - [anon_sym_COLON_COLON] = ACTIONS(4442), - [anon_sym_PLUS_EQ] = ACTIONS(4442), - [anon_sym_DASH_EQ] = ACTIONS(4442), - [anon_sym_STAR_EQ] = ACTIONS(4442), - [anon_sym_SLASH_EQ] = ACTIONS(4442), - [anon_sym_PERCENT_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4442), - [anon_sym_LT_EQ] = ACTIONS(4442), - [anon_sym_GT_EQ] = ACTIONS(4442), - [anon_sym_BANGin] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_BANGis] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4440), - [anon_sym_DASH] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4440), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_as_QMARK] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4442), - [anon_sym_DASH_DASH] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4440), - [anon_sym_BANG_BANG] = ACTIONS(4442), - [anon_sym_data] = ACTIONS(4440), - [anon_sym_inner] = ACTIONS(4440), - [anon_sym_expect] = ACTIONS(4440), - [anon_sym_actual] = ACTIONS(4440), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4442), - [anon_sym_continue_AT] = ACTIONS(4442), - [anon_sym_break_AT] = ACTIONS(4442), - [sym_real_literal] = ACTIONS(4442), - [sym_integer_literal] = ACTIONS(4440), - [sym_hex_literal] = ACTIONS(4442), - [sym_bin_literal] = ACTIONS(4442), - [anon_sym_true] = ACTIONS(4440), - [anon_sym_false] = ACTIONS(4440), - [anon_sym_SQUOTE] = ACTIONS(4442), - [sym__backtick_identifier] = ACTIONS(4442), - [sym__automatic_semicolon] = ACTIONS(4442), - [sym_safe_nav] = ACTIONS(4442), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4442), - }, - [3081] = { - [sym_enum_class_body] = STATE(3132), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [3082] = { - [sym_import_list] = STATE(3082), - [sym_import_header] = STATE(8215), - [aux_sym_source_file_repeat2] = STATE(3082), - [aux_sym_import_list_repeat1] = STATE(8215), - [ts_builtin_sym_end] = ACTIONS(6485), - [sym__alpha_identifier] = ACTIONS(6487), - [anon_sym_AT] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6485), - [anon_sym_import] = ACTIONS(6489), - [anon_sym_typealias] = ACTIONS(6487), - [anon_sym_class] = ACTIONS(6487), - [anon_sym_interface] = ACTIONS(6487), - [anon_sym_enum] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6485), - [anon_sym_LPAREN] = ACTIONS(6485), - [anon_sym_val] = ACTIONS(6487), - [anon_sym_var] = ACTIONS(6487), - [anon_sym_object] = ACTIONS(6487), - [anon_sym_fun] = ACTIONS(6487), - [anon_sym_get] = ACTIONS(6487), - [anon_sym_set] = ACTIONS(6487), - [anon_sym_this] = ACTIONS(6487), - [anon_sym_super] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6485), - [sym_label] = ACTIONS(6487), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_while] = ACTIONS(6487), - [anon_sym_do] = ACTIONS(6487), - [anon_sym_null] = ACTIONS(6487), - [anon_sym_if] = ACTIONS(6487), - [anon_sym_when] = ACTIONS(6487), - [anon_sym_try] = ACTIONS(6487), - [anon_sym_throw] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6487), - [anon_sym_continue] = ACTIONS(6487), - [anon_sym_break] = ACTIONS(6487), - [anon_sym_COLON_COLON] = ACTIONS(6485), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_PLUS_PLUS] = ACTIONS(6485), - [anon_sym_DASH_DASH] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_suspend] = ACTIONS(6487), - [anon_sym_sealed] = ACTIONS(6487), - [anon_sym_annotation] = ACTIONS(6487), - [anon_sym_data] = ACTIONS(6487), - [anon_sym_inner] = ACTIONS(6487), - [anon_sym_override] = ACTIONS(6487), - [anon_sym_lateinit] = ACTIONS(6487), - [anon_sym_public] = ACTIONS(6487), - [anon_sym_private] = ACTIONS(6487), - [anon_sym_internal] = ACTIONS(6487), - [anon_sym_protected] = ACTIONS(6487), - [anon_sym_tailrec] = ACTIONS(6487), - [anon_sym_operator] = ACTIONS(6487), - [anon_sym_infix] = ACTIONS(6487), - [anon_sym_inline] = ACTIONS(6487), - [anon_sym_external] = ACTIONS(6487), - [sym_property_modifier] = ACTIONS(6487), - [anon_sym_abstract] = ACTIONS(6487), - [anon_sym_final] = ACTIONS(6487), - [anon_sym_open] = ACTIONS(6487), - [anon_sym_vararg] = ACTIONS(6487), - [anon_sym_noinline] = ACTIONS(6487), - [anon_sym_crossinline] = ACTIONS(6487), - [anon_sym_expect] = ACTIONS(6487), - [anon_sym_actual] = ACTIONS(6487), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6485), - [anon_sym_continue_AT] = ACTIONS(6485), - [anon_sym_break_AT] = ACTIONS(6485), - [sym_real_literal] = ACTIONS(6485), - [sym_integer_literal] = ACTIONS(6487), - [sym_hex_literal] = ACTIONS(6485), - [sym_bin_literal] = ACTIONS(6485), - [anon_sym_true] = ACTIONS(6487), - [anon_sym_false] = ACTIONS(6487), - [anon_sym_SQUOTE] = ACTIONS(6485), - [sym__backtick_identifier] = ACTIONS(6485), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6485), - }, - [3083] = { - [sym_class_body] = STATE(3126), - [sym__alpha_identifier] = ACTIONS(4680), - [anon_sym_AT] = ACTIONS(4682), - [anon_sym_LBRACK] = ACTIONS(4682), - [anon_sym_as] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(4680), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_LPAREN] = ACTIONS(4682), - [anon_sym_COMMA] = ACTIONS(4682), - [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_DOT] = 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_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), - [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), - }, - [3084] = { - [sym_class_body] = STATE(3180), - [sym__alpha_identifier] = ACTIONS(4680), - [anon_sym_AT] = ACTIONS(4682), - [anon_sym_LBRACK] = ACTIONS(4682), - [anon_sym_RBRACK] = ACTIONS(4682), - [anon_sym_as] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(4680), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_LPAREN] = ACTIONS(4682), - [anon_sym_COMMA] = ACTIONS(4682), - [anon_sym_RPAREN] = ACTIONS(4682), - [anon_sym_LT] = ACTIONS(4680), - [anon_sym_GT] = ACTIONS(4680), - [anon_sym_where] = ACTIONS(4680), - [anon_sym_DOT] = 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_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), - }, - [3085] = { - [sym__alpha_identifier] = ACTIONS(4537), - [anon_sym_AT] = ACTIONS(4539), - [anon_sym_COLON] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4539), - [anon_sym_RBRACK] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4537), - [anon_sym_EQ] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_COMMA] = ACTIONS(4539), - [anon_sym_RPAREN] = ACTIONS(4539), - [anon_sym_LT] = ACTIONS(4537), - [anon_sym_GT] = ACTIONS(4537), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4537), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(4537), - [anon_sym_set] = ACTIONS(4537), - [anon_sym_STAR] = ACTIONS(4537), - [anon_sym_DASH_GT] = ACTIONS(4539), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4537), - [anon_sym_while] = ACTIONS(4537), - [anon_sym_DOT_DOT] = ACTIONS(4539), - [anon_sym_QMARK_COLON] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4539), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4537), - [anon_sym_COLON_COLON] = ACTIONS(4539), - [anon_sym_PLUS_EQ] = ACTIONS(4539), - [anon_sym_DASH_EQ] = ACTIONS(4539), - [anon_sym_STAR_EQ] = ACTIONS(4539), - [anon_sym_SLASH_EQ] = ACTIONS(4539), - [anon_sym_PERCENT_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4539), - [anon_sym_LT_EQ] = ACTIONS(4539), - [anon_sym_GT_EQ] = ACTIONS(4539), - [anon_sym_BANGin] = ACTIONS(4539), - [anon_sym_is] = ACTIONS(4537), - [anon_sym_BANGis] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_SLASH] = ACTIONS(4537), - [anon_sym_PERCENT] = ACTIONS(4537), - [anon_sym_as_QMARK] = ACTIONS(4539), - [anon_sym_PLUS_PLUS] = ACTIONS(4539), - [anon_sym_DASH_DASH] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4539), - [anon_sym_suspend] = ACTIONS(4537), - [anon_sym_sealed] = ACTIONS(4537), - [anon_sym_annotation] = ACTIONS(4537), - [anon_sym_data] = ACTIONS(4537), - [anon_sym_inner] = ACTIONS(4537), - [anon_sym_override] = ACTIONS(4537), - [anon_sym_lateinit] = ACTIONS(4537), - [anon_sym_public] = ACTIONS(4537), - [anon_sym_private] = ACTIONS(4537), - [anon_sym_internal] = ACTIONS(4537), - [anon_sym_protected] = ACTIONS(4537), - [anon_sym_tailrec] = ACTIONS(4537), - [anon_sym_operator] = ACTIONS(4537), - [anon_sym_infix] = ACTIONS(4537), - [anon_sym_inline] = ACTIONS(4537), - [anon_sym_external] = ACTIONS(4537), - [sym_property_modifier] = ACTIONS(4537), - [anon_sym_abstract] = ACTIONS(4537), - [anon_sym_final] = ACTIONS(4537), - [anon_sym_open] = ACTIONS(4537), - [anon_sym_vararg] = ACTIONS(4537), - [anon_sym_noinline] = ACTIONS(4537), - [anon_sym_crossinline] = ACTIONS(4537), - [anon_sym_expect] = ACTIONS(4537), - [anon_sym_actual] = ACTIONS(4537), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4539), - [sym_safe_nav] = ACTIONS(4539), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3086] = { - [sym__alpha_identifier] = ACTIONS(4537), - [anon_sym_AT] = ACTIONS(4539), - [anon_sym_COLON] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4537), - [anon_sym_EQ] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_COMMA] = ACTIONS(4539), - [anon_sym_LT] = ACTIONS(4537), - [anon_sym_GT] = ACTIONS(4537), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_object] = ACTIONS(4537), - [anon_sym_fun] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4537), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(4537), - [anon_sym_set] = ACTIONS(4537), - [anon_sym_this] = ACTIONS(4537), - [anon_sym_super] = ACTIONS(4537), - [anon_sym_STAR] = ACTIONS(4537), - [sym_label] = ACTIONS(4537), - [anon_sym_in] = ACTIONS(4537), - [anon_sym_DOT_DOT] = ACTIONS(4539), - [anon_sym_QMARK_COLON] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4539), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4537), - [anon_sym_if] = ACTIONS(4537), - [anon_sym_else] = ACTIONS(4537), - [anon_sym_when] = ACTIONS(4537), - [anon_sym_try] = ACTIONS(4537), - [anon_sym_throw] = ACTIONS(4537), - [anon_sym_return] = ACTIONS(4537), - [anon_sym_continue] = ACTIONS(4537), - [anon_sym_break] = ACTIONS(4537), - [anon_sym_COLON_COLON] = ACTIONS(4539), - [anon_sym_PLUS_EQ] = ACTIONS(4539), - [anon_sym_DASH_EQ] = ACTIONS(4539), - [anon_sym_STAR_EQ] = ACTIONS(4539), - [anon_sym_SLASH_EQ] = ACTIONS(4539), - [anon_sym_PERCENT_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4539), - [anon_sym_LT_EQ] = ACTIONS(4539), - [anon_sym_GT_EQ] = ACTIONS(4539), - [anon_sym_BANGin] = ACTIONS(4539), - [anon_sym_is] = ACTIONS(4537), - [anon_sym_BANGis] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_SLASH] = ACTIONS(4537), - [anon_sym_PERCENT] = ACTIONS(4537), - [anon_sym_as_QMARK] = ACTIONS(4539), - [anon_sym_PLUS_PLUS] = ACTIONS(4539), - [anon_sym_DASH_DASH] = ACTIONS(4539), - [anon_sym_BANG] = ACTIONS(4537), - [anon_sym_BANG_BANG] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4537), - [anon_sym_inner] = ACTIONS(4537), - [anon_sym_expect] = ACTIONS(4537), - [anon_sym_actual] = ACTIONS(4537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4539), - [anon_sym_continue_AT] = ACTIONS(4539), - [anon_sym_break_AT] = ACTIONS(4539), - [sym_real_literal] = ACTIONS(4539), - [sym_integer_literal] = ACTIONS(4537), - [sym_hex_literal] = ACTIONS(4539), - [sym_bin_literal] = ACTIONS(4539), - [anon_sym_true] = ACTIONS(4537), - [anon_sym_false] = ACTIONS(4537), - [anon_sym_SQUOTE] = ACTIONS(4539), - [sym__backtick_identifier] = ACTIONS(4539), - [sym__automatic_semicolon] = ACTIONS(4539), - [sym_safe_nav] = ACTIONS(4539), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4539), - }, - [3087] = { - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [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(4462), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4462), - [anon_sym_DOT] = 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_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), + [3101] = { + [sym_enum_class_body] = STATE(3165), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_object] = ACTIONS(4623), + [anon_sym_fun] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_this] = ACTIONS(4623), + [anon_sym_super] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_null] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_try] = ACTIONS(4623), + [anon_sym_throw] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4625), + [anon_sym_continue_AT] = ACTIONS(4625), + [anon_sym_break_AT] = ACTIONS(4625), + [sym_real_literal] = ACTIONS(4625), + [sym_integer_literal] = ACTIONS(4623), + [sym_hex_literal] = ACTIONS(4625), + [sym_bin_literal] = ACTIONS(4625), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4625), }, - [3088] = { - [sym_enum_class_body] = STATE(3273), - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_RBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_RPAREN] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_DASH_GT] = ACTIONS(4392), - [sym_label] = ACTIONS(4392), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_while] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_suspend] = ACTIONS(4390), - [anon_sym_sealed] = ACTIONS(4390), - [anon_sym_annotation] = ACTIONS(4390), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_override] = ACTIONS(4390), - [anon_sym_lateinit] = ACTIONS(4390), - [anon_sym_public] = ACTIONS(4390), - [anon_sym_private] = ACTIONS(4390), - [anon_sym_internal] = ACTIONS(4390), - [anon_sym_protected] = ACTIONS(4390), - [anon_sym_tailrec] = ACTIONS(4390), - [anon_sym_operator] = ACTIONS(4390), - [anon_sym_infix] = ACTIONS(4390), - [anon_sym_inline] = ACTIONS(4390), - [anon_sym_external] = ACTIONS(4390), - [sym_property_modifier] = ACTIONS(4390), - [anon_sym_abstract] = ACTIONS(4390), - [anon_sym_final] = ACTIONS(4390), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_vararg] = ACTIONS(4390), - [anon_sym_noinline] = ACTIONS(4390), - [anon_sym_crossinline] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4392), - [sym_safe_nav] = ACTIONS(4392), - [sym_multiline_comment] = ACTIONS(3), + [3102] = { + [sym_enum_class_body] = STATE(3160), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_object] = ACTIONS(4482), + [anon_sym_fun] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_this] = ACTIONS(4482), + [anon_sym_super] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4482), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_when] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_throw] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4484), + [anon_sym_continue_AT] = ACTIONS(4484), + [anon_sym_break_AT] = ACTIONS(4484), + [sym_real_literal] = ACTIONS(4484), + [sym_integer_literal] = ACTIONS(4482), + [sym_hex_literal] = ACTIONS(4484), + [sym_bin_literal] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4484), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4484), }, - [3089] = { - [sym__alpha_identifier] = ACTIONS(4634), - [anon_sym_AT] = ACTIONS(4636), - [anon_sym_LBRACK] = ACTIONS(4636), - [anon_sym_RBRACK] = ACTIONS(4636), - [anon_sym_as] = ACTIONS(4634), - [anon_sym_EQ] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4636), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4636), - [anon_sym_COMMA] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(4636), - [anon_sym_by] = ACTIONS(4634), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_where] = ACTIONS(4634), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_SEMI] = ACTIONS(4636), - [anon_sym_get] = ACTIONS(4634), - [anon_sym_set] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4634), - [anon_sym_DASH_GT] = ACTIONS(4636), - [sym_label] = ACTIONS(4636), - [anon_sym_in] = ACTIONS(4634), - [anon_sym_while] = ACTIONS(4634), - [anon_sym_DOT_DOT] = ACTIONS(4636), - [anon_sym_QMARK_COLON] = ACTIONS(4636), - [anon_sym_AMP_AMP] = ACTIONS(4636), - [anon_sym_PIPE_PIPE] = ACTIONS(4636), - [anon_sym_else] = ACTIONS(4634), - [anon_sym_COLON_COLON] = ACTIONS(4636), - [anon_sym_PLUS_EQ] = ACTIONS(4636), - [anon_sym_DASH_EQ] = ACTIONS(4636), - [anon_sym_STAR_EQ] = ACTIONS(4636), - [anon_sym_SLASH_EQ] = ACTIONS(4636), - [anon_sym_PERCENT_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ] = ACTIONS(4634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4636), - [anon_sym_LT_EQ] = ACTIONS(4636), - [anon_sym_GT_EQ] = ACTIONS(4636), - [anon_sym_BANGin] = ACTIONS(4636), - [anon_sym_is] = ACTIONS(4634), - [anon_sym_BANGis] = ACTIONS(4636), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_SLASH] = ACTIONS(4634), - [anon_sym_PERCENT] = ACTIONS(4634), - [anon_sym_as_QMARK] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_BANG_BANG] = ACTIONS(4636), - [anon_sym_suspend] = ACTIONS(4634), - [anon_sym_sealed] = ACTIONS(4634), - [anon_sym_annotation] = ACTIONS(4634), - [anon_sym_data] = ACTIONS(4634), - [anon_sym_inner] = ACTIONS(4634), - [anon_sym_override] = ACTIONS(4634), - [anon_sym_lateinit] = ACTIONS(4634), - [anon_sym_public] = ACTIONS(4634), - [anon_sym_private] = ACTIONS(4634), - [anon_sym_internal] = ACTIONS(4634), - [anon_sym_protected] = ACTIONS(4634), - [anon_sym_tailrec] = ACTIONS(4634), - [anon_sym_operator] = ACTIONS(4634), - [anon_sym_infix] = ACTIONS(4634), - [anon_sym_inline] = ACTIONS(4634), - [anon_sym_external] = ACTIONS(4634), - [sym_property_modifier] = ACTIONS(4634), - [anon_sym_abstract] = ACTIONS(4634), - [anon_sym_final] = ACTIONS(4634), - [anon_sym_open] = ACTIONS(4634), - [anon_sym_vararg] = ACTIONS(4634), - [anon_sym_noinline] = ACTIONS(4634), - [anon_sym_crossinline] = ACTIONS(4634), - [anon_sym_expect] = ACTIONS(4634), - [anon_sym_actual] = ACTIONS(4634), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4636), - [sym_safe_nav] = ACTIONS(4636), + [3103] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_DASH_GT] = ACTIONS(3019), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3090] = { - [sym_class_body] = STATE(3122), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_object] = ACTIONS(4404), - [anon_sym_fun] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_this] = ACTIONS(4404), - [anon_sym_super] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4404), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_when] = ACTIONS(4404), - [anon_sym_try] = ACTIONS(4404), - [anon_sym_throw] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4406), - [anon_sym_continue_AT] = ACTIONS(4406), - [anon_sym_break_AT] = ACTIONS(4406), - [sym_real_literal] = ACTIONS(4406), - [sym_integer_literal] = ACTIONS(4404), - [sym_hex_literal] = ACTIONS(4406), - [sym_bin_literal] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4404), - [anon_sym_false] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4406), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4406), - }, - [3091] = { - [sym_class_body] = STATE(3169), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_RBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_RPAREN] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_DASH_GT] = ACTIONS(4406), - [sym_label] = ACTIONS(4406), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_while] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), + [3104] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3092] = { - [sym_enum_class_body] = STATE(3124), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), - }, - [3093] = { - [sym_enum_class_body] = STATE(3436), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_while] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), + [3105] = { + [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_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), }, - [3094] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3079), + [3106] = { [sym__alpha_identifier] = ACTIONS(4656), [anon_sym_AT] = ACTIONS(4658), + [anon_sym_COLON] = ACTIONS(4656), [anon_sym_LBRACK] = ACTIONS(4658), [anon_sym_as] = ACTIONS(4656), [anon_sym_EQ] = ACTIONS(4656), [anon_sym_LBRACE] = ACTIONS(4658), [anon_sym_RBRACE] = ACTIONS(4658), [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(6483), + [anon_sym_COMMA] = ACTIONS(4658), [anon_sym_LT] = ACTIONS(4656), [anon_sym_GT] = ACTIONS(4656), [anon_sym_where] = ACTIONS(4656), @@ -349720,5034 +350793,1496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4658), }, - [3095] = { - [sym_class_body] = STATE(3240), - [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(5177), - [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_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), + [3107] = { + [sym__alpha_identifier] = ACTIONS(4589), + [anon_sym_AT] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4591), + [anon_sym_RBRACK] = ACTIONS(4591), + [anon_sym_as] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4589), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_RBRACE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [anon_sym_by] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_where] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4589), + [anon_sym_set] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4589), + [anon_sym_DASH_GT] = ACTIONS(4591), + [sym_label] = ACTIONS(4591), + [anon_sym_in] = ACTIONS(4589), + [anon_sym_while] = ACTIONS(4589), + [anon_sym_DOT_DOT] = ACTIONS(4591), + [anon_sym_QMARK_COLON] = ACTIONS(4591), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE_PIPE] = ACTIONS(4591), + [anon_sym_else] = ACTIONS(4589), + [anon_sym_COLON_COLON] = ACTIONS(4591), + [anon_sym_PLUS_EQ] = ACTIONS(4591), + [anon_sym_DASH_EQ] = ACTIONS(4591), + [anon_sym_STAR_EQ] = ACTIONS(4591), + [anon_sym_SLASH_EQ] = ACTIONS(4591), + [anon_sym_PERCENT_EQ] = ACTIONS(4591), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4591), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4591), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_BANGin] = ACTIONS(4591), + [anon_sym_is] = ACTIONS(4589), + [anon_sym_BANGis] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4589), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_as_QMARK] = ACTIONS(4591), + [anon_sym_PLUS_PLUS] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4591), + [anon_sym_BANG_BANG] = ACTIONS(4591), + [anon_sym_suspend] = ACTIONS(4589), + [anon_sym_sealed] = ACTIONS(4589), + [anon_sym_annotation] = ACTIONS(4589), + [anon_sym_data] = ACTIONS(4589), + [anon_sym_inner] = ACTIONS(4589), + [anon_sym_override] = ACTIONS(4589), + [anon_sym_lateinit] = ACTIONS(4589), + [anon_sym_public] = ACTIONS(4589), + [anon_sym_private] = ACTIONS(4589), + [anon_sym_internal] = ACTIONS(4589), + [anon_sym_protected] = ACTIONS(4589), + [anon_sym_tailrec] = ACTIONS(4589), + [anon_sym_operator] = ACTIONS(4589), + [anon_sym_infix] = ACTIONS(4589), + [anon_sym_inline] = ACTIONS(4589), + [anon_sym_external] = ACTIONS(4589), + [sym_property_modifier] = ACTIONS(4589), + [anon_sym_abstract] = ACTIONS(4589), + [anon_sym_final] = ACTIONS(4589), + [anon_sym_open] = ACTIONS(4589), + [anon_sym_vararg] = ACTIONS(4589), + [anon_sym_noinline] = ACTIONS(4589), + [anon_sym_crossinline] = ACTIONS(4589), + [anon_sym_expect] = ACTIONS(4589), + [anon_sym_actual] = ACTIONS(4589), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4654), - [sym_safe_nav] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4591), + [sym_safe_nav] = ACTIONS(4591), [sym_multiline_comment] = ACTIONS(3), }, - [3096] = { - [sym__alpha_identifier] = ACTIONS(4615), - [anon_sym_AT] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_as] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4617), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_LT] = ACTIONS(4615), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_where] = ACTIONS(4615), - [anon_sym_object] = ACTIONS(4615), - [anon_sym_fun] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [anon_sym_get] = ACTIONS(4615), - [anon_sym_set] = ACTIONS(4615), - [anon_sym_this] = ACTIONS(4615), - [anon_sym_super] = ACTIONS(4615), - [anon_sym_STAR] = ACTIONS(4615), - [sym_label] = ACTIONS(4615), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4617), - [anon_sym_AMP_AMP] = ACTIONS(4617), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_null] = ACTIONS(4615), - [anon_sym_if] = ACTIONS(4615), - [anon_sym_else] = ACTIONS(4615), - [anon_sym_when] = ACTIONS(4615), - [anon_sym_try] = ACTIONS(4615), - [anon_sym_throw] = ACTIONS(4615), - [anon_sym_return] = ACTIONS(4615), - [anon_sym_continue] = ACTIONS(4615), - [anon_sym_break] = ACTIONS(4615), - [anon_sym_COLON_COLON] = ACTIONS(4617), - [anon_sym_PLUS_EQ] = ACTIONS(4617), - [anon_sym_DASH_EQ] = ACTIONS(4617), - [anon_sym_STAR_EQ] = ACTIONS(4617), - [anon_sym_SLASH_EQ] = ACTIONS(4617), - [anon_sym_PERCENT_EQ] = ACTIONS(4617), - [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(4617), - [anon_sym_GT_EQ] = ACTIONS(4617), - [anon_sym_BANGin] = ACTIONS(4617), - [anon_sym_is] = ACTIONS(4615), - [anon_sym_BANGis] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4615), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_as_QMARK] = ACTIONS(4617), - [anon_sym_PLUS_PLUS] = ACTIONS(4617), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(4615), - [anon_sym_BANG_BANG] = ACTIONS(4617), - [anon_sym_data] = ACTIONS(4615), - [anon_sym_inner] = ACTIONS(4615), - [anon_sym_expect] = ACTIONS(4615), - [anon_sym_actual] = ACTIONS(4615), + [3108] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3061), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4617), - [anon_sym_continue_AT] = ACTIONS(4617), - [anon_sym_break_AT] = ACTIONS(4617), - [sym_real_literal] = ACTIONS(4617), - [sym_integer_literal] = ACTIONS(4615), - [sym_hex_literal] = ACTIONS(4617), - [sym_bin_literal] = ACTIONS(4617), - [anon_sym_true] = ACTIONS(4615), - [anon_sym_false] = ACTIONS(4615), - [anon_sym_SQUOTE] = ACTIONS(4617), - [sym__backtick_identifier] = ACTIONS(4617), - [sym__automatic_semicolon] = ACTIONS(4617), - [sym_safe_nav] = ACTIONS(4617), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4617), }, - [3097] = { - [aux_sym_user_type_repeat1] = STATE(3008), - [sym__alpha_identifier] = ACTIONS(4307), - [anon_sym_AT] = ACTIONS(4309), - [anon_sym_LBRACK] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4309), - [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_where] = ACTIONS(4307), - [anon_sym_object] = ACTIONS(4307), - [anon_sym_fun] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(6492), - [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), - [sym__quest] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4309), - [sym_label] = ACTIONS(4307), - [anon_sym_in] = ACTIONS(4307), - [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_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_PLUS_PLUS] = ACTIONS(4309), - [anon_sym_DASH_DASH] = ACTIONS(4309), - [anon_sym_BANG] = ACTIONS(4307), - [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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4309), - }, - [3098] = { - [sym_class_body] = STATE(3436), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_while] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), + [3109] = { + [sym__alpha_identifier] = ACTIONS(4656), + [anon_sym_AT] = ACTIONS(4658), + [anon_sym_COLON] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_RBRACK] = ACTIONS(4658), + [anon_sym_as] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_LPAREN] = ACTIONS(4658), + [anon_sym_COMMA] = ACTIONS(4658), + [anon_sym_RPAREN] = ACTIONS(4658), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_where] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym_get] = ACTIONS(4656), + [anon_sym_set] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(4658), + [sym_label] = ACTIONS(4658), + [anon_sym_in] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4658), + [anon_sym_QMARK_COLON] = ACTIONS(4658), + [anon_sym_AMP_AMP] = ACTIONS(4658), + [anon_sym_PIPE_PIPE] = ACTIONS(4658), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(4658), + [anon_sym_PLUS_EQ] = ACTIONS(4658), + [anon_sym_DASH_EQ] = ACTIONS(4658), + [anon_sym_STAR_EQ] = ACTIONS(4658), + [anon_sym_SLASH_EQ] = ACTIONS(4658), + [anon_sym_PERCENT_EQ] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4658), + [anon_sym_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4658), + [anon_sym_LT_EQ] = ACTIONS(4658), + [anon_sym_GT_EQ] = ACTIONS(4658), + [anon_sym_BANGin] = ACTIONS(4658), + [anon_sym_is] = ACTIONS(4656), + [anon_sym_BANGis] = ACTIONS(4658), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_SLASH] = ACTIONS(4656), + [anon_sym_PERCENT] = ACTIONS(4656), + [anon_sym_as_QMARK] = ACTIONS(4658), + [anon_sym_PLUS_PLUS] = ACTIONS(4658), + [anon_sym_DASH_DASH] = ACTIONS(4658), + [anon_sym_BANG_BANG] = ACTIONS(4658), + [anon_sym_suspend] = ACTIONS(4656), + [anon_sym_sealed] = ACTIONS(4656), + [anon_sym_annotation] = ACTIONS(4656), + [anon_sym_data] = ACTIONS(4656), + [anon_sym_inner] = ACTIONS(4656), + [anon_sym_override] = ACTIONS(4656), + [anon_sym_lateinit] = ACTIONS(4656), + [anon_sym_public] = ACTIONS(4656), + [anon_sym_private] = ACTIONS(4656), + [anon_sym_internal] = ACTIONS(4656), + [anon_sym_protected] = ACTIONS(4656), + [anon_sym_tailrec] = ACTIONS(4656), + [anon_sym_operator] = ACTIONS(4656), + [anon_sym_infix] = ACTIONS(4656), + [anon_sym_inline] = ACTIONS(4656), + [anon_sym_external] = ACTIONS(4656), + [sym_property_modifier] = ACTIONS(4656), + [anon_sym_abstract] = ACTIONS(4656), + [anon_sym_final] = ACTIONS(4656), + [anon_sym_open] = ACTIONS(4656), + [anon_sym_vararg] = ACTIONS(4656), + [anon_sym_noinline] = ACTIONS(4656), + [anon_sym_crossinline] = ACTIONS(4656), + [anon_sym_expect] = ACTIONS(4656), + [anon_sym_actual] = ACTIONS(4656), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4658), + [sym_safe_nav] = ACTIONS(4658), [sym_multiline_comment] = ACTIONS(3), }, - [3099] = { - [sym_enum_class_body] = STATE(3127), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5169), - [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_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), + [3110] = { + [sym_class_body] = STATE(3149), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_object] = ACTIONS(4642), + [anon_sym_fun] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_this] = ACTIONS(4642), + [anon_sym_super] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4642), + [anon_sym_if] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_when] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4642), + [anon_sym_throw] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_continue] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4644), + [anon_sym_continue_AT] = ACTIONS(4644), + [anon_sym_break_AT] = ACTIONS(4644), + [sym_real_literal] = ACTIONS(4644), + [sym_integer_literal] = ACTIONS(4642), + [sym_hex_literal] = ACTIONS(4644), + [sym_bin_literal] = ACTIONS(4644), + [anon_sym_true] = ACTIONS(4642), + [anon_sym_false] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym__backtick_identifier] = ACTIONS(4644), + [sym__automatic_semicolon] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4644), }, - [3100] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3100), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_RBRACK] = ACTIONS(4627), - [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(6494), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_DOT] = 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_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), + [3111] = { + [sym_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [3112] = { + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, - [3101] = { - [sym__alpha_identifier] = ACTIONS(4597), - [anon_sym_AT] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_RBRACK] = ACTIONS(4599), - [anon_sym_as] = ACTIONS(4597), - [anon_sym_EQ] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_RBRACE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_RPAREN] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4597), - [anon_sym_where] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_get] = ACTIONS(4597), - [anon_sym_set] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4597), - [anon_sym_DASH_GT] = ACTIONS(4599), - [sym_label] = ACTIONS(4599), - [anon_sym_in] = ACTIONS(4597), - [anon_sym_while] = ACTIONS(4597), - [anon_sym_DOT_DOT] = ACTIONS(4599), - [anon_sym_QMARK_COLON] = ACTIONS(4599), - [anon_sym_AMP_AMP] = ACTIONS(4599), - [anon_sym_PIPE_PIPE] = ACTIONS(4599), - [anon_sym_else] = ACTIONS(4597), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym_PLUS_EQ] = ACTIONS(4599), - [anon_sym_DASH_EQ] = ACTIONS(4599), - [anon_sym_STAR_EQ] = ACTIONS(4599), - [anon_sym_SLASH_EQ] = ACTIONS(4599), - [anon_sym_PERCENT_EQ] = ACTIONS(4599), - [anon_sym_BANG_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4599), - [anon_sym_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4599), - [anon_sym_LT_EQ] = ACTIONS(4599), - [anon_sym_GT_EQ] = ACTIONS(4599), - [anon_sym_BANGin] = ACTIONS(4599), - [anon_sym_is] = ACTIONS(4597), - [anon_sym_BANGis] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4597), - [anon_sym_PERCENT] = ACTIONS(4597), - [anon_sym_as_QMARK] = ACTIONS(4599), - [anon_sym_PLUS_PLUS] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4599), - [anon_sym_BANG_BANG] = ACTIONS(4599), - [anon_sym_suspend] = ACTIONS(4597), - [anon_sym_sealed] = ACTIONS(4597), - [anon_sym_annotation] = ACTIONS(4597), - [anon_sym_data] = ACTIONS(4597), - [anon_sym_inner] = ACTIONS(4597), - [anon_sym_override] = ACTIONS(4597), - [anon_sym_lateinit] = ACTIONS(4597), - [anon_sym_public] = ACTIONS(4597), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_internal] = ACTIONS(4597), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_tailrec] = ACTIONS(4597), - [anon_sym_operator] = ACTIONS(4597), - [anon_sym_infix] = ACTIONS(4597), - [anon_sym_inline] = ACTIONS(4597), - [anon_sym_external] = ACTIONS(4597), - [sym_property_modifier] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_final] = ACTIONS(4597), - [anon_sym_open] = ACTIONS(4597), - [anon_sym_vararg] = ACTIONS(4597), - [anon_sym_noinline] = ACTIONS(4597), - [anon_sym_crossinline] = ACTIONS(4597), - [anon_sym_expect] = ACTIONS(4597), - [anon_sym_actual] = ACTIONS(4597), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4599), - [sym_safe_nav] = ACTIONS(4599), + [3113] = { + [sym_enum_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), + }, + [3114] = { + [sym_class_body] = STATE(3135), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), + }, + [3115] = { + [sym_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), [sym_multiline_comment] = ACTIONS(3), }, - [3102] = { - [sym_enum_class_body] = STATE(3240), - [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(5169), - [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_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), + [3116] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1644), + [sym__in_operator] = STATE(1643), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1639), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1636), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6414), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6418), + [anon_sym_DASH_GT] = ACTIONS(3072), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6422), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(6424), + [anon_sym_QMARK_COLON] = ACTIONS(6426), + [anon_sym_AMP_AMP] = ACTIONS(6428), + [anon_sym_PIPE_PIPE] = ACTIONS(6430), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(6434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6436), + [anon_sym_EQ_EQ] = ACTIONS(6434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6436), + [anon_sym_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_EQ] = ACTIONS(6438), + [anon_sym_BANGin] = ACTIONS(6440), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_SLASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4654), - [sym_safe_nav] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3103] = { - [sym_enum_class_body] = STATE(3172), - [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(3112), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [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_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), - [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), + [3117] = { + [sym_enum_class_body] = STATE(3146), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), }, - [3104] = { - [sym_class_body] = STATE(3140), - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_RBRACK] = ACTIONS(4595), - [anon_sym_as] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_get] = ACTIONS(4593), - [anon_sym_set] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [anon_sym_DASH_GT] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4593), - [anon_sym_while] = ACTIONS(4593), - [anon_sym_DOT_DOT] = ACTIONS(4595), - [anon_sym_QMARK_COLON] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4595), - [anon_sym_PIPE_PIPE] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_PLUS_EQ] = ACTIONS(4595), - [anon_sym_DASH_EQ] = ACTIONS(4595), - [anon_sym_STAR_EQ] = ACTIONS(4595), - [anon_sym_SLASH_EQ] = ACTIONS(4595), - [anon_sym_PERCENT_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), - [anon_sym_LT_EQ] = ACTIONS(4595), - [anon_sym_GT_EQ] = ACTIONS(4595), - [anon_sym_BANGin] = ACTIONS(4595), - [anon_sym_is] = ACTIONS(4593), - [anon_sym_BANGis] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_PERCENT] = ACTIONS(4593), - [anon_sym_as_QMARK] = ACTIONS(4595), - [anon_sym_PLUS_PLUS] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4595), - [anon_sym_suspend] = ACTIONS(4593), - [anon_sym_sealed] = ACTIONS(4593), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_data] = ACTIONS(4593), - [anon_sym_inner] = ACTIONS(4593), - [anon_sym_override] = ACTIONS(4593), - [anon_sym_lateinit] = ACTIONS(4593), - [anon_sym_public] = ACTIONS(4593), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_internal] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_tailrec] = ACTIONS(4593), - [anon_sym_operator] = ACTIONS(4593), - [anon_sym_infix] = ACTIONS(4593), - [anon_sym_inline] = ACTIONS(4593), - [anon_sym_external] = ACTIONS(4593), - [sym_property_modifier] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_final] = ACTIONS(4593), - [anon_sym_open] = ACTIONS(4593), - [anon_sym_vararg] = ACTIONS(4593), - [anon_sym_noinline] = ACTIONS(4593), - [anon_sym_crossinline] = ACTIONS(4593), - [anon_sym_expect] = ACTIONS(4593), - [anon_sym_actual] = ACTIONS(4593), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4595), - [sym_safe_nav] = ACTIONS(4595), - [sym_multiline_comment] = ACTIONS(3), - }, - [3105] = { - [sym_enum_class_body] = STATE(3167), - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_object] = ACTIONS(4390), - [anon_sym_fun] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_this] = ACTIONS(4390), - [anon_sym_super] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [sym_label] = ACTIONS(4390), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_when] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_throw] = ACTIONS(4390), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_continue] = ACTIONS(4390), - [anon_sym_break] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG] = ACTIONS(4390), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4392), - [anon_sym_continue_AT] = ACTIONS(4392), - [anon_sym_break_AT] = ACTIONS(4392), - [sym_real_literal] = ACTIONS(4392), - [sym_integer_literal] = ACTIONS(4390), - [sym_hex_literal] = ACTIONS(4392), - [sym_bin_literal] = ACTIONS(4392), - [anon_sym_true] = ACTIONS(4390), - [anon_sym_false] = ACTIONS(4390), - [anon_sym_SQUOTE] = ACTIONS(4392), - [sym__backtick_identifier] = ACTIONS(4392), - [sym__automatic_semicolon] = ACTIONS(4392), - [sym_safe_nav] = ACTIONS(4392), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4392), - }, - [3106] = { - [sym_class_body] = STATE(3162), - [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(3144), - [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_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), - [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), - }, - [3107] = { - [sym_enum_class_body] = STATE(3162), - [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(3112), - [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_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), - [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), - }, - [3108] = { - [sym_enum_class_body] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - }, - [3109] = { - [sym__alpha_identifier] = ACTIONS(4619), - [anon_sym_AT] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4621), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_COMMA] = ACTIONS(4621), - [anon_sym_by] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_object] = ACTIONS(4619), - [anon_sym_fun] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [anon_sym_get] = ACTIONS(4619), - [anon_sym_set] = ACTIONS(4619), - [anon_sym_this] = ACTIONS(4619), - [anon_sym_super] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [sym_label] = ACTIONS(4619), - [anon_sym_in] = ACTIONS(4619), - [anon_sym_DOT_DOT] = ACTIONS(4621), - [anon_sym_QMARK_COLON] = ACTIONS(4621), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4621), - [anon_sym_null] = ACTIONS(4619), - [anon_sym_if] = ACTIONS(4619), - [anon_sym_else] = ACTIONS(4619), - [anon_sym_when] = ACTIONS(4619), - [anon_sym_try] = ACTIONS(4619), - [anon_sym_throw] = ACTIONS(4619), - [anon_sym_return] = ACTIONS(4619), - [anon_sym_continue] = ACTIONS(4619), - [anon_sym_break] = ACTIONS(4619), - [anon_sym_COLON_COLON] = ACTIONS(4621), - [anon_sym_PLUS_EQ] = ACTIONS(4621), - [anon_sym_DASH_EQ] = ACTIONS(4621), - [anon_sym_STAR_EQ] = ACTIONS(4621), - [anon_sym_SLASH_EQ] = ACTIONS(4621), - [anon_sym_PERCENT_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4621), - [anon_sym_GT_EQ] = ACTIONS(4621), - [anon_sym_BANGin] = ACTIONS(4621), - [anon_sym_is] = ACTIONS(4619), - [anon_sym_BANGis] = ACTIONS(4621), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_PERCENT] = ACTIONS(4619), - [anon_sym_as_QMARK] = ACTIONS(4621), - [anon_sym_PLUS_PLUS] = ACTIONS(4621), - [anon_sym_DASH_DASH] = ACTIONS(4621), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_BANG_BANG] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4619), - [anon_sym_inner] = ACTIONS(4619), - [anon_sym_expect] = ACTIONS(4619), - [anon_sym_actual] = ACTIONS(4619), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4621), - [anon_sym_continue_AT] = ACTIONS(4621), - [anon_sym_break_AT] = ACTIONS(4621), - [sym_real_literal] = ACTIONS(4621), - [sym_integer_literal] = ACTIONS(4619), - [sym_hex_literal] = ACTIONS(4621), - [sym_bin_literal] = ACTIONS(4621), - [anon_sym_true] = ACTIONS(4619), - [anon_sym_false] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4621), - [sym__backtick_identifier] = ACTIONS(4621), - [sym__automatic_semicolon] = ACTIONS(4621), - [sym_safe_nav] = ACTIONS(4621), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4621), - }, - [3110] = { - [sym_enum_class_body] = STATE(3157), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_object] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_this] = ACTIONS(4344), - [anon_sym_super] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4344), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_throw] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4346), - [anon_sym_continue_AT] = ACTIONS(4346), - [anon_sym_break_AT] = ACTIONS(4346), - [sym_real_literal] = ACTIONS(4346), - [sym_integer_literal] = ACTIONS(4344), - [sym_hex_literal] = ACTIONS(4346), - [sym_bin_literal] = ACTIONS(4346), - [anon_sym_true] = ACTIONS(4344), - [anon_sym_false] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4346), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4346), - }, - [3111] = { - [sym_class_body] = STATE(3124), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), - }, - [3112] = { - [sym_class_body] = STATE(3148), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), - }, - [3113] = { - [sym__alpha_identifier] = ACTIONS(4611), - [anon_sym_AT] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4611), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_where] = ACTIONS(4611), - [anon_sym_object] = ACTIONS(4611), - [anon_sym_fun] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_get] = ACTIONS(4611), - [anon_sym_set] = ACTIONS(4611), - [anon_sym_this] = ACTIONS(4611), - [anon_sym_super] = ACTIONS(4611), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4611), - [anon_sym_in] = ACTIONS(4611), - [anon_sym_DOT_DOT] = ACTIONS(4613), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4613), - [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), - [anon_sym_if] = ACTIONS(4611), - [anon_sym_else] = ACTIONS(4611), - [anon_sym_when] = ACTIONS(4611), - [anon_sym_try] = ACTIONS(4611), - [anon_sym_throw] = ACTIONS(4611), - [anon_sym_return] = ACTIONS(4611), - [anon_sym_continue] = ACTIONS(4611), - [anon_sym_break] = ACTIONS(4611), - [anon_sym_COLON_COLON] = ACTIONS(4613), - [anon_sym_PLUS_EQ] = ACTIONS(4613), - [anon_sym_DASH_EQ] = ACTIONS(4613), - [anon_sym_STAR_EQ] = ACTIONS(4613), - [anon_sym_SLASH_EQ] = ACTIONS(4613), - [anon_sym_PERCENT_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4613), - [anon_sym_LT_EQ] = ACTIONS(4613), - [anon_sym_GT_EQ] = ACTIONS(4613), - [anon_sym_BANGin] = ACTIONS(4613), - [anon_sym_is] = ACTIONS(4611), - [anon_sym_BANGis] = ACTIONS(4613), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4611), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4613), - [anon_sym_PLUS_PLUS] = ACTIONS(4613), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4611), - [anon_sym_BANG_BANG] = ACTIONS(4613), - [anon_sym_data] = ACTIONS(4611), - [anon_sym_inner] = ACTIONS(4611), - [anon_sym_expect] = ACTIONS(4611), - [anon_sym_actual] = ACTIONS(4611), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4613), - [anon_sym_continue_AT] = ACTIONS(4613), - [anon_sym_break_AT] = ACTIONS(4613), - [sym_real_literal] = ACTIONS(4613), - [sym_integer_literal] = ACTIONS(4611), - [sym_hex_literal] = ACTIONS(4613), - [sym_bin_literal] = ACTIONS(4613), - [anon_sym_true] = ACTIONS(4611), - [anon_sym_false] = ACTIONS(4611), - [anon_sym_SQUOTE] = ACTIONS(4613), - [sym__backtick_identifier] = ACTIONS(4613), - [sym__automatic_semicolon] = ACTIONS(4613), - [sym_safe_nav] = ACTIONS(4613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4613), - }, - [3114] = { - [sym_enum_class_body] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3112), - [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_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), - [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), - }, - [3115] = { - [sym_class_body] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - }, - [3116] = { - [sym_enum_class_body] = STATE(3148), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), - }, - [3117] = { - [sym_enum_class_body] = STATE(3217), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [anon_sym_DASH_GT] = ACTIONS(4346), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_while] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - }, - [3118] = { - [sym_class_body] = STATE(3146), - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_as] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_object] = ACTIONS(4593), - [anon_sym_fun] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_get] = ACTIONS(4593), - [anon_sym_set] = ACTIONS(4593), - [anon_sym_this] = ACTIONS(4593), - [anon_sym_super] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4593), - [anon_sym_DOT_DOT] = ACTIONS(4595), - [anon_sym_QMARK_COLON] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4595), - [anon_sym_PIPE_PIPE] = ACTIONS(4595), - [anon_sym_null] = ACTIONS(4593), - [anon_sym_if] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_when] = ACTIONS(4593), - [anon_sym_try] = ACTIONS(4593), - [anon_sym_throw] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_continue] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_PLUS_EQ] = ACTIONS(4595), - [anon_sym_DASH_EQ] = ACTIONS(4595), - [anon_sym_STAR_EQ] = ACTIONS(4595), - [anon_sym_SLASH_EQ] = ACTIONS(4595), - [anon_sym_PERCENT_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), - [anon_sym_LT_EQ] = ACTIONS(4595), - [anon_sym_GT_EQ] = ACTIONS(4595), - [anon_sym_BANGin] = ACTIONS(4595), - [anon_sym_is] = ACTIONS(4593), - [anon_sym_BANGis] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_PERCENT] = ACTIONS(4593), - [anon_sym_as_QMARK] = ACTIONS(4595), - [anon_sym_PLUS_PLUS] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4593), - [anon_sym_inner] = ACTIONS(4593), - [anon_sym_expect] = ACTIONS(4593), - [anon_sym_actual] = ACTIONS(4593), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4595), - [anon_sym_continue_AT] = ACTIONS(4595), - [anon_sym_break_AT] = ACTIONS(4595), - [sym_real_literal] = ACTIONS(4595), - [sym_integer_literal] = ACTIONS(4593), - [sym_hex_literal] = ACTIONS(4595), - [sym_bin_literal] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4593), - [anon_sym_false] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym__backtick_identifier] = ACTIONS(4595), - [sym__automatic_semicolon] = ACTIONS(4595), - [sym_safe_nav] = ACTIONS(4595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4595), - }, - [3119] = { - [sym__alpha_identifier] = ACTIONS(4525), - [anon_sym_AT] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4527), - [anon_sym_RBRACK] = ACTIONS(4527), - [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_by] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_where] = ACTIONS(4525), - [anon_sym_DOT] = 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_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), - }, - [3120] = { - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [3121] = { - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_object] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_this] = ACTIONS(4400), - [anon_sym_super] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4400), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_when] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_throw] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4402), - [anon_sym_continue_AT] = ACTIONS(4402), - [anon_sym_break_AT] = ACTIONS(4402), - [sym_real_literal] = ACTIONS(4402), - [sym_integer_literal] = ACTIONS(4400), - [sym_hex_literal] = ACTIONS(4402), - [sym_bin_literal] = ACTIONS(4402), - [anon_sym_true] = ACTIONS(4400), - [anon_sym_false] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4402), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4402), - }, - [3122] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_as] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_object] = ACTIONS(4593), - [anon_sym_fun] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_get] = ACTIONS(4593), - [anon_sym_set] = ACTIONS(4593), - [anon_sym_this] = ACTIONS(4593), - [anon_sym_super] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [sym_label] = ACTIONS(4593), - [anon_sym_in] = ACTIONS(4593), - [anon_sym_DOT_DOT] = ACTIONS(4595), - [anon_sym_QMARK_COLON] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4595), - [anon_sym_PIPE_PIPE] = ACTIONS(4595), - [anon_sym_null] = ACTIONS(4593), - [anon_sym_if] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_when] = ACTIONS(4593), - [anon_sym_try] = ACTIONS(4593), - [anon_sym_throw] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_continue] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_PLUS_EQ] = ACTIONS(4595), - [anon_sym_DASH_EQ] = ACTIONS(4595), - [anon_sym_STAR_EQ] = ACTIONS(4595), - [anon_sym_SLASH_EQ] = ACTIONS(4595), - [anon_sym_PERCENT_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), - [anon_sym_LT_EQ] = ACTIONS(4595), - [anon_sym_GT_EQ] = ACTIONS(4595), - [anon_sym_BANGin] = ACTIONS(4595), - [anon_sym_is] = ACTIONS(4593), - [anon_sym_BANGis] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_PERCENT] = ACTIONS(4593), - [anon_sym_as_QMARK] = ACTIONS(4595), - [anon_sym_PLUS_PLUS] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4593), - [anon_sym_BANG_BANG] = ACTIONS(4595), - [anon_sym_data] = ACTIONS(4593), - [anon_sym_inner] = ACTIONS(4593), - [anon_sym_expect] = ACTIONS(4593), - [anon_sym_actual] = ACTIONS(4593), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4595), - [anon_sym_continue_AT] = ACTIONS(4595), - [anon_sym_break_AT] = ACTIONS(4595), - [sym_real_literal] = ACTIONS(4595), - [sym_integer_literal] = ACTIONS(4593), - [sym_hex_literal] = ACTIONS(4595), - [sym_bin_literal] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4593), - [anon_sym_false] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym__backtick_identifier] = ACTIONS(4595), - [sym__automatic_semicolon] = ACTIONS(4595), - [sym_safe_nav] = ACTIONS(4595), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4595), - }, - [3123] = { - [sym__alpha_identifier] = ACTIONS(4965), - [anon_sym_AT] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4965), - [anon_sym_where] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_get] = ACTIONS(4965), - [anon_sym_set] = ACTIONS(4965), - [anon_sym_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4967), - [sym_label] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4965), - [anon_sym_while] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4967), - [anon_sym_QMARK_COLON] = ACTIONS(4967), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE_PIPE] = ACTIONS(4967), - [anon_sym_else] = ACTIONS(4965), - [anon_sym_COLON_COLON] = ACTIONS(4967), - [anon_sym_PLUS_EQ] = ACTIONS(4967), - [anon_sym_DASH_EQ] = ACTIONS(4967), - [anon_sym_STAR_EQ] = ACTIONS(4967), - [anon_sym_SLASH_EQ] = ACTIONS(4967), - [anon_sym_PERCENT_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4967), - [anon_sym_LT_EQ] = ACTIONS(4967), - [anon_sym_GT_EQ] = ACTIONS(4967), - [anon_sym_BANGin] = ACTIONS(4967), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_BANGis] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4965), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_as_QMARK] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4967), - [anon_sym_BANG_BANG] = ACTIONS(4967), - [anon_sym_suspend] = ACTIONS(4965), - [anon_sym_sealed] = ACTIONS(4965), - [anon_sym_annotation] = ACTIONS(4965), - [anon_sym_data] = ACTIONS(4965), - [anon_sym_inner] = ACTIONS(4965), - [anon_sym_override] = ACTIONS(4965), - [anon_sym_lateinit] = ACTIONS(4965), - [anon_sym_public] = ACTIONS(4965), - [anon_sym_private] = ACTIONS(4965), - [anon_sym_internal] = ACTIONS(4965), - [anon_sym_protected] = ACTIONS(4965), - [anon_sym_tailrec] = ACTIONS(4965), - [anon_sym_operator] = ACTIONS(4965), - [anon_sym_infix] = ACTIONS(4965), - [anon_sym_inline] = ACTIONS(4965), - [anon_sym_external] = ACTIONS(4965), - [sym_property_modifier] = ACTIONS(4965), - [anon_sym_abstract] = ACTIONS(4965), - [anon_sym_final] = ACTIONS(4965), - [anon_sym_open] = ACTIONS(4965), - [anon_sym_vararg] = ACTIONS(4965), - [anon_sym_noinline] = ACTIONS(4965), - [anon_sym_crossinline] = ACTIONS(4965), - [anon_sym_expect] = ACTIONS(4965), - [anon_sym_actual] = ACTIONS(4965), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4967), - [sym_safe_nav] = ACTIONS(4967), - [sym_multiline_comment] = ACTIONS(3), - }, - [3124] = { - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_object] = ACTIONS(4340), - [anon_sym_fun] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_super] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_throw] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4342), - [anon_sym_continue_AT] = ACTIONS(4342), - [anon_sym_break_AT] = ACTIONS(4342), - [sym_real_literal] = ACTIONS(4342), - [sym_integer_literal] = ACTIONS(4340), - [sym_hex_literal] = ACTIONS(4342), - [sym_bin_literal] = ACTIONS(4342), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [anon_sym_SQUOTE] = ACTIONS(4342), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4342), - }, - [3125] = { - [sym__alpha_identifier] = ACTIONS(4989), - [anon_sym_AT] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_where] = ACTIONS(4989), - [anon_sym_object] = ACTIONS(4989), - [anon_sym_fun] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_get] = ACTIONS(4989), - [anon_sym_set] = ACTIONS(4989), - [anon_sym_this] = ACTIONS(4989), - [anon_sym_super] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4989), - [sym_label] = ACTIONS(4989), - [anon_sym_in] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_QMARK_COLON] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_null] = ACTIONS(4989), - [anon_sym_if] = ACTIONS(4989), - [anon_sym_else] = ACTIONS(4989), - [anon_sym_when] = ACTIONS(4989), - [anon_sym_try] = ACTIONS(4989), - [anon_sym_throw] = ACTIONS(4989), - [anon_sym_return] = ACTIONS(4989), - [anon_sym_continue] = ACTIONS(4989), - [anon_sym_break] = ACTIONS(4989), - [anon_sym_COLON_COLON] = ACTIONS(4991), - [anon_sym_PLUS_EQ] = ACTIONS(4991), - [anon_sym_DASH_EQ] = ACTIONS(4991), - [anon_sym_STAR_EQ] = ACTIONS(4991), - [anon_sym_SLASH_EQ] = ACTIONS(4991), - [anon_sym_PERCENT_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_BANGin] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_BANGis] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_as_QMARK] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4989), - [anon_sym_BANG_BANG] = ACTIONS(4991), - [anon_sym_data] = ACTIONS(4989), - [anon_sym_inner] = ACTIONS(4989), - [anon_sym_expect] = ACTIONS(4989), - [anon_sym_actual] = ACTIONS(4989), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4991), - [anon_sym_continue_AT] = ACTIONS(4991), - [anon_sym_break_AT] = ACTIONS(4991), - [sym_real_literal] = ACTIONS(4991), - [sym_integer_literal] = ACTIONS(4989), - [sym_hex_literal] = ACTIONS(4991), - [sym_bin_literal] = ACTIONS(4991), - [anon_sym_true] = ACTIONS(4989), - [anon_sym_false] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4991), - [sym__backtick_identifier] = ACTIONS(4991), - [sym__automatic_semicolon] = ACTIONS(4991), - [sym_safe_nav] = ACTIONS(4991), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4991), - }, - [3126] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_object] = ACTIONS(4999), - [anon_sym_fun] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_this] = ACTIONS(4999), - [anon_sym_super] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [sym_label] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_null] = ACTIONS(4999), - [anon_sym_if] = ACTIONS(4999), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_try] = ACTIONS(4999), - [anon_sym_throw] = ACTIONS(4999), - [anon_sym_return] = ACTIONS(4999), - [anon_sym_continue] = ACTIONS(4999), - [anon_sym_break] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_expect] = ACTIONS(4999), - [anon_sym_actual] = ACTIONS(4999), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5001), - [anon_sym_continue_AT] = ACTIONS(5001), - [anon_sym_break_AT] = ACTIONS(5001), - [sym_real_literal] = ACTIONS(5001), - [sym_integer_literal] = ACTIONS(4999), - [sym_hex_literal] = ACTIONS(5001), - [sym_bin_literal] = ACTIONS(5001), - [anon_sym_true] = ACTIONS(4999), - [anon_sym_false] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(5001), - [sym__backtick_identifier] = ACTIONS(5001), - [sym__automatic_semicolon] = ACTIONS(5001), - [sym_safe_nav] = ACTIONS(5001), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5001), - }, - [3127] = { - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [anon_sym_DASH_GT] = ACTIONS(4346), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_while] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - }, - [3128] = { - [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(6497), - [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(6499), - [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_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), - [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), - }, - [3129] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_object] = ACTIONS(1764), - [anon_sym_fun] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_super] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_when] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_expect] = ACTIONS(1764), - [anon_sym_actual] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1766), - [anon_sym_continue_AT] = ACTIONS(1766), - [anon_sym_break_AT] = ACTIONS(1766), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1766), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1766), - }, - [3130] = { - [sym__alpha_identifier] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_RBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(201), - [anon_sym_set] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_DASH_GT] = ACTIONS(199), - [sym_label] = ACTIONS(199), - [anon_sym_in] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_else] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(199), - [anon_sym_BANG_BANG] = ACTIONS(199), - [anon_sym_suspend] = ACTIONS(201), - [anon_sym_sealed] = ACTIONS(201), - [anon_sym_annotation] = ACTIONS(201), - [anon_sym_data] = ACTIONS(201), - [anon_sym_inner] = ACTIONS(201), - [anon_sym_override] = ACTIONS(201), - [anon_sym_lateinit] = ACTIONS(201), - [anon_sym_public] = ACTIONS(201), - [anon_sym_private] = ACTIONS(201), - [anon_sym_internal] = ACTIONS(201), - [anon_sym_protected] = ACTIONS(201), - [anon_sym_tailrec] = ACTIONS(201), - [anon_sym_operator] = ACTIONS(201), - [anon_sym_infix] = ACTIONS(201), - [anon_sym_inline] = ACTIONS(201), - [anon_sym_external] = ACTIONS(201), - [sym_property_modifier] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_final] = ACTIONS(201), - [anon_sym_open] = ACTIONS(201), - [anon_sym_vararg] = ACTIONS(201), - [anon_sym_noinline] = ACTIONS(201), - [anon_sym_crossinline] = ACTIONS(201), - [anon_sym_expect] = ACTIONS(201), - [anon_sym_actual] = ACTIONS(201), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - }, - [3131] = { - [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(6499), - [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_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), - [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), - }, - [3132] = { - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4231), - [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_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), - [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), - }, - [3133] = { - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4099), - [anon_sym_LBRACE] = ACTIONS(4101), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [3134] = { - [sym__alpha_identifier] = ACTIONS(4985), - [anon_sym_AT] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_RBRACK] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_where] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_get] = ACTIONS(4985), - [anon_sym_set] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4987), - [sym_label] = ACTIONS(4987), - [anon_sym_in] = ACTIONS(4985), - [anon_sym_while] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_QMARK_COLON] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_else] = ACTIONS(4985), - [anon_sym_COLON_COLON] = ACTIONS(4987), - [anon_sym_PLUS_EQ] = ACTIONS(4987), - [anon_sym_DASH_EQ] = ACTIONS(4987), - [anon_sym_STAR_EQ] = ACTIONS(4987), - [anon_sym_SLASH_EQ] = ACTIONS(4987), - [anon_sym_PERCENT_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_BANGin] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4985), - [anon_sym_BANGis] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_as_QMARK] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_BANG_BANG] = ACTIONS(4987), - [anon_sym_suspend] = ACTIONS(4985), - [anon_sym_sealed] = ACTIONS(4985), - [anon_sym_annotation] = ACTIONS(4985), - [anon_sym_data] = ACTIONS(4985), - [anon_sym_inner] = ACTIONS(4985), - [anon_sym_override] = ACTIONS(4985), - [anon_sym_lateinit] = ACTIONS(4985), - [anon_sym_public] = ACTIONS(4985), - [anon_sym_private] = ACTIONS(4985), - [anon_sym_internal] = ACTIONS(4985), - [anon_sym_protected] = ACTIONS(4985), - [anon_sym_tailrec] = ACTIONS(4985), - [anon_sym_operator] = ACTIONS(4985), - [anon_sym_infix] = ACTIONS(4985), - [anon_sym_inline] = ACTIONS(4985), - [anon_sym_external] = ACTIONS(4985), - [sym_property_modifier] = ACTIONS(4985), - [anon_sym_abstract] = ACTIONS(4985), - [anon_sym_final] = ACTIONS(4985), - [anon_sym_open] = ACTIONS(4985), - [anon_sym_vararg] = ACTIONS(4985), - [anon_sym_noinline] = ACTIONS(4985), - [anon_sym_crossinline] = ACTIONS(4985), - [anon_sym_expect] = ACTIONS(4985), - [anon_sym_actual] = ACTIONS(4985), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4987), - [sym_safe_nav] = ACTIONS(4987), - [sym_multiline_comment] = ACTIONS(3), - }, - [3135] = { - [sym__alpha_identifier] = ACTIONS(4985), - [anon_sym_AT] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_where] = ACTIONS(4985), - [anon_sym_object] = ACTIONS(4985), - [anon_sym_fun] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_get] = ACTIONS(4985), - [anon_sym_set] = ACTIONS(4985), - [anon_sym_this] = ACTIONS(4985), - [anon_sym_super] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4985), - [sym_label] = ACTIONS(4985), - [anon_sym_in] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_QMARK_COLON] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_null] = ACTIONS(4985), - [anon_sym_if] = ACTIONS(4985), - [anon_sym_else] = ACTIONS(4985), - [anon_sym_when] = ACTIONS(4985), - [anon_sym_try] = ACTIONS(4985), - [anon_sym_throw] = ACTIONS(4985), - [anon_sym_return] = ACTIONS(4985), - [anon_sym_continue] = ACTIONS(4985), - [anon_sym_break] = ACTIONS(4985), - [anon_sym_COLON_COLON] = ACTIONS(4987), - [anon_sym_PLUS_EQ] = ACTIONS(4987), - [anon_sym_DASH_EQ] = ACTIONS(4987), - [anon_sym_STAR_EQ] = ACTIONS(4987), - [anon_sym_SLASH_EQ] = ACTIONS(4987), - [anon_sym_PERCENT_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_BANGin] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4985), - [anon_sym_BANGis] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_as_QMARK] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4985), - [anon_sym_BANG_BANG] = ACTIONS(4987), - [anon_sym_data] = ACTIONS(4985), - [anon_sym_inner] = ACTIONS(4985), - [anon_sym_expect] = ACTIONS(4985), - [anon_sym_actual] = ACTIONS(4985), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4987), - [anon_sym_continue_AT] = ACTIONS(4987), - [anon_sym_break_AT] = ACTIONS(4987), - [sym_real_literal] = ACTIONS(4987), - [sym_integer_literal] = ACTIONS(4985), - [sym_hex_literal] = ACTIONS(4987), - [sym_bin_literal] = ACTIONS(4987), - [anon_sym_true] = ACTIONS(4985), - [anon_sym_false] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4987), - [sym__backtick_identifier] = ACTIONS(4987), - [sym__automatic_semicolon] = ACTIONS(4987), - [sym_safe_nav] = ACTIONS(4987), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4987), - }, - [3136] = { - [sym__alpha_identifier] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_fun] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(201), - [anon_sym_set] = ACTIONS(201), - [anon_sym_this] = ACTIONS(201), - [anon_sym_super] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [sym_label] = ACTIONS(201), - [anon_sym_in] = ACTIONS(201), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_null] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_else] = ACTIONS(201), - [anon_sym_when] = ACTIONS(201), - [anon_sym_try] = ACTIONS(201), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_return] = ACTIONS(201), - [anon_sym_continue] = ACTIONS(201), - [anon_sym_break] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_BANG_BANG] = ACTIONS(199), - [anon_sym_data] = ACTIONS(201), - [anon_sym_inner] = ACTIONS(201), - [anon_sym_expect] = ACTIONS(201), - [anon_sym_actual] = ACTIONS(201), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(199), - [anon_sym_continue_AT] = ACTIONS(199), - [anon_sym_break_AT] = ACTIONS(199), - [sym_real_literal] = ACTIONS(199), - [sym_integer_literal] = ACTIONS(201), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [sym__backtick_identifier] = ACTIONS(199), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(199), - }, - [3137] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [anon_sym_DASH_GT] = ACTIONS(4511), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_while] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - }, - [3138] = { - [sym__alpha_identifier] = ACTIONS(4973), - [anon_sym_AT] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_RBRACK] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_where] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_get] = ACTIONS(4973), - [anon_sym_set] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_DASH_GT] = ACTIONS(4975), - [sym_label] = ACTIONS(4975), - [anon_sym_in] = ACTIONS(4973), - [anon_sym_while] = ACTIONS(4973), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_QMARK_COLON] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_else] = ACTIONS(4973), - [anon_sym_COLON_COLON] = ACTIONS(4975), - [anon_sym_PLUS_EQ] = ACTIONS(4975), - [anon_sym_DASH_EQ] = ACTIONS(4975), - [anon_sym_STAR_EQ] = ACTIONS(4975), - [anon_sym_SLASH_EQ] = ACTIONS(4975), - [anon_sym_PERCENT_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4975), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_BANGin] = ACTIONS(4975), - [anon_sym_is] = ACTIONS(4973), - [anon_sym_BANGis] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_PERCENT] = ACTIONS(4973), - [anon_sym_as_QMARK] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_BANG_BANG] = ACTIONS(4975), - [anon_sym_suspend] = ACTIONS(4973), - [anon_sym_sealed] = ACTIONS(4973), - [anon_sym_annotation] = ACTIONS(4973), - [anon_sym_data] = ACTIONS(4973), - [anon_sym_inner] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_lateinit] = ACTIONS(4973), - [anon_sym_public] = ACTIONS(4973), - [anon_sym_private] = ACTIONS(4973), - [anon_sym_internal] = ACTIONS(4973), - [anon_sym_protected] = ACTIONS(4973), - [anon_sym_tailrec] = ACTIONS(4973), - [anon_sym_operator] = ACTIONS(4973), - [anon_sym_infix] = ACTIONS(4973), - [anon_sym_inline] = ACTIONS(4973), - [anon_sym_external] = ACTIONS(4973), - [sym_property_modifier] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_final] = ACTIONS(4973), - [anon_sym_open] = ACTIONS(4973), - [anon_sym_vararg] = ACTIONS(4973), - [anon_sym_noinline] = ACTIONS(4973), - [anon_sym_crossinline] = ACTIONS(4973), - [anon_sym_expect] = ACTIONS(4973), - [anon_sym_actual] = ACTIONS(4973), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4975), - [sym_safe_nav] = ACTIONS(4975), - [sym_multiline_comment] = ACTIONS(3), - }, - [3139] = { - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4099), - [anon_sym_LBRACE] = ACTIONS(4101), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3140] = { - [sym__alpha_identifier] = ACTIONS(4969), - [anon_sym_AT] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4971), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_where] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_get] = ACTIONS(4969), - [anon_sym_set] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_DASH_GT] = ACTIONS(4971), - [sym_label] = ACTIONS(4971), - [anon_sym_in] = ACTIONS(4969), - [anon_sym_while] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4971), - [anon_sym_QMARK_COLON] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_PIPE_PIPE] = ACTIONS(4971), - [anon_sym_else] = ACTIONS(4969), - [anon_sym_COLON_COLON] = ACTIONS(4971), - [anon_sym_PLUS_EQ] = ACTIONS(4971), - [anon_sym_DASH_EQ] = ACTIONS(4971), - [anon_sym_STAR_EQ] = ACTIONS(4971), - [anon_sym_SLASH_EQ] = ACTIONS(4971), - [anon_sym_PERCENT_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4971), - [anon_sym_LT_EQ] = ACTIONS(4971), - [anon_sym_GT_EQ] = ACTIONS(4971), - [anon_sym_BANGin] = ACTIONS(4971), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_BANGis] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_as_QMARK] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4971), - [anon_sym_BANG_BANG] = ACTIONS(4971), - [anon_sym_suspend] = ACTIONS(4969), - [anon_sym_sealed] = ACTIONS(4969), - [anon_sym_annotation] = ACTIONS(4969), - [anon_sym_data] = ACTIONS(4969), - [anon_sym_inner] = ACTIONS(4969), - [anon_sym_override] = ACTIONS(4969), - [anon_sym_lateinit] = ACTIONS(4969), - [anon_sym_public] = ACTIONS(4969), - [anon_sym_private] = ACTIONS(4969), - [anon_sym_internal] = ACTIONS(4969), - [anon_sym_protected] = ACTIONS(4969), - [anon_sym_tailrec] = ACTIONS(4969), - [anon_sym_operator] = ACTIONS(4969), - [anon_sym_infix] = ACTIONS(4969), - [anon_sym_inline] = ACTIONS(4969), - [anon_sym_external] = ACTIONS(4969), - [sym_property_modifier] = ACTIONS(4969), - [anon_sym_abstract] = ACTIONS(4969), - [anon_sym_final] = ACTIONS(4969), - [anon_sym_open] = ACTIONS(4969), - [anon_sym_vararg] = ACTIONS(4969), - [anon_sym_noinline] = ACTIONS(4969), - [anon_sym_crossinline] = ACTIONS(4969), - [anon_sym_expect] = ACTIONS(4969), - [anon_sym_actual] = ACTIONS(4969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4971), - [sym_safe_nav] = ACTIONS(4971), - [sym_multiline_comment] = ACTIONS(3), - }, - [3141] = { - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_object] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_this] = ACTIONS(4344), - [anon_sym_super] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4344), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_throw] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4346), - [anon_sym_continue_AT] = ACTIONS(4346), - [anon_sym_break_AT] = ACTIONS(4346), - [sym_real_literal] = ACTIONS(4346), - [sym_integer_literal] = ACTIONS(4344), - [sym_hex_literal] = ACTIONS(4346), - [sym_bin_literal] = ACTIONS(4346), - [anon_sym_true] = ACTIONS(4344), - [anon_sym_false] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4346), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4346), - }, - [3142] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1766), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(1764), - [anon_sym_sealed] = ACTIONS(1764), - [anon_sym_annotation] = ACTIONS(1764), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_lateinit] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_internal] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_tailrec] = ACTIONS(1764), - [anon_sym_operator] = ACTIONS(1764), - [anon_sym_infix] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_external] = ACTIONS(1764), - [sym_property_modifier] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_final] = ACTIONS(1764), - [anon_sym_open] = ACTIONS(1764), - [anon_sym_vararg] = ACTIONS(1764), - [anon_sym_noinline] = ACTIONS(1764), - [anon_sym_crossinline] = ACTIONS(1764), - [anon_sym_expect] = ACTIONS(1764), - [anon_sym_actual] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), - [sym_multiline_comment] = ACTIONS(3), - }, - [3143] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_object] = ACTIONS(5033), - [anon_sym_fun] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_this] = ACTIONS(5033), - [anon_sym_super] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [sym_label] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_null] = ACTIONS(5033), - [anon_sym_if] = ACTIONS(5033), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_when] = ACTIONS(5033), - [anon_sym_try] = ACTIONS(5033), - [anon_sym_throw] = ACTIONS(5033), - [anon_sym_return] = ACTIONS(5033), - [anon_sym_continue] = ACTIONS(5033), - [anon_sym_break] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_expect] = ACTIONS(5033), - [anon_sym_actual] = ACTIONS(5033), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5035), - [anon_sym_continue_AT] = ACTIONS(5035), - [anon_sym_break_AT] = ACTIONS(5035), - [sym_real_literal] = ACTIONS(5035), - [sym_integer_literal] = ACTIONS(5033), - [sym_hex_literal] = ACTIONS(5035), - [sym_bin_literal] = ACTIONS(5035), - [anon_sym_true] = ACTIONS(5033), - [anon_sym_false] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5035), - [sym__backtick_identifier] = ACTIONS(5035), - [sym__automatic_semicolon] = ACTIONS(5035), - [sym_safe_nav] = ACTIONS(5035), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5035), - }, - [3144] = { - [sym__alpha_identifier] = ACTIONS(4859), - [anon_sym_AT] = ACTIONS(4861), - [anon_sym_LBRACK] = ACTIONS(4861), - [anon_sym_RBRACK] = ACTIONS(4861), - [anon_sym_as] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4861), - [anon_sym_COMMA] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4859), - [anon_sym_GT] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4859), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_get] = ACTIONS(4859), - [anon_sym_set] = ACTIONS(4859), - [anon_sym_STAR] = ACTIONS(4859), - [anon_sym_DASH_GT] = ACTIONS(4861), - [sym_label] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4859), - [anon_sym_while] = ACTIONS(4859), - [anon_sym_DOT_DOT] = ACTIONS(4861), - [anon_sym_QMARK_COLON] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_else] = ACTIONS(4859), - [anon_sym_COLON_COLON] = ACTIONS(4861), - [anon_sym_PLUS_EQ] = ACTIONS(4861), - [anon_sym_DASH_EQ] = ACTIONS(4861), - [anon_sym_STAR_EQ] = ACTIONS(4861), - [anon_sym_SLASH_EQ] = ACTIONS(4861), - [anon_sym_PERCENT_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), - [anon_sym_LT_EQ] = ACTIONS(4861), - [anon_sym_GT_EQ] = ACTIONS(4861), - [anon_sym_BANGin] = ACTIONS(4861), - [anon_sym_is] = ACTIONS(4859), - [anon_sym_BANGis] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4859), - [anon_sym_DASH] = ACTIONS(4859), - [anon_sym_SLASH] = ACTIONS(4859), - [anon_sym_PERCENT] = ACTIONS(4859), - [anon_sym_as_QMARK] = ACTIONS(4861), - [anon_sym_PLUS_PLUS] = ACTIONS(4861), - [anon_sym_DASH_DASH] = ACTIONS(4861), - [anon_sym_BANG_BANG] = ACTIONS(4861), - [anon_sym_suspend] = ACTIONS(4859), - [anon_sym_sealed] = ACTIONS(4859), - [anon_sym_annotation] = ACTIONS(4859), - [anon_sym_data] = ACTIONS(4859), - [anon_sym_inner] = ACTIONS(4859), - [anon_sym_override] = ACTIONS(4859), - [anon_sym_lateinit] = ACTIONS(4859), - [anon_sym_public] = ACTIONS(4859), - [anon_sym_private] = ACTIONS(4859), - [anon_sym_internal] = ACTIONS(4859), - [anon_sym_protected] = ACTIONS(4859), - [anon_sym_tailrec] = ACTIONS(4859), - [anon_sym_operator] = ACTIONS(4859), - [anon_sym_infix] = ACTIONS(4859), - [anon_sym_inline] = ACTIONS(4859), - [anon_sym_external] = ACTIONS(4859), - [sym_property_modifier] = ACTIONS(4859), - [anon_sym_abstract] = ACTIONS(4859), - [anon_sym_final] = ACTIONS(4859), - [anon_sym_open] = ACTIONS(4859), - [anon_sym_vararg] = ACTIONS(4859), - [anon_sym_noinline] = ACTIONS(4859), - [anon_sym_crossinline] = ACTIONS(4859), - [anon_sym_expect] = ACTIONS(4859), - [anon_sym_actual] = ACTIONS(4859), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4861), - [sym_safe_nav] = ACTIONS(4861), + [3118] = { + [sym__alpha_identifier] = ACTIONS(4627), + [anon_sym_AT] = ACTIONS(4629), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_RBRACK] = ACTIONS(4629), + [anon_sym_as] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4629), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [anon_sym_COMMA] = ACTIONS(4629), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_where] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(4627), + [anon_sym_set] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [anon_sym_DASH_GT] = ACTIONS(4629), + [sym_label] = ACTIONS(4629), + [anon_sym_in] = ACTIONS(4627), + [anon_sym_while] = ACTIONS(4627), + [anon_sym_DOT_DOT] = ACTIONS(4629), + [anon_sym_QMARK_COLON] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [anon_sym_else] = ACTIONS(4627), + [anon_sym_COLON_COLON] = ACTIONS(4629), + [anon_sym_PLUS_EQ] = ACTIONS(4629), + [anon_sym_DASH_EQ] = ACTIONS(4629), + [anon_sym_STAR_EQ] = ACTIONS(4629), + [anon_sym_SLASH_EQ] = ACTIONS(4629), + [anon_sym_PERCENT_EQ] = ACTIONS(4629), + [anon_sym_BANG_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_BANGin] = ACTIONS(4629), + [anon_sym_is] = ACTIONS(4627), + [anon_sym_BANGis] = ACTIONS(4629), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4629), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_BANG_BANG] = ACTIONS(4629), + [anon_sym_suspend] = ACTIONS(4627), + [anon_sym_sealed] = ACTIONS(4627), + [anon_sym_annotation] = ACTIONS(4627), + [anon_sym_data] = ACTIONS(4627), + [anon_sym_inner] = ACTIONS(4627), + [anon_sym_override] = ACTIONS(4627), + [anon_sym_lateinit] = ACTIONS(4627), + [anon_sym_public] = ACTIONS(4627), + [anon_sym_private] = ACTIONS(4627), + [anon_sym_internal] = ACTIONS(4627), + [anon_sym_protected] = ACTIONS(4627), + [anon_sym_tailrec] = ACTIONS(4627), + [anon_sym_operator] = ACTIONS(4627), + [anon_sym_infix] = ACTIONS(4627), + [anon_sym_inline] = ACTIONS(4627), + [anon_sym_external] = ACTIONS(4627), + [sym_property_modifier] = ACTIONS(4627), + [anon_sym_abstract] = ACTIONS(4627), + [anon_sym_final] = ACTIONS(4627), + [anon_sym_open] = ACTIONS(4627), + [anon_sym_vararg] = ACTIONS(4627), + [anon_sym_noinline] = ACTIONS(4627), + [anon_sym_crossinline] = ACTIONS(4627), + [anon_sym_expect] = ACTIONS(4627), + [anon_sym_actual] = ACTIONS(4627), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4629), + [sym_safe_nav] = ACTIONS(4629), [sym_multiline_comment] = ACTIONS(3), }, - [3145] = { - [sym__alpha_identifier] = ACTIONS(4973), - [anon_sym_AT] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_where] = ACTIONS(4973), - [anon_sym_object] = ACTIONS(4973), - [anon_sym_fun] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_get] = ACTIONS(4973), - [anon_sym_set] = ACTIONS(4973), - [anon_sym_this] = ACTIONS(4973), - [anon_sym_super] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [sym_label] = ACTIONS(4973), - [anon_sym_in] = ACTIONS(4973), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_QMARK_COLON] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_null] = ACTIONS(4973), - [anon_sym_if] = ACTIONS(4973), - [anon_sym_else] = ACTIONS(4973), - [anon_sym_when] = ACTIONS(4973), - [anon_sym_try] = ACTIONS(4973), - [anon_sym_throw] = ACTIONS(4973), - [anon_sym_return] = ACTIONS(4973), - [anon_sym_continue] = ACTIONS(4973), - [anon_sym_break] = ACTIONS(4973), - [anon_sym_COLON_COLON] = ACTIONS(4975), - [anon_sym_PLUS_EQ] = ACTIONS(4975), - [anon_sym_DASH_EQ] = ACTIONS(4975), - [anon_sym_STAR_EQ] = ACTIONS(4975), - [anon_sym_SLASH_EQ] = ACTIONS(4975), - [anon_sym_PERCENT_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4975), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_BANGin] = ACTIONS(4975), - [anon_sym_is] = ACTIONS(4973), - [anon_sym_BANGis] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_PERCENT] = ACTIONS(4973), - [anon_sym_as_QMARK] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_BANG_BANG] = ACTIONS(4975), - [anon_sym_data] = ACTIONS(4973), - [anon_sym_inner] = ACTIONS(4973), - [anon_sym_expect] = ACTIONS(4973), - [anon_sym_actual] = ACTIONS(4973), + [3119] = { + [sym__alpha_identifier] = ACTIONS(4601), + [anon_sym_AT] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4603), + [anon_sym_as] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4601), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_RBRACE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_where] = ACTIONS(4601), + [anon_sym_object] = ACTIONS(4601), + [anon_sym_fun] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_get] = ACTIONS(4601), + [anon_sym_set] = ACTIONS(4601), + [anon_sym_this] = ACTIONS(4601), + [anon_sym_super] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4601), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4601), + [anon_sym_DOT_DOT] = ACTIONS(4603), + [anon_sym_QMARK_COLON] = ACTIONS(4603), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4603), + [anon_sym_null] = ACTIONS(4601), + [anon_sym_if] = ACTIONS(4601), + [anon_sym_else] = ACTIONS(4601), + [anon_sym_when] = ACTIONS(4601), + [anon_sym_try] = ACTIONS(4601), + [anon_sym_throw] = ACTIONS(4601), + [anon_sym_return] = ACTIONS(4601), + [anon_sym_continue] = ACTIONS(4601), + [anon_sym_break] = ACTIONS(4601), + [anon_sym_COLON_COLON] = ACTIONS(4603), + [anon_sym_PLUS_EQ] = ACTIONS(4603), + [anon_sym_DASH_EQ] = ACTIONS(4603), + [anon_sym_STAR_EQ] = ACTIONS(4603), + [anon_sym_SLASH_EQ] = ACTIONS(4603), + [anon_sym_PERCENT_EQ] = ACTIONS(4603), + [anon_sym_BANG_EQ] = ACTIONS(4601), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4603), + [anon_sym_EQ_EQ] = ACTIONS(4601), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4603), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_BANGin] = ACTIONS(4603), + [anon_sym_is] = ACTIONS(4601), + [anon_sym_BANGis] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4601), + [anon_sym_PERCENT] = ACTIONS(4601), + [anon_sym_as_QMARK] = ACTIONS(4603), + [anon_sym_PLUS_PLUS] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4601), + [anon_sym_BANG_BANG] = ACTIONS(4603), + [anon_sym_data] = ACTIONS(4601), + [anon_sym_inner] = ACTIONS(4601), + [anon_sym_expect] = ACTIONS(4601), + [anon_sym_actual] = ACTIONS(4601), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4975), - [anon_sym_continue_AT] = ACTIONS(4975), - [anon_sym_break_AT] = ACTIONS(4975), - [sym_real_literal] = ACTIONS(4975), - [sym_integer_literal] = ACTIONS(4973), - [sym_hex_literal] = ACTIONS(4975), - [sym_bin_literal] = ACTIONS(4975), - [anon_sym_true] = ACTIONS(4973), - [anon_sym_false] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4975), - [sym__backtick_identifier] = ACTIONS(4975), - [sym__automatic_semicolon] = ACTIONS(4975), - [sym_safe_nav] = ACTIONS(4975), + [anon_sym_return_AT] = ACTIONS(4603), + [anon_sym_continue_AT] = ACTIONS(4603), + [anon_sym_break_AT] = ACTIONS(4603), + [sym_real_literal] = ACTIONS(4603), + [sym_integer_literal] = ACTIONS(4601), + [sym_hex_literal] = ACTIONS(4603), + [sym_bin_literal] = ACTIONS(4603), + [anon_sym_true] = ACTIONS(4601), + [anon_sym_false] = ACTIONS(4601), + [anon_sym_SQUOTE] = ACTIONS(4603), + [sym__backtick_identifier] = ACTIONS(4603), + [sym__automatic_semicolon] = ACTIONS(4603), + [sym_safe_nav] = ACTIONS(4603), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4975), - }, - [3146] = { - [sym__alpha_identifier] = ACTIONS(4969), - [anon_sym_AT] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_where] = ACTIONS(4969), - [anon_sym_object] = ACTIONS(4969), - [anon_sym_fun] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_get] = ACTIONS(4969), - [anon_sym_set] = ACTIONS(4969), - [anon_sym_this] = ACTIONS(4969), - [anon_sym_super] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [sym_label] = ACTIONS(4969), - [anon_sym_in] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4971), - [anon_sym_QMARK_COLON] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_PIPE_PIPE] = ACTIONS(4971), - [anon_sym_null] = ACTIONS(4969), - [anon_sym_if] = ACTIONS(4969), - [anon_sym_else] = ACTIONS(4969), - [anon_sym_when] = ACTIONS(4969), - [anon_sym_try] = ACTIONS(4969), - [anon_sym_throw] = ACTIONS(4969), - [anon_sym_return] = ACTIONS(4969), - [anon_sym_continue] = ACTIONS(4969), - [anon_sym_break] = ACTIONS(4969), - [anon_sym_COLON_COLON] = ACTIONS(4971), - [anon_sym_PLUS_EQ] = ACTIONS(4971), - [anon_sym_DASH_EQ] = ACTIONS(4971), - [anon_sym_STAR_EQ] = ACTIONS(4971), - [anon_sym_SLASH_EQ] = ACTIONS(4971), - [anon_sym_PERCENT_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4971), - [anon_sym_LT_EQ] = ACTIONS(4971), - [anon_sym_GT_EQ] = ACTIONS(4971), - [anon_sym_BANGin] = ACTIONS(4971), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_BANGis] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_as_QMARK] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4969), - [anon_sym_BANG_BANG] = ACTIONS(4971), - [anon_sym_data] = ACTIONS(4969), - [anon_sym_inner] = ACTIONS(4969), - [anon_sym_expect] = ACTIONS(4969), - [anon_sym_actual] = ACTIONS(4969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4971), - [anon_sym_continue_AT] = ACTIONS(4971), - [anon_sym_break_AT] = ACTIONS(4971), - [sym_real_literal] = ACTIONS(4971), - [sym_integer_literal] = ACTIONS(4969), - [sym_hex_literal] = ACTIONS(4971), - [sym_bin_literal] = ACTIONS(4971), - [anon_sym_true] = ACTIONS(4969), - [anon_sym_false] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4971), - [sym__backtick_identifier] = ACTIONS(4971), - [sym__automatic_semicolon] = ACTIONS(4971), - [sym_safe_nav] = ACTIONS(4971), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4971), + [sym__string_start] = ACTIONS(4603), }, - [3147] = { - [sym__alpha_identifier] = ACTIONS(4965), - [anon_sym_AT] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4965), - [anon_sym_where] = ACTIONS(4965), - [anon_sym_object] = ACTIONS(4965), - [anon_sym_fun] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_get] = ACTIONS(4965), - [anon_sym_set] = ACTIONS(4965), - [anon_sym_this] = ACTIONS(4965), - [anon_sym_super] = ACTIONS(4965), - [anon_sym_STAR] = ACTIONS(4965), - [sym_label] = ACTIONS(4965), - [anon_sym_in] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4967), - [anon_sym_QMARK_COLON] = ACTIONS(4967), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE_PIPE] = ACTIONS(4967), - [anon_sym_null] = ACTIONS(4965), - [anon_sym_if] = ACTIONS(4965), - [anon_sym_else] = ACTIONS(4965), - [anon_sym_when] = ACTIONS(4965), - [anon_sym_try] = ACTIONS(4965), - [anon_sym_throw] = ACTIONS(4965), - [anon_sym_return] = ACTIONS(4965), - [anon_sym_continue] = ACTIONS(4965), - [anon_sym_break] = ACTIONS(4965), - [anon_sym_COLON_COLON] = ACTIONS(4967), - [anon_sym_PLUS_EQ] = ACTIONS(4967), - [anon_sym_DASH_EQ] = ACTIONS(4967), - [anon_sym_STAR_EQ] = ACTIONS(4967), - [anon_sym_SLASH_EQ] = ACTIONS(4967), - [anon_sym_PERCENT_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4967), - [anon_sym_LT_EQ] = ACTIONS(4967), - [anon_sym_GT_EQ] = ACTIONS(4967), - [anon_sym_BANGin] = ACTIONS(4967), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_BANGis] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4965), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_as_QMARK] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4965), - [anon_sym_BANG_BANG] = ACTIONS(4967), - [anon_sym_data] = ACTIONS(4965), - [anon_sym_inner] = ACTIONS(4965), - [anon_sym_expect] = ACTIONS(4965), - [anon_sym_actual] = ACTIONS(4965), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4967), - [anon_sym_continue_AT] = ACTIONS(4967), - [anon_sym_break_AT] = ACTIONS(4967), - [sym_real_literal] = ACTIONS(4967), - [sym_integer_literal] = ACTIONS(4965), - [sym_hex_literal] = ACTIONS(4967), - [sym_bin_literal] = ACTIONS(4967), - [anon_sym_true] = ACTIONS(4965), - [anon_sym_false] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4967), - [sym__backtick_identifier] = ACTIONS(4967), - [sym__automatic_semicolon] = ACTIONS(4967), - [sym_safe_nav] = ACTIONS(4967), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4967), + [3120] = { + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, - [3148] = { - [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_expect] = ACTIONS(4652), - [anon_sym_actual] = ACTIONS(4652), + [3121] = { + [sym__alpha_identifier] = ACTIONS(4589), + [anon_sym_AT] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4591), + [anon_sym_as] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4589), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_RBRACE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_where] = ACTIONS(4589), + [anon_sym_object] = ACTIONS(4589), + [anon_sym_fun] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4589), + [anon_sym_set] = ACTIONS(4589), + [anon_sym_this] = ACTIONS(4589), + [anon_sym_super] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4589), + [sym_label] = ACTIONS(4589), + [anon_sym_in] = ACTIONS(4589), + [anon_sym_DOT_DOT] = ACTIONS(4591), + [anon_sym_QMARK_COLON] = ACTIONS(4591), + [anon_sym_AMP_AMP] = ACTIONS(4591), + [anon_sym_PIPE_PIPE] = ACTIONS(4591), + [anon_sym_null] = ACTIONS(4589), + [anon_sym_if] = ACTIONS(4589), + [anon_sym_else] = ACTIONS(4589), + [anon_sym_when] = ACTIONS(4589), + [anon_sym_try] = ACTIONS(4589), + [anon_sym_throw] = ACTIONS(4589), + [anon_sym_return] = ACTIONS(4589), + [anon_sym_continue] = ACTIONS(4589), + [anon_sym_break] = ACTIONS(4589), + [anon_sym_COLON_COLON] = ACTIONS(4591), + [anon_sym_PLUS_EQ] = ACTIONS(4591), + [anon_sym_DASH_EQ] = ACTIONS(4591), + [anon_sym_STAR_EQ] = ACTIONS(4591), + [anon_sym_SLASH_EQ] = ACTIONS(4591), + [anon_sym_PERCENT_EQ] = ACTIONS(4591), + [anon_sym_BANG_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4591), + [anon_sym_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4591), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_BANGin] = ACTIONS(4591), + [anon_sym_is] = ACTIONS(4589), + [anon_sym_BANGis] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4589), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_as_QMARK] = ACTIONS(4591), + [anon_sym_PLUS_PLUS] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4589), + [anon_sym_BANG_BANG] = ACTIONS(4591), + [anon_sym_data] = ACTIONS(4589), + [anon_sym_inner] = ACTIONS(4589), + [anon_sym_expect] = ACTIONS(4589), + [anon_sym_actual] = ACTIONS(4589), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4654), - [anon_sym_continue_AT] = ACTIONS(4654), - [anon_sym_break_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), - }, - [3149] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_object] = ACTIONS(5041), - [anon_sym_fun] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_this] = ACTIONS(5041), - [anon_sym_super] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [sym_label] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(5041), - [anon_sym_if] = ACTIONS(5041), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_when] = ACTIONS(5041), - [anon_sym_try] = ACTIONS(5041), - [anon_sym_throw] = ACTIONS(5041), - [anon_sym_return] = ACTIONS(5041), - [anon_sym_continue] = ACTIONS(5041), - [anon_sym_break] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_expect] = ACTIONS(5041), - [anon_sym_actual] = ACTIONS(5041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5043), - [anon_sym_continue_AT] = ACTIONS(5043), - [anon_sym_break_AT] = ACTIONS(5043), - [sym_real_literal] = ACTIONS(5043), - [sym_integer_literal] = ACTIONS(5041), - [sym_hex_literal] = ACTIONS(5043), - [sym_bin_literal] = ACTIONS(5043), - [anon_sym_true] = ACTIONS(5041), - [anon_sym_false] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5043), - [sym__backtick_identifier] = ACTIONS(5043), - [sym__automatic_semicolon] = ACTIONS(5043), - [sym_safe_nav] = ACTIONS(5043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5043), - }, - [3150] = { - [sym_type_constraints] = STATE(3117), - [sym_enum_class_body] = STATE(3127), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5169), - [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_where] = ACTIONS(5173), - [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_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), + [anon_sym_return_AT] = ACTIONS(4591), + [anon_sym_continue_AT] = ACTIONS(4591), + [anon_sym_break_AT] = ACTIONS(4591), + [sym_real_literal] = ACTIONS(4591), + [sym_integer_literal] = ACTIONS(4589), + [sym_hex_literal] = ACTIONS(4591), + [sym_bin_literal] = ACTIONS(4591), + [anon_sym_true] = ACTIONS(4589), + [anon_sym_false] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4591), + [sym__backtick_identifier] = ACTIONS(4591), + [sym__automatic_semicolon] = ACTIONS(4591), + [sym_safe_nav] = ACTIONS(4591), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4591), }, - [3151] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_object] = ACTIONS(1770), - [anon_sym_fun] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_super] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_when] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_expect] = ACTIONS(1770), - [anon_sym_actual] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1772), - [anon_sym_continue_AT] = ACTIONS(1772), - [anon_sym_break_AT] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [sym_hex_literal] = ACTIONS(1772), - [sym_bin_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1772), - }, - [3152] = { - [sym__alpha_identifier] = ACTIONS(4989), - [anon_sym_AT] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_RBRACK] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_where] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_get] = ACTIONS(4989), - [anon_sym_set] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4991), - [sym_label] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4989), - [anon_sym_while] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_QMARK_COLON] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_else] = ACTIONS(4989), - [anon_sym_COLON_COLON] = ACTIONS(4991), - [anon_sym_PLUS_EQ] = ACTIONS(4991), - [anon_sym_DASH_EQ] = ACTIONS(4991), - [anon_sym_STAR_EQ] = ACTIONS(4991), - [anon_sym_SLASH_EQ] = ACTIONS(4991), - [anon_sym_PERCENT_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_BANGin] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_BANGis] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_as_QMARK] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_BANG_BANG] = ACTIONS(4991), - [anon_sym_suspend] = ACTIONS(4989), - [anon_sym_sealed] = ACTIONS(4989), - [anon_sym_annotation] = ACTIONS(4989), - [anon_sym_data] = ACTIONS(4989), - [anon_sym_inner] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_lateinit] = ACTIONS(4989), - [anon_sym_public] = ACTIONS(4989), - [anon_sym_private] = ACTIONS(4989), - [anon_sym_internal] = ACTIONS(4989), - [anon_sym_protected] = ACTIONS(4989), - [anon_sym_tailrec] = ACTIONS(4989), - [anon_sym_operator] = ACTIONS(4989), - [anon_sym_infix] = ACTIONS(4989), - [anon_sym_inline] = ACTIONS(4989), - [anon_sym_external] = ACTIONS(4989), - [sym_property_modifier] = ACTIONS(4989), - [anon_sym_abstract] = ACTIONS(4989), - [anon_sym_final] = ACTIONS(4989), - [anon_sym_open] = ACTIONS(4989), - [anon_sym_vararg] = ACTIONS(4989), - [anon_sym_noinline] = ACTIONS(4989), - [anon_sym_crossinline] = ACTIONS(4989), - [anon_sym_expect] = ACTIONS(4989), - [anon_sym_actual] = ACTIONS(4989), + [3122] = { + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_fun] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1752), + [anon_sym_super] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_when] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_data] = ACTIONS(1752), + [anon_sym_inner] = ACTIONS(1752), + [anon_sym_expect] = ACTIONS(1752), + [anon_sym_actual] = ACTIONS(1752), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4991), - [sym_safe_nav] = ACTIONS(4991), + [anon_sym_return_AT] = ACTIONS(1754), + [anon_sym_continue_AT] = ACTIONS(1754), + [anon_sym_break_AT] = ACTIONS(1754), + [sym_real_literal] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [sym_hex_literal] = ACTIONS(1754), + [sym_bin_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1754), }, - [3153] = { - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [3154] = { - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [3123] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, - [3155] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_object] = ACTIONS(4943), - [anon_sym_fun] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_this] = ACTIONS(4943), - [anon_sym_super] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [sym_label] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_null] = ACTIONS(4943), - [anon_sym_if] = ACTIONS(4943), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_when] = ACTIONS(4943), - [anon_sym_try] = ACTIONS(4943), - [anon_sym_throw] = ACTIONS(4943), - [anon_sym_return] = ACTIONS(4943), - [anon_sym_continue] = ACTIONS(4943), - [anon_sym_break] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4945), - [anon_sym_continue_AT] = ACTIONS(4945), - [anon_sym_break_AT] = ACTIONS(4945), - [sym_real_literal] = ACTIONS(4945), - [sym_integer_literal] = ACTIONS(4943), - [sym_hex_literal] = ACTIONS(4945), - [sym_bin_literal] = ACTIONS(4945), - [anon_sym_true] = ACTIONS(4943), - [anon_sym_false] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4945), - [sym__backtick_identifier] = ACTIONS(4945), - [sym__automatic_semicolon] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4945), + [3124] = { + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, - [3156] = { + [3125] = { [sym__alpha_identifier] = ACTIONS(5085), [anon_sym_AT] = ACTIONS(5087), [anon_sym_LBRACK] = ACTIONS(5087), @@ -354829,4135 +352364,4717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5087), }, - [3157] = { - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(4392), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_object] = ACTIONS(4390), - [anon_sym_fun] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_this] = ACTIONS(4390), - [anon_sym_super] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [sym_label] = ACTIONS(4390), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_when] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_throw] = ACTIONS(4390), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_continue] = ACTIONS(4390), - [anon_sym_break] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG] = ACTIONS(4390), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4392), - [anon_sym_continue_AT] = ACTIONS(4392), - [anon_sym_break_AT] = ACTIONS(4392), - [sym_real_literal] = ACTIONS(4392), - [sym_integer_literal] = ACTIONS(4390), - [sym_hex_literal] = ACTIONS(4392), - [sym_bin_literal] = ACTIONS(4392), - [anon_sym_true] = ACTIONS(4390), - [anon_sym_false] = ACTIONS(4390), - [anon_sym_SQUOTE] = ACTIONS(4392), - [sym__backtick_identifier] = ACTIONS(4392), - [sym__automatic_semicolon] = ACTIONS(4392), - [sym_safe_nav] = ACTIONS(4392), + [3126] = { + [sym__alpha_identifier] = ACTIONS(4937), + [anon_sym_AT] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_RBRACK] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4937), + [anon_sym_GT] = ACTIONS(4937), + [anon_sym_where] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4937), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_get] = ACTIONS(4937), + [anon_sym_set] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [anon_sym_DASH_GT] = ACTIONS(4939), + [sym_label] = ACTIONS(4939), + [anon_sym_in] = ACTIONS(4937), + [anon_sym_while] = ACTIONS(4937), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_QMARK_COLON] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_else] = ACTIONS(4937), + [anon_sym_COLON_COLON] = ACTIONS(4939), + [anon_sym_PLUS_EQ] = ACTIONS(4939), + [anon_sym_DASH_EQ] = ACTIONS(4939), + [anon_sym_STAR_EQ] = ACTIONS(4939), + [anon_sym_SLASH_EQ] = ACTIONS(4939), + [anon_sym_PERCENT_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4937), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_BANGin] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4937), + [anon_sym_BANGis] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_as_QMARK] = ACTIONS(4939), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_BANG_BANG] = ACTIONS(4939), + [anon_sym_suspend] = ACTIONS(4937), + [anon_sym_sealed] = ACTIONS(4937), + [anon_sym_annotation] = ACTIONS(4937), + [anon_sym_data] = ACTIONS(4937), + [anon_sym_inner] = ACTIONS(4937), + [anon_sym_override] = ACTIONS(4937), + [anon_sym_lateinit] = ACTIONS(4937), + [anon_sym_public] = ACTIONS(4937), + [anon_sym_private] = ACTIONS(4937), + [anon_sym_internal] = ACTIONS(4937), + [anon_sym_protected] = ACTIONS(4937), + [anon_sym_tailrec] = ACTIONS(4937), + [anon_sym_operator] = ACTIONS(4937), + [anon_sym_infix] = ACTIONS(4937), + [anon_sym_inline] = ACTIONS(4937), + [anon_sym_external] = ACTIONS(4937), + [sym_property_modifier] = ACTIONS(4937), + [anon_sym_abstract] = ACTIONS(4937), + [anon_sym_final] = ACTIONS(4937), + [anon_sym_open] = ACTIONS(4937), + [anon_sym_vararg] = ACTIONS(4937), + [anon_sym_noinline] = ACTIONS(4937), + [anon_sym_crossinline] = ACTIONS(4937), + [anon_sym_expect] = ACTIONS(4937), + [anon_sym_actual] = ACTIONS(4937), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4939), + [sym_safe_nav] = ACTIONS(4939), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4392), }, - [3158] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_object] = ACTIONS(5045), - [anon_sym_fun] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_this] = ACTIONS(5045), - [anon_sym_super] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), - [anon_sym_if] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_when] = ACTIONS(5045), - [anon_sym_try] = ACTIONS(5045), - [anon_sym_throw] = ACTIONS(5045), - [anon_sym_return] = ACTIONS(5045), - [anon_sym_continue] = ACTIONS(5045), - [anon_sym_break] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5047), - [anon_sym_continue_AT] = ACTIONS(5047), - [anon_sym_break_AT] = ACTIONS(5047), - [sym_real_literal] = ACTIONS(5047), - [sym_integer_literal] = ACTIONS(5045), - [sym_hex_literal] = ACTIONS(5047), - [sym_bin_literal] = ACTIONS(5047), - [anon_sym_true] = ACTIONS(5045), - [anon_sym_false] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5047), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5047), + [3127] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), }, - [3159] = { - [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_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), + [3128] = { + [sym__alpha_identifier] = ACTIONS(4967), + [anon_sym_AT] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_object] = ACTIONS(4967), + [anon_sym_fun] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_get] = ACTIONS(4967), + [anon_sym_set] = ACTIONS(4967), + [anon_sym_this] = ACTIONS(4967), + [anon_sym_super] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4967), + [sym_label] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_QMARK_COLON] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_null] = ACTIONS(4967), + [anon_sym_if] = ACTIONS(4967), + [anon_sym_else] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_try] = ACTIONS(4967), + [anon_sym_throw] = ACTIONS(4967), + [anon_sym_return] = ACTIONS(4967), + [anon_sym_continue] = ACTIONS(4967), + [anon_sym_break] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_PLUS_EQ] = ACTIONS(4969), + [anon_sym_DASH_EQ] = ACTIONS(4969), + [anon_sym_STAR_EQ] = ACTIONS(4969), + [anon_sym_SLASH_EQ] = ACTIONS(4969), + [anon_sym_PERCENT_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_BANGin] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_BANGis] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_as_QMARK] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_BANG_BANG] = ACTIONS(4969), + [anon_sym_data] = ACTIONS(4967), + [anon_sym_inner] = ACTIONS(4967), + [anon_sym_expect] = ACTIONS(4967), + [anon_sym_actual] = ACTIONS(4967), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4969), + [anon_sym_continue_AT] = ACTIONS(4969), + [anon_sym_break_AT] = ACTIONS(4969), + [sym_real_literal] = ACTIONS(4969), + [sym_integer_literal] = ACTIONS(4967), + [sym_hex_literal] = ACTIONS(4969), + [sym_bin_literal] = ACTIONS(4969), + [anon_sym_true] = ACTIONS(4967), + [anon_sym_false] = ACTIONS(4967), + [anon_sym_SQUOTE] = ACTIONS(4969), + [sym__backtick_identifier] = ACTIONS(4969), + [sym__automatic_semicolon] = ACTIONS(4969), + [sym_safe_nav] = ACTIONS(4969), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4969), + }, + [3129] = { + [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_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), + [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), + }, + [3130] = { + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [3131] = { + [sym_type_constraints] = STATE(3817), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6512), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3132] = { + [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_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5061), - [sym_safe_nav] = ACTIONS(5061), + [anon_sym_return_AT] = ACTIONS(5069), + [anon_sym_continue_AT] = ACTIONS(5069), + [anon_sym_break_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), }, - [3160] = { - [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_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), + [3133] = { + [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_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4784), - [sym_safe_nav] = ACTIONS(4784), + [anon_sym_return_AT] = ACTIONS(5065), + [anon_sym_continue_AT] = ACTIONS(5065), + [anon_sym_break_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), }, - [3161] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_object] = ACTIONS(4939), - [anon_sym_fun] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_this] = ACTIONS(4939), - [anon_sym_super] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [sym_label] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_null] = ACTIONS(4939), - [anon_sym_if] = ACTIONS(4939), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_when] = ACTIONS(4939), - [anon_sym_try] = ACTIONS(4939), - [anon_sym_throw] = ACTIONS(4939), - [anon_sym_return] = ACTIONS(4939), - [anon_sym_continue] = ACTIONS(4939), - [anon_sym_break] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4941), - [anon_sym_continue_AT] = ACTIONS(4941), - [anon_sym_break_AT] = ACTIONS(4941), - [sym_real_literal] = ACTIONS(4941), - [sym_integer_literal] = ACTIONS(4939), - [sym_hex_literal] = ACTIONS(4941), - [sym_bin_literal] = ACTIONS(4941), - [anon_sym_true] = ACTIONS(4939), - [anon_sym_false] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4941), - [sym__backtick_identifier] = ACTIONS(4941), - [sym__automatic_semicolon] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4941), - }, - [3162] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_object] = ACTIONS(4935), - [anon_sym_fun] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_this] = ACTIONS(4935), - [anon_sym_super] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [sym_label] = ACTIONS(4935), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(4935), - [anon_sym_if] = ACTIONS(4935), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_when] = ACTIONS(4935), - [anon_sym_try] = ACTIONS(4935), - [anon_sym_throw] = ACTIONS(4935), - [anon_sym_return] = ACTIONS(4935), - [anon_sym_continue] = ACTIONS(4935), - [anon_sym_break] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4937), - [anon_sym_continue_AT] = ACTIONS(4937), - [anon_sym_break_AT] = ACTIONS(4937), - [sym_real_literal] = ACTIONS(4937), - [sym_integer_literal] = ACTIONS(4935), - [sym_hex_literal] = ACTIONS(4937), - [sym_bin_literal] = ACTIONS(4937), - [anon_sym_true] = ACTIONS(4935), - [anon_sym_false] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4937), - [sym__backtick_identifier] = ACTIONS(4937), - [sym__automatic_semicolon] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4937), + [3134] = { + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4644), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_object] = ACTIONS(4642), + [anon_sym_fun] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_this] = ACTIONS(4642), + [anon_sym_super] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4642), + [anon_sym_if] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_when] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(4642), + [anon_sym_throw] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_continue] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4644), + [anon_sym_continue_AT] = ACTIONS(4644), + [anon_sym_break_AT] = ACTIONS(4644), + [sym_real_literal] = ACTIONS(4644), + [sym_integer_literal] = ACTIONS(4642), + [sym_hex_literal] = ACTIONS(4644), + [sym_bin_literal] = ACTIONS(4644), + [anon_sym_true] = ACTIONS(4642), + [anon_sym_false] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym__backtick_identifier] = ACTIONS(4644), + [sym__automatic_semicolon] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4644), }, - [3163] = { - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_object] = ACTIONS(1778), - [anon_sym_fun] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(1778), - [anon_sym_set] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1778), - [anon_sym_super] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_when] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_throw] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_data] = ACTIONS(1778), - [anon_sym_inner] = ACTIONS(1778), - [anon_sym_expect] = ACTIONS(1778), - [anon_sym_actual] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1780), - [anon_sym_continue_AT] = ACTIONS(1780), - [anon_sym_break_AT] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [sym_hex_literal] = ACTIONS(1780), - [sym_bin_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1780), + [3135] = { + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_object] = ACTIONS(4476), + [anon_sym_fun] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_this] = ACTIONS(4476), + [anon_sym_super] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_when] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4478), + [anon_sym_continue_AT] = ACTIONS(4478), + [anon_sym_break_AT] = ACTIONS(4478), + [sym_real_literal] = ACTIONS(4478), + [sym_integer_literal] = ACTIONS(4476), + [sym_hex_literal] = ACTIONS(4478), + [sym_bin_literal] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4476), + [anon_sym_false] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4478), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4478), }, - [3164] = { - [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_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), + [3136] = { + [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_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4654), - [sym_safe_nav] = ACTIONS(4654), + [anon_sym_return_AT] = ACTIONS(5061), + [anon_sym_continue_AT] = ACTIONS(5061), + [anon_sym_break_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), }, - [3165] = { - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [3166] = { - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4256), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [3137] = { + [sym__alpha_identifier] = ACTIONS(4933), + [anon_sym_AT] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_RBRACK] = ACTIONS(4935), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_COMMA] = ACTIONS(4935), + [anon_sym_RPAREN] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4933), + [anon_sym_GT] = ACTIONS(4933), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4935), + [sym_label] = ACTIONS(4935), + [anon_sym_in] = ACTIONS(4933), + [anon_sym_while] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4935), + [anon_sym_QMARK_COLON] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4935), + [anon_sym_PIPE_PIPE] = ACTIONS(4935), + [anon_sym_else] = ACTIONS(4933), + [anon_sym_COLON_COLON] = ACTIONS(4935), + [anon_sym_PLUS_EQ] = ACTIONS(4935), + [anon_sym_DASH_EQ] = ACTIONS(4935), + [anon_sym_STAR_EQ] = ACTIONS(4935), + [anon_sym_SLASH_EQ] = ACTIONS(4935), + [anon_sym_PERCENT_EQ] = ACTIONS(4935), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4935), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4935), + [anon_sym_LT_EQ] = ACTIONS(4935), + [anon_sym_GT_EQ] = ACTIONS(4935), + [anon_sym_BANGin] = ACTIONS(4935), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_BANGis] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(4933), + [anon_sym_DASH] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4933), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_as_QMARK] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4935), + [anon_sym_DASH_DASH] = ACTIONS(4935), + [anon_sym_BANG_BANG] = ACTIONS(4935), + [anon_sym_suspend] = ACTIONS(4933), + [anon_sym_sealed] = ACTIONS(4933), + [anon_sym_annotation] = ACTIONS(4933), + [anon_sym_data] = ACTIONS(4933), + [anon_sym_inner] = ACTIONS(4933), + [anon_sym_override] = ACTIONS(4933), + [anon_sym_lateinit] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_internal] = ACTIONS(4933), + [anon_sym_protected] = ACTIONS(4933), + [anon_sym_tailrec] = ACTIONS(4933), + [anon_sym_operator] = ACTIONS(4933), + [anon_sym_infix] = ACTIONS(4933), + [anon_sym_inline] = ACTIONS(4933), + [anon_sym_external] = ACTIONS(4933), + [sym_property_modifier] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_open] = ACTIONS(4933), + [anon_sym_vararg] = ACTIONS(4933), + [anon_sym_noinline] = ACTIONS(4933), + [anon_sym_crossinline] = ACTIONS(4933), + [anon_sym_expect] = ACTIONS(4933), + [anon_sym_actual] = ACTIONS(4933), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4935), + [sym_safe_nav] = ACTIONS(4935), + [sym_multiline_comment] = ACTIONS(3), }, - [3167] = { - [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_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_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), - [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), + [3138] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), }, - [3168] = { - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [3139] = { + [sym_type_constraints] = STATE(3838), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), }, - [3169] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_RBRACK] = ACTIONS(4595), - [anon_sym_as] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_get] = ACTIONS(4593), - [anon_sym_set] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [anon_sym_DASH_GT] = ACTIONS(4595), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4593), - [anon_sym_while] = ACTIONS(4593), - [anon_sym_DOT_DOT] = ACTIONS(4595), - [anon_sym_QMARK_COLON] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4595), - [anon_sym_PIPE_PIPE] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_PLUS_EQ] = ACTIONS(4595), - [anon_sym_DASH_EQ] = ACTIONS(4595), - [anon_sym_STAR_EQ] = ACTIONS(4595), - [anon_sym_SLASH_EQ] = ACTIONS(4595), - [anon_sym_PERCENT_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), - [anon_sym_LT_EQ] = ACTIONS(4595), - [anon_sym_GT_EQ] = ACTIONS(4595), - [anon_sym_BANGin] = ACTIONS(4595), - [anon_sym_is] = ACTIONS(4593), - [anon_sym_BANGis] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_PERCENT] = ACTIONS(4593), - [anon_sym_as_QMARK] = ACTIONS(4595), - [anon_sym_PLUS_PLUS] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4595), - [anon_sym_suspend] = ACTIONS(4593), - [anon_sym_sealed] = ACTIONS(4593), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_data] = ACTIONS(4593), - [anon_sym_inner] = ACTIONS(4593), - [anon_sym_override] = ACTIONS(4593), - [anon_sym_lateinit] = ACTIONS(4593), - [anon_sym_public] = ACTIONS(4593), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_internal] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_tailrec] = ACTIONS(4593), - [anon_sym_operator] = ACTIONS(4593), - [anon_sym_infix] = ACTIONS(4593), - [anon_sym_inline] = ACTIONS(4593), - [anon_sym_external] = ACTIONS(4593), - [sym_property_modifier] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_final] = ACTIONS(4593), - [anon_sym_open] = ACTIONS(4593), - [anon_sym_vararg] = ACTIONS(4593), - [anon_sym_noinline] = ACTIONS(4593), - [anon_sym_crossinline] = ACTIONS(4593), - [anon_sym_expect] = ACTIONS(4593), - [anon_sym_actual] = ACTIONS(4593), + [3140] = { + [sym__alpha_identifier] = ACTIONS(4949), + [anon_sym_AT] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_as] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_RBRACE] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_COMMA] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_where] = ACTIONS(4949), + [anon_sym_object] = ACTIONS(4949), + [anon_sym_fun] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_get] = ACTIONS(4949), + [anon_sym_set] = ACTIONS(4949), + [anon_sym_this] = ACTIONS(4949), + [anon_sym_super] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4949), + [sym_label] = ACTIONS(4949), + [anon_sym_in] = ACTIONS(4949), + [anon_sym_DOT_DOT] = ACTIONS(4951), + [anon_sym_QMARK_COLON] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4951), + [anon_sym_PIPE_PIPE] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4949), + [anon_sym_if] = ACTIONS(4949), + [anon_sym_else] = ACTIONS(4949), + [anon_sym_when] = ACTIONS(4949), + [anon_sym_try] = ACTIONS(4949), + [anon_sym_throw] = ACTIONS(4949), + [anon_sym_return] = ACTIONS(4949), + [anon_sym_continue] = ACTIONS(4949), + [anon_sym_break] = ACTIONS(4949), + [anon_sym_COLON_COLON] = ACTIONS(4951), + [anon_sym_PLUS_EQ] = ACTIONS(4951), + [anon_sym_DASH_EQ] = ACTIONS(4951), + [anon_sym_STAR_EQ] = ACTIONS(4951), + [anon_sym_SLASH_EQ] = ACTIONS(4951), + [anon_sym_PERCENT_EQ] = ACTIONS(4951), + [anon_sym_BANG_EQ] = ACTIONS(4949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4951), + [anon_sym_EQ_EQ] = ACTIONS(4949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4951), + [anon_sym_LT_EQ] = ACTIONS(4951), + [anon_sym_GT_EQ] = ACTIONS(4951), + [anon_sym_BANGin] = ACTIONS(4951), + [anon_sym_is] = ACTIONS(4949), + [anon_sym_BANGis] = ACTIONS(4951), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_SLASH] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_as_QMARK] = ACTIONS(4951), + [anon_sym_PLUS_PLUS] = ACTIONS(4951), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4949), + [anon_sym_BANG_BANG] = ACTIONS(4951), + [anon_sym_data] = ACTIONS(4949), + [anon_sym_inner] = ACTIONS(4949), + [anon_sym_expect] = ACTIONS(4949), + [anon_sym_actual] = ACTIONS(4949), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4595), - [sym_safe_nav] = ACTIONS(4595), + [anon_sym_return_AT] = ACTIONS(4951), + [anon_sym_continue_AT] = ACTIONS(4951), + [anon_sym_break_AT] = ACTIONS(4951), + [sym_real_literal] = ACTIONS(4951), + [sym_integer_literal] = ACTIONS(4949), + [sym_hex_literal] = ACTIONS(4951), + [sym_bin_literal] = ACTIONS(4951), + [anon_sym_true] = ACTIONS(4949), + [anon_sym_false] = ACTIONS(4949), + [anon_sym_SQUOTE] = ACTIONS(4951), + [sym__backtick_identifier] = ACTIONS(4951), + [sym__automatic_semicolon] = ACTIONS(4951), + [sym_safe_nav] = ACTIONS(4951), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4951), }, - [3170] = { - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = 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_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), - [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), + [3141] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, - [3171] = { - [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_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_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), - [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), + [3142] = { + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, - [3172] = { - [sym__alpha_identifier] = ACTIONS(4921), - [anon_sym_AT] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_as] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_where] = ACTIONS(4921), - [anon_sym_object] = ACTIONS(4921), - [anon_sym_fun] = ACTIONS(4921), - [anon_sym_DOT] = ACTIONS(4921), - [anon_sym_SEMI] = ACTIONS(4923), - [anon_sym_get] = ACTIONS(4921), - [anon_sym_set] = ACTIONS(4921), - [anon_sym_this] = ACTIONS(4921), - [anon_sym_super] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [sym_label] = ACTIONS(4921), - [anon_sym_in] = ACTIONS(4921), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [anon_sym_QMARK_COLON] = ACTIONS(4923), - [anon_sym_AMP_AMP] = ACTIONS(4923), - [anon_sym_PIPE_PIPE] = ACTIONS(4923), - [anon_sym_null] = ACTIONS(4921), - [anon_sym_if] = ACTIONS(4921), - [anon_sym_else] = ACTIONS(4921), - [anon_sym_when] = ACTIONS(4921), - [anon_sym_try] = ACTIONS(4921), - [anon_sym_throw] = ACTIONS(4921), - [anon_sym_return] = ACTIONS(4921), - [anon_sym_continue] = ACTIONS(4921), - [anon_sym_break] = ACTIONS(4921), - [anon_sym_COLON_COLON] = ACTIONS(4923), - [anon_sym_PLUS_EQ] = ACTIONS(4923), - [anon_sym_DASH_EQ] = ACTIONS(4923), - [anon_sym_STAR_EQ] = ACTIONS(4923), - [anon_sym_SLASH_EQ] = ACTIONS(4923), - [anon_sym_PERCENT_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4923), - [anon_sym_LT_EQ] = ACTIONS(4923), - [anon_sym_GT_EQ] = ACTIONS(4923), - [anon_sym_BANGin] = ACTIONS(4923), - [anon_sym_is] = ACTIONS(4921), - [anon_sym_BANGis] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_PERCENT] = ACTIONS(4921), - [anon_sym_as_QMARK] = ACTIONS(4923), - [anon_sym_PLUS_PLUS] = ACTIONS(4923), - [anon_sym_DASH_DASH] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4921), - [anon_sym_BANG_BANG] = ACTIONS(4923), - [anon_sym_data] = ACTIONS(4921), - [anon_sym_inner] = ACTIONS(4921), - [anon_sym_expect] = ACTIONS(4921), - [anon_sym_actual] = ACTIONS(4921), + [3143] = { + [sym__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [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_DOT] = 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_expect] = ACTIONS(5055), + [anon_sym_actual] = ACTIONS(5055), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4923), - [anon_sym_continue_AT] = ACTIONS(4923), - [anon_sym_break_AT] = ACTIONS(4923), - [sym_real_literal] = ACTIONS(4923), - [sym_integer_literal] = ACTIONS(4921), - [sym_hex_literal] = ACTIONS(4923), - [sym_bin_literal] = ACTIONS(4923), - [anon_sym_true] = ACTIONS(4921), - [anon_sym_false] = ACTIONS(4921), - [anon_sym_SQUOTE] = ACTIONS(4923), - [sym__backtick_identifier] = ACTIONS(4923), - [sym__automatic_semicolon] = ACTIONS(4923), - [sym_safe_nav] = ACTIONS(4923), + [anon_sym_return_AT] = ACTIONS(5057), + [anon_sym_continue_AT] = ACTIONS(5057), + [anon_sym_break_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(4923), - }, - [3173] = { - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym__string_start] = ACTIONS(5057), }, - [3174] = { - [sym_function_body] = STATE(3176), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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_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_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), - [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), + [3144] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_fun] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_this] = ACTIONS(207), + [anon_sym_super] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [sym_label] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_null] = ACTIONS(207), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_try] = ACTIONS(207), + [anon_sym_throw] = ACTIONS(207), + [anon_sym_return] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_break] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(205), + [anon_sym_continue_AT] = ACTIONS(205), + [anon_sym_break_AT] = ACTIONS(205), + [sym_real_literal] = ACTIONS(205), + [sym_integer_literal] = ACTIONS(207), + [sym_hex_literal] = ACTIONS(205), + [sym_bin_literal] = ACTIONS(205), + [anon_sym_true] = ACTIONS(207), + [anon_sym_false] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(205), + [sym__backtick_identifier] = ACTIONS(205), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), }, - [3175] = { - [sym__alpha_identifier] = ACTIONS(4913), - [anon_sym_AT] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_as] = ACTIONS(4913), - [anon_sym_EQ] = ACTIONS(4913), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_RBRACE] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_where] = ACTIONS(4913), - [anon_sym_object] = ACTIONS(4913), - [anon_sym_fun] = ACTIONS(4913), - [anon_sym_DOT] = ACTIONS(4913), - [anon_sym_SEMI] = ACTIONS(4915), - [anon_sym_get] = ACTIONS(4913), - [anon_sym_set] = ACTIONS(4913), - [anon_sym_this] = ACTIONS(4913), - [anon_sym_super] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [sym_label] = ACTIONS(4913), - [anon_sym_in] = ACTIONS(4913), - [anon_sym_DOT_DOT] = ACTIONS(4915), - [anon_sym_QMARK_COLON] = ACTIONS(4915), - [anon_sym_AMP_AMP] = ACTIONS(4915), - [anon_sym_PIPE_PIPE] = ACTIONS(4915), - [anon_sym_null] = ACTIONS(4913), - [anon_sym_if] = ACTIONS(4913), - [anon_sym_else] = ACTIONS(4913), - [anon_sym_when] = ACTIONS(4913), - [anon_sym_try] = ACTIONS(4913), - [anon_sym_throw] = ACTIONS(4913), - [anon_sym_return] = ACTIONS(4913), - [anon_sym_continue] = ACTIONS(4913), - [anon_sym_break] = ACTIONS(4913), - [anon_sym_COLON_COLON] = ACTIONS(4915), - [anon_sym_PLUS_EQ] = ACTIONS(4915), - [anon_sym_DASH_EQ] = ACTIONS(4915), - [anon_sym_STAR_EQ] = ACTIONS(4915), - [anon_sym_SLASH_EQ] = ACTIONS(4915), - [anon_sym_PERCENT_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), - [anon_sym_LT_EQ] = ACTIONS(4915), - [anon_sym_GT_EQ] = ACTIONS(4915), - [anon_sym_BANGin] = ACTIONS(4915), - [anon_sym_is] = ACTIONS(4913), - [anon_sym_BANGis] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_PERCENT] = ACTIONS(4913), - [anon_sym_as_QMARK] = ACTIONS(4915), - [anon_sym_PLUS_PLUS] = ACTIONS(4915), - [anon_sym_DASH_DASH] = ACTIONS(4915), - [anon_sym_BANG] = ACTIONS(4913), - [anon_sym_BANG_BANG] = ACTIONS(4915), - [anon_sym_data] = ACTIONS(4913), - [anon_sym_inner] = ACTIONS(4913), - [anon_sym_expect] = ACTIONS(4913), - [anon_sym_actual] = ACTIONS(4913), + [3145] = { + [sym__alpha_identifier] = ACTIONS(5009), + [anon_sym_AT] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_as] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_where] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_get] = ACTIONS(5009), + [anon_sym_set] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5009), + [anon_sym_DASH_GT] = ACTIONS(5011), + [sym_label] = ACTIONS(5011), + [anon_sym_in] = ACTIONS(5009), + [anon_sym_while] = ACTIONS(5009), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_QMARK_COLON] = ACTIONS(5011), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_else] = ACTIONS(5009), + [anon_sym_COLON_COLON] = ACTIONS(5011), + [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(5009), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_BANGin] = ACTIONS(5011), + [anon_sym_is] = ACTIONS(5009), + [anon_sym_BANGis] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_as_QMARK] = ACTIONS(5011), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_BANG_BANG] = ACTIONS(5011), + [anon_sym_suspend] = ACTIONS(5009), + [anon_sym_sealed] = ACTIONS(5009), + [anon_sym_annotation] = ACTIONS(5009), + [anon_sym_data] = ACTIONS(5009), + [anon_sym_inner] = ACTIONS(5009), + [anon_sym_override] = ACTIONS(5009), + [anon_sym_lateinit] = ACTIONS(5009), + [anon_sym_public] = ACTIONS(5009), + [anon_sym_private] = ACTIONS(5009), + [anon_sym_internal] = ACTIONS(5009), + [anon_sym_protected] = ACTIONS(5009), + [anon_sym_tailrec] = ACTIONS(5009), + [anon_sym_operator] = ACTIONS(5009), + [anon_sym_infix] = ACTIONS(5009), + [anon_sym_inline] = ACTIONS(5009), + [anon_sym_external] = ACTIONS(5009), + [sym_property_modifier] = ACTIONS(5009), + [anon_sym_abstract] = ACTIONS(5009), + [anon_sym_final] = ACTIONS(5009), + [anon_sym_open] = ACTIONS(5009), + [anon_sym_vararg] = ACTIONS(5009), + [anon_sym_noinline] = ACTIONS(5009), + [anon_sym_crossinline] = ACTIONS(5009), + [anon_sym_expect] = ACTIONS(5009), + [anon_sym_actual] = ACTIONS(5009), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4915), - [anon_sym_continue_AT] = ACTIONS(4915), - [anon_sym_break_AT] = ACTIONS(4915), - [sym_real_literal] = ACTIONS(4915), - [sym_integer_literal] = ACTIONS(4913), - [sym_hex_literal] = ACTIONS(4915), - [sym_bin_literal] = ACTIONS(4915), - [anon_sym_true] = ACTIONS(4913), - [anon_sym_false] = ACTIONS(4913), - [anon_sym_SQUOTE] = ACTIONS(4915), - [sym__backtick_identifier] = ACTIONS(4915), - [sym__automatic_semicolon] = ACTIONS(4915), - [sym_safe_nav] = ACTIONS(4915), + [sym__backtick_identifier] = ACTIONS(5011), + [sym_safe_nav] = ACTIONS(5011), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4915), }, - [3176] = { - [sym__alpha_identifier] = ACTIONS(4909), - [anon_sym_AT] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_as] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(4909), - [anon_sym_LBRACE] = ACTIONS(4911), - [anon_sym_RBRACE] = ACTIONS(4911), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_where] = ACTIONS(4909), - [anon_sym_object] = ACTIONS(4909), - [anon_sym_fun] = ACTIONS(4909), - [anon_sym_DOT] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(4911), - [anon_sym_get] = ACTIONS(4909), - [anon_sym_set] = ACTIONS(4909), - [anon_sym_this] = ACTIONS(4909), - [anon_sym_super] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [sym_label] = ACTIONS(4909), - [anon_sym_in] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(4911), - [anon_sym_QMARK_COLON] = ACTIONS(4911), - [anon_sym_AMP_AMP] = ACTIONS(4911), - [anon_sym_PIPE_PIPE] = ACTIONS(4911), - [anon_sym_null] = ACTIONS(4909), - [anon_sym_if] = ACTIONS(4909), - [anon_sym_else] = ACTIONS(4909), - [anon_sym_when] = ACTIONS(4909), - [anon_sym_try] = ACTIONS(4909), - [anon_sym_throw] = ACTIONS(4909), - [anon_sym_return] = ACTIONS(4909), - [anon_sym_continue] = ACTIONS(4909), - [anon_sym_break] = ACTIONS(4909), - [anon_sym_COLON_COLON] = ACTIONS(4911), - [anon_sym_PLUS_EQ] = ACTIONS(4911), - [anon_sym_DASH_EQ] = ACTIONS(4911), - [anon_sym_STAR_EQ] = ACTIONS(4911), - [anon_sym_SLASH_EQ] = ACTIONS(4911), - [anon_sym_PERCENT_EQ] = ACTIONS(4911), - [anon_sym_BANG_EQ] = ACTIONS(4909), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4911), - [anon_sym_EQ_EQ] = ACTIONS(4909), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4911), - [anon_sym_LT_EQ] = ACTIONS(4911), - [anon_sym_GT_EQ] = ACTIONS(4911), - [anon_sym_BANGin] = ACTIONS(4911), - [anon_sym_is] = ACTIONS(4909), - [anon_sym_BANGis] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_PERCENT] = ACTIONS(4909), - [anon_sym_as_QMARK] = ACTIONS(4911), - [anon_sym_PLUS_PLUS] = ACTIONS(4911), - [anon_sym_DASH_DASH] = ACTIONS(4911), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_BANG_BANG] = ACTIONS(4911), - [anon_sym_data] = ACTIONS(4909), - [anon_sym_inner] = ACTIONS(4909), - [anon_sym_expect] = ACTIONS(4909), - [anon_sym_actual] = ACTIONS(4909), + [3146] = { + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_object] = ACTIONS(4482), + [anon_sym_fun] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_this] = ACTIONS(4482), + [anon_sym_super] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4482), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_when] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_throw] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4484), + [anon_sym_continue_AT] = ACTIONS(4484), + [anon_sym_break_AT] = ACTIONS(4484), + [sym_real_literal] = ACTIONS(4484), + [sym_integer_literal] = ACTIONS(4482), + [sym_hex_literal] = ACTIONS(4484), + [sym_bin_literal] = ACTIONS(4484), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4484), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4484), + }, + [3147] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [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_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(4911), - [anon_sym_continue_AT] = ACTIONS(4911), - [anon_sym_break_AT] = ACTIONS(4911), - [sym_real_literal] = ACTIONS(4911), - [sym_integer_literal] = ACTIONS(4909), - [sym_hex_literal] = ACTIONS(4911), - [sym_bin_literal] = ACTIONS(4911), - [anon_sym_true] = ACTIONS(4909), - [anon_sym_false] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4911), - [sym__backtick_identifier] = ACTIONS(4911), - [sym__automatic_semicolon] = ACTIONS(4911), - [sym_safe_nav] = ACTIONS(4911), + [sym__backtick_identifier] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4911), }, - [3177] = { - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5577), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [3148] = { + [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_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), + [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), }, - [3178] = { - [sym_class_body] = STATE(3209), - [sym_type_constraints] = STATE(3098), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = 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_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_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), + [3149] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_this] = ACTIONS(5047), + [anon_sym_super] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5049), + [anon_sym_QMARK_COLON] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5049), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_if] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_try] = ACTIONS(5047), + [anon_sym_throw] = ACTIONS(5047), + [anon_sym_return] = ACTIONS(5047), + [anon_sym_continue] = ACTIONS(5047), + [anon_sym_break] = ACTIONS(5047), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), + [anon_sym_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_EQ] = ACTIONS(5049), + [anon_sym_BANGin] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_BANGis] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5047), + [anon_sym_DASH] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5047), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_as_QMARK] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5049), + [anon_sym_DASH_DASH] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5049), + [anon_sym_data] = ACTIONS(5047), + [anon_sym_inner] = ACTIONS(5047), + [anon_sym_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), + [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), }, - [3179] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_DASH_GT] = ACTIONS(4997), - [sym_label] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_while] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_suspend] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_annotation] = ACTIONS(4995), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_override] = ACTIONS(4995), - [anon_sym_lateinit] = ACTIONS(4995), - [anon_sym_public] = ACTIONS(4995), - [anon_sym_private] = ACTIONS(4995), - [anon_sym_internal] = ACTIONS(4995), - [anon_sym_protected] = ACTIONS(4995), - [anon_sym_tailrec] = ACTIONS(4995), - [anon_sym_operator] = ACTIONS(4995), - [anon_sym_infix] = ACTIONS(4995), - [anon_sym_inline] = ACTIONS(4995), - [anon_sym_external] = ACTIONS(4995), - [sym_property_modifier] = ACTIONS(4995), - [anon_sym_abstract] = ACTIONS(4995), - [anon_sym_final] = ACTIONS(4995), - [anon_sym_open] = ACTIONS(4995), - [anon_sym_vararg] = ACTIONS(4995), - [anon_sym_noinline] = ACTIONS(4995), - [anon_sym_crossinline] = ACTIONS(4995), - [anon_sym_expect] = ACTIONS(4995), - [anon_sym_actual] = ACTIONS(4995), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4997), - [sym_safe_nav] = ACTIONS(4997), - [sym_multiline_comment] = ACTIONS(3), + [3150] = { + [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_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), + [sym_real_literal] = ACTIONS(5045), + [sym_integer_literal] = ACTIONS(5043), + [sym_hex_literal] = ACTIONS(5045), + [sym_bin_literal] = ACTIONS(5045), + [anon_sym_true] = ACTIONS(5043), + [anon_sym_false] = ACTIONS(5043), + [anon_sym_SQUOTE] = ACTIONS(5045), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5045), }, - [3180] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_DASH_GT] = ACTIONS(5001), - [sym_label] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_while] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_suspend] = ACTIONS(4999), - [anon_sym_sealed] = ACTIONS(4999), - [anon_sym_annotation] = ACTIONS(4999), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_override] = ACTIONS(4999), - [anon_sym_lateinit] = ACTIONS(4999), - [anon_sym_public] = ACTIONS(4999), - [anon_sym_private] = ACTIONS(4999), - [anon_sym_internal] = ACTIONS(4999), - [anon_sym_protected] = ACTIONS(4999), - [anon_sym_tailrec] = ACTIONS(4999), - [anon_sym_operator] = ACTIONS(4999), - [anon_sym_infix] = ACTIONS(4999), - [anon_sym_inline] = ACTIONS(4999), - [anon_sym_external] = ACTIONS(4999), - [sym_property_modifier] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_final] = ACTIONS(4999), - [anon_sym_open] = ACTIONS(4999), - [anon_sym_vararg] = ACTIONS(4999), - [anon_sym_noinline] = ACTIONS(4999), - [anon_sym_crossinline] = ACTIONS(4999), - [anon_sym_expect] = ACTIONS(4999), - [anon_sym_actual] = ACTIONS(4999), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5001), - [sym_safe_nav] = ACTIONS(5001), - [sym_multiline_comment] = ACTIONS(3), + [3151] = { + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_object] = ACTIONS(4623), + [anon_sym_fun] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_this] = ACTIONS(4623), + [anon_sym_super] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_null] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_try] = ACTIONS(4623), + [anon_sym_throw] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4625), + [anon_sym_continue_AT] = ACTIONS(4625), + [anon_sym_break_AT] = ACTIONS(4625), + [sym_real_literal] = ACTIONS(4625), + [sym_integer_literal] = ACTIONS(4623), + [sym_hex_literal] = ACTIONS(4625), + [sym_bin_literal] = ACTIONS(4625), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4625), }, - [3181] = { - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4231), - [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_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), + [3152] = { + [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_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), + [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), }, - [3182] = { - [sym__alpha_identifier] = ACTIONS(4806), - [anon_sym_AT] = ACTIONS(4808), - [anon_sym_LBRACK] = ACTIONS(4808), - [anon_sym_RBRACK] = ACTIONS(4808), - [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_DOT] = 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_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), + [3153] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(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_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(4808), - [sym_safe_nav] = ACTIONS(4808), + [sym__backtick_identifier] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), [sym_multiline_comment] = ACTIONS(3), }, - [3183] = { - [sym_type_constraints] = STATE(3093), - [sym_enum_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = 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_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_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), + [3154] = { + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1762), + [anon_sym_fun] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1762), + [anon_sym_set] = ACTIONS(1762), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_super] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_when] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_data] = ACTIONS(1762), + [anon_sym_inner] = ACTIONS(1762), + [anon_sym_expect] = ACTIONS(1762), + [anon_sym_actual] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1764), + [anon_sym_continue_AT] = ACTIONS(1764), + [anon_sym_break_AT] = ACTIONS(1764), + [sym_real_literal] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [sym_hex_literal] = ACTIONS(1764), + [sym_bin_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1764), + }, + [3155] = { + [sym_class_body] = STATE(3208), + [sym_type_constraints] = STATE(3037), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [3184] = { - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_fun] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_super] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_when] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_data] = ACTIONS(1752), - [anon_sym_inner] = ACTIONS(1752), - [anon_sym_expect] = ACTIONS(1752), - [anon_sym_actual] = ACTIONS(1752), + [3156] = { + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [3157] = { + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [3158] = { + [sym__alpha_identifier] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5029), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [anon_sym_COMMA] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5027), + [anon_sym_GT] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_object] = ACTIONS(5027), + [anon_sym_fun] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_get] = ACTIONS(5027), + [anon_sym_set] = ACTIONS(5027), + [anon_sym_this] = ACTIONS(5027), + [anon_sym_super] = ACTIONS(5027), + [anon_sym_STAR] = ACTIONS(5027), + [sym_label] = ACTIONS(5027), + [anon_sym_in] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5029), + [anon_sym_QMARK_COLON] = ACTIONS(5029), + [anon_sym_AMP_AMP] = ACTIONS(5029), + [anon_sym_PIPE_PIPE] = ACTIONS(5029), + [anon_sym_null] = ACTIONS(5027), + [anon_sym_if] = ACTIONS(5027), + [anon_sym_else] = ACTIONS(5027), + [anon_sym_when] = ACTIONS(5027), + [anon_sym_try] = ACTIONS(5027), + [anon_sym_throw] = ACTIONS(5027), + [anon_sym_return] = ACTIONS(5027), + [anon_sym_continue] = ACTIONS(5027), + [anon_sym_break] = ACTIONS(5027), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym_PLUS_EQ] = ACTIONS(5029), + [anon_sym_DASH_EQ] = ACTIONS(5029), + [anon_sym_STAR_EQ] = ACTIONS(5029), + [anon_sym_SLASH_EQ] = ACTIONS(5029), + [anon_sym_PERCENT_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_BANGin] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_BANGis] = ACTIONS(5029), + [anon_sym_PLUS] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5027), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_as_QMARK] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5027), + [anon_sym_BANG_BANG] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5027), + [anon_sym_inner] = ACTIONS(5027), + [anon_sym_expect] = ACTIONS(5027), + [anon_sym_actual] = ACTIONS(5027), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5029), + [anon_sym_continue_AT] = ACTIONS(5029), + [anon_sym_break_AT] = ACTIONS(5029), + [sym_real_literal] = ACTIONS(5029), + [sym_integer_literal] = ACTIONS(5027), + [sym_hex_literal] = ACTIONS(5029), + [sym_bin_literal] = ACTIONS(5029), + [anon_sym_true] = ACTIONS(5027), + [anon_sym_false] = ACTIONS(5027), + [anon_sym_SQUOTE] = ACTIONS(5029), + [sym__backtick_identifier] = ACTIONS(5029), + [sym__automatic_semicolon] = ACTIONS(5029), + [sym_safe_nav] = ACTIONS(5029), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5029), + }, + [3159] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_RBRACK] = ACTIONS(4764), + [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_DOT] = 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_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(1754), - [anon_sym_continue_AT] = ACTIONS(1754), - [anon_sym_break_AT] = ACTIONS(1754), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), + [sym__backtick_identifier] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1754), }, - [3185] = { - [sym__alpha_identifier] = ACTIONS(4279), - [anon_sym_AT] = ACTIONS(4281), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_as] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4281), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_COMMA] = ACTIONS(4281), - [anon_sym_LT] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4279), - [anon_sym_where] = ACTIONS(4279), - [anon_sym_object] = ACTIONS(4279), - [anon_sym_fun] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_SEMI] = ACTIONS(4281), - [anon_sym_get] = ACTIONS(4279), - [anon_sym_set] = ACTIONS(4279), - [anon_sym_this] = ACTIONS(4279), - [anon_sym_super] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [sym_label] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4279), - [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(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_else] = ACTIONS(4279), - [anon_sym_when] = ACTIONS(4279), - [anon_sym_try] = ACTIONS(4279), - [anon_sym_throw] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [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(4279), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [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(4279), - [anon_sym_BANGis] = ACTIONS(4281), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_SLASH] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_as_QMARK] = ACTIONS(4281), - [anon_sym_PLUS_PLUS] = ACTIONS(4281), - [anon_sym_DASH_DASH] = ACTIONS(4281), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_BANG_BANG] = ACTIONS(4281), - [anon_sym_data] = ACTIONS(4279), - [anon_sym_inner] = ACTIONS(4279), - [anon_sym_expect] = ACTIONS(4279), - [anon_sym_actual] = ACTIONS(4279), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4281), - [anon_sym_continue_AT] = ACTIONS(4281), - [anon_sym_break_AT] = ACTIONS(4281), - [sym_real_literal] = ACTIONS(4281), - [sym_integer_literal] = ACTIONS(4279), - [sym_hex_literal] = ACTIONS(4281), - [sym_bin_literal] = ACTIONS(4281), - [anon_sym_true] = ACTIONS(4279), - [anon_sym_false] = ACTIONS(4279), - [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), + [3160] = { + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_object] = ACTIONS(4498), + [anon_sym_fun] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_this] = ACTIONS(4498), + [anon_sym_super] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4498), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_when] = ACTIONS(4498), + [anon_sym_try] = ACTIONS(4498), + [anon_sym_throw] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4500), + [anon_sym_continue_AT] = ACTIONS(4500), + [anon_sym_break_AT] = ACTIONS(4500), + [sym_real_literal] = ACTIONS(4500), + [sym_integer_literal] = ACTIONS(4498), + [sym_hex_literal] = ACTIONS(4500), + [sym_bin_literal] = ACTIONS(4500), + [anon_sym_true] = ACTIONS(4498), + [anon_sym_false] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4500), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4500), }, - [3186] = { - [sym__alpha_identifier] = ACTIONS(4830), - [anon_sym_AT] = ACTIONS(4832), - [anon_sym_LBRACK] = ACTIONS(4832), - [anon_sym_RBRACK] = ACTIONS(4832), - [anon_sym_as] = ACTIONS(4830), - [anon_sym_EQ] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(4832), - [anon_sym_RBRACE] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4832), - [anon_sym_COMMA] = ACTIONS(4832), - [anon_sym_RPAREN] = ACTIONS(4832), - [anon_sym_LT] = ACTIONS(4830), - [anon_sym_GT] = ACTIONS(4830), - [anon_sym_where] = ACTIONS(4830), - [anon_sym_DOT] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(4830), - [anon_sym_set] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4830), - [anon_sym_DASH_GT] = ACTIONS(4832), - [sym_label] = ACTIONS(4832), - [anon_sym_in] = ACTIONS(4830), - [anon_sym_while] = ACTIONS(4830), - [anon_sym_DOT_DOT] = ACTIONS(4832), - [anon_sym_QMARK_COLON] = ACTIONS(4832), - [anon_sym_AMP_AMP] = ACTIONS(4832), - [anon_sym_PIPE_PIPE] = ACTIONS(4832), - [anon_sym_else] = ACTIONS(4830), - [anon_sym_COLON_COLON] = ACTIONS(4832), - [anon_sym_PLUS_EQ] = ACTIONS(4832), - [anon_sym_DASH_EQ] = ACTIONS(4832), - [anon_sym_STAR_EQ] = ACTIONS(4832), - [anon_sym_SLASH_EQ] = ACTIONS(4832), - [anon_sym_PERCENT_EQ] = ACTIONS(4832), - [anon_sym_BANG_EQ] = ACTIONS(4830), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4832), - [anon_sym_EQ_EQ] = ACTIONS(4830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4832), - [anon_sym_LT_EQ] = ACTIONS(4832), - [anon_sym_GT_EQ] = ACTIONS(4832), - [anon_sym_BANGin] = ACTIONS(4832), - [anon_sym_is] = ACTIONS(4830), - [anon_sym_BANGis] = ACTIONS(4832), - [anon_sym_PLUS] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_SLASH] = ACTIONS(4830), - [anon_sym_PERCENT] = ACTIONS(4830), - [anon_sym_as_QMARK] = ACTIONS(4832), - [anon_sym_PLUS_PLUS] = ACTIONS(4832), - [anon_sym_DASH_DASH] = ACTIONS(4832), - [anon_sym_BANG_BANG] = ACTIONS(4832), - [anon_sym_suspend] = ACTIONS(4830), - [anon_sym_sealed] = ACTIONS(4830), - [anon_sym_annotation] = ACTIONS(4830), - [anon_sym_data] = ACTIONS(4830), - [anon_sym_inner] = ACTIONS(4830), - [anon_sym_override] = ACTIONS(4830), - [anon_sym_lateinit] = ACTIONS(4830), - [anon_sym_public] = ACTIONS(4830), - [anon_sym_private] = ACTIONS(4830), - [anon_sym_internal] = ACTIONS(4830), - [anon_sym_protected] = ACTIONS(4830), - [anon_sym_tailrec] = ACTIONS(4830), - [anon_sym_operator] = ACTIONS(4830), - [anon_sym_infix] = ACTIONS(4830), - [anon_sym_inline] = ACTIONS(4830), - [anon_sym_external] = ACTIONS(4830), - [sym_property_modifier] = ACTIONS(4830), - [anon_sym_abstract] = ACTIONS(4830), - [anon_sym_final] = ACTIONS(4830), - [anon_sym_open] = ACTIONS(4830), - [anon_sym_vararg] = ACTIONS(4830), - [anon_sym_noinline] = ACTIONS(4830), - [anon_sym_crossinline] = ACTIONS(4830), - [anon_sym_expect] = ACTIONS(4830), - [anon_sym_actual] = ACTIONS(4830), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4832), - [sym_safe_nav] = ACTIONS(4832), - [sym_multiline_comment] = ACTIONS(3), + [3161] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [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_DOT] = 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_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), + [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), }, - [3187] = { - [sym__alpha_identifier] = ACTIONS(4891), - [anon_sym_AT] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_RBRACK] = ACTIONS(4893), - [anon_sym_as] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4893), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_LPAREN] = ACTIONS(4893), - [anon_sym_COMMA] = ACTIONS(4893), - [anon_sym_RPAREN] = ACTIONS(4893), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_where] = ACTIONS(4891), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4893), - [anon_sym_get] = ACTIONS(4891), - [anon_sym_set] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_DASH_GT] = ACTIONS(4893), - [sym_label] = ACTIONS(4893), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_while] = ACTIONS(4891), - [anon_sym_DOT_DOT] = ACTIONS(4893), - [anon_sym_QMARK_COLON] = ACTIONS(4893), - [anon_sym_AMP_AMP] = ACTIONS(4893), - [anon_sym_PIPE_PIPE] = ACTIONS(4893), - [anon_sym_else] = ACTIONS(4891), - [anon_sym_COLON_COLON] = ACTIONS(4893), - [anon_sym_PLUS_EQ] = ACTIONS(4893), - [anon_sym_DASH_EQ] = ACTIONS(4893), - [anon_sym_STAR_EQ] = ACTIONS(4893), - [anon_sym_SLASH_EQ] = ACTIONS(4893), - [anon_sym_PERCENT_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), - [anon_sym_LT_EQ] = ACTIONS(4893), - [anon_sym_GT_EQ] = ACTIONS(4893), - [anon_sym_BANGin] = ACTIONS(4893), - [anon_sym_is] = ACTIONS(4891), - [anon_sym_BANGis] = ACTIONS(4893), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4891), - [anon_sym_as_QMARK] = ACTIONS(4893), - [anon_sym_PLUS_PLUS] = ACTIONS(4893), - [anon_sym_DASH_DASH] = ACTIONS(4893), - [anon_sym_BANG_BANG] = ACTIONS(4893), - [anon_sym_suspend] = ACTIONS(4891), - [anon_sym_sealed] = ACTIONS(4891), - [anon_sym_annotation] = ACTIONS(4891), - [anon_sym_data] = ACTIONS(4891), - [anon_sym_inner] = ACTIONS(4891), - [anon_sym_override] = ACTIONS(4891), - [anon_sym_lateinit] = ACTIONS(4891), - [anon_sym_public] = ACTIONS(4891), - [anon_sym_private] = ACTIONS(4891), - [anon_sym_internal] = ACTIONS(4891), - [anon_sym_protected] = ACTIONS(4891), - [anon_sym_tailrec] = ACTIONS(4891), - [anon_sym_operator] = ACTIONS(4891), - [anon_sym_infix] = ACTIONS(4891), - [anon_sym_inline] = ACTIONS(4891), - [anon_sym_external] = ACTIONS(4891), - [sym_property_modifier] = ACTIONS(4891), - [anon_sym_abstract] = ACTIONS(4891), - [anon_sym_final] = ACTIONS(4891), - [anon_sym_open] = ACTIONS(4891), - [anon_sym_vararg] = ACTIONS(4891), - [anon_sym_noinline] = ACTIONS(4891), - [anon_sym_crossinline] = ACTIONS(4891), - [anon_sym_expect] = ACTIONS(4891), - [anon_sym_actual] = ACTIONS(4891), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4893), - [sym_safe_nav] = ACTIONS(4893), + [3162] = { + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_object] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_this] = ACTIONS(4396), + [anon_sym_super] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_when] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_throw] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4398), + [anon_sym_continue_AT] = ACTIONS(4398), + [anon_sym_break_AT] = ACTIONS(4398), + [sym_real_literal] = ACTIONS(4398), + [sym_integer_literal] = ACTIONS(4396), + [sym_hex_literal] = ACTIONS(4398), + [sym_bin_literal] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4398), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4398), + }, + [3163] = { + [aux_sym_nullable_type_repeat1] = STATE(3163), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_by] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [sym__quest] = ACTIONS(6518), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), [sym_multiline_comment] = ACTIONS(3), }, - [3188] = { - [aux_sym_user_type_repeat1] = STATE(3422), - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(6507), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [sym__quest] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4222), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_QMARK_COLON] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4222), - [anon_sym_PLUS_EQ] = ACTIONS(4222), - [anon_sym_DASH_EQ] = ACTIONS(4222), - [anon_sym_STAR_EQ] = ACTIONS(4222), - [anon_sym_SLASH_EQ] = ACTIONS(4222), - [anon_sym_PERCENT_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_BANGin] = ACTIONS(4222), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4220), - [anon_sym_as_QMARK] = ACTIONS(4222), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_BANG_BANG] = ACTIONS(4222), - [anon_sym_suspend] = ACTIONS(4220), - [anon_sym_sealed] = ACTIONS(4220), - [anon_sym_annotation] = ACTIONS(4220), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4220), - [anon_sym_lateinit] = ACTIONS(4220), - [anon_sym_public] = ACTIONS(4220), - [anon_sym_private] = ACTIONS(4220), - [anon_sym_internal] = ACTIONS(4220), - [anon_sym_protected] = ACTIONS(4220), - [anon_sym_tailrec] = ACTIONS(4220), - [anon_sym_operator] = ACTIONS(4220), - [anon_sym_infix] = ACTIONS(4220), - [anon_sym_inline] = ACTIONS(4220), - [anon_sym_external] = ACTIONS(4220), - [sym_property_modifier] = ACTIONS(4220), - [anon_sym_abstract] = ACTIONS(4220), - [anon_sym_final] = ACTIONS(4220), - [anon_sym_open] = ACTIONS(4220), - [anon_sym_vararg] = ACTIONS(4220), - [anon_sym_noinline] = ACTIONS(4220), - [anon_sym_crossinline] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4222), - [sym__automatic_semicolon] = ACTIONS(4222), - [sym_safe_nav] = ACTIONS(4222), + [3164] = { + [sym__alpha_identifier] = ACTIONS(5021), + [anon_sym_AT] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_where] = ACTIONS(5021), + [anon_sym_object] = ACTIONS(5021), + [anon_sym_fun] = ACTIONS(5021), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_get] = ACTIONS(5021), + [anon_sym_set] = ACTIONS(5021), + [anon_sym_this] = ACTIONS(5021), + [anon_sym_super] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [sym_label] = ACTIONS(5021), + [anon_sym_in] = ACTIONS(5021), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_QMARK_COLON] = ACTIONS(5023), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_null] = ACTIONS(5021), + [anon_sym_if] = ACTIONS(5021), + [anon_sym_else] = ACTIONS(5021), + [anon_sym_when] = ACTIONS(5021), + [anon_sym_try] = ACTIONS(5021), + [anon_sym_throw] = ACTIONS(5021), + [anon_sym_return] = ACTIONS(5021), + [anon_sym_continue] = ACTIONS(5021), + [anon_sym_break] = ACTIONS(5021), + [anon_sym_COLON_COLON] = ACTIONS(5023), + [anon_sym_PLUS_EQ] = ACTIONS(5023), + [anon_sym_DASH_EQ] = ACTIONS(5023), + [anon_sym_STAR_EQ] = ACTIONS(5023), + [anon_sym_SLASH_EQ] = ACTIONS(5023), + [anon_sym_PERCENT_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5021), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5021), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_BANGin] = ACTIONS(5023), + [anon_sym_is] = ACTIONS(5021), + [anon_sym_BANGis] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5021), + [anon_sym_as_QMARK] = ACTIONS(5023), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_BANG_BANG] = ACTIONS(5023), + [anon_sym_data] = ACTIONS(5021), + [anon_sym_inner] = ACTIONS(5021), + [anon_sym_expect] = ACTIONS(5021), + [anon_sym_actual] = ACTIONS(5021), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5023), + [anon_sym_continue_AT] = ACTIONS(5023), + [anon_sym_break_AT] = ACTIONS(5023), + [sym_real_literal] = ACTIONS(5023), + [sym_integer_literal] = ACTIONS(5021), + [sym_hex_literal] = ACTIONS(5023), + [sym_bin_literal] = ACTIONS(5023), + [anon_sym_true] = ACTIONS(5021), + [anon_sym_false] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5023), + [sym__backtick_identifier] = ACTIONS(5023), + [sym__automatic_semicolon] = ACTIONS(5023), + [sym_safe_nav] = ACTIONS(5023), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5023), }, - [3189] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(1770), - [anon_sym_sealed] = ACTIONS(1770), - [anon_sym_annotation] = ACTIONS(1770), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_lateinit] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_internal] = ACTIONS(1770), - [anon_sym_protected] = ACTIONS(1770), - [anon_sym_tailrec] = ACTIONS(1770), - [anon_sym_operator] = ACTIONS(1770), - [anon_sym_infix] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym_external] = ACTIONS(1770), - [sym_property_modifier] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_final] = ACTIONS(1770), - [anon_sym_open] = ACTIONS(1770), - [anon_sym_vararg] = ACTIONS(1770), - [anon_sym_noinline] = ACTIONS(1770), - [anon_sym_crossinline] = ACTIONS(1770), - [anon_sym_expect] = ACTIONS(1770), - [anon_sym_actual] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [3165] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [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_DOT] = 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_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), + [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), }, - [3190] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_DASH_GT] = ACTIONS(5035), - [sym_label] = ACTIONS(5035), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_while] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_suspend] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_annotation] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_override] = ACTIONS(5033), - [anon_sym_lateinit] = ACTIONS(5033), - [anon_sym_public] = ACTIONS(5033), - [anon_sym_private] = ACTIONS(5033), - [anon_sym_internal] = ACTIONS(5033), - [anon_sym_protected] = ACTIONS(5033), - [anon_sym_tailrec] = ACTIONS(5033), - [anon_sym_operator] = ACTIONS(5033), - [anon_sym_infix] = ACTIONS(5033), - [anon_sym_inline] = ACTIONS(5033), - [anon_sym_external] = ACTIONS(5033), - [sym_property_modifier] = ACTIONS(5033), - [anon_sym_abstract] = ACTIONS(5033), - [anon_sym_final] = ACTIONS(5033), - [anon_sym_open] = ACTIONS(5033), - [anon_sym_vararg] = ACTIONS(5033), - [anon_sym_noinline] = ACTIONS(5033), - [anon_sym_crossinline] = ACTIONS(5033), - [anon_sym_expect] = ACTIONS(5033), - [anon_sym_actual] = ACTIONS(5033), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5035), - [sym_safe_nav] = ACTIONS(5035), + [3166] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), }, - [3191] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_DASH_GT] = ACTIONS(5043), - [sym_label] = ACTIONS(5043), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_while] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_suspend] = ACTIONS(5041), - [anon_sym_sealed] = ACTIONS(5041), - [anon_sym_annotation] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_override] = ACTIONS(5041), - [anon_sym_lateinit] = ACTIONS(5041), - [anon_sym_public] = ACTIONS(5041), - [anon_sym_private] = ACTIONS(5041), - [anon_sym_internal] = ACTIONS(5041), - [anon_sym_protected] = ACTIONS(5041), - [anon_sym_tailrec] = ACTIONS(5041), - [anon_sym_operator] = ACTIONS(5041), - [anon_sym_infix] = ACTIONS(5041), - [anon_sym_inline] = ACTIONS(5041), - [anon_sym_external] = ACTIONS(5041), - [sym_property_modifier] = ACTIONS(5041), - [anon_sym_abstract] = ACTIONS(5041), - [anon_sym_final] = ACTIONS(5041), - [anon_sym_open] = ACTIONS(5041), - [anon_sym_vararg] = ACTIONS(5041), - [anon_sym_noinline] = ACTIONS(5041), - [anon_sym_crossinline] = ACTIONS(5041), - [anon_sym_expect] = ACTIONS(5041), - [anon_sym_actual] = ACTIONS(5041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5043), - [sym_safe_nav] = ACTIONS(5043), + [3167] = { + [sym__alpha_identifier] = ACTIONS(4945), + [anon_sym_AT] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4947), + [anon_sym_COMMA] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_where] = ACTIONS(4945), + [anon_sym_object] = ACTIONS(4945), + [anon_sym_fun] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_get] = ACTIONS(4945), + [anon_sym_set] = ACTIONS(4945), + [anon_sym_this] = ACTIONS(4945), + [anon_sym_super] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4945), + [sym_label] = ACTIONS(4945), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4947), + [anon_sym_QMARK_COLON] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_null] = ACTIONS(4945), + [anon_sym_if] = ACTIONS(4945), + [anon_sym_else] = ACTIONS(4945), + [anon_sym_when] = ACTIONS(4945), + [anon_sym_try] = ACTIONS(4945), + [anon_sym_throw] = ACTIONS(4945), + [anon_sym_return] = ACTIONS(4945), + [anon_sym_continue] = ACTIONS(4945), + [anon_sym_break] = ACTIONS(4945), + [anon_sym_COLON_COLON] = ACTIONS(4947), + [anon_sym_PLUS_EQ] = ACTIONS(4947), + [anon_sym_DASH_EQ] = ACTIONS(4947), + [anon_sym_STAR_EQ] = ACTIONS(4947), + [anon_sym_SLASH_EQ] = ACTIONS(4947), + [anon_sym_PERCENT_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4947), + [anon_sym_LT_EQ] = ACTIONS(4947), + [anon_sym_GT_EQ] = ACTIONS(4947), + [anon_sym_BANGin] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_BANGis] = ACTIONS(4947), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_as_QMARK] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_BANG_BANG] = ACTIONS(4947), + [anon_sym_data] = ACTIONS(4945), + [anon_sym_inner] = ACTIONS(4945), + [anon_sym_expect] = ACTIONS(4945), + [anon_sym_actual] = ACTIONS(4945), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4947), + [anon_sym_continue_AT] = ACTIONS(4947), + [anon_sym_break_AT] = ACTIONS(4947), + [sym_real_literal] = ACTIONS(4947), + [sym_integer_literal] = ACTIONS(4945), + [sym_hex_literal] = ACTIONS(4947), + [sym_bin_literal] = ACTIONS(4947), + [anon_sym_true] = ACTIONS(4945), + [anon_sym_false] = ACTIONS(4945), + [anon_sym_SQUOTE] = ACTIONS(4947), + [sym__backtick_identifier] = ACTIONS(4947), + [sym__automatic_semicolon] = ACTIONS(4947), + [sym_safe_nav] = ACTIONS(4947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4947), + }, + [3168] = { + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [3169] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_RBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_RPAREN] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_DASH_GT] = ACTIONS(4496), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_while] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), [sym_multiline_comment] = ACTIONS(3), }, - [3192] = { - [sym__alpha_identifier] = ACTIONS(4847), - [anon_sym_AT] = ACTIONS(4849), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_RBRACK] = ACTIONS(4849), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4849), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4847), - [anon_sym_GT] = ACTIONS(4847), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4849), - [sym_label] = ACTIONS(4849), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_while] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4849), - [anon_sym_QMARK_COLON] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_else] = ACTIONS(4847), - [anon_sym_COLON_COLON] = ACTIONS(4849), - [anon_sym_PLUS_EQ] = ACTIONS(4849), - [anon_sym_DASH_EQ] = ACTIONS(4849), - [anon_sym_STAR_EQ] = ACTIONS(4849), - [anon_sym_SLASH_EQ] = ACTIONS(4849), - [anon_sym_PERCENT_EQ] = ACTIONS(4849), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), - [anon_sym_LT_EQ] = ACTIONS(4849), - [anon_sym_GT_EQ] = ACTIONS(4849), - [anon_sym_BANGin] = ACTIONS(4849), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_BANGis] = ACTIONS(4849), - [anon_sym_PLUS] = ACTIONS(4847), - [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4847), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_as_QMARK] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_BANG_BANG] = ACTIONS(4849), - [anon_sym_suspend] = ACTIONS(4847), - [anon_sym_sealed] = ACTIONS(4847), - [anon_sym_annotation] = ACTIONS(4847), - [anon_sym_data] = ACTIONS(4847), - [anon_sym_inner] = ACTIONS(4847), - [anon_sym_override] = ACTIONS(4847), - [anon_sym_lateinit] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_internal] = ACTIONS(4847), - [anon_sym_protected] = ACTIONS(4847), - [anon_sym_tailrec] = ACTIONS(4847), - [anon_sym_operator] = ACTIONS(4847), - [anon_sym_infix] = ACTIONS(4847), - [anon_sym_inline] = ACTIONS(4847), - [anon_sym_external] = ACTIONS(4847), - [sym_property_modifier] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_open] = ACTIONS(4847), - [anon_sym_vararg] = ACTIONS(4847), - [anon_sym_noinline] = ACTIONS(4847), - [anon_sym_crossinline] = ACTIONS(4847), - [anon_sym_expect] = ACTIONS(4847), - [anon_sym_actual] = ACTIONS(4847), + [3170] = { + [sym__alpha_identifier] = ACTIONS(4619), + [anon_sym_AT] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4621), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_object] = ACTIONS(4619), + [anon_sym_fun] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_get] = ACTIONS(4619), + [anon_sym_set] = ACTIONS(4619), + [anon_sym_this] = ACTIONS(4619), + [anon_sym_super] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [sym_label] = ACTIONS(4619), + [anon_sym_in] = ACTIONS(4619), + [anon_sym_DOT_DOT] = ACTIONS(4621), + [anon_sym_QMARK_COLON] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_null] = ACTIONS(4619), + [anon_sym_if] = ACTIONS(4619), + [anon_sym_else] = ACTIONS(4619), + [anon_sym_when] = ACTIONS(4619), + [anon_sym_try] = ACTIONS(4619), + [anon_sym_throw] = ACTIONS(4619), + [anon_sym_return] = ACTIONS(4619), + [anon_sym_continue] = ACTIONS(4619), + [anon_sym_break] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4621), + [anon_sym_PLUS_EQ] = ACTIONS(4621), + [anon_sym_DASH_EQ] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(4621), + [anon_sym_SLASH_EQ] = ACTIONS(4621), + [anon_sym_PERCENT_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ] = ACTIONS(4619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ] = ACTIONS(4619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_as_QMARK] = ACTIONS(4621), + [anon_sym_PLUS_PLUS] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_BANG_BANG] = ACTIONS(4621), + [anon_sym_data] = ACTIONS(4619), + [anon_sym_inner] = ACTIONS(4619), + [anon_sym_expect] = ACTIONS(4619), + [anon_sym_actual] = ACTIONS(4619), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4849), - [sym_safe_nav] = ACTIONS(4849), + [anon_sym_return_AT] = ACTIONS(4621), + [anon_sym_continue_AT] = ACTIONS(4621), + [anon_sym_break_AT] = ACTIONS(4621), + [sym_real_literal] = ACTIONS(4621), + [sym_integer_literal] = ACTIONS(4619), + [sym_hex_literal] = ACTIONS(4621), + [sym_bin_literal] = ACTIONS(4621), + [anon_sym_true] = ACTIONS(4619), + [anon_sym_false] = ACTIONS(4619), + [anon_sym_SQUOTE] = ACTIONS(4621), + [sym__backtick_identifier] = ACTIONS(4621), + [sym__automatic_semicolon] = ACTIONS(4621), + [sym_safe_nav] = ACTIONS(4621), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4621), }, - [3193] = { - [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_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), + [3171] = { + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [anon_sym_DASH_GT] = ACTIONS(4768), + [sym_label] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_while] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_suspend] = ACTIONS(4766), + [anon_sym_sealed] = ACTIONS(4766), + [anon_sym_annotation] = ACTIONS(4766), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_override] = ACTIONS(4766), + [anon_sym_lateinit] = ACTIONS(4766), + [anon_sym_public] = ACTIONS(4766), + [anon_sym_private] = ACTIONS(4766), + [anon_sym_internal] = ACTIONS(4766), + [anon_sym_protected] = ACTIONS(4766), + [anon_sym_tailrec] = ACTIONS(4766), + [anon_sym_operator] = ACTIONS(4766), + [anon_sym_infix] = ACTIONS(4766), + [anon_sym_inline] = ACTIONS(4766), + [anon_sym_external] = ACTIONS(4766), + [sym_property_modifier] = ACTIONS(4766), + [anon_sym_abstract] = ACTIONS(4766), + [anon_sym_final] = ACTIONS(4766), + [anon_sym_open] = ACTIONS(4766), + [anon_sym_vararg] = ACTIONS(4766), + [anon_sym_noinline] = ACTIONS(4766), + [anon_sym_crossinline] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5091), - [sym_safe_nav] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), [sym_multiline_comment] = ACTIONS(3), }, - [3194] = { - [aux_sym_nullable_type_repeat1] = STATE(3397), - [sym__alpha_identifier] = ACTIONS(4320), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_EQ] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_object] = ACTIONS(4320), - [anon_sym_fun] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_get] = ACTIONS(4320), - [anon_sym_set] = ACTIONS(4320), - [anon_sym_this] = ACTIONS(4320), - [anon_sym_super] = ACTIONS(4320), - [sym__quest] = ACTIONS(6510), - [anon_sym_STAR] = ACTIONS(4322), - [sym_label] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_null] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_else] = ACTIONS(4320), - [anon_sym_when] = ACTIONS(4320), - [anon_sym_try] = ACTIONS(4320), - [anon_sym_throw] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(4322), - [anon_sym_BANGin] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_BANGis] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_suspend] = ACTIONS(4320), - [anon_sym_sealed] = ACTIONS(4320), - [anon_sym_annotation] = ACTIONS(4320), - [anon_sym_data] = ACTIONS(4320), - [anon_sym_inner] = ACTIONS(4320), - [anon_sym_override] = ACTIONS(4320), - [anon_sym_lateinit] = ACTIONS(4320), - [anon_sym_public] = ACTIONS(4320), - [anon_sym_private] = ACTIONS(4320), - [anon_sym_internal] = ACTIONS(4320), - [anon_sym_protected] = ACTIONS(4320), - [anon_sym_tailrec] = ACTIONS(4320), - [anon_sym_operator] = ACTIONS(4320), - [anon_sym_infix] = ACTIONS(4320), - [anon_sym_inline] = ACTIONS(4320), - [anon_sym_external] = ACTIONS(4320), - [sym_property_modifier] = ACTIONS(4320), - [anon_sym_abstract] = ACTIONS(4320), - [anon_sym_final] = ACTIONS(4320), - [anon_sym_open] = ACTIONS(4320), - [anon_sym_vararg] = ACTIONS(4320), - [anon_sym_noinline] = ACTIONS(4320), - [anon_sym_crossinline] = ACTIONS(4320), - [anon_sym_expect] = ACTIONS(4320), - [anon_sym_actual] = ACTIONS(4320), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4322), - [anon_sym_continue_AT] = ACTIONS(4322), - [anon_sym_break_AT] = ACTIONS(4322), - [sym_real_literal] = ACTIONS(4322), - [sym_integer_literal] = ACTIONS(4320), - [sym_hex_literal] = ACTIONS(4322), - [sym_bin_literal] = ACTIONS(4322), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [anon_sym_SQUOTE] = ACTIONS(4322), - [sym__backtick_identifier] = ACTIONS(4322), - [sym__automatic_semicolon] = ACTIONS(4322), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4322), + [3172] = { + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_object] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_this] = ACTIONS(4410), + [anon_sym_super] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4410), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_when] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_throw] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4412), + [anon_sym_continue_AT] = ACTIONS(4412), + [anon_sym_break_AT] = ACTIONS(4412), + [sym_real_literal] = ACTIONS(4412), + [sym_integer_literal] = ACTIONS(4410), + [sym_hex_literal] = ACTIONS(4412), + [sym_bin_literal] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4410), + [anon_sym_false] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4412), }, - [3195] = { - [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_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_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), + [3173] = { + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_super] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_data] = ACTIONS(3340), + [anon_sym_inner] = ACTIONS(3340), + [anon_sym_expect] = ACTIONS(3340), + [anon_sym_actual] = ACTIONS(3340), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3342), + [anon_sym_continue_AT] = ACTIONS(3342), + [anon_sym_break_AT] = ACTIONS(3342), + [sym_real_literal] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_hex_literal] = ACTIONS(3342), + [sym_bin_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3342), }, - [3196] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_DASH_GT] = ACTIONS(5047), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_while] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), - [sym_multiline_comment] = ACTIONS(3), + [3174] = { + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), }, - [3197] = { - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5593), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), + [3175] = { + [sym__alpha_identifier] = ACTIONS(4997), + [anon_sym_AT] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4999), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4997), + [anon_sym_object] = ACTIONS(4997), + [anon_sym_fun] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4999), + [anon_sym_get] = ACTIONS(4997), + [anon_sym_set] = ACTIONS(4997), + [anon_sym_this] = ACTIONS(4997), + [anon_sym_super] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4997), + [sym_label] = ACTIONS(4997), + [anon_sym_in] = ACTIONS(4997), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_QMARK_COLON] = ACTIONS(4999), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_null] = ACTIONS(4997), + [anon_sym_if] = ACTIONS(4997), + [anon_sym_else] = ACTIONS(4997), + [anon_sym_when] = ACTIONS(4997), + [anon_sym_try] = ACTIONS(4997), + [anon_sym_throw] = ACTIONS(4997), + [anon_sym_return] = ACTIONS(4997), + [anon_sym_continue] = ACTIONS(4997), + [anon_sym_break] = ACTIONS(4997), + [anon_sym_COLON_COLON] = ACTIONS(4999), + [anon_sym_PLUS_EQ] = ACTIONS(4999), + [anon_sym_DASH_EQ] = ACTIONS(4999), + [anon_sym_STAR_EQ] = ACTIONS(4999), + [anon_sym_SLASH_EQ] = ACTIONS(4999), + [anon_sym_PERCENT_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_BANGin] = ACTIONS(4999), + [anon_sym_is] = ACTIONS(4997), + [anon_sym_BANGis] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_as_QMARK] = ACTIONS(4999), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4997), + [anon_sym_BANG_BANG] = ACTIONS(4999), + [anon_sym_data] = ACTIONS(4997), + [anon_sym_inner] = ACTIONS(4997), + [anon_sym_expect] = ACTIONS(4997), + [anon_sym_actual] = ACTIONS(4997), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4999), + [anon_sym_continue_AT] = ACTIONS(4999), + [anon_sym_break_AT] = ACTIONS(4999), + [sym_real_literal] = ACTIONS(4999), + [sym_integer_literal] = ACTIONS(4997), + [sym_hex_literal] = ACTIONS(4999), + [sym_bin_literal] = ACTIONS(4999), + [anon_sym_true] = ACTIONS(4997), + [anon_sym_false] = ACTIONS(4997), + [anon_sym_SQUOTE] = ACTIONS(4999), + [sym__backtick_identifier] = ACTIONS(4999), + [sym__automatic_semicolon] = ACTIONS(4999), + [sym_safe_nav] = ACTIONS(4999), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4999), }, - [3198] = { - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), + [3176] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [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_DOT] = 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_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), + [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), }, - [3199] = { - [sym__alpha_identifier] = ACTIONS(5093), - [anon_sym_AT] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5093), - [anon_sym_EQ] = ACTIONS(5093), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_where] = ACTIONS(5093), - [anon_sym_object] = ACTIONS(5093), - [anon_sym_fun] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_get] = ACTIONS(5093), - [anon_sym_set] = ACTIONS(5093), - [anon_sym_this] = ACTIONS(5093), - [anon_sym_super] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [sym_label] = ACTIONS(5093), - [anon_sym_in] = ACTIONS(5093), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_QMARK_COLON] = ACTIONS(5095), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_null] = ACTIONS(5093), - [anon_sym_if] = ACTIONS(5093), - [anon_sym_else] = ACTIONS(5093), - [anon_sym_when] = ACTIONS(5093), - [anon_sym_try] = ACTIONS(5093), - [anon_sym_throw] = ACTIONS(5093), - [anon_sym_return] = ACTIONS(5093), - [anon_sym_continue] = ACTIONS(5093), - [anon_sym_break] = ACTIONS(5093), - [anon_sym_COLON_COLON] = ACTIONS(5095), - [anon_sym_PLUS_EQ] = ACTIONS(5095), - [anon_sym_DASH_EQ] = ACTIONS(5095), - [anon_sym_STAR_EQ] = ACTIONS(5095), - [anon_sym_SLASH_EQ] = ACTIONS(5095), - [anon_sym_PERCENT_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_BANGin] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5093), - [anon_sym_BANGis] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5093), - [anon_sym_as_QMARK] = ACTIONS(5095), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_BANG_BANG] = ACTIONS(5095), - [anon_sym_data] = ACTIONS(5093), - [anon_sym_inner] = ACTIONS(5093), - [anon_sym_expect] = ACTIONS(5093), - [anon_sym_actual] = ACTIONS(5093), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5095), - [anon_sym_continue_AT] = ACTIONS(5095), - [anon_sym_break_AT] = ACTIONS(5095), - [sym_real_literal] = ACTIONS(5095), - [sym_integer_literal] = ACTIONS(5093), - [sym_hex_literal] = ACTIONS(5095), - [sym_bin_literal] = ACTIONS(5095), - [anon_sym_true] = ACTIONS(5093), - [anon_sym_false] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5095), - [sym__backtick_identifier] = ACTIONS(5095), - [sym__automatic_semicolon] = ACTIONS(5095), - [sym_safe_nav] = ACTIONS(5095), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5095), + [3177] = { + [sym_function_body] = STATE(3179), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), }, - [3200] = { - [sym_class_body] = STATE(3270), - [sym_type_constraints] = STATE(3068), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6512), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [3178] = { + [sym__alpha_identifier] = ACTIONS(4993), + [anon_sym_AT] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_where] = ACTIONS(4993), + [anon_sym_object] = ACTIONS(4993), + [anon_sym_fun] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_this] = ACTIONS(4993), + [anon_sym_super] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [sym_label] = ACTIONS(4993), + [anon_sym_in] = ACTIONS(4993), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_QMARK_COLON] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_null] = ACTIONS(4993), + [anon_sym_if] = ACTIONS(4993), + [anon_sym_else] = ACTIONS(4993), + [anon_sym_when] = ACTIONS(4993), + [anon_sym_try] = ACTIONS(4993), + [anon_sym_throw] = ACTIONS(4993), + [anon_sym_return] = ACTIONS(4993), + [anon_sym_continue] = ACTIONS(4993), + [anon_sym_break] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4995), + [anon_sym_PLUS_EQ] = ACTIONS(4995), + [anon_sym_DASH_EQ] = ACTIONS(4995), + [anon_sym_STAR_EQ] = ACTIONS(4995), + [anon_sym_SLASH_EQ] = ACTIONS(4995), + [anon_sym_PERCENT_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_BANGin] = ACTIONS(4995), + [anon_sym_is] = ACTIONS(4993), + [anon_sym_BANGis] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_as_QMARK] = ACTIONS(4995), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4993), + [anon_sym_BANG_BANG] = ACTIONS(4995), + [anon_sym_data] = ACTIONS(4993), + [anon_sym_inner] = ACTIONS(4993), + [anon_sym_expect] = ACTIONS(4993), + [anon_sym_actual] = ACTIONS(4993), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4995), + [anon_sym_continue_AT] = ACTIONS(4995), + [anon_sym_break_AT] = ACTIONS(4995), + [sym_real_literal] = ACTIONS(4995), + [sym_integer_literal] = ACTIONS(4993), + [sym_hex_literal] = ACTIONS(4995), + [sym_bin_literal] = ACTIONS(4995), + [anon_sym_true] = ACTIONS(4993), + [anon_sym_false] = ACTIONS(4993), + [anon_sym_SQUOTE] = ACTIONS(4995), + [sym__backtick_identifier] = ACTIONS(4995), + [sym__automatic_semicolon] = ACTIONS(4995), + [sym_safe_nav] = ACTIONS(4995), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4995), + }, + [3179] = { + [sym__alpha_identifier] = ACTIONS(4989), + [anon_sym_AT] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_where] = ACTIONS(4989), + [anon_sym_object] = ACTIONS(4989), + [anon_sym_fun] = ACTIONS(4989), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_get] = ACTIONS(4989), + [anon_sym_set] = ACTIONS(4989), + [anon_sym_this] = ACTIONS(4989), + [anon_sym_super] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4989), + [sym_label] = ACTIONS(4989), + [anon_sym_in] = ACTIONS(4989), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_QMARK_COLON] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_null] = ACTIONS(4989), + [anon_sym_if] = ACTIONS(4989), + [anon_sym_else] = ACTIONS(4989), + [anon_sym_when] = ACTIONS(4989), + [anon_sym_try] = ACTIONS(4989), + [anon_sym_throw] = ACTIONS(4989), + [anon_sym_return] = ACTIONS(4989), + [anon_sym_continue] = ACTIONS(4989), + [anon_sym_break] = ACTIONS(4989), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_PLUS_EQ] = ACTIONS(4991), + [anon_sym_DASH_EQ] = ACTIONS(4991), + [anon_sym_STAR_EQ] = ACTIONS(4991), + [anon_sym_SLASH_EQ] = ACTIONS(4991), + [anon_sym_PERCENT_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_BANGin] = ACTIONS(4991), + [anon_sym_is] = ACTIONS(4989), + [anon_sym_BANGis] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4989), + [anon_sym_as_QMARK] = ACTIONS(4991), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4989), + [anon_sym_BANG_BANG] = ACTIONS(4991), + [anon_sym_data] = ACTIONS(4989), + [anon_sym_inner] = ACTIONS(4989), + [anon_sym_expect] = ACTIONS(4989), + [anon_sym_actual] = ACTIONS(4989), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4991), + [anon_sym_continue_AT] = ACTIONS(4991), + [anon_sym_break_AT] = ACTIONS(4991), + [sym_real_literal] = ACTIONS(4991), + [sym_integer_literal] = ACTIONS(4989), + [sym_hex_literal] = ACTIONS(4991), + [sym_bin_literal] = ACTIONS(4991), + [anon_sym_true] = ACTIONS(4989), + [anon_sym_false] = ACTIONS(4989), + [anon_sym_SQUOTE] = ACTIONS(4991), + [sym__backtick_identifier] = ACTIONS(4991), + [sym__automatic_semicolon] = ACTIONS(4991), + [sym_safe_nav] = ACTIONS(4991), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4991), }, - [3201] = { - [aux_sym_nullable_type_repeat1] = STATE(3277), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_EQ] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_by] = ACTIONS(4248), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [sym__quest] = ACTIONS(6514), - [anon_sym_STAR] = ACTIONS(4248), - [sym_label] = ACTIONS(4250), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_QMARK_COLON] = ACTIONS(4250), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [anon_sym_else] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4250), - [anon_sym_PLUS_EQ] = ACTIONS(4250), - [anon_sym_DASH_EQ] = ACTIONS(4250), - [anon_sym_STAR_EQ] = ACTIONS(4250), - [anon_sym_SLASH_EQ] = ACTIONS(4250), - [anon_sym_PERCENT_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4248), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_BANGin] = ACTIONS(4250), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_BANGis] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4248), - [anon_sym_as_QMARK] = ACTIONS(4250), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_BANG_BANG] = ACTIONS(4250), - [anon_sym_suspend] = ACTIONS(4248), - [anon_sym_sealed] = ACTIONS(4248), - [anon_sym_annotation] = ACTIONS(4248), - [anon_sym_data] = ACTIONS(4248), - [anon_sym_inner] = ACTIONS(4248), - [anon_sym_override] = ACTIONS(4248), - [anon_sym_lateinit] = ACTIONS(4248), - [anon_sym_public] = ACTIONS(4248), - [anon_sym_private] = ACTIONS(4248), - [anon_sym_internal] = ACTIONS(4248), - [anon_sym_protected] = ACTIONS(4248), - [anon_sym_tailrec] = ACTIONS(4248), - [anon_sym_operator] = ACTIONS(4248), - [anon_sym_infix] = ACTIONS(4248), - [anon_sym_inline] = ACTIONS(4248), - [anon_sym_external] = ACTIONS(4248), - [sym_property_modifier] = ACTIONS(4248), - [anon_sym_abstract] = ACTIONS(4248), - [anon_sym_final] = ACTIONS(4248), - [anon_sym_open] = ACTIONS(4248), - [anon_sym_vararg] = ACTIONS(4248), - [anon_sym_noinline] = ACTIONS(4248), - [anon_sym_crossinline] = ACTIONS(4248), - [anon_sym_expect] = ACTIONS(4248), - [anon_sym_actual] = ACTIONS(4248), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_safe_nav] = ACTIONS(4250), + [3180] = { + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_RBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_RPAREN] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_DASH_GT] = ACTIONS(3880), + [sym_label] = ACTIONS(3880), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_suspend] = ACTIONS(3878), + [anon_sym_sealed] = ACTIONS(3878), + [anon_sym_annotation] = ACTIONS(3878), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_override] = ACTIONS(3878), + [anon_sym_lateinit] = ACTIONS(3878), + [anon_sym_public] = ACTIONS(3878), + [anon_sym_private] = ACTIONS(3878), + [anon_sym_internal] = ACTIONS(3878), + [anon_sym_protected] = ACTIONS(3878), + [anon_sym_tailrec] = ACTIONS(3878), + [anon_sym_operator] = ACTIONS(3878), + [anon_sym_infix] = ACTIONS(3878), + [anon_sym_inline] = ACTIONS(3878), + [anon_sym_external] = ACTIONS(3878), + [sym_property_modifier] = ACTIONS(3878), + [anon_sym_abstract] = ACTIONS(3878), + [anon_sym_final] = ACTIONS(3878), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_vararg] = ACTIONS(3878), + [anon_sym_noinline] = ACTIONS(3878), + [anon_sym_crossinline] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), [sym_multiline_comment] = ACTIONS(3), }, - [3202] = { - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_RBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_DASH_GT] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [3181] = { + [sym__alpha_identifier] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_RBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2990), + [sym_label] = ACTIONS(2990), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_QMARK_COLON] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_as_QMARK] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_BANG_BANG] = ACTIONS(2990), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(2988), + [anon_sym_inner] = ACTIONS(2988), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(2988), + [anon_sym_actual] = ACTIONS(2988), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(2990), [sym_multiline_comment] = ACTIONS(3), }, - [3203] = { - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_DASH_GT] = ACTIONS(1754), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(1752), - [anon_sym_sealed] = ACTIONS(1752), - [anon_sym_annotation] = ACTIONS(1752), - [anon_sym_data] = ACTIONS(1752), - [anon_sym_inner] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_lateinit] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_internal] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_tailrec] = ACTIONS(1752), - [anon_sym_operator] = ACTIONS(1752), - [anon_sym_infix] = ACTIONS(1752), - [anon_sym_inline] = ACTIONS(1752), - [anon_sym_external] = ACTIONS(1752), - [sym_property_modifier] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_open] = ACTIONS(1752), - [anon_sym_vararg] = ACTIONS(1752), - [anon_sym_noinline] = ACTIONS(1752), - [anon_sym_crossinline] = ACTIONS(1752), - [anon_sym_expect] = ACTIONS(1752), - [anon_sym_actual] = ACTIONS(1752), + [3182] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [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_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(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [3204] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_DASH_GT] = ACTIONS(4945), - [sym_label] = ACTIONS(4945), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_while] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_suspend] = ACTIONS(4943), - [anon_sym_sealed] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4943), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_override] = ACTIONS(4943), - [anon_sym_lateinit] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_internal] = ACTIONS(4943), - [anon_sym_protected] = ACTIONS(4943), - [anon_sym_tailrec] = ACTIONS(4943), - [anon_sym_operator] = ACTIONS(4943), - [anon_sym_infix] = ACTIONS(4943), - [anon_sym_inline] = ACTIONS(4943), - [anon_sym_external] = ACTIONS(4943), - [sym_property_modifier] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_open] = ACTIONS(4943), - [anon_sym_vararg] = ACTIONS(4943), - [anon_sym_noinline] = ACTIONS(4943), - [anon_sym_crossinline] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), + [sym__backtick_identifier] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), [sym_multiline_comment] = ACTIONS(3), }, - [3205] = { - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), - }, - [3206] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), - }, - [3207] = { - [sym_class_body] = STATE(3319), - [sym_type_constraints] = STATE(3055), + [3183] = { [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(5629), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_LBRACE] = ACTIONS(3200), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), [anon_sym_COLON_COLON] = ACTIONS(3200), [anon_sym_PLUS_EQ] = ACTIONS(3200), [anon_sym_DASH_EQ] = ACTIONS(3200), @@ -358980,230 +357097,1214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(3200), [anon_sym_PLUS_PLUS] = ACTIONS(3200), [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), [anon_sym_data] = ACTIONS(3196), [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), [anon_sym_expect] = ACTIONS(3196), [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, - [3208] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_object] = ACTIONS(5003), - [anon_sym_fun] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_this] = ACTIONS(5003), - [anon_sym_super] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [sym_label] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_null] = ACTIONS(5003), - [anon_sym_if] = ACTIONS(5003), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_try] = ACTIONS(5003), - [anon_sym_throw] = ACTIONS(5003), - [anon_sym_return] = ACTIONS(5003), - [anon_sym_continue] = ACTIONS(5003), - [anon_sym_break] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_expect] = ACTIONS(5003), - [anon_sym_actual] = ACTIONS(5003), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5005), - [anon_sym_continue_AT] = ACTIONS(5005), - [anon_sym_break_AT] = ACTIONS(5005), - [sym_real_literal] = ACTIONS(5005), - [sym_integer_literal] = ACTIONS(5003), - [sym_hex_literal] = ACTIONS(5005), - [sym_bin_literal] = ACTIONS(5005), - [anon_sym_true] = ACTIONS(5003), - [anon_sym_false] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5005), - [sym__backtick_identifier] = ACTIONS(5005), - [sym__automatic_semicolon] = ACTIONS(5005), - [sym_safe_nav] = ACTIONS(5005), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5005), + [3184] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [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_DOT] = 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_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), + [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), }, - [3209] = { - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_RPAREN] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_while] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), + [3185] = { + [sym__alpha_identifier] = ACTIONS(4941), + [anon_sym_AT] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_where] = ACTIONS(4941), + [anon_sym_object] = ACTIONS(4941), + [anon_sym_fun] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_get] = ACTIONS(4941), + [anon_sym_set] = ACTIONS(4941), + [anon_sym_this] = ACTIONS(4941), + [anon_sym_super] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4941), + [sym_label] = ACTIONS(4941), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_QMARK_COLON] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_null] = ACTIONS(4941), + [anon_sym_if] = ACTIONS(4941), + [anon_sym_else] = ACTIONS(4941), + [anon_sym_when] = ACTIONS(4941), + [anon_sym_try] = ACTIONS(4941), + [anon_sym_throw] = ACTIONS(4941), + [anon_sym_return] = ACTIONS(4941), + [anon_sym_continue] = ACTIONS(4941), + [anon_sym_break] = ACTIONS(4941), + [anon_sym_COLON_COLON] = ACTIONS(4943), + [anon_sym_PLUS_EQ] = ACTIONS(4943), + [anon_sym_DASH_EQ] = ACTIONS(4943), + [anon_sym_STAR_EQ] = ACTIONS(4943), + [anon_sym_SLASH_EQ] = ACTIONS(4943), + [anon_sym_PERCENT_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_BANGin] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_BANGis] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_as_QMARK] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4941), + [anon_sym_BANG_BANG] = ACTIONS(4943), + [anon_sym_data] = ACTIONS(4941), + [anon_sym_inner] = ACTIONS(4941), + [anon_sym_expect] = ACTIONS(4941), + [anon_sym_actual] = ACTIONS(4941), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4943), + [anon_sym_continue_AT] = ACTIONS(4943), + [anon_sym_break_AT] = ACTIONS(4943), + [sym_real_literal] = ACTIONS(4943), + [sym_integer_literal] = ACTIONS(4941), + [sym_hex_literal] = ACTIONS(4943), + [sym_bin_literal] = ACTIONS(4943), + [anon_sym_true] = ACTIONS(4941), + [anon_sym_false] = ACTIONS(4941), + [anon_sym_SQUOTE] = ACTIONS(4943), + [sym__backtick_identifier] = ACTIONS(4943), + [sym__automatic_semicolon] = ACTIONS(4943), + [sym_safe_nav] = ACTIONS(4943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4943), + }, + [3186] = { + [sym__alpha_identifier] = ACTIONS(4734), + [anon_sym_AT] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_RBRACK] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4736), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_get] = ACTIONS(4734), + [anon_sym_set] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(4734), + [anon_sym_DASH_GT] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_QMARK_COLON] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_BANGin] = ACTIONS(4736), + [anon_sym_is] = ACTIONS(4734), + [anon_sym_BANGis] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_as_QMARK] = ACTIONS(4736), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4736), + [anon_sym_suspend] = ACTIONS(4734), + [anon_sym_sealed] = ACTIONS(4734), + [anon_sym_annotation] = ACTIONS(4734), + [anon_sym_data] = ACTIONS(4734), + [anon_sym_inner] = ACTIONS(4734), + [anon_sym_override] = ACTIONS(4734), + [anon_sym_lateinit] = ACTIONS(4734), + [anon_sym_public] = ACTIONS(4734), + [anon_sym_private] = ACTIONS(4734), + [anon_sym_internal] = ACTIONS(4734), + [anon_sym_protected] = ACTIONS(4734), + [anon_sym_tailrec] = ACTIONS(4734), + [anon_sym_operator] = ACTIONS(4734), + [anon_sym_infix] = ACTIONS(4734), + [anon_sym_inline] = ACTIONS(4734), + [anon_sym_external] = ACTIONS(4734), + [sym_property_modifier] = ACTIONS(4734), + [anon_sym_abstract] = ACTIONS(4734), + [anon_sym_final] = ACTIONS(4734), + [anon_sym_open] = ACTIONS(4734), + [anon_sym_vararg] = ACTIONS(4734), + [anon_sym_noinline] = ACTIONS(4734), + [anon_sym_crossinline] = ACTIONS(4734), + [anon_sym_expect] = ACTIONS(4734), + [anon_sym_actual] = ACTIONS(4734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4736), + [sym_safe_nav] = ACTIONS(4736), [sym_multiline_comment] = ACTIONS(3), }, - [3210] = { + [3187] = { + [sym__alpha_identifier] = ACTIONS(4730), + [anon_sym_AT] = ACTIONS(4732), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_RBRACK] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RPAREN] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_where] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4732), + [anon_sym_get] = ACTIONS(4730), + [anon_sym_set] = ACTIONS(4730), + [anon_sym_STAR] = ACTIONS(4730), + [anon_sym_DASH_GT] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4730), + [anon_sym_while] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4732), + [anon_sym_QMARK_COLON] = ACTIONS(4732), + [anon_sym_AMP_AMP] = ACTIONS(4732), + [anon_sym_PIPE_PIPE] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_COLON_COLON] = ACTIONS(4732), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_PERCENT_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4732), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_BANGin] = ACTIONS(4732), + [anon_sym_is] = ACTIONS(4730), + [anon_sym_BANGis] = ACTIONS(4732), + [anon_sym_PLUS] = ACTIONS(4730), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4730), + [anon_sym_PERCENT] = ACTIONS(4730), + [anon_sym_as_QMARK] = ACTIONS(4732), + [anon_sym_PLUS_PLUS] = ACTIONS(4732), + [anon_sym_DASH_DASH] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4732), + [anon_sym_suspend] = ACTIONS(4730), + [anon_sym_sealed] = ACTIONS(4730), + [anon_sym_annotation] = ACTIONS(4730), + [anon_sym_data] = ACTIONS(4730), + [anon_sym_inner] = ACTIONS(4730), + [anon_sym_override] = ACTIONS(4730), + [anon_sym_lateinit] = ACTIONS(4730), + [anon_sym_public] = ACTIONS(4730), + [anon_sym_private] = ACTIONS(4730), + [anon_sym_internal] = ACTIONS(4730), + [anon_sym_protected] = ACTIONS(4730), + [anon_sym_tailrec] = ACTIONS(4730), + [anon_sym_operator] = ACTIONS(4730), + [anon_sym_infix] = ACTIONS(4730), + [anon_sym_inline] = ACTIONS(4730), + [anon_sym_external] = ACTIONS(4730), + [sym_property_modifier] = ACTIONS(4730), + [anon_sym_abstract] = ACTIONS(4730), + [anon_sym_final] = ACTIONS(4730), + [anon_sym_open] = ACTIONS(4730), + [anon_sym_vararg] = ACTIONS(4730), + [anon_sym_noinline] = ACTIONS(4730), + [anon_sym_crossinline] = ACTIONS(4730), + [anon_sym_expect] = ACTIONS(4730), + [anon_sym_actual] = ACTIONS(4730), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4732), + [sym_safe_nav] = ACTIONS(4732), + [sym_multiline_comment] = ACTIONS(3), + }, + [3188] = { + [sym_type_constraints] = STATE(3882), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6521), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3189] = { + [sym__alpha_identifier] = ACTIONS(4953), + [anon_sym_AT] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4955), + [anon_sym_RBRACK] = ACTIONS(4955), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4955), + [anon_sym_COMMA] = ACTIONS(4955), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4953), + [anon_sym_GT] = ACTIONS(4953), + [anon_sym_where] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4953), + [anon_sym_SEMI] = ACTIONS(4955), + [anon_sym_get] = ACTIONS(4953), + [anon_sym_set] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(4955), + [sym_label] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4953), + [anon_sym_while] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4955), + [anon_sym_QMARK_COLON] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_else] = ACTIONS(4953), + [anon_sym_COLON_COLON] = ACTIONS(4955), + [anon_sym_PLUS_EQ] = ACTIONS(4955), + [anon_sym_DASH_EQ] = ACTIONS(4955), + [anon_sym_STAR_EQ] = ACTIONS(4955), + [anon_sym_SLASH_EQ] = ACTIONS(4955), + [anon_sym_PERCENT_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4955), + [anon_sym_BANGin] = ACTIONS(4955), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_BANGis] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4953), + [anon_sym_DASH] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4953), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_as_QMARK] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_BANG_BANG] = ACTIONS(4955), + [anon_sym_suspend] = ACTIONS(4953), + [anon_sym_sealed] = ACTIONS(4953), + [anon_sym_annotation] = ACTIONS(4953), + [anon_sym_data] = ACTIONS(4953), + [anon_sym_inner] = ACTIONS(4953), + [anon_sym_override] = ACTIONS(4953), + [anon_sym_lateinit] = ACTIONS(4953), + [anon_sym_public] = ACTIONS(4953), + [anon_sym_private] = ACTIONS(4953), + [anon_sym_internal] = ACTIONS(4953), + [anon_sym_protected] = ACTIONS(4953), + [anon_sym_tailrec] = ACTIONS(4953), + [anon_sym_operator] = ACTIONS(4953), + [anon_sym_infix] = ACTIONS(4953), + [anon_sym_inline] = ACTIONS(4953), + [anon_sym_external] = ACTIONS(4953), + [sym_property_modifier] = ACTIONS(4953), + [anon_sym_abstract] = ACTIONS(4953), + [anon_sym_final] = ACTIONS(4953), + [anon_sym_open] = ACTIONS(4953), + [anon_sym_vararg] = ACTIONS(4953), + [anon_sym_noinline] = ACTIONS(4953), + [anon_sym_crossinline] = ACTIONS(4953), + [anon_sym_expect] = ACTIONS(4953), + [anon_sym_actual] = ACTIONS(4953), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4955), + [sym_safe_nav] = ACTIONS(4955), + [sym_multiline_comment] = ACTIONS(3), + }, + [3190] = { + [sym__alpha_identifier] = ACTIONS(4963), + [anon_sym_AT] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_EQ] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4963), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_get] = ACTIONS(4963), + [anon_sym_set] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_DASH_GT] = ACTIONS(4965), + [sym_label] = ACTIONS(4965), + [anon_sym_in] = ACTIONS(4963), + [anon_sym_while] = ACTIONS(4963), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_QMARK_COLON] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_else] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_PLUS_EQ] = ACTIONS(4965), + [anon_sym_DASH_EQ] = ACTIONS(4965), + [anon_sym_STAR_EQ] = ACTIONS(4965), + [anon_sym_SLASH_EQ] = ACTIONS(4965), + [anon_sym_PERCENT_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_BANGin] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4963), + [anon_sym_BANGis] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_as_QMARK] = ACTIONS(4965), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_BANG_BANG] = ACTIONS(4965), + [anon_sym_suspend] = ACTIONS(4963), + [anon_sym_sealed] = ACTIONS(4963), + [anon_sym_annotation] = ACTIONS(4963), + [anon_sym_data] = ACTIONS(4963), + [anon_sym_inner] = ACTIONS(4963), + [anon_sym_override] = ACTIONS(4963), + [anon_sym_lateinit] = ACTIONS(4963), + [anon_sym_public] = ACTIONS(4963), + [anon_sym_private] = ACTIONS(4963), + [anon_sym_internal] = ACTIONS(4963), + [anon_sym_protected] = ACTIONS(4963), + [anon_sym_tailrec] = ACTIONS(4963), + [anon_sym_operator] = ACTIONS(4963), + [anon_sym_infix] = ACTIONS(4963), + [anon_sym_inline] = ACTIONS(4963), + [anon_sym_external] = ACTIONS(4963), + [sym_property_modifier] = ACTIONS(4963), + [anon_sym_abstract] = ACTIONS(4963), + [anon_sym_final] = ACTIONS(4963), + [anon_sym_open] = ACTIONS(4963), + [anon_sym_vararg] = ACTIONS(4963), + [anon_sym_noinline] = ACTIONS(4963), + [anon_sym_crossinline] = ACTIONS(4963), + [anon_sym_expect] = ACTIONS(4963), + [anon_sym_actual] = ACTIONS(4963), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4965), + [sym_safe_nav] = ACTIONS(4965), + [sym_multiline_comment] = ACTIONS(3), + }, + [3191] = { + [aux_sym_user_type_repeat1] = STATE(3295), + [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_by] = ACTIONS(4216), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_where] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(6523), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4216), + [anon_sym_set] = ACTIONS(4216), + [sym__quest] = 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_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), + }, + [3192] = { + [sym__alpha_identifier] = ACTIONS(4973), + [anon_sym_AT] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_where] = ACTIONS(4973), + [anon_sym_object] = ACTIONS(4973), + [anon_sym_fun] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4973), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_this] = ACTIONS(4973), + [anon_sym_super] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [sym_label] = ACTIONS(4973), + [anon_sym_in] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_QMARK_COLON] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_null] = ACTIONS(4973), + [anon_sym_if] = ACTIONS(4973), + [anon_sym_else] = ACTIONS(4973), + [anon_sym_when] = ACTIONS(4973), + [anon_sym_try] = ACTIONS(4973), + [anon_sym_throw] = ACTIONS(4973), + [anon_sym_return] = ACTIONS(4973), + [anon_sym_continue] = ACTIONS(4973), + [anon_sym_break] = ACTIONS(4973), + [anon_sym_COLON_COLON] = ACTIONS(4975), + [anon_sym_PLUS_EQ] = ACTIONS(4975), + [anon_sym_DASH_EQ] = ACTIONS(4975), + [anon_sym_STAR_EQ] = ACTIONS(4975), + [anon_sym_SLASH_EQ] = ACTIONS(4975), + [anon_sym_PERCENT_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_BANGin] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_BANGis] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_as_QMARK] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_BANG_BANG] = ACTIONS(4975), + [anon_sym_data] = ACTIONS(4973), + [anon_sym_inner] = ACTIONS(4973), + [anon_sym_expect] = ACTIONS(4973), + [anon_sym_actual] = ACTIONS(4973), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4975), + [anon_sym_continue_AT] = ACTIONS(4975), + [anon_sym_break_AT] = ACTIONS(4975), + [sym_real_literal] = ACTIONS(4975), + [sym_integer_literal] = ACTIONS(4973), + [sym_hex_literal] = ACTIONS(4975), + [sym_bin_literal] = ACTIONS(4975), + [anon_sym_true] = ACTIONS(4973), + [anon_sym_false] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4975), + [sym__backtick_identifier] = ACTIONS(4975), + [sym__automatic_semicolon] = ACTIONS(4975), + [sym_safe_nav] = ACTIONS(4975), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4975), + }, + [3193] = { + [sym__alpha_identifier] = ACTIONS(4720), + [anon_sym_AT] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_RBRACK] = ACTIONS(4722), + [anon_sym_as] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_where] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_get] = ACTIONS(4720), + [anon_sym_set] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [anon_sym_DASH_GT] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4720), + [anon_sym_while] = ACTIONS(4720), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_QMARK_COLON] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4720), + [anon_sym_COLON_COLON] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4722), + [anon_sym_DASH_EQ] = ACTIONS(4722), + [anon_sym_STAR_EQ] = ACTIONS(4722), + [anon_sym_SLASH_EQ] = ACTIONS(4722), + [anon_sym_PERCENT_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_BANGin] = ACTIONS(4722), + [anon_sym_is] = ACTIONS(4720), + [anon_sym_BANGis] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_as_QMARK] = ACTIONS(4722), + [anon_sym_PLUS_PLUS] = ACTIONS(4722), + [anon_sym_DASH_DASH] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4722), + [anon_sym_suspend] = ACTIONS(4720), + [anon_sym_sealed] = ACTIONS(4720), + [anon_sym_annotation] = ACTIONS(4720), + [anon_sym_data] = ACTIONS(4720), + [anon_sym_inner] = ACTIONS(4720), + [anon_sym_override] = ACTIONS(4720), + [anon_sym_lateinit] = ACTIONS(4720), + [anon_sym_public] = ACTIONS(4720), + [anon_sym_private] = ACTIONS(4720), + [anon_sym_internal] = ACTIONS(4720), + [anon_sym_protected] = ACTIONS(4720), + [anon_sym_tailrec] = ACTIONS(4720), + [anon_sym_operator] = ACTIONS(4720), + [anon_sym_infix] = ACTIONS(4720), + [anon_sym_inline] = ACTIONS(4720), + [anon_sym_external] = ACTIONS(4720), + [sym_property_modifier] = ACTIONS(4720), + [anon_sym_abstract] = ACTIONS(4720), + [anon_sym_final] = ACTIONS(4720), + [anon_sym_open] = ACTIONS(4720), + [anon_sym_vararg] = ACTIONS(4720), + [anon_sym_noinline] = ACTIONS(4720), + [anon_sym_crossinline] = ACTIONS(4720), + [anon_sym_expect] = ACTIONS(4720), + [anon_sym_actual] = ACTIONS(4720), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4722), + [sym_safe_nav] = ACTIONS(4722), + [sym_multiline_comment] = ACTIONS(3), + }, + [3194] = { + [sym__alpha_identifier] = ACTIONS(4925), + [anon_sym_AT] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_as] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_where] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4925), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_DASH_GT] = ACTIONS(4927), + [sym_label] = ACTIONS(4927), + [anon_sym_in] = ACTIONS(4925), + [anon_sym_while] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4927), + [anon_sym_QMARK_COLON] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4927), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_else] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4927), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_BANGin] = ACTIONS(4927), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_BANGis] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_as_QMARK] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_BANG_BANG] = ACTIONS(4927), + [anon_sym_suspend] = ACTIONS(4925), + [anon_sym_sealed] = ACTIONS(4925), + [anon_sym_annotation] = ACTIONS(4925), + [anon_sym_data] = ACTIONS(4925), + [anon_sym_inner] = ACTIONS(4925), + [anon_sym_override] = ACTIONS(4925), + [anon_sym_lateinit] = ACTIONS(4925), + [anon_sym_public] = ACTIONS(4925), + [anon_sym_private] = ACTIONS(4925), + [anon_sym_internal] = ACTIONS(4925), + [anon_sym_protected] = ACTIONS(4925), + [anon_sym_tailrec] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), + [anon_sym_infix] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym_external] = ACTIONS(4925), + [sym_property_modifier] = ACTIONS(4925), + [anon_sym_abstract] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_open] = ACTIONS(4925), + [anon_sym_vararg] = ACTIONS(4925), + [anon_sym_noinline] = ACTIONS(4925), + [anon_sym_crossinline] = ACTIONS(4925), + [anon_sym_expect] = ACTIONS(4925), + [anon_sym_actual] = ACTIONS(4925), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4927), + [sym_safe_nav] = ACTIONS(4927), + [sym_multiline_comment] = ACTIONS(3), + }, + [3195] = { + [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_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_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), + }, + [3196] = { + [aux_sym_nullable_type_repeat1] = STATE(3281), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [sym__quest] = ACTIONS(6526), + [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_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), + }, + [3197] = { + [aux_sym_nullable_type_repeat1] = STATE(3400), + [sym__alpha_identifier] = ACTIONS(4278), + [anon_sym_AT] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_by] = ACTIONS(4278), + [anon_sym_where] = ACTIONS(4278), + [anon_sym_object] = ACTIONS(4278), + [anon_sym_fun] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_this] = ACTIONS(4278), + [anon_sym_super] = ACTIONS(4278), + [sym__quest] = ACTIONS(6528), + [anon_sym_STAR] = ACTIONS(4280), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4278), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4278), + [anon_sym_when] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_BANGin] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4278), + [anon_sym_BANGis] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_suspend] = ACTIONS(4278), + [anon_sym_sealed] = ACTIONS(4278), + [anon_sym_annotation] = ACTIONS(4278), + [anon_sym_data] = ACTIONS(4278), + [anon_sym_inner] = ACTIONS(4278), + [anon_sym_override] = ACTIONS(4278), + [anon_sym_lateinit] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_internal] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_tailrec] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_infix] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym_external] = ACTIONS(4278), + [sym_property_modifier] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_open] = ACTIONS(4278), + [anon_sym_vararg] = ACTIONS(4278), + [anon_sym_noinline] = ACTIONS(4278), + [anon_sym_crossinline] = ACTIONS(4278), + [anon_sym_expect] = ACTIONS(4278), + [anon_sym_actual] = ACTIONS(4278), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4280), + [anon_sym_continue_AT] = ACTIONS(4280), + [anon_sym_break_AT] = ACTIONS(4280), + [sym_real_literal] = ACTIONS(4280), + [sym_integer_literal] = ACTIONS(4278), + [sym_hex_literal] = ACTIONS(4280), + [sym_bin_literal] = ACTIONS(4280), + [anon_sym_true] = ACTIONS(4278), + [anon_sym_false] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4280), + [sym__backtick_identifier] = ACTIONS(4280), + [sym__automatic_semicolon] = ACTIONS(4280), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4280), + }, + [3198] = { [sym__alpha_identifier] = ACTIONS(4977), [anon_sym_AT] = ACTIONS(4979), [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_RBRACK] = ACTIONS(4979), [anon_sym_as] = ACTIONS(4977), [anon_sym_EQ] = ACTIONS(4977), [anon_sym_LBRACE] = ACTIONS(4979), [anon_sym_RBRACE] = ACTIONS(4979), [anon_sym_LPAREN] = ACTIONS(4979), [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), [anon_sym_LT] = ACTIONS(4977), [anon_sym_GT] = ACTIONS(4977), [anon_sym_where] = ACTIONS(4977), + [anon_sym_object] = ACTIONS(4977), + [anon_sym_fun] = ACTIONS(4977), [anon_sym_DOT] = ACTIONS(4977), [anon_sym_SEMI] = ACTIONS(4979), [anon_sym_get] = ACTIONS(4977), [anon_sym_set] = ACTIONS(4977), + [anon_sym_this] = ACTIONS(4977), + [anon_sym_super] = ACTIONS(4977), [anon_sym_STAR] = ACTIONS(4977), - [anon_sym_DASH_GT] = ACTIONS(4979), - [sym_label] = ACTIONS(4979), + [sym_label] = ACTIONS(4977), [anon_sym_in] = ACTIONS(4977), - [anon_sym_while] = ACTIONS(4977), [anon_sym_DOT_DOT] = ACTIONS(4979), [anon_sym_QMARK_COLON] = ACTIONS(4979), [anon_sym_AMP_AMP] = ACTIONS(4979), [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4977), + [anon_sym_if] = ACTIONS(4977), [anon_sym_else] = ACTIONS(4977), + [anon_sym_when] = ACTIONS(4977), + [anon_sym_try] = ACTIONS(4977), + [anon_sym_throw] = ACTIONS(4977), + [anon_sym_return] = ACTIONS(4977), + [anon_sym_continue] = ACTIONS(4977), + [anon_sym_break] = ACTIONS(4977), [anon_sym_COLON_COLON] = ACTIONS(4979), [anon_sym_PLUS_EQ] = ACTIONS(4979), [anon_sym_DASH_EQ] = ACTIONS(4979), @@ -359226,1268 +358327,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4979), [anon_sym_PLUS_PLUS] = ACTIONS(4979), [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_BANG] = ACTIONS(4977), [anon_sym_BANG_BANG] = ACTIONS(4979), - [anon_sym_suspend] = ACTIONS(4977), - [anon_sym_sealed] = ACTIONS(4977), - [anon_sym_annotation] = ACTIONS(4977), [anon_sym_data] = ACTIONS(4977), [anon_sym_inner] = ACTIONS(4977), - [anon_sym_override] = ACTIONS(4977), - [anon_sym_lateinit] = ACTIONS(4977), - [anon_sym_public] = ACTIONS(4977), - [anon_sym_private] = ACTIONS(4977), - [anon_sym_internal] = ACTIONS(4977), - [anon_sym_protected] = ACTIONS(4977), - [anon_sym_tailrec] = ACTIONS(4977), - [anon_sym_operator] = ACTIONS(4977), - [anon_sym_infix] = ACTIONS(4977), - [anon_sym_inline] = ACTIONS(4977), - [anon_sym_external] = ACTIONS(4977), - [sym_property_modifier] = ACTIONS(4977), - [anon_sym_abstract] = ACTIONS(4977), - [anon_sym_final] = ACTIONS(4977), - [anon_sym_open] = ACTIONS(4977), - [anon_sym_vararg] = ACTIONS(4977), - [anon_sym_noinline] = ACTIONS(4977), - [anon_sym_crossinline] = ACTIONS(4977), [anon_sym_expect] = ACTIONS(4977), [anon_sym_actual] = ACTIONS(4977), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4979), + [anon_sym_continue_AT] = ACTIONS(4979), + [anon_sym_break_AT] = ACTIONS(4979), + [sym_real_literal] = ACTIONS(4979), + [sym_integer_literal] = ACTIONS(4977), + [sym_hex_literal] = ACTIONS(4979), + [sym_bin_literal] = ACTIONS(4979), + [anon_sym_true] = ACTIONS(4977), + [anon_sym_false] = ACTIONS(4977), + [anon_sym_SQUOTE] = ACTIONS(4979), [sym__backtick_identifier] = ACTIONS(4979), + [sym__automatic_semicolon] = ACTIONS(4979), [sym_safe_nav] = ACTIONS(4979), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4979), }, - [3211] = { - [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_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), - [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), - }, - [3212] = { - [sym__alpha_identifier] = ACTIONS(4879), - [anon_sym_AT] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_RBRACK] = ACTIONS(4881), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_where] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4881), - [anon_sym_get] = ACTIONS(4879), - [anon_sym_set] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4881), - [sym_label] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4879), - [anon_sym_while] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4881), - [anon_sym_QMARK_COLON] = ACTIONS(4881), - [anon_sym_AMP_AMP] = ACTIONS(4881), - [anon_sym_PIPE_PIPE] = ACTIONS(4881), - [anon_sym_else] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4881), - [anon_sym_PLUS_EQ] = ACTIONS(4881), - [anon_sym_DASH_EQ] = ACTIONS(4881), - [anon_sym_STAR_EQ] = ACTIONS(4881), - [anon_sym_SLASH_EQ] = ACTIONS(4881), - [anon_sym_PERCENT_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4881), - [anon_sym_LT_EQ] = ACTIONS(4881), - [anon_sym_GT_EQ] = ACTIONS(4881), - [anon_sym_BANGin] = ACTIONS(4881), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_BANGis] = ACTIONS(4881), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_as_QMARK] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4881), - [anon_sym_DASH_DASH] = ACTIONS(4881), - [anon_sym_BANG_BANG] = ACTIONS(4881), - [anon_sym_suspend] = ACTIONS(4879), - [anon_sym_sealed] = ACTIONS(4879), - [anon_sym_annotation] = ACTIONS(4879), - [anon_sym_data] = ACTIONS(4879), - [anon_sym_inner] = ACTIONS(4879), - [anon_sym_override] = ACTIONS(4879), - [anon_sym_lateinit] = ACTIONS(4879), - [anon_sym_public] = ACTIONS(4879), - [anon_sym_private] = ACTIONS(4879), - [anon_sym_internal] = ACTIONS(4879), - [anon_sym_protected] = ACTIONS(4879), - [anon_sym_tailrec] = ACTIONS(4879), - [anon_sym_operator] = ACTIONS(4879), - [anon_sym_infix] = ACTIONS(4879), - [anon_sym_inline] = ACTIONS(4879), - [anon_sym_external] = ACTIONS(4879), - [sym_property_modifier] = ACTIONS(4879), - [anon_sym_abstract] = ACTIONS(4879), - [anon_sym_final] = ACTIONS(4879), - [anon_sym_open] = ACTIONS(4879), - [anon_sym_vararg] = ACTIONS(4879), - [anon_sym_noinline] = ACTIONS(4879), - [anon_sym_crossinline] = ACTIONS(4879), - [anon_sym_expect] = ACTIONS(4879), - [anon_sym_actual] = ACTIONS(4879), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4881), - [sym_safe_nav] = ACTIONS(4881), + [3199] = { + [sym_type_constraints] = STATE(3889), + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6530), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, - [3213] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [anon_sym_DASH_GT] = ACTIONS(4511), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_while] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [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(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), + [3200] = { + [sym_type_constraints] = STATE(3858), + [sym_function_body] = STATE(3806), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6532), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_PLUS_EQ] = ACTIONS(4081), + [anon_sym_DASH_EQ] = ACTIONS(4081), + [anon_sym_STAR_EQ] = ACTIONS(4081), + [anon_sym_SLASH_EQ] = ACTIONS(4081), + [anon_sym_PERCENT_EQ] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), [sym_multiline_comment] = ACTIONS(3), }, - [3214] = { - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_RBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_RPAREN] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4025), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_while] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [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_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(4025), - [sym_safe_nav] = ACTIONS(4025), + [3201] = { + [sym__alpha_identifier] = ACTIONS(4941), + [anon_sym_AT] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_RBRACK] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_RPAREN] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_where] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_get] = ACTIONS(4941), + [anon_sym_set] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4941), + [anon_sym_DASH_GT] = ACTIONS(4943), + [sym_label] = ACTIONS(4943), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_while] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_QMARK_COLON] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_else] = ACTIONS(4941), + [anon_sym_COLON_COLON] = ACTIONS(4943), + [anon_sym_PLUS_EQ] = ACTIONS(4943), + [anon_sym_DASH_EQ] = ACTIONS(4943), + [anon_sym_STAR_EQ] = ACTIONS(4943), + [anon_sym_SLASH_EQ] = ACTIONS(4943), + [anon_sym_PERCENT_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_BANGin] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_BANGis] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_as_QMARK] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_BANG_BANG] = ACTIONS(4943), + [anon_sym_suspend] = ACTIONS(4941), + [anon_sym_sealed] = ACTIONS(4941), + [anon_sym_annotation] = ACTIONS(4941), + [anon_sym_data] = ACTIONS(4941), + [anon_sym_inner] = ACTIONS(4941), + [anon_sym_override] = ACTIONS(4941), + [anon_sym_lateinit] = ACTIONS(4941), + [anon_sym_public] = ACTIONS(4941), + [anon_sym_private] = ACTIONS(4941), + [anon_sym_internal] = ACTIONS(4941), + [anon_sym_protected] = ACTIONS(4941), + [anon_sym_tailrec] = ACTIONS(4941), + [anon_sym_operator] = ACTIONS(4941), + [anon_sym_infix] = ACTIONS(4941), + [anon_sym_inline] = ACTIONS(4941), + [anon_sym_external] = ACTIONS(4941), + [sym_property_modifier] = ACTIONS(4941), + [anon_sym_abstract] = ACTIONS(4941), + [anon_sym_final] = ACTIONS(4941), + [anon_sym_open] = ACTIONS(4941), + [anon_sym_vararg] = ACTIONS(4941), + [anon_sym_noinline] = ACTIONS(4941), + [anon_sym_crossinline] = ACTIONS(4941), + [anon_sym_expect] = ACTIONS(4941), + [anon_sym_actual] = ACTIONS(4941), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4943), + [sym_safe_nav] = ACTIONS(4943), [sym_multiline_comment] = ACTIONS(3), }, - [3215] = { - [sym__alpha_identifier] = ACTIONS(4883), - [anon_sym_AT] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_as] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4883), - [anon_sym_GT] = ACTIONS(4883), - [anon_sym_where] = ACTIONS(4883), - [anon_sym_object] = ACTIONS(4883), - [anon_sym_fun] = ACTIONS(4883), - [anon_sym_DOT] = ACTIONS(4883), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_get] = ACTIONS(4883), - [anon_sym_set] = ACTIONS(4883), - [anon_sym_this] = ACTIONS(4883), - [anon_sym_super] = ACTIONS(4883), - [anon_sym_STAR] = ACTIONS(4883), - [sym_label] = ACTIONS(4883), - [anon_sym_in] = ACTIONS(4883), - [anon_sym_DOT_DOT] = ACTIONS(4885), - [anon_sym_QMARK_COLON] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [anon_sym_null] = ACTIONS(4883), - [anon_sym_if] = ACTIONS(4883), - [anon_sym_else] = ACTIONS(4883), - [anon_sym_when] = ACTIONS(4883), - [anon_sym_try] = ACTIONS(4883), - [anon_sym_throw] = ACTIONS(4883), - [anon_sym_return] = ACTIONS(4883), - [anon_sym_continue] = ACTIONS(4883), - [anon_sym_break] = ACTIONS(4883), - [anon_sym_COLON_COLON] = ACTIONS(4885), - [anon_sym_PLUS_EQ] = ACTIONS(4885), - [anon_sym_DASH_EQ] = ACTIONS(4885), - [anon_sym_STAR_EQ] = ACTIONS(4885), - [anon_sym_SLASH_EQ] = ACTIONS(4885), - [anon_sym_PERCENT_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT_EQ] = ACTIONS(4885), - [anon_sym_GT_EQ] = ACTIONS(4885), - [anon_sym_BANGin] = ACTIONS(4885), - [anon_sym_is] = ACTIONS(4883), - [anon_sym_BANGis] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_SLASH] = ACTIONS(4883), - [anon_sym_PERCENT] = ACTIONS(4883), - [anon_sym_as_QMARK] = ACTIONS(4885), - [anon_sym_PLUS_PLUS] = ACTIONS(4885), - [anon_sym_DASH_DASH] = ACTIONS(4885), - [anon_sym_BANG] = ACTIONS(4883), - [anon_sym_BANG_BANG] = ACTIONS(4885), - [anon_sym_data] = ACTIONS(4883), - [anon_sym_inner] = ACTIONS(4883), - [anon_sym_expect] = ACTIONS(4883), - [anon_sym_actual] = ACTIONS(4883), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4885), - [anon_sym_continue_AT] = ACTIONS(4885), - [anon_sym_break_AT] = ACTIONS(4885), - [sym_real_literal] = ACTIONS(4885), - [sym_integer_literal] = ACTIONS(4883), - [sym_hex_literal] = ACTIONS(4885), - [sym_bin_literal] = ACTIONS(4885), - [anon_sym_true] = ACTIONS(4883), - [anon_sym_false] = ACTIONS(4883), - [anon_sym_SQUOTE] = ACTIONS(4885), - [sym__backtick_identifier] = ACTIONS(4885), - [sym__automatic_semicolon] = ACTIONS(4885), - [sym_safe_nav] = ACTIONS(4885), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4885), - }, - [3216] = { - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_object] = ACTIONS(4501), - [anon_sym_fun] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_this] = ACTIONS(4501), - [anon_sym_super] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_null] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_when] = ACTIONS(4501), - [anon_sym_try] = ACTIONS(4501), - [anon_sym_throw] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4503), - [anon_sym_continue_AT] = ACTIONS(4503), - [anon_sym_break_AT] = ACTIONS(4503), - [sym_real_literal] = ACTIONS(4503), - [sym_integer_literal] = ACTIONS(4501), - [sym_hex_literal] = ACTIONS(4503), - [sym_bin_literal] = ACTIONS(4503), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4503), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4503), - }, - [3217] = { - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_RBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(4392), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_RPAREN] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_DASH_GT] = ACTIONS(4392), - [sym_label] = ACTIONS(4392), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_while] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_suspend] = ACTIONS(4390), - [anon_sym_sealed] = ACTIONS(4390), - [anon_sym_annotation] = ACTIONS(4390), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_override] = ACTIONS(4390), - [anon_sym_lateinit] = ACTIONS(4390), - [anon_sym_public] = ACTIONS(4390), - [anon_sym_private] = ACTIONS(4390), - [anon_sym_internal] = ACTIONS(4390), - [anon_sym_protected] = ACTIONS(4390), - [anon_sym_tailrec] = ACTIONS(4390), - [anon_sym_operator] = ACTIONS(4390), - [anon_sym_infix] = ACTIONS(4390), - [anon_sym_inline] = ACTIONS(4390), - [anon_sym_external] = ACTIONS(4390), - [sym_property_modifier] = ACTIONS(4390), - [anon_sym_abstract] = ACTIONS(4390), - [anon_sym_final] = ACTIONS(4390), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_vararg] = ACTIONS(4390), - [anon_sym_noinline] = ACTIONS(4390), - [anon_sym_crossinline] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), + [3202] = { + [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_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(4392), - [sym_safe_nav] = ACTIONS(4392), - [sym_multiline_comment] = ACTIONS(3), - }, - [3218] = { - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_RBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_RPAREN] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_DASH_GT] = ACTIONS(4406), - [sym_label] = ACTIONS(4406), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_while] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - }, - [3219] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [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_DOT] = 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_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__backtick_identifier] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, - [3220] = { - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_object] = ACTIONS(4404), - [anon_sym_fun] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_this] = ACTIONS(4404), - [anon_sym_super] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4404), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_when] = ACTIONS(4404), - [anon_sym_try] = ACTIONS(4404), - [anon_sym_throw] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4406), - [anon_sym_continue_AT] = ACTIONS(4406), - [anon_sym_break_AT] = ACTIONS(4406), - [sym_real_literal] = ACTIONS(4406), - [sym_integer_literal] = ACTIONS(4404), - [sym_hex_literal] = ACTIONS(4406), - [sym_bin_literal] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4404), - [anon_sym_false] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4406), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4406), - }, - [3221] = { - [sym_file_annotation] = STATE(3221), - [aux_sym_source_file_repeat1] = STATE(3221), - [ts_builtin_sym_end] = ACTIONS(6516), - [sym__alpha_identifier] = ACTIONS(6518), - [anon_sym_AT] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_package] = ACTIONS(6518), - [anon_sym_import] = ACTIONS(6518), - [anon_sym_typealias] = ACTIONS(6518), - [anon_sym_class] = ACTIONS(6518), - [anon_sym_interface] = ACTIONS(6518), - [anon_sym_enum] = ACTIONS(6518), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_val] = ACTIONS(6518), - [anon_sym_var] = ACTIONS(6518), - [anon_sym_object] = ACTIONS(6518), - [anon_sym_fun] = ACTIONS(6518), - [anon_sym_get] = ACTIONS(6518), - [anon_sym_set] = ACTIONS(6518), - [anon_sym_this] = ACTIONS(6518), - [anon_sym_super] = ACTIONS(6518), - [anon_sym_STAR] = ACTIONS(6516), - [sym_label] = ACTIONS(6518), - [anon_sym_for] = ACTIONS(6518), - [anon_sym_while] = ACTIONS(6518), - [anon_sym_do] = ACTIONS(6518), - [anon_sym_null] = ACTIONS(6518), - [anon_sym_if] = ACTIONS(6518), - [anon_sym_when] = ACTIONS(6518), - [anon_sym_try] = ACTIONS(6518), - [anon_sym_throw] = ACTIONS(6518), - [anon_sym_return] = ACTIONS(6518), - [anon_sym_continue] = ACTIONS(6518), - [anon_sym_break] = ACTIONS(6518), - [anon_sym_COLON_COLON] = ACTIONS(6516), - [anon_sym_PLUS] = ACTIONS(6518), - [anon_sym_DASH] = ACTIONS(6518), - [anon_sym_PLUS_PLUS] = ACTIONS(6516), - [anon_sym_DASH_DASH] = ACTIONS(6516), - [anon_sym_BANG] = ACTIONS(6516), - [anon_sym_suspend] = ACTIONS(6518), - [anon_sym_sealed] = ACTIONS(6518), - [anon_sym_annotation] = ACTIONS(6518), - [anon_sym_data] = ACTIONS(6518), - [anon_sym_inner] = ACTIONS(6518), - [anon_sym_override] = ACTIONS(6518), - [anon_sym_lateinit] = ACTIONS(6518), - [anon_sym_public] = ACTIONS(6518), - [anon_sym_private] = ACTIONS(6518), - [anon_sym_internal] = ACTIONS(6518), - [anon_sym_protected] = ACTIONS(6518), - [anon_sym_tailrec] = ACTIONS(6518), - [anon_sym_operator] = ACTIONS(6518), - [anon_sym_infix] = ACTIONS(6518), - [anon_sym_inline] = ACTIONS(6518), - [anon_sym_external] = ACTIONS(6518), - [sym_property_modifier] = ACTIONS(6518), - [anon_sym_abstract] = ACTIONS(6518), - [anon_sym_final] = ACTIONS(6518), - [anon_sym_open] = ACTIONS(6518), - [anon_sym_vararg] = ACTIONS(6518), - [anon_sym_noinline] = ACTIONS(6518), - [anon_sym_crossinline] = ACTIONS(6518), - [anon_sym_expect] = ACTIONS(6518), - [anon_sym_actual] = ACTIONS(6518), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6516), - [anon_sym_continue_AT] = ACTIONS(6516), - [anon_sym_break_AT] = ACTIONS(6516), - [sym_real_literal] = ACTIONS(6516), - [sym_integer_literal] = ACTIONS(6518), - [sym_hex_literal] = ACTIONS(6516), - [sym_bin_literal] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6518), - [anon_sym_false] = ACTIONS(6518), - [anon_sym_SQUOTE] = ACTIONS(6516), - [sym__backtick_identifier] = ACTIONS(6516), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6516), - }, - [3222] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [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_DOT] = 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_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), - [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), - }, - [3223] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [3224] = { - [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_expect] = ACTIONS(5067), - [anon_sym_actual] = ACTIONS(5067), + [3203] = { + [sym__alpha_identifier] = ACTIONS(4855), + [anon_sym_AT] = ACTIONS(4857), + [anon_sym_LBRACK] = ACTIONS(4857), + [anon_sym_RBRACK] = ACTIONS(4857), + [anon_sym_as] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4857), + [anon_sym_RBRACE] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4857), + [anon_sym_COMMA] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4855), + [anon_sym_GT] = ACTIONS(4855), + [anon_sym_where] = ACTIONS(4855), + [anon_sym_DOT] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_get] = ACTIONS(4855), + [anon_sym_set] = ACTIONS(4855), + [anon_sym_STAR] = ACTIONS(4855), + [anon_sym_DASH_GT] = ACTIONS(4857), + [sym_label] = ACTIONS(4857), + [anon_sym_in] = ACTIONS(4855), + [anon_sym_while] = ACTIONS(4855), + [anon_sym_DOT_DOT] = ACTIONS(4857), + [anon_sym_QMARK_COLON] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [anon_sym_else] = ACTIONS(4855), + [anon_sym_COLON_COLON] = ACTIONS(4857), + [anon_sym_PLUS_EQ] = ACTIONS(4857), + [anon_sym_DASH_EQ] = ACTIONS(4857), + [anon_sym_STAR_EQ] = ACTIONS(4857), + [anon_sym_SLASH_EQ] = ACTIONS(4857), + [anon_sym_PERCENT_EQ] = ACTIONS(4857), + [anon_sym_BANG_EQ] = ACTIONS(4855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4857), + [anon_sym_EQ_EQ] = ACTIONS(4855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4857), + [anon_sym_LT_EQ] = ACTIONS(4857), + [anon_sym_GT_EQ] = ACTIONS(4857), + [anon_sym_BANGin] = ACTIONS(4857), + [anon_sym_is] = ACTIONS(4855), + [anon_sym_BANGis] = ACTIONS(4857), + [anon_sym_PLUS] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(4855), + [anon_sym_SLASH] = ACTIONS(4855), + [anon_sym_PERCENT] = ACTIONS(4855), + [anon_sym_as_QMARK] = ACTIONS(4857), + [anon_sym_PLUS_PLUS] = ACTIONS(4857), + [anon_sym_DASH_DASH] = ACTIONS(4857), + [anon_sym_BANG_BANG] = ACTIONS(4857), + [anon_sym_suspend] = ACTIONS(4855), + [anon_sym_sealed] = ACTIONS(4855), + [anon_sym_annotation] = ACTIONS(4855), + [anon_sym_data] = ACTIONS(4855), + [anon_sym_inner] = ACTIONS(4855), + [anon_sym_override] = ACTIONS(4855), + [anon_sym_lateinit] = ACTIONS(4855), + [anon_sym_public] = ACTIONS(4855), + [anon_sym_private] = ACTIONS(4855), + [anon_sym_internal] = ACTIONS(4855), + [anon_sym_protected] = ACTIONS(4855), + [anon_sym_tailrec] = ACTIONS(4855), + [anon_sym_operator] = ACTIONS(4855), + [anon_sym_infix] = ACTIONS(4855), + [anon_sym_inline] = ACTIONS(4855), + [anon_sym_external] = ACTIONS(4855), + [sym_property_modifier] = ACTIONS(4855), + [anon_sym_abstract] = ACTIONS(4855), + [anon_sym_final] = ACTIONS(4855), + [anon_sym_open] = ACTIONS(4855), + [anon_sym_vararg] = ACTIONS(4855), + [anon_sym_noinline] = ACTIONS(4855), + [anon_sym_crossinline] = ACTIONS(4855), + [anon_sym_expect] = ACTIONS(4855), + [anon_sym_actual] = ACTIONS(4855), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5069), - [anon_sym_continue_AT] = ACTIONS(5069), - [anon_sym_break_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__backtick_identifier] = ACTIONS(4857), + [sym_safe_nav] = ACTIONS(4857), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5069), - }, - [3225] = { - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [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(3280), - [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(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [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(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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3278), - [anon_sym_inner] = ACTIONS(3278), - [anon_sym_expect] = ACTIONS(3278), - [anon_sym_actual] = ACTIONS(3278), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3278), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [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), }, - [3226] = { + [3204] = { [sym__alpha_identifier] = ACTIONS(4851), [anon_sym_AT] = ACTIONS(4853), [anon_sym_LBRACK] = ACTIONS(4853), @@ -360569,1511 +358842,1027 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4853), [sym_multiline_comment] = ACTIONS(3), }, - [3227] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), - }, - [3228] = { - [sym__alpha_identifier] = ACTIONS(4871), - [anon_sym_AT] = ACTIONS(4873), - [anon_sym_LBRACK] = ACTIONS(4873), - [anon_sym_RBRACK] = ACTIONS(4873), - [anon_sym_as] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(4873), - [anon_sym_RBRACE] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4873), - [anon_sym_COMMA] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4871), - [anon_sym_GT] = ACTIONS(4871), - [anon_sym_where] = ACTIONS(4871), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_STAR] = ACTIONS(4871), - [anon_sym_DASH_GT] = ACTIONS(4873), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4871), - [anon_sym_while] = ACTIONS(4871), - [anon_sym_DOT_DOT] = ACTIONS(4873), - [anon_sym_QMARK_COLON] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(4871), - [anon_sym_COLON_COLON] = ACTIONS(4873), - [anon_sym_PLUS_EQ] = ACTIONS(4873), - [anon_sym_DASH_EQ] = ACTIONS(4873), - [anon_sym_STAR_EQ] = ACTIONS(4873), - [anon_sym_SLASH_EQ] = ACTIONS(4873), - [anon_sym_PERCENT_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT_EQ] = ACTIONS(4873), - [anon_sym_GT_EQ] = ACTIONS(4873), - [anon_sym_BANGin] = ACTIONS(4873), - [anon_sym_is] = ACTIONS(4871), - [anon_sym_BANGis] = ACTIONS(4873), - [anon_sym_PLUS] = ACTIONS(4871), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_SLASH] = ACTIONS(4871), - [anon_sym_PERCENT] = ACTIONS(4871), - [anon_sym_as_QMARK] = ACTIONS(4873), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4873), - [anon_sym_suspend] = ACTIONS(4871), - [anon_sym_sealed] = ACTIONS(4871), - [anon_sym_annotation] = ACTIONS(4871), - [anon_sym_data] = ACTIONS(4871), - [anon_sym_inner] = ACTIONS(4871), - [anon_sym_override] = ACTIONS(4871), - [anon_sym_lateinit] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_internal] = ACTIONS(4871), - [anon_sym_protected] = ACTIONS(4871), - [anon_sym_tailrec] = ACTIONS(4871), - [anon_sym_operator] = ACTIONS(4871), - [anon_sym_infix] = ACTIONS(4871), - [anon_sym_inline] = ACTIONS(4871), - [anon_sym_external] = ACTIONS(4871), - [sym_property_modifier] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_open] = ACTIONS(4871), - [anon_sym_vararg] = ACTIONS(4871), - [anon_sym_noinline] = ACTIONS(4871), - [anon_sym_crossinline] = ACTIONS(4871), - [anon_sym_expect] = ACTIONS(4871), - [anon_sym_actual] = ACTIONS(4871), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4873), - [sym_safe_nav] = ACTIONS(4873), - [sym_multiline_comment] = ACTIONS(3), - }, - [3229] = { - [sym_type_constraints] = STATE(3634), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - }, - [3230] = { - [sym_type_constraints] = STATE(3834), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3231] = { - [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_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), + [3205] = { + [sym__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [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_DOT] = 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_expect] = ACTIONS(5097), + [anon_sym_actual] = ACTIONS(5097), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5065), - [sym_safe_nav] = ACTIONS(5065), - [sym_multiline_comment] = ACTIONS(3), - }, - [3232] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [3233] = { - [sym_type_constraints] = STATE(3627), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [anon_sym_return_AT] = ACTIONS(5099), + [anon_sym_continue_AT] = ACTIONS(5099), + [anon_sym_break_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), }, - [3234] = { - [sym_type_constraints] = STATE(3619), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), + [3206] = { + [sym__alpha_identifier] = ACTIONS(4937), + [anon_sym_AT] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4937), + [anon_sym_GT] = ACTIONS(4937), + [anon_sym_where] = ACTIONS(4937), + [anon_sym_object] = ACTIONS(4937), + [anon_sym_fun] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4937), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_get] = ACTIONS(4937), + [anon_sym_set] = ACTIONS(4937), + [anon_sym_this] = ACTIONS(4937), + [anon_sym_super] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [sym_label] = ACTIONS(4937), + [anon_sym_in] = ACTIONS(4937), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_QMARK_COLON] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_null] = ACTIONS(4937), + [anon_sym_if] = ACTIONS(4937), + [anon_sym_else] = ACTIONS(4937), + [anon_sym_when] = ACTIONS(4937), + [anon_sym_try] = ACTIONS(4937), + [anon_sym_throw] = ACTIONS(4937), + [anon_sym_return] = ACTIONS(4937), + [anon_sym_continue] = ACTIONS(4937), + [anon_sym_break] = ACTIONS(4937), + [anon_sym_COLON_COLON] = ACTIONS(4939), + [anon_sym_PLUS_EQ] = ACTIONS(4939), + [anon_sym_DASH_EQ] = ACTIONS(4939), + [anon_sym_STAR_EQ] = ACTIONS(4939), + [anon_sym_SLASH_EQ] = ACTIONS(4939), + [anon_sym_PERCENT_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4937), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_BANGin] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4937), + [anon_sym_BANGis] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_as_QMARK] = ACTIONS(4939), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4937), + [anon_sym_BANG_BANG] = ACTIONS(4939), + [anon_sym_data] = ACTIONS(4937), + [anon_sym_inner] = ACTIONS(4937), + [anon_sym_expect] = ACTIONS(4937), + [anon_sym_actual] = ACTIONS(4937), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4939), + [anon_sym_continue_AT] = ACTIONS(4939), + [anon_sym_break_AT] = ACTIONS(4939), + [sym_real_literal] = ACTIONS(4939), + [sym_integer_literal] = ACTIONS(4937), + [sym_hex_literal] = ACTIONS(4939), + [sym_bin_literal] = ACTIONS(4939), + [anon_sym_true] = ACTIONS(4937), + [anon_sym_false] = ACTIONS(4937), + [anon_sym_SQUOTE] = ACTIONS(4939), + [sym__backtick_identifier] = ACTIONS(4939), + [sym__automatic_semicolon] = ACTIONS(4939), + [sym_safe_nav] = ACTIONS(4939), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4939), }, - [3235] = { - [sym__alpha_identifier] = ACTIONS(4810), - [anon_sym_AT] = ACTIONS(4812), - [anon_sym_LBRACK] = ACTIONS(4812), - [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_DOT] = 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_expect] = ACTIONS(4810), - [anon_sym_actual] = ACTIONS(4810), + [3207] = { + [sym__alpha_identifier] = ACTIONS(5093), + [anon_sym_AT] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_EQ] = ACTIONS(5093), + [anon_sym_LBRACE] = ACTIONS(5095), + [anon_sym_RBRACE] = ACTIONS(5095), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_where] = ACTIONS(5093), + [anon_sym_object] = ACTIONS(5093), + [anon_sym_fun] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5093), + [anon_sym_SEMI] = ACTIONS(5095), + [anon_sym_get] = ACTIONS(5093), + [anon_sym_set] = ACTIONS(5093), + [anon_sym_this] = ACTIONS(5093), + [anon_sym_super] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [sym_label] = ACTIONS(5093), + [anon_sym_in] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5095), + [anon_sym_QMARK_COLON] = ACTIONS(5095), + [anon_sym_AMP_AMP] = ACTIONS(5095), + [anon_sym_PIPE_PIPE] = ACTIONS(5095), + [anon_sym_null] = ACTIONS(5093), + [anon_sym_if] = ACTIONS(5093), + [anon_sym_else] = ACTIONS(5093), + [anon_sym_when] = ACTIONS(5093), + [anon_sym_try] = ACTIONS(5093), + [anon_sym_throw] = ACTIONS(5093), + [anon_sym_return] = ACTIONS(5093), + [anon_sym_continue] = ACTIONS(5093), + [anon_sym_break] = ACTIONS(5093), + [anon_sym_COLON_COLON] = ACTIONS(5095), + [anon_sym_PLUS_EQ] = ACTIONS(5095), + [anon_sym_DASH_EQ] = ACTIONS(5095), + [anon_sym_STAR_EQ] = ACTIONS(5095), + [anon_sym_SLASH_EQ] = ACTIONS(5095), + [anon_sym_PERCENT_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5095), + [anon_sym_LT_EQ] = ACTIONS(5095), + [anon_sym_GT_EQ] = ACTIONS(5095), + [anon_sym_BANGin] = ACTIONS(5095), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_BANGis] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_as_QMARK] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5095), + [anon_sym_DASH_DASH] = ACTIONS(5095), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_BANG_BANG] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5093), + [anon_sym_inner] = ACTIONS(5093), + [anon_sym_expect] = ACTIONS(5093), + [anon_sym_actual] = ACTIONS(5093), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4812), - [anon_sym_continue_AT] = ACTIONS(4812), - [anon_sym_break_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), + [anon_sym_return_AT] = ACTIONS(5095), + [anon_sym_continue_AT] = ACTIONS(5095), + [anon_sym_break_AT] = ACTIONS(5095), + [sym_real_literal] = ACTIONS(5095), + [sym_integer_literal] = ACTIONS(5093), + [sym_hex_literal] = ACTIONS(5095), + [sym_bin_literal] = ACTIONS(5095), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5095), + [sym__backtick_identifier] = ACTIONS(5095), + [sym__automatic_semicolon] = ACTIONS(5095), + [sym_safe_nav] = ACTIONS(5095), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4812), + [sym__string_start] = ACTIONS(5095), }, - [3236] = { - [sym_type_constraints] = STATE(3617), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [3208] = { + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [anon_sym_DASH_GT] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, - [3237] = { - [sym_type_constraints] = STATE(3612), - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [3209] = { + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3238] = { - [sym_type_constraints] = STATE(3830), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3210] = { + [sym__alpha_identifier] = ACTIONS(4885), + [anon_sym_AT] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_RBRACK] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_where] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_get] = ACTIONS(4885), + [anon_sym_set] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4887), + [sym_label] = ACTIONS(4887), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_while] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_QMARK_COLON] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_else] = ACTIONS(4885), + [anon_sym_COLON_COLON] = ACTIONS(4887), + [anon_sym_PLUS_EQ] = ACTIONS(4887), + [anon_sym_DASH_EQ] = ACTIONS(4887), + [anon_sym_STAR_EQ] = ACTIONS(4887), + [anon_sym_SLASH_EQ] = ACTIONS(4887), + [anon_sym_PERCENT_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_BANGin] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_BANGis] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4885), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_as_QMARK] = ACTIONS(4887), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_BANG_BANG] = ACTIONS(4887), + [anon_sym_suspend] = ACTIONS(4885), + [anon_sym_sealed] = ACTIONS(4885), + [anon_sym_annotation] = ACTIONS(4885), + [anon_sym_data] = ACTIONS(4885), + [anon_sym_inner] = ACTIONS(4885), + [anon_sym_override] = ACTIONS(4885), + [anon_sym_lateinit] = ACTIONS(4885), + [anon_sym_public] = ACTIONS(4885), + [anon_sym_private] = ACTIONS(4885), + [anon_sym_internal] = ACTIONS(4885), + [anon_sym_protected] = ACTIONS(4885), + [anon_sym_tailrec] = ACTIONS(4885), + [anon_sym_operator] = ACTIONS(4885), + [anon_sym_infix] = ACTIONS(4885), + [anon_sym_inline] = ACTIONS(4885), + [anon_sym_external] = ACTIONS(4885), + [sym_property_modifier] = ACTIONS(4885), + [anon_sym_abstract] = ACTIONS(4885), + [anon_sym_final] = ACTIONS(4885), + [anon_sym_open] = ACTIONS(4885), + [anon_sym_vararg] = ACTIONS(4885), + [anon_sym_noinline] = ACTIONS(4885), + [anon_sym_crossinline] = ACTIONS(4885), + [anon_sym_expect] = ACTIONS(4885), + [anon_sym_actual] = ACTIONS(4885), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4887), + [sym_safe_nav] = ACTIONS(4887), [sym_multiline_comment] = ACTIONS(3), }, - [3239] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_DASH_GT] = ACTIONS(4941), - [sym_label] = ACTIONS(4941), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_while] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_suspend] = ACTIONS(4939), - [anon_sym_sealed] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4939), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_override] = ACTIONS(4939), - [anon_sym_lateinit] = ACTIONS(4939), - [anon_sym_public] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4939), - [anon_sym_internal] = ACTIONS(4939), - [anon_sym_protected] = ACTIONS(4939), - [anon_sym_tailrec] = ACTIONS(4939), - [anon_sym_operator] = ACTIONS(4939), - [anon_sym_infix] = ACTIONS(4939), - [anon_sym_inline] = ACTIONS(4939), - [anon_sym_external] = ACTIONS(4939), - [sym_property_modifier] = ACTIONS(4939), - [anon_sym_abstract] = ACTIONS(4939), - [anon_sym_final] = ACTIONS(4939), - [anon_sym_open] = ACTIONS(4939), - [anon_sym_vararg] = ACTIONS(4939), - [anon_sym_noinline] = ACTIONS(4939), - [anon_sym_crossinline] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), - [sym_multiline_comment] = ACTIONS(3), + [3211] = { + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, - [3240] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_DASH_GT] = ACTIONS(4937), - [sym_label] = ACTIONS(4937), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_while] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_suspend] = ACTIONS(4935), - [anon_sym_sealed] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4935), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_override] = ACTIONS(4935), - [anon_sym_lateinit] = ACTIONS(4935), - [anon_sym_public] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4935), - [anon_sym_internal] = ACTIONS(4935), - [anon_sym_protected] = ACTIONS(4935), - [anon_sym_tailrec] = ACTIONS(4935), - [anon_sym_operator] = ACTIONS(4935), - [anon_sym_infix] = ACTIONS(4935), - [anon_sym_inline] = ACTIONS(4935), - [anon_sym_external] = ACTIONS(4935), - [sym_property_modifier] = ACTIONS(4935), - [anon_sym_abstract] = ACTIONS(4935), - [anon_sym_final] = ACTIONS(4935), - [anon_sym_open] = ACTIONS(4935), - [anon_sym_vararg] = ACTIONS(4935), - [anon_sym_noinline] = ACTIONS(4935), - [anon_sym_crossinline] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), - [sym_multiline_comment] = ACTIONS(3), + [3212] = { + [sym__alpha_identifier] = ACTIONS(4933), + [anon_sym_AT] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_COMMA] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4933), + [anon_sym_GT] = ACTIONS(4933), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_object] = ACTIONS(4933), + [anon_sym_fun] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), + [anon_sym_this] = ACTIONS(4933), + [anon_sym_super] = ACTIONS(4933), + [anon_sym_STAR] = ACTIONS(4933), + [sym_label] = ACTIONS(4933), + [anon_sym_in] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4935), + [anon_sym_QMARK_COLON] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4935), + [anon_sym_PIPE_PIPE] = ACTIONS(4935), + [anon_sym_null] = ACTIONS(4933), + [anon_sym_if] = ACTIONS(4933), + [anon_sym_else] = ACTIONS(4933), + [anon_sym_when] = ACTIONS(4933), + [anon_sym_try] = ACTIONS(4933), + [anon_sym_throw] = ACTIONS(4933), + [anon_sym_return] = ACTIONS(4933), + [anon_sym_continue] = ACTIONS(4933), + [anon_sym_break] = ACTIONS(4933), + [anon_sym_COLON_COLON] = ACTIONS(4935), + [anon_sym_PLUS_EQ] = ACTIONS(4935), + [anon_sym_DASH_EQ] = ACTIONS(4935), + [anon_sym_STAR_EQ] = ACTIONS(4935), + [anon_sym_SLASH_EQ] = ACTIONS(4935), + [anon_sym_PERCENT_EQ] = ACTIONS(4935), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4935), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4935), + [anon_sym_LT_EQ] = ACTIONS(4935), + [anon_sym_GT_EQ] = ACTIONS(4935), + [anon_sym_BANGin] = ACTIONS(4935), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_BANGis] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(4933), + [anon_sym_DASH] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4933), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_as_QMARK] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4935), + [anon_sym_DASH_DASH] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4933), + [anon_sym_BANG_BANG] = ACTIONS(4935), + [anon_sym_data] = ACTIONS(4933), + [anon_sym_inner] = ACTIONS(4933), + [anon_sym_expect] = ACTIONS(4933), + [anon_sym_actual] = ACTIONS(4933), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4935), + [anon_sym_continue_AT] = ACTIONS(4935), + [anon_sym_break_AT] = ACTIONS(4935), + [sym_real_literal] = ACTIONS(4935), + [sym_integer_literal] = ACTIONS(4933), + [sym_hex_literal] = ACTIONS(4935), + [sym_bin_literal] = ACTIONS(4935), + [anon_sym_true] = ACTIONS(4933), + [anon_sym_false] = ACTIONS(4933), + [anon_sym_SQUOTE] = ACTIONS(4935), + [sym__backtick_identifier] = ACTIONS(4935), + [sym__automatic_semicolon] = ACTIONS(4935), + [sym_safe_nav] = ACTIONS(4935), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4935), }, - [3241] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_RBRACK] = ACTIONS(5057), - [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_DOT] = 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_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), + [3213] = { + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, - [3242] = { - [aux_sym_nullable_type_repeat1] = STATE(3201), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [sym__quest] = ACTIONS(6529), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [3214] = { + [sym_type_constraints] = STATE(3622), + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, - [3243] = { - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(1778), - [anon_sym_set] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_DASH_GT] = ACTIONS(1780), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(1778), - [anon_sym_sealed] = ACTIONS(1778), - [anon_sym_annotation] = ACTIONS(1778), - [anon_sym_data] = ACTIONS(1778), - [anon_sym_inner] = ACTIONS(1778), - [anon_sym_override] = ACTIONS(1778), - [anon_sym_lateinit] = ACTIONS(1778), - [anon_sym_public] = ACTIONS(1778), - [anon_sym_private] = ACTIONS(1778), - [anon_sym_internal] = ACTIONS(1778), - [anon_sym_protected] = ACTIONS(1778), - [anon_sym_tailrec] = ACTIONS(1778), - [anon_sym_operator] = ACTIONS(1778), - [anon_sym_infix] = ACTIONS(1778), - [anon_sym_inline] = ACTIONS(1778), - [anon_sym_external] = ACTIONS(1778), - [sym_property_modifier] = ACTIONS(1778), - [anon_sym_abstract] = ACTIONS(1778), - [anon_sym_final] = ACTIONS(1778), - [anon_sym_open] = ACTIONS(1778), - [anon_sym_vararg] = ACTIONS(1778), - [anon_sym_noinline] = ACTIONS(1778), - [anon_sym_crossinline] = ACTIONS(1778), - [anon_sym_expect] = ACTIONS(1778), - [anon_sym_actual] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), + [3215] = { + [sym_type_constraints] = STATE(3621), + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, - [3244] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_RPAREN] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_DASH_GT] = ACTIONS(5077), - [sym_label] = ACTIONS(5077), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), + [3216] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_RBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_RPAREN] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_DASH_GT] = ACTIONS(4504), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_while] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(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(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, - [3245] = { + [3217] = { [sym__alpha_identifier] = ACTIONS(5081), [anon_sym_AT] = ACTIONS(5083), [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), [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_object] = ACTIONS(5081), + [anon_sym_fun] = ACTIONS(5081), [anon_sym_DOT] = 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), - [anon_sym_DASH_GT] = ACTIONS(5083), - [sym_label] = ACTIONS(5083), + [sym_label] = ACTIONS(5081), [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_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), @@ -362096,2826 +359885,3638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), + [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), }, - [3246] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [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_DOT] = 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_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), + [3218] = { + [sym_type_constraints] = STATE(3620), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3247] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_RBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_RPAREN] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [anon_sym_DASH_GT] = ACTIONS(4519), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_while] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [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(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), + [3219] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [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_DOT] = 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_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), + [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), + }, + [3220] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [3221] = { + [sym_class_body] = STATE(3296), + [sym_type_constraints] = STATE(3008), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6534), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, - [3248] = { - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4087), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3222] = { + [sym_type_constraints] = STATE(3619), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [3249] = { - [sym__alpha_identifier] = ACTIONS(4867), - [anon_sym_AT] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_as] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_COMMA] = ACTIONS(4869), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_where] = ACTIONS(4867), - [anon_sym_object] = ACTIONS(4867), - [anon_sym_fun] = ACTIONS(4867), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_get] = ACTIONS(4867), - [anon_sym_set] = ACTIONS(4867), - [anon_sym_this] = ACTIONS(4867), - [anon_sym_super] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4867), - [sym_label] = ACTIONS(4867), - [anon_sym_in] = ACTIONS(4867), - [anon_sym_DOT_DOT] = ACTIONS(4869), - [anon_sym_QMARK_COLON] = ACTIONS(4869), - [anon_sym_AMP_AMP] = ACTIONS(4869), - [anon_sym_PIPE_PIPE] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(4867), - [anon_sym_if] = ACTIONS(4867), - [anon_sym_else] = ACTIONS(4867), - [anon_sym_when] = ACTIONS(4867), - [anon_sym_try] = ACTIONS(4867), - [anon_sym_throw] = ACTIONS(4867), - [anon_sym_return] = ACTIONS(4867), - [anon_sym_continue] = ACTIONS(4867), - [anon_sym_break] = ACTIONS(4867), - [anon_sym_COLON_COLON] = ACTIONS(4869), - [anon_sym_PLUS_EQ] = ACTIONS(4869), - [anon_sym_DASH_EQ] = ACTIONS(4869), - [anon_sym_STAR_EQ] = ACTIONS(4869), - [anon_sym_SLASH_EQ] = ACTIONS(4869), - [anon_sym_PERCENT_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), - [anon_sym_LT_EQ] = ACTIONS(4869), - [anon_sym_GT_EQ] = ACTIONS(4869), - [anon_sym_BANGin] = ACTIONS(4869), - [anon_sym_is] = ACTIONS(4867), - [anon_sym_BANGis] = ACTIONS(4869), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_as_QMARK] = ACTIONS(4869), - [anon_sym_PLUS_PLUS] = ACTIONS(4869), - [anon_sym_DASH_DASH] = ACTIONS(4869), - [anon_sym_BANG] = ACTIONS(4867), - [anon_sym_BANG_BANG] = ACTIONS(4869), - [anon_sym_data] = ACTIONS(4867), - [anon_sym_inner] = ACTIONS(4867), - [anon_sym_expect] = ACTIONS(4867), - [anon_sym_actual] = ACTIONS(4867), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4869), - [anon_sym_continue_AT] = ACTIONS(4869), - [anon_sym_break_AT] = ACTIONS(4869), - [sym_real_literal] = ACTIONS(4869), - [sym_integer_literal] = ACTIONS(4867), - [sym_hex_literal] = ACTIONS(4869), - [sym_bin_literal] = ACTIONS(4869), - [anon_sym_true] = ACTIONS(4867), - [anon_sym_false] = ACTIONS(4867), - [anon_sym_SQUOTE] = ACTIONS(4869), - [sym__backtick_identifier] = ACTIONS(4869), - [sym__automatic_semicolon] = ACTIONS(4869), - [sym_safe_nav] = ACTIONS(4869), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4869), + [3223] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(1774), + [anon_sym_sealed] = ACTIONS(1774), + [anon_sym_annotation] = ACTIONS(1774), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_lateinit] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_internal] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_tailrec] = ACTIONS(1774), + [anon_sym_operator] = ACTIONS(1774), + [anon_sym_infix] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1774), + [anon_sym_external] = ACTIONS(1774), + [sym_property_modifier] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_open] = ACTIONS(1774), + [anon_sym_vararg] = ACTIONS(1774), + [anon_sym_noinline] = ACTIONS(1774), + [anon_sym_crossinline] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), }, - [3250] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_object] = ACTIONS(5075), - [anon_sym_fun] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_this] = ACTIONS(5075), - [anon_sym_super] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5075), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_throw] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5077), - [anon_sym_continue_AT] = ACTIONS(5077), - [anon_sym_break_AT] = ACTIONS(5077), - [sym_real_literal] = ACTIONS(5077), - [sym_integer_literal] = ACTIONS(5075), - [sym_hex_literal] = ACTIONS(5077), - [sym_bin_literal] = ACTIONS(5077), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5077), + [3224] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_RBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5297), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_while] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), }, - [3251] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_object] = ACTIONS(4931), - [anon_sym_fun] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_this] = ACTIONS(4931), - [anon_sym_super] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [sym_label] = ACTIONS(4931), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_null] = ACTIONS(4931), - [anon_sym_if] = ACTIONS(4931), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_try] = ACTIONS(4931), - [anon_sym_throw] = ACTIONS(4931), - [anon_sym_return] = ACTIONS(4931), - [anon_sym_continue] = ACTIONS(4931), - [anon_sym_break] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4933), - [anon_sym_continue_AT] = ACTIONS(4933), - [anon_sym_break_AT] = ACTIONS(4933), - [sym_real_literal] = ACTIONS(4933), - [sym_integer_literal] = ACTIONS(4931), - [sym_hex_literal] = ACTIONS(4933), - [sym_bin_literal] = ACTIONS(4933), - [anon_sym_true] = ACTIONS(4931), - [anon_sym_false] = ACTIONS(4931), - [anon_sym_SQUOTE] = ACTIONS(4933), - [sym__backtick_identifier] = ACTIONS(4933), - [sym__automatic_semicolon] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4933), + [3225] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_RPAREN] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(4293), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), }, - [3252] = { - [sym_type_constraints] = STATE(3827), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6531), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3226] = { + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3253] = { - [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_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), + [3227] = { + [sym_class_body] = STATE(3317), + [sym_type_constraints] = STATE(3020), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3254] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_RBRACK] = ACTIONS(4627), - [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_DOT] = 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_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), + [3228] = { + [sym_type_constraints] = STATE(3618), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, - [3255] = { - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_DASH_GT] = ACTIONS(1696), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(1694), - [anon_sym_sealed] = ACTIONS(1694), - [anon_sym_annotation] = ACTIONS(1694), - [anon_sym_data] = ACTIONS(1694), - [anon_sym_inner] = ACTIONS(1694), - [anon_sym_override] = ACTIONS(1694), - [anon_sym_lateinit] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_private] = ACTIONS(1694), - [anon_sym_internal] = ACTIONS(1694), - [anon_sym_protected] = ACTIONS(1694), - [anon_sym_tailrec] = ACTIONS(1694), - [anon_sym_operator] = ACTIONS(1694), - [anon_sym_infix] = ACTIONS(1694), - [anon_sym_inline] = ACTIONS(1694), - [anon_sym_external] = ACTIONS(1694), - [sym_property_modifier] = ACTIONS(1694), - [anon_sym_abstract] = ACTIONS(1694), - [anon_sym_final] = ACTIONS(1694), - [anon_sym_open] = ACTIONS(1694), - [anon_sym_vararg] = ACTIONS(1694), - [anon_sym_noinline] = ACTIONS(1694), - [anon_sym_crossinline] = ACTIONS(1694), - [anon_sym_expect] = ACTIONS(1694), - [anon_sym_actual] = ACTIONS(1694), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [3229] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_RBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_RPAREN] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_DASH_GT] = ACTIONS(4496), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_while] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), [sym_multiline_comment] = ACTIONS(3), }, - [3256] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [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_DOT] = 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_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), + [3230] = { + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [3231] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(6536), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [3232] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(6540), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [3233] = { + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5015), - [sym_safe_nav] = ACTIONS(5015), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [3257] = { - [sym__alpha_identifier] = ACTIONS(4863), - [anon_sym_AT] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4865), - [anon_sym_RBRACK] = ACTIONS(4865), - [anon_sym_as] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4865), - [anon_sym_LPAREN] = ACTIONS(4865), - [anon_sym_COMMA] = ACTIONS(4865), - [anon_sym_RPAREN] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_where] = ACTIONS(4863), - [anon_sym_DOT] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4865), - [anon_sym_get] = ACTIONS(4863), - [anon_sym_set] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4863), - [anon_sym_DASH_GT] = ACTIONS(4865), - [sym_label] = ACTIONS(4865), - [anon_sym_in] = ACTIONS(4863), - [anon_sym_while] = ACTIONS(4863), - [anon_sym_DOT_DOT] = ACTIONS(4865), - [anon_sym_QMARK_COLON] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_else] = ACTIONS(4863), - [anon_sym_COLON_COLON] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4865), - [anon_sym_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_EQ] = ACTIONS(4865), - [anon_sym_BANGin] = ACTIONS(4865), - [anon_sym_is] = ACTIONS(4863), - [anon_sym_BANGis] = ACTIONS(4865), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_SLASH] = ACTIONS(4863), - [anon_sym_PERCENT] = ACTIONS(4863), - [anon_sym_as_QMARK] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4865), - [anon_sym_DASH_DASH] = ACTIONS(4865), - [anon_sym_BANG_BANG] = ACTIONS(4865), - [anon_sym_suspend] = ACTIONS(4863), - [anon_sym_sealed] = ACTIONS(4863), - [anon_sym_annotation] = ACTIONS(4863), - [anon_sym_data] = ACTIONS(4863), - [anon_sym_inner] = ACTIONS(4863), - [anon_sym_override] = ACTIONS(4863), - [anon_sym_lateinit] = ACTIONS(4863), - [anon_sym_public] = ACTIONS(4863), - [anon_sym_private] = ACTIONS(4863), - [anon_sym_internal] = ACTIONS(4863), - [anon_sym_protected] = ACTIONS(4863), - [anon_sym_tailrec] = ACTIONS(4863), - [anon_sym_operator] = ACTIONS(4863), - [anon_sym_infix] = ACTIONS(4863), - [anon_sym_inline] = ACTIONS(4863), - [anon_sym_external] = ACTIONS(4863), - [sym_property_modifier] = ACTIONS(4863), - [anon_sym_abstract] = ACTIONS(4863), - [anon_sym_final] = ACTIONS(4863), - [anon_sym_open] = ACTIONS(4863), - [anon_sym_vararg] = ACTIONS(4863), - [anon_sym_noinline] = ACTIONS(4863), - [anon_sym_crossinline] = ACTIONS(4863), - [anon_sym_expect] = ACTIONS(4863), - [anon_sym_actual] = ACTIONS(4863), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4865), - [sym_safe_nav] = ACTIONS(4865), + [3234] = { + [sym__alpha_identifier] = ACTIONS(4893), + [anon_sym_AT] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_as] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_where] = ACTIONS(4893), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_get] = ACTIONS(4893), + [anon_sym_set] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [anon_sym_DASH_GT] = ACTIONS(4895), + [sym_label] = ACTIONS(4895), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_while] = ACTIONS(4893), + [anon_sym_DOT_DOT] = ACTIONS(4895), + [anon_sym_QMARK_COLON] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_else] = ACTIONS(4893), + [anon_sym_COLON_COLON] = ACTIONS(4895), + [anon_sym_PLUS_EQ] = ACTIONS(4895), + [anon_sym_DASH_EQ] = ACTIONS(4895), + [anon_sym_STAR_EQ] = ACTIONS(4895), + [anon_sym_SLASH_EQ] = ACTIONS(4895), + [anon_sym_PERCENT_EQ] = ACTIONS(4895), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), + [anon_sym_LT_EQ] = ACTIONS(4895), + [anon_sym_GT_EQ] = ACTIONS(4895), + [anon_sym_BANGin] = ACTIONS(4895), + [anon_sym_is] = ACTIONS(4893), + [anon_sym_BANGis] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_as_QMARK] = ACTIONS(4895), + [anon_sym_PLUS_PLUS] = ACTIONS(4895), + [anon_sym_DASH_DASH] = ACTIONS(4895), + [anon_sym_BANG_BANG] = ACTIONS(4895), + [anon_sym_suspend] = ACTIONS(4893), + [anon_sym_sealed] = ACTIONS(4893), + [anon_sym_annotation] = ACTIONS(4893), + [anon_sym_data] = ACTIONS(4893), + [anon_sym_inner] = ACTIONS(4893), + [anon_sym_override] = ACTIONS(4893), + [anon_sym_lateinit] = ACTIONS(4893), + [anon_sym_public] = ACTIONS(4893), + [anon_sym_private] = ACTIONS(4893), + [anon_sym_internal] = ACTIONS(4893), + [anon_sym_protected] = ACTIONS(4893), + [anon_sym_tailrec] = ACTIONS(4893), + [anon_sym_operator] = ACTIONS(4893), + [anon_sym_infix] = ACTIONS(4893), + [anon_sym_inline] = ACTIONS(4893), + [anon_sym_external] = ACTIONS(4893), + [sym_property_modifier] = ACTIONS(4893), + [anon_sym_abstract] = ACTIONS(4893), + [anon_sym_final] = ACTIONS(4893), + [anon_sym_open] = ACTIONS(4893), + [anon_sym_vararg] = ACTIONS(4893), + [anon_sym_noinline] = ACTIONS(4893), + [anon_sym_crossinline] = ACTIONS(4893), + [anon_sym_expect] = ACTIONS(4893), + [anon_sym_actual] = ACTIONS(4893), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4895), + [sym_safe_nav] = ACTIONS(4895), [sym_multiline_comment] = ACTIONS(3), }, - [3258] = { - [sym__alpha_identifier] = ACTIONS(5081), - [anon_sym_AT] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [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_DOT] = 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_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), - [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), + [3235] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [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_DOT] = 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_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_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), + [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), + }, + [3236] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(6544), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [3237] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(6548), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [3238] = { + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5083), }, - [3259] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), + [3239] = { + [sym__alpha_identifier] = ACTIONS(4905), + [anon_sym_AT] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_as] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(4905), + [anon_sym_LBRACE] = ACTIONS(4907), + [anon_sym_RBRACE] = ACTIONS(4907), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_where] = ACTIONS(4905), + [anon_sym_DOT] = ACTIONS(4905), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_get] = ACTIONS(4905), + [anon_sym_set] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_DASH_GT] = ACTIONS(4907), + [sym_label] = ACTIONS(4907), + [anon_sym_in] = ACTIONS(4905), + [anon_sym_while] = ACTIONS(4905), + [anon_sym_DOT_DOT] = ACTIONS(4907), + [anon_sym_QMARK_COLON] = ACTIONS(4907), + [anon_sym_AMP_AMP] = ACTIONS(4907), + [anon_sym_PIPE_PIPE] = ACTIONS(4907), + [anon_sym_else] = ACTIONS(4905), + [anon_sym_COLON_COLON] = ACTIONS(4907), + [anon_sym_PLUS_EQ] = ACTIONS(4907), + [anon_sym_DASH_EQ] = ACTIONS(4907), + [anon_sym_STAR_EQ] = ACTIONS(4907), + [anon_sym_SLASH_EQ] = ACTIONS(4907), + [anon_sym_PERCENT_EQ] = ACTIONS(4907), + [anon_sym_BANG_EQ] = ACTIONS(4905), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), + [anon_sym_EQ_EQ] = ACTIONS(4905), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), + [anon_sym_LT_EQ] = ACTIONS(4907), + [anon_sym_GT_EQ] = ACTIONS(4907), + [anon_sym_BANGin] = ACTIONS(4907), + [anon_sym_is] = ACTIONS(4905), + [anon_sym_BANGis] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_PERCENT] = ACTIONS(4905), + [anon_sym_as_QMARK] = ACTIONS(4907), + [anon_sym_PLUS_PLUS] = ACTIONS(4907), + [anon_sym_DASH_DASH] = ACTIONS(4907), + [anon_sym_BANG_BANG] = ACTIONS(4907), + [anon_sym_suspend] = ACTIONS(4905), + [anon_sym_sealed] = ACTIONS(4905), + [anon_sym_annotation] = ACTIONS(4905), + [anon_sym_data] = ACTIONS(4905), + [anon_sym_inner] = ACTIONS(4905), + [anon_sym_override] = ACTIONS(4905), + [anon_sym_lateinit] = ACTIONS(4905), + [anon_sym_public] = ACTIONS(4905), + [anon_sym_private] = ACTIONS(4905), + [anon_sym_internal] = ACTIONS(4905), + [anon_sym_protected] = ACTIONS(4905), + [anon_sym_tailrec] = ACTIONS(4905), + [anon_sym_operator] = ACTIONS(4905), + [anon_sym_infix] = ACTIONS(4905), + [anon_sym_inline] = ACTIONS(4905), + [anon_sym_external] = ACTIONS(4905), + [sym_property_modifier] = ACTIONS(4905), + [anon_sym_abstract] = ACTIONS(4905), + [anon_sym_final] = ACTIONS(4905), + [anon_sym_open] = ACTIONS(4905), + [anon_sym_vararg] = ACTIONS(4905), + [anon_sym_noinline] = ACTIONS(4905), + [anon_sym_crossinline] = ACTIONS(4905), + [anon_sym_expect] = ACTIONS(4905), + [anon_sym_actual] = ACTIONS(4905), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4907), + [sym_safe_nav] = ACTIONS(4907), + [sym_multiline_comment] = ACTIONS(3), }, - [3260] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_RBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [anon_sym_DASH_GT] = ACTIONS(4903), - [sym_label] = ACTIONS(4903), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_while] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_suspend] = ACTIONS(4901), - [anon_sym_sealed] = ACTIONS(4901), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_override] = ACTIONS(4901), - [anon_sym_lateinit] = ACTIONS(4901), - [anon_sym_public] = ACTIONS(4901), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_internal] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_tailrec] = ACTIONS(4901), - [anon_sym_operator] = ACTIONS(4901), - [anon_sym_infix] = ACTIONS(4901), - [anon_sym_inline] = ACTIONS(4901), - [anon_sym_external] = ACTIONS(4901), - [sym_property_modifier] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_final] = ACTIONS(4901), - [anon_sym_open] = ACTIONS(4901), - [anon_sym_vararg] = ACTIONS(4901), - [anon_sym_noinline] = ACTIONS(4901), - [anon_sym_crossinline] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), + [3240] = { + [sym__alpha_identifier] = ACTIONS(5009), + [anon_sym_AT] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_as] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_where] = ACTIONS(5009), + [anon_sym_object] = ACTIONS(5009), + [anon_sym_fun] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_get] = ACTIONS(5009), + [anon_sym_set] = ACTIONS(5009), + [anon_sym_this] = ACTIONS(5009), + [anon_sym_super] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5009), + [sym_label] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5009), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_QMARK_COLON] = ACTIONS(5011), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_null] = ACTIONS(5009), + [anon_sym_if] = ACTIONS(5009), + [anon_sym_else] = ACTIONS(5009), + [anon_sym_when] = ACTIONS(5009), + [anon_sym_try] = ACTIONS(5009), + [anon_sym_throw] = ACTIONS(5009), + [anon_sym_return] = ACTIONS(5009), + [anon_sym_continue] = ACTIONS(5009), + [anon_sym_break] = ACTIONS(5009), + [anon_sym_COLON_COLON] = ACTIONS(5011), + [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(5009), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_BANGin] = ACTIONS(5011), + [anon_sym_is] = ACTIONS(5009), + [anon_sym_BANGis] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_as_QMARK] = ACTIONS(5011), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_BANG] = ACTIONS(5009), + [anon_sym_BANG_BANG] = ACTIONS(5011), + [anon_sym_data] = ACTIONS(5009), + [anon_sym_inner] = ACTIONS(5009), + [anon_sym_expect] = ACTIONS(5009), + [anon_sym_actual] = ACTIONS(5009), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5011), + [anon_sym_continue_AT] = ACTIONS(5011), + [anon_sym_break_AT] = ACTIONS(5011), + [sym_real_literal] = ACTIONS(5011), + [sym_integer_literal] = ACTIONS(5009), + [sym_hex_literal] = ACTIONS(5011), + [sym_bin_literal] = ACTIONS(5011), + [anon_sym_true] = ACTIONS(5009), + [anon_sym_false] = ACTIONS(5009), + [anon_sym_SQUOTE] = ACTIONS(5011), + [sym__backtick_identifier] = ACTIONS(5011), + [sym__automatic_semicolon] = ACTIONS(5011), + [sym_safe_nav] = ACTIONS(5011), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5011), }, - [3261] = { - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [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_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), + [3241] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_RBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_while] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), [sym_multiline_comment] = ACTIONS(3), }, - [3262] = { - [sym_class_body] = STATE(3261), - [sym_type_constraints] = STATE(3076), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), + [3242] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_object] = ACTIONS(5035), + [anon_sym_fun] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_get] = ACTIONS(5035), + [anon_sym_set] = ACTIONS(5035), + [anon_sym_this] = ACTIONS(5035), + [anon_sym_super] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [sym_label] = ACTIONS(5035), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5037), + [anon_sym_QMARK_COLON] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_null] = ACTIONS(5035), + [anon_sym_if] = ACTIONS(5035), + [anon_sym_else] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_throw] = ACTIONS(5035), + [anon_sym_return] = ACTIONS(5035), + [anon_sym_continue] = ACTIONS(5035), + [anon_sym_break] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_BANGin] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_BANGis] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_as_QMARK] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5035), + [anon_sym_BANG_BANG] = ACTIONS(5037), + [anon_sym_data] = ACTIONS(5035), + [anon_sym_inner] = ACTIONS(5035), + [anon_sym_expect] = ACTIONS(5035), + [anon_sym_actual] = ACTIONS(5035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5037), + [anon_sym_continue_AT] = ACTIONS(5037), + [anon_sym_break_AT] = ACTIONS(5037), + [sym_real_literal] = ACTIONS(5037), + [sym_integer_literal] = ACTIONS(5035), + [sym_hex_literal] = ACTIONS(5037), + [sym_bin_literal] = ACTIONS(5037), + [anon_sym_true] = ACTIONS(5035), + [anon_sym_false] = ACTIONS(5035), + [anon_sym_SQUOTE] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5037), + [sym__automatic_semicolon] = ACTIONS(5037), + [sym_safe_nav] = ACTIONS(5037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5037), + }, + [3243] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(4300), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_RPAREN] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(4293), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), [sym_multiline_comment] = ACTIONS(3), }, - [3263] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [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_DOT] = 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_expect] = ACTIONS(5097), - [anon_sym_actual] = ACTIONS(5097), + [3244] = { + [sym__alpha_identifier] = ACTIONS(4917), + [anon_sym_AT] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_as] = ACTIONS(4917), + [anon_sym_EQ] = ACTIONS(4917), + [anon_sym_LBRACE] = ACTIONS(4919), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_where] = ACTIONS(4917), + [anon_sym_object] = ACTIONS(4917), + [anon_sym_fun] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4917), + [anon_sym_SEMI] = ACTIONS(4919), + [anon_sym_get] = ACTIONS(4917), + [anon_sym_set] = ACTIONS(4917), + [anon_sym_this] = ACTIONS(4917), + [anon_sym_super] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [sym_label] = ACTIONS(4917), + [anon_sym_in] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4919), + [anon_sym_QMARK_COLON] = ACTIONS(4919), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE_PIPE] = ACTIONS(4919), + [anon_sym_null] = ACTIONS(4917), + [anon_sym_if] = ACTIONS(4917), + [anon_sym_else] = ACTIONS(4917), + [anon_sym_when] = ACTIONS(4917), + [anon_sym_try] = ACTIONS(4917), + [anon_sym_throw] = ACTIONS(4917), + [anon_sym_return] = ACTIONS(4917), + [anon_sym_continue] = ACTIONS(4917), + [anon_sym_break] = ACTIONS(4917), + [anon_sym_COLON_COLON] = ACTIONS(4919), + [anon_sym_PLUS_EQ] = ACTIONS(4919), + [anon_sym_DASH_EQ] = ACTIONS(4919), + [anon_sym_STAR_EQ] = ACTIONS(4919), + [anon_sym_SLASH_EQ] = ACTIONS(4919), + [anon_sym_PERCENT_EQ] = ACTIONS(4919), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4919), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4919), + [anon_sym_LT_EQ] = ACTIONS(4919), + [anon_sym_GT_EQ] = ACTIONS(4919), + [anon_sym_BANGin] = ACTIONS(4919), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_BANGis] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_as_QMARK] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4919), + [anon_sym_DASH_DASH] = ACTIONS(4919), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_BANG_BANG] = ACTIONS(4919), + [anon_sym_data] = ACTIONS(4917), + [anon_sym_inner] = ACTIONS(4917), + [anon_sym_expect] = ACTIONS(4917), + [anon_sym_actual] = ACTIONS(4917), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5099), - [anon_sym_continue_AT] = ACTIONS(5099), - [anon_sym_break_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), + [anon_sym_return_AT] = ACTIONS(4919), + [anon_sym_continue_AT] = ACTIONS(4919), + [anon_sym_break_AT] = ACTIONS(4919), + [sym_real_literal] = ACTIONS(4919), + [sym_integer_literal] = ACTIONS(4917), + [sym_hex_literal] = ACTIONS(4919), + [sym_bin_literal] = ACTIONS(4919), + [anon_sym_true] = ACTIONS(4917), + [anon_sym_false] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4919), + [sym__backtick_identifier] = ACTIONS(4919), + [sym__automatic_semicolon] = ACTIONS(4919), + [sym_safe_nav] = ACTIONS(4919), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5099), + [sym__string_start] = ACTIONS(4919), }, - [3264] = { - [sym_type_constraints] = STATE(3818), - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6533), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [3245] = { + [sym__alpha_identifier] = ACTIONS(4945), + [anon_sym_AT] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_RBRACK] = ACTIONS(4947), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4947), + [anon_sym_COMMA] = ACTIONS(4947), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_where] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_get] = ACTIONS(4945), + [anon_sym_set] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4945), + [anon_sym_DASH_GT] = ACTIONS(4947), + [sym_label] = ACTIONS(4947), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_while] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4947), + [anon_sym_QMARK_COLON] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_else] = ACTIONS(4945), + [anon_sym_COLON_COLON] = ACTIONS(4947), + [anon_sym_PLUS_EQ] = ACTIONS(4947), + [anon_sym_DASH_EQ] = ACTIONS(4947), + [anon_sym_STAR_EQ] = ACTIONS(4947), + [anon_sym_SLASH_EQ] = ACTIONS(4947), + [anon_sym_PERCENT_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4947), + [anon_sym_LT_EQ] = ACTIONS(4947), + [anon_sym_GT_EQ] = ACTIONS(4947), + [anon_sym_BANGin] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_BANGis] = ACTIONS(4947), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_as_QMARK] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_BANG_BANG] = ACTIONS(4947), + [anon_sym_suspend] = ACTIONS(4945), + [anon_sym_sealed] = ACTIONS(4945), + [anon_sym_annotation] = ACTIONS(4945), + [anon_sym_data] = ACTIONS(4945), + [anon_sym_inner] = ACTIONS(4945), + [anon_sym_override] = ACTIONS(4945), + [anon_sym_lateinit] = ACTIONS(4945), + [anon_sym_public] = ACTIONS(4945), + [anon_sym_private] = ACTIONS(4945), + [anon_sym_internal] = ACTIONS(4945), + [anon_sym_protected] = ACTIONS(4945), + [anon_sym_tailrec] = ACTIONS(4945), + [anon_sym_operator] = ACTIONS(4945), + [anon_sym_infix] = ACTIONS(4945), + [anon_sym_inline] = ACTIONS(4945), + [anon_sym_external] = ACTIONS(4945), + [sym_property_modifier] = ACTIONS(4945), + [anon_sym_abstract] = ACTIONS(4945), + [anon_sym_final] = ACTIONS(4945), + [anon_sym_open] = ACTIONS(4945), + [anon_sym_vararg] = ACTIONS(4945), + [anon_sym_noinline] = ACTIONS(4945), + [anon_sym_crossinline] = ACTIONS(4945), + [anon_sym_expect] = ACTIONS(4945), + [anon_sym_actual] = ACTIONS(4945), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4947), + [sym_safe_nav] = ACTIONS(4947), [sym_multiline_comment] = ACTIONS(3), }, - [3265] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_DASH_GT] = ACTIONS(5039), - [sym_label] = ACTIONS(5039), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_while] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_suspend] = ACTIONS(5037), - [anon_sym_sealed] = ACTIONS(5037), - [anon_sym_annotation] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_override] = ACTIONS(5037), - [anon_sym_lateinit] = ACTIONS(5037), - [anon_sym_public] = ACTIONS(5037), - [anon_sym_private] = ACTIONS(5037), - [anon_sym_internal] = ACTIONS(5037), - [anon_sym_protected] = ACTIONS(5037), - [anon_sym_tailrec] = ACTIONS(5037), - [anon_sym_operator] = ACTIONS(5037), - [anon_sym_infix] = ACTIONS(5037), - [anon_sym_inline] = ACTIONS(5037), - [anon_sym_external] = ACTIONS(5037), - [sym_property_modifier] = ACTIONS(5037), - [anon_sym_abstract] = ACTIONS(5037), - [anon_sym_final] = ACTIONS(5037), - [anon_sym_open] = ACTIONS(5037), - [anon_sym_vararg] = ACTIONS(5037), - [anon_sym_noinline] = ACTIONS(5037), - [anon_sym_crossinline] = ACTIONS(5037), - [anon_sym_expect] = ACTIONS(5037), - [anon_sym_actual] = ACTIONS(5037), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5039), - [sym_safe_nav] = ACTIONS(5039), + [3246] = { + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_RBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_DASH_GT] = ACTIONS(4440), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, - [3266] = { - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_object] = ACTIONS(4262), - [anon_sym_fun] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [anon_sym_this] = ACTIONS(4262), - [anon_sym_super] = ACTIONS(4262), - [sym__quest] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4264), - [anon_sym_continue_AT] = ACTIONS(4264), - [anon_sym_break_AT] = ACTIONS(4264), - [sym_real_literal] = ACTIONS(4264), - [sym_integer_literal] = ACTIONS(4262), - [sym_hex_literal] = ACTIONS(4264), - [sym_bin_literal] = ACTIONS(4264), - [anon_sym_true] = ACTIONS(4262), - [anon_sym_false] = ACTIONS(4262), - [anon_sym_SQUOTE] = ACTIONS(4264), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4264), + [3247] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(6554), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, - [3267] = { - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_RBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4256), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [anon_sym_DASH_GT] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [3248] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_RBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_RPAREN] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_DASH_GT] = ACTIONS(4504), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_while] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, - [3268] = { - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4087), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [3269] = { - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [3249] = { + [sym__alpha_identifier] = ACTIONS(4909), + [anon_sym_AT] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_as] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(4909), + [anon_sym_LBRACE] = ACTIONS(4911), + [anon_sym_RBRACE] = ACTIONS(4911), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_where] = ACTIONS(4909), + [anon_sym_DOT] = ACTIONS(4909), + [anon_sym_SEMI] = ACTIONS(4911), + [anon_sym_get] = ACTIONS(4909), + [anon_sym_set] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_DASH_GT] = ACTIONS(4911), + [sym_label] = ACTIONS(4911), + [anon_sym_in] = ACTIONS(4909), + [anon_sym_while] = ACTIONS(4909), + [anon_sym_DOT_DOT] = ACTIONS(4911), + [anon_sym_QMARK_COLON] = ACTIONS(4911), + [anon_sym_AMP_AMP] = ACTIONS(4911), + [anon_sym_PIPE_PIPE] = ACTIONS(4911), + [anon_sym_else] = ACTIONS(4909), + [anon_sym_COLON_COLON] = ACTIONS(4911), + [anon_sym_PLUS_EQ] = ACTIONS(4911), + [anon_sym_DASH_EQ] = ACTIONS(4911), + [anon_sym_STAR_EQ] = ACTIONS(4911), + [anon_sym_SLASH_EQ] = ACTIONS(4911), + [anon_sym_PERCENT_EQ] = ACTIONS(4911), + [anon_sym_BANG_EQ] = ACTIONS(4909), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4911), + [anon_sym_EQ_EQ] = ACTIONS(4909), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4911), + [anon_sym_LT_EQ] = ACTIONS(4911), + [anon_sym_GT_EQ] = ACTIONS(4911), + [anon_sym_BANGin] = ACTIONS(4911), + [anon_sym_is] = ACTIONS(4909), + [anon_sym_BANGis] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_PERCENT] = ACTIONS(4909), + [anon_sym_as_QMARK] = ACTIONS(4911), + [anon_sym_PLUS_PLUS] = ACTIONS(4911), + [anon_sym_DASH_DASH] = ACTIONS(4911), + [anon_sym_BANG_BANG] = ACTIONS(4911), + [anon_sym_suspend] = ACTIONS(4909), + [anon_sym_sealed] = ACTIONS(4909), + [anon_sym_annotation] = ACTIONS(4909), + [anon_sym_data] = ACTIONS(4909), + [anon_sym_inner] = ACTIONS(4909), + [anon_sym_override] = ACTIONS(4909), + [anon_sym_lateinit] = ACTIONS(4909), + [anon_sym_public] = ACTIONS(4909), + [anon_sym_private] = ACTIONS(4909), + [anon_sym_internal] = ACTIONS(4909), + [anon_sym_protected] = ACTIONS(4909), + [anon_sym_tailrec] = ACTIONS(4909), + [anon_sym_operator] = ACTIONS(4909), + [anon_sym_infix] = ACTIONS(4909), + [anon_sym_inline] = ACTIONS(4909), + [anon_sym_external] = ACTIONS(4909), + [sym_property_modifier] = ACTIONS(4909), + [anon_sym_abstract] = ACTIONS(4909), + [anon_sym_final] = ACTIONS(4909), + [anon_sym_open] = ACTIONS(4909), + [anon_sym_vararg] = ACTIONS(4909), + [anon_sym_noinline] = ACTIONS(4909), + [anon_sym_crossinline] = ACTIONS(4909), + [anon_sym_expect] = ACTIONS(4909), + [anon_sym_actual] = ACTIONS(4909), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4911), + [sym_safe_nav] = ACTIONS(4911), + [sym_multiline_comment] = ACTIONS(3), }, - [3270] = { - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_RBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_RPAREN] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [anon_sym_DASH_GT] = ACTIONS(4402), - [sym_label] = ACTIONS(4402), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_while] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), + [3250] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_RBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_RPAREN] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_DASH_GT] = ACTIONS(4496), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_while] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [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(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), [sym_multiline_comment] = ACTIONS(3), }, - [3271] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [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_DOT] = 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), + [3251] = { + [sym__alpha_identifier] = ACTIONS(4282), + [anon_sym_AT] = ACTIONS(4284), + [anon_sym_LBRACK] = ACTIONS(4284), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_LPAREN] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_LT] = ACTIONS(4282), + [anon_sym_GT] = ACTIONS(4282), + [anon_sym_where] = ACTIONS(4282), + [anon_sym_object] = ACTIONS(4282), + [anon_sym_fun] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_get] = ACTIONS(4282), + [anon_sym_set] = ACTIONS(4282), + [anon_sym_this] = ACTIONS(4282), + [anon_sym_super] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [sym_label] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4282), + [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(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4282), + [anon_sym_when] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [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(4282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4284), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [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(4282), + [anon_sym_BANGis] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_PERCENT] = ACTIONS(4282), + [anon_sym_as_QMARK] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_BANG_BANG] = ACTIONS(4284), + [anon_sym_data] = ACTIONS(4282), + [anon_sym_inner] = ACTIONS(4282), + [anon_sym_expect] = ACTIONS(4282), + [anon_sym_actual] = ACTIONS(4282), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4284), + [anon_sym_continue_AT] = ACTIONS(4284), + [anon_sym_break_AT] = ACTIONS(4284), + [sym_real_literal] = ACTIONS(4284), + [sym_integer_literal] = ACTIONS(4282), + [sym_hex_literal] = ACTIONS(4284), + [sym_bin_literal] = ACTIONS(4284), + [anon_sym_true] = ACTIONS(4282), + [anon_sym_false] = ACTIONS(4282), + [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), + }, + [3252] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(6554), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), + }, + [3253] = { + [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(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_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), + [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_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), + [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), + }, + [3254] = { + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_RBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_DASH_GT] = ACTIONS(4444), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, - [3272] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_DASH_GT] = ACTIONS(5027), - [sym_label] = ACTIONS(5027), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_while] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_suspend] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_annotation] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_lateinit] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_tailrec] = ACTIONS(5025), - [anon_sym_operator] = ACTIONS(5025), - [anon_sym_infix] = ACTIONS(5025), - [anon_sym_inline] = ACTIONS(5025), - [anon_sym_external] = ACTIONS(5025), - [sym_property_modifier] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_final] = ACTIONS(5025), - [anon_sym_open] = ACTIONS(5025), - [anon_sym_vararg] = ACTIONS(5025), - [anon_sym_noinline] = ACTIONS(5025), - [anon_sym_crossinline] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), + [3255] = { + [sym__alpha_identifier] = ACTIONS(4913), + [anon_sym_AT] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_as] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_where] = ACTIONS(4913), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_DASH_GT] = ACTIONS(4915), + [sym_label] = ACTIONS(4915), + [anon_sym_in] = ACTIONS(4913), + [anon_sym_while] = ACTIONS(4913), + [anon_sym_DOT_DOT] = ACTIONS(4915), + [anon_sym_QMARK_COLON] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4915), + [anon_sym_else] = ACTIONS(4913), + [anon_sym_COLON_COLON] = ACTIONS(4915), + [anon_sym_PLUS_EQ] = ACTIONS(4915), + [anon_sym_DASH_EQ] = ACTIONS(4915), + [anon_sym_STAR_EQ] = ACTIONS(4915), + [anon_sym_SLASH_EQ] = ACTIONS(4915), + [anon_sym_PERCENT_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), + [anon_sym_EQ_EQ] = ACTIONS(4913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4915), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_BANGin] = ACTIONS(4915), + [anon_sym_is] = ACTIONS(4913), + [anon_sym_BANGis] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4913), + [anon_sym_as_QMARK] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_BANG_BANG] = ACTIONS(4915), + [anon_sym_suspend] = ACTIONS(4913), + [anon_sym_sealed] = ACTIONS(4913), + [anon_sym_annotation] = ACTIONS(4913), + [anon_sym_data] = ACTIONS(4913), + [anon_sym_inner] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_lateinit] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_internal] = ACTIONS(4913), + [anon_sym_protected] = ACTIONS(4913), + [anon_sym_tailrec] = ACTIONS(4913), + [anon_sym_operator] = ACTIONS(4913), + [anon_sym_infix] = ACTIONS(4913), + [anon_sym_inline] = ACTIONS(4913), + [anon_sym_external] = ACTIONS(4913), + [sym_property_modifier] = ACTIONS(4913), + [anon_sym_abstract] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_open] = ACTIONS(4913), + [anon_sym_vararg] = ACTIONS(4913), + [anon_sym_noinline] = ACTIONS(4913), + [anon_sym_crossinline] = ACTIONS(4913), + [anon_sym_expect] = ACTIONS(4913), + [anon_sym_actual] = ACTIONS(4913), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4915), + [sym_safe_nav] = ACTIONS(4915), [sym_multiline_comment] = ACTIONS(3), }, - [3273] = { - [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_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_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), + [3256] = { + [sym__alpha_identifier] = ACTIONS(4921), + [anon_sym_AT] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_as] = ACTIONS(4921), + [anon_sym_EQ] = ACTIONS(4921), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_where] = ACTIONS(4921), + [anon_sym_DOT] = ACTIONS(4921), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_get] = ACTIONS(4921), + [anon_sym_set] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_DASH_GT] = ACTIONS(4923), + [sym_label] = ACTIONS(4923), + [anon_sym_in] = ACTIONS(4921), + [anon_sym_while] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4923), + [anon_sym_QMARK_COLON] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [anon_sym_else] = ACTIONS(4921), + [anon_sym_COLON_COLON] = ACTIONS(4923), + [anon_sym_PLUS_EQ] = ACTIONS(4923), + [anon_sym_DASH_EQ] = ACTIONS(4923), + [anon_sym_STAR_EQ] = ACTIONS(4923), + [anon_sym_SLASH_EQ] = ACTIONS(4923), + [anon_sym_PERCENT_EQ] = ACTIONS(4923), + [anon_sym_BANG_EQ] = ACTIONS(4921), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4923), + [anon_sym_EQ_EQ] = ACTIONS(4921), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4923), + [anon_sym_LT_EQ] = ACTIONS(4923), + [anon_sym_GT_EQ] = ACTIONS(4923), + [anon_sym_BANGin] = ACTIONS(4923), + [anon_sym_is] = ACTIONS(4921), + [anon_sym_BANGis] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_as_QMARK] = ACTIONS(4923), + [anon_sym_PLUS_PLUS] = ACTIONS(4923), + [anon_sym_DASH_DASH] = ACTIONS(4923), + [anon_sym_BANG_BANG] = ACTIONS(4923), + [anon_sym_suspend] = ACTIONS(4921), + [anon_sym_sealed] = ACTIONS(4921), + [anon_sym_annotation] = ACTIONS(4921), + [anon_sym_data] = ACTIONS(4921), + [anon_sym_inner] = ACTIONS(4921), + [anon_sym_override] = ACTIONS(4921), + [anon_sym_lateinit] = ACTIONS(4921), + [anon_sym_public] = ACTIONS(4921), + [anon_sym_private] = ACTIONS(4921), + [anon_sym_internal] = ACTIONS(4921), + [anon_sym_protected] = ACTIONS(4921), + [anon_sym_tailrec] = ACTIONS(4921), + [anon_sym_operator] = ACTIONS(4921), + [anon_sym_infix] = ACTIONS(4921), + [anon_sym_inline] = ACTIONS(4921), + [anon_sym_external] = ACTIONS(4921), + [sym_property_modifier] = ACTIONS(4921), + [anon_sym_abstract] = ACTIONS(4921), + [anon_sym_final] = ACTIONS(4921), + [anon_sym_open] = ACTIONS(4921), + [anon_sym_vararg] = ACTIONS(4921), + [anon_sym_noinline] = ACTIONS(4921), + [anon_sym_crossinline] = ACTIONS(4921), + [anon_sym_expect] = ACTIONS(4921), + [anon_sym_actual] = ACTIONS(4921), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4923), + [sym_safe_nav] = ACTIONS(4923), [sym_multiline_comment] = ACTIONS(3), }, - [3274] = { - [sym__alpha_identifier] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_EQ] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_COMMA] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4262), - [anon_sym_GT] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym_get] = ACTIONS(4262), - [anon_sym_set] = ACTIONS(4262), - [sym__quest] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4264), - [anon_sym_QMARK_COLON] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_PIPE_PIPE] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_PLUS_EQ] = ACTIONS(4264), - [anon_sym_DASH_EQ] = ACTIONS(4264), - [anon_sym_STAR_EQ] = ACTIONS(4264), - [anon_sym_SLASH_EQ] = ACTIONS(4264), - [anon_sym_PERCENT_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), - [anon_sym_LT_EQ] = ACTIONS(4264), - [anon_sym_GT_EQ] = ACTIONS(4264), - [anon_sym_BANGin] = ACTIONS(4264), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_BANGis] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4264), - [anon_sym_suspend] = ACTIONS(4262), - [anon_sym_sealed] = ACTIONS(4262), - [anon_sym_annotation] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4262), - [anon_sym_inner] = ACTIONS(4262), - [anon_sym_override] = ACTIONS(4262), - [anon_sym_lateinit] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_internal] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_tailrec] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_external] = ACTIONS(4262), - [sym_property_modifier] = ACTIONS(4262), - [anon_sym_abstract] = ACTIONS(4262), - [anon_sym_final] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4262), - [anon_sym_vararg] = ACTIONS(4262), - [anon_sym_noinline] = ACTIONS(4262), - [anon_sym_crossinline] = ACTIONS(4262), - [anon_sym_expect] = ACTIONS(4262), - [anon_sym_actual] = ACTIONS(4262), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4264), - [sym__automatic_semicolon] = ACTIONS(4264), - [sym_safe_nav] = ACTIONS(4264), + [3257] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_RBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_RPAREN] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_DASH_GT] = ACTIONS(4504), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_while] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, - [3275] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_object] = ACTIONS(4901), - [anon_sym_fun] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_this] = ACTIONS(4901), - [anon_sym_super] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [sym_label] = ACTIONS(4901), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_null] = ACTIONS(4901), - [anon_sym_if] = ACTIONS(4901), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_when] = ACTIONS(4901), - [anon_sym_try] = ACTIONS(4901), - [anon_sym_throw] = ACTIONS(4901), - [anon_sym_return] = ACTIONS(4901), - [anon_sym_continue] = ACTIONS(4901), - [anon_sym_break] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG] = ACTIONS(4901), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4903), - [anon_sym_continue_AT] = ACTIONS(4903), - [anon_sym_break_AT] = ACTIONS(4903), - [sym_real_literal] = ACTIONS(4903), - [sym_integer_literal] = ACTIONS(4901), - [sym_hex_literal] = ACTIONS(4903), - [sym_bin_literal] = ACTIONS(4903), - [anon_sym_true] = ACTIONS(4901), - [anon_sym_false] = ACTIONS(4901), - [anon_sym_SQUOTE] = ACTIONS(4903), - [sym__backtick_identifier] = ACTIONS(4903), - [sym__automatic_semicolon] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4903), + [3258] = { + [sym__alpha_identifier] = ACTIONS(4873), + [anon_sym_AT] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_RBRACK] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_where] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_get] = ACTIONS(4873), + [anon_sym_set] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [anon_sym_DASH_GT] = ACTIONS(4875), + [sym_label] = ACTIONS(4875), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_while] = ACTIONS(4873), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_QMARK_COLON] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_else] = ACTIONS(4873), + [anon_sym_COLON_COLON] = ACTIONS(4875), + [anon_sym_PLUS_EQ] = ACTIONS(4875), + [anon_sym_DASH_EQ] = ACTIONS(4875), + [anon_sym_STAR_EQ] = ACTIONS(4875), + [anon_sym_SLASH_EQ] = ACTIONS(4875), + [anon_sym_PERCENT_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_BANGin] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4873), + [anon_sym_BANGis] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_as_QMARK] = ACTIONS(4875), + [anon_sym_PLUS_PLUS] = ACTIONS(4875), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_BANG_BANG] = ACTIONS(4875), + [anon_sym_suspend] = ACTIONS(4873), + [anon_sym_sealed] = ACTIONS(4873), + [anon_sym_annotation] = ACTIONS(4873), + [anon_sym_data] = ACTIONS(4873), + [anon_sym_inner] = ACTIONS(4873), + [anon_sym_override] = ACTIONS(4873), + [anon_sym_lateinit] = ACTIONS(4873), + [anon_sym_public] = ACTIONS(4873), + [anon_sym_private] = ACTIONS(4873), + [anon_sym_internal] = ACTIONS(4873), + [anon_sym_protected] = ACTIONS(4873), + [anon_sym_tailrec] = ACTIONS(4873), + [anon_sym_operator] = ACTIONS(4873), + [anon_sym_infix] = ACTIONS(4873), + [anon_sym_inline] = ACTIONS(4873), + [anon_sym_external] = ACTIONS(4873), + [sym_property_modifier] = ACTIONS(4873), + [anon_sym_abstract] = ACTIONS(4873), + [anon_sym_final] = ACTIONS(4873), + [anon_sym_open] = ACTIONS(4873), + [anon_sym_vararg] = ACTIONS(4873), + [anon_sym_noinline] = ACTIONS(4873), + [anon_sym_crossinline] = ACTIONS(4873), + [anon_sym_expect] = ACTIONS(4873), + [anon_sym_actual] = ACTIONS(4873), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4875), + [sym_safe_nav] = ACTIONS(4875), + [sym_multiline_comment] = ACTIONS(3), }, - [3276] = { - [sym__alpha_identifier] = ACTIONS(4925), - [anon_sym_AT] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_as] = ACTIONS(4925), - [anon_sym_EQ] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_where] = ACTIONS(4925), - [anon_sym_object] = ACTIONS(4925), - [anon_sym_fun] = ACTIONS(4925), - [anon_sym_DOT] = ACTIONS(4925), - [anon_sym_SEMI] = ACTIONS(4927), - [anon_sym_get] = ACTIONS(4925), - [anon_sym_set] = ACTIONS(4925), - [anon_sym_this] = ACTIONS(4925), - [anon_sym_super] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [sym_label] = ACTIONS(4925), - [anon_sym_in] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(4927), - [anon_sym_QMARK_COLON] = ACTIONS(4927), - [anon_sym_AMP_AMP] = ACTIONS(4927), - [anon_sym_PIPE_PIPE] = ACTIONS(4927), - [anon_sym_null] = ACTIONS(4925), - [anon_sym_if] = ACTIONS(4925), - [anon_sym_else] = ACTIONS(4925), - [anon_sym_when] = ACTIONS(4925), - [anon_sym_try] = ACTIONS(4925), - [anon_sym_throw] = ACTIONS(4925), - [anon_sym_return] = ACTIONS(4925), - [anon_sym_continue] = ACTIONS(4925), - [anon_sym_break] = ACTIONS(4925), - [anon_sym_COLON_COLON] = ACTIONS(4927), - [anon_sym_PLUS_EQ] = ACTIONS(4927), - [anon_sym_DASH_EQ] = ACTIONS(4927), - [anon_sym_STAR_EQ] = ACTIONS(4927), - [anon_sym_SLASH_EQ] = ACTIONS(4927), - [anon_sym_PERCENT_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4927), - [anon_sym_LT_EQ] = ACTIONS(4927), - [anon_sym_GT_EQ] = ACTIONS(4927), - [anon_sym_BANGin] = ACTIONS(4927), - [anon_sym_is] = ACTIONS(4925), - [anon_sym_BANGis] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_PERCENT] = ACTIONS(4925), - [anon_sym_as_QMARK] = ACTIONS(4927), - [anon_sym_PLUS_PLUS] = ACTIONS(4927), - [anon_sym_DASH_DASH] = ACTIONS(4927), - [anon_sym_BANG] = ACTIONS(4925), - [anon_sym_BANG_BANG] = ACTIONS(4927), - [anon_sym_data] = ACTIONS(4925), - [anon_sym_inner] = ACTIONS(4925), - [anon_sym_expect] = ACTIONS(4925), - [anon_sym_actual] = ACTIONS(4925), + [3259] = { + [sym__alpha_identifier] = ACTIONS(4981), + [anon_sym_AT] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_as] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_where] = ACTIONS(4981), + [anon_sym_object] = ACTIONS(4981), + [anon_sym_fun] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_get] = ACTIONS(4981), + [anon_sym_set] = ACTIONS(4981), + [anon_sym_this] = ACTIONS(4981), + [anon_sym_super] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4981), + [sym_label] = ACTIONS(4981), + [anon_sym_in] = ACTIONS(4981), + [anon_sym_DOT_DOT] = ACTIONS(4983), + [anon_sym_QMARK_COLON] = ACTIONS(4983), + [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_if] = ACTIONS(4981), + [anon_sym_else] = ACTIONS(4981), + [anon_sym_when] = ACTIONS(4981), + [anon_sym_try] = ACTIONS(4981), + [anon_sym_throw] = ACTIONS(4981), + [anon_sym_return] = ACTIONS(4981), + [anon_sym_continue] = ACTIONS(4981), + [anon_sym_break] = ACTIONS(4981), + [anon_sym_COLON_COLON] = ACTIONS(4983), + [anon_sym_PLUS_EQ] = ACTIONS(4983), + [anon_sym_DASH_EQ] = ACTIONS(4983), + [anon_sym_STAR_EQ] = ACTIONS(4983), + [anon_sym_SLASH_EQ] = ACTIONS(4983), + [anon_sym_PERCENT_EQ] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_BANGin] = ACTIONS(4983), + [anon_sym_is] = ACTIONS(4981), + [anon_sym_BANGis] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_as_QMARK] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4981), + [anon_sym_BANG_BANG] = ACTIONS(4983), + [anon_sym_data] = ACTIONS(4981), + [anon_sym_inner] = ACTIONS(4981), + [anon_sym_expect] = ACTIONS(4981), + [anon_sym_actual] = ACTIONS(4981), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4927), - [anon_sym_continue_AT] = ACTIONS(4927), - [anon_sym_break_AT] = ACTIONS(4927), - [sym_real_literal] = ACTIONS(4927), - [sym_integer_literal] = ACTIONS(4925), - [sym_hex_literal] = ACTIONS(4927), - [sym_bin_literal] = ACTIONS(4927), - [anon_sym_true] = ACTIONS(4925), - [anon_sym_false] = ACTIONS(4925), - [anon_sym_SQUOTE] = ACTIONS(4927), - [sym__backtick_identifier] = ACTIONS(4927), - [sym__automatic_semicolon] = ACTIONS(4927), - [sym_safe_nav] = ACTIONS(4927), + [anon_sym_return_AT] = ACTIONS(4983), + [anon_sym_continue_AT] = ACTIONS(4983), + [anon_sym_break_AT] = ACTIONS(4983), + [sym_real_literal] = ACTIONS(4983), + [sym_integer_literal] = ACTIONS(4981), + [sym_hex_literal] = ACTIONS(4983), + [sym_bin_literal] = ACTIONS(4983), + [anon_sym_true] = ACTIONS(4981), + [anon_sym_false] = ACTIONS(4981), + [anon_sym_SQUOTE] = ACTIONS(4983), + [sym__backtick_identifier] = ACTIONS(4983), + [sym__automatic_semicolon] = ACTIONS(4983), + [sym_safe_nav] = ACTIONS(4983), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4927), + [sym__string_start] = ACTIONS(4983), }, - [3277] = { - [aux_sym_nullable_type_repeat1] = STATE(3277), - [sym__alpha_identifier] = ACTIONS(4235), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(4235), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4235), - [anon_sym_LT] = ACTIONS(4235), - [anon_sym_GT] = ACTIONS(4235), - [anon_sym_where] = ACTIONS(4235), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4235), - [anon_sym_set] = ACTIONS(4235), - [sym__quest] = ACTIONS(6535), - [anon_sym_STAR] = ACTIONS(4235), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4235), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_QMARK_COLON] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_else] = ACTIONS(4235), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4235), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_BANGin] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4235), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_SLASH] = ACTIONS(4235), - [anon_sym_PERCENT] = ACTIONS(4235), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4235), - [anon_sym_sealed] = ACTIONS(4235), - [anon_sym_annotation] = ACTIONS(4235), - [anon_sym_data] = ACTIONS(4235), - [anon_sym_inner] = ACTIONS(4235), - [anon_sym_override] = ACTIONS(4235), - [anon_sym_lateinit] = ACTIONS(4235), - [anon_sym_public] = ACTIONS(4235), - [anon_sym_private] = ACTIONS(4235), - [anon_sym_internal] = ACTIONS(4235), - [anon_sym_protected] = ACTIONS(4235), - [anon_sym_tailrec] = ACTIONS(4235), - [anon_sym_operator] = ACTIONS(4235), - [anon_sym_infix] = ACTIONS(4235), - [anon_sym_inline] = ACTIONS(4235), - [anon_sym_external] = ACTIONS(4235), - [sym_property_modifier] = ACTIONS(4235), - [anon_sym_abstract] = ACTIONS(4235), - [anon_sym_final] = ACTIONS(4235), - [anon_sym_open] = ACTIONS(4235), - [anon_sym_vararg] = ACTIONS(4235), - [anon_sym_noinline] = ACTIONS(4235), - [anon_sym_crossinline] = ACTIONS(4235), - [anon_sym_expect] = ACTIONS(4235), - [anon_sym_actual] = ACTIONS(4235), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [3260] = { + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, - [3278] = { - [sym_type_constraints] = STATE(3515), - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [3261] = { + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6556), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [3279] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_object] = ACTIONS(4840), - [anon_sym_fun] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_this] = ACTIONS(4840), - [anon_sym_super] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_when] = ACTIONS(4840), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_throw] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(6538), - [anon_sym_PLUS_EQ] = ACTIONS(4877), - [anon_sym_DASH_EQ] = ACTIONS(4877), - [anon_sym_STAR_EQ] = ACTIONS(4877), - [anon_sym_SLASH_EQ] = ACTIONS(4877), - [anon_sym_PERCENT_EQ] = ACTIONS(4877), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4842), - [anon_sym_continue_AT] = ACTIONS(4842), - [anon_sym_break_AT] = ACTIONS(4842), - [sym_real_literal] = ACTIONS(4842), - [sym_integer_literal] = ACTIONS(4840), - [sym_hex_literal] = ACTIONS(4842), - [sym_bin_literal] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4842), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4842), - }, - [3280] = { + [3262] = { [sym__alpha_identifier] = ACTIONS(5017), [anon_sym_AT] = ACTIONS(5019), [anon_sym_LBRACK] = ACTIONS(5019), @@ -364997,4025 +363598,3615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5019), [sym_multiline_comment] = ACTIONS(3), }, - [3281] = { - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_DASH_GT] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - }, - [3282] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [anon_sym_DASH_GT] = ACTIONS(5011), - [sym_label] = ACTIONS(5011), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_while] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [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(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_suspend] = ACTIONS(5009), - [anon_sym_sealed] = ACTIONS(5009), - [anon_sym_annotation] = ACTIONS(5009), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_override] = ACTIONS(5009), - [anon_sym_lateinit] = ACTIONS(5009), - [anon_sym_public] = ACTIONS(5009), - [anon_sym_private] = ACTIONS(5009), - [anon_sym_internal] = ACTIONS(5009), - [anon_sym_protected] = ACTIONS(5009), - [anon_sym_tailrec] = ACTIONS(5009), - [anon_sym_operator] = ACTIONS(5009), - [anon_sym_infix] = ACTIONS(5009), - [anon_sym_inline] = ACTIONS(5009), - [anon_sym_external] = ACTIONS(5009), - [sym_property_modifier] = ACTIONS(5009), - [anon_sym_abstract] = ACTIONS(5009), - [anon_sym_final] = ACTIONS(5009), - [anon_sym_open] = ACTIONS(5009), - [anon_sym_vararg] = ACTIONS(5009), - [anon_sym_noinline] = ACTIONS(5009), - [anon_sym_crossinline] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), + [3263] = { + [sym__alpha_identifier] = ACTIONS(5017), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [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_DOT] = 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_expect] = ACTIONS(5017), + [anon_sym_actual] = ACTIONS(5017), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), - [sym_multiline_comment] = ACTIONS(3), - }, - [3283] = { - [sym__alpha_identifier] = ACTIONS(4863), - [anon_sym_AT] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4865), - [anon_sym_as] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4865), - [anon_sym_LPAREN] = ACTIONS(4865), - [anon_sym_COMMA] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_where] = ACTIONS(4863), - [anon_sym_object] = ACTIONS(4863), - [anon_sym_fun] = ACTIONS(4863), - [anon_sym_DOT] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4865), - [anon_sym_get] = ACTIONS(4863), - [anon_sym_set] = ACTIONS(4863), - [anon_sym_this] = ACTIONS(4863), - [anon_sym_super] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4863), - [sym_label] = ACTIONS(4863), - [anon_sym_in] = ACTIONS(4863), - [anon_sym_DOT_DOT] = ACTIONS(4865), - [anon_sym_QMARK_COLON] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(4863), - [anon_sym_if] = ACTIONS(4863), - [anon_sym_else] = ACTIONS(4863), - [anon_sym_when] = ACTIONS(4863), - [anon_sym_try] = ACTIONS(4863), - [anon_sym_throw] = ACTIONS(4863), - [anon_sym_return] = ACTIONS(4863), - [anon_sym_continue] = ACTIONS(4863), - [anon_sym_break] = ACTIONS(4863), - [anon_sym_COLON_COLON] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4865), - [anon_sym_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_EQ] = ACTIONS(4865), - [anon_sym_BANGin] = ACTIONS(4865), - [anon_sym_is] = ACTIONS(4863), - [anon_sym_BANGis] = ACTIONS(4865), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_SLASH] = ACTIONS(4863), - [anon_sym_PERCENT] = ACTIONS(4863), - [anon_sym_as_QMARK] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4865), - [anon_sym_DASH_DASH] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4863), - [anon_sym_BANG_BANG] = ACTIONS(4865), - [anon_sym_data] = ACTIONS(4863), - [anon_sym_inner] = ACTIONS(4863), - [anon_sym_expect] = ACTIONS(4863), - [anon_sym_actual] = ACTIONS(4863), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4865), - [anon_sym_continue_AT] = ACTIONS(4865), - [anon_sym_break_AT] = ACTIONS(4865), - [sym_real_literal] = ACTIONS(4865), - [sym_integer_literal] = ACTIONS(4863), - [sym_hex_literal] = ACTIONS(4865), - [sym_bin_literal] = ACTIONS(4865), - [anon_sym_true] = ACTIONS(4863), - [anon_sym_false] = ACTIONS(4863), - [anon_sym_SQUOTE] = ACTIONS(4865), - [sym__backtick_identifier] = ACTIONS(4865), - [sym__automatic_semicolon] = ACTIONS(4865), - [sym_safe_nav] = ACTIONS(4865), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4865), - }, - [3284] = { - [sym_type_constraints] = STATE(3514), - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [anon_sym_return_AT] = ACTIONS(5019), + [anon_sym_continue_AT] = ACTIONS(5019), + [anon_sym_break_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), }, - [3285] = { - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [3286] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [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_DOT] = 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_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), - [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), - }, - [3287] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_RBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [anon_sym_DASH_GT] = ACTIONS(4716), - [sym_label] = ACTIONS(4716), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_while] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_suspend] = ACTIONS(4714), - [anon_sym_sealed] = ACTIONS(4714), - [anon_sym_annotation] = ACTIONS(4714), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_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), + [3264] = { + [sym_class_body] = STATE(3825), + [sym_type_constraints] = STATE(3604), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, - [3288] = { - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), - [anon_sym_fun] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_this] = ACTIONS(1694), - [anon_sym_super] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_data] = ACTIONS(1694), - [anon_sym_inner] = ACTIONS(1694), - [anon_sym_expect] = ACTIONS(1694), - [anon_sym_actual] = ACTIONS(1694), + [3265] = { + [sym__alpha_identifier] = ACTIONS(4973), + [anon_sym_AT] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_RBRACK] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_where] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4973), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_DASH_GT] = ACTIONS(4975), + [sym_label] = ACTIONS(4975), + [anon_sym_in] = ACTIONS(4973), + [anon_sym_while] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_QMARK_COLON] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_else] = ACTIONS(4973), + [anon_sym_COLON_COLON] = ACTIONS(4975), + [anon_sym_PLUS_EQ] = ACTIONS(4975), + [anon_sym_DASH_EQ] = ACTIONS(4975), + [anon_sym_STAR_EQ] = ACTIONS(4975), + [anon_sym_SLASH_EQ] = ACTIONS(4975), + [anon_sym_PERCENT_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_BANGin] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_BANGis] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_as_QMARK] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_BANG_BANG] = ACTIONS(4975), + [anon_sym_suspend] = ACTIONS(4973), + [anon_sym_sealed] = ACTIONS(4973), + [anon_sym_annotation] = ACTIONS(4973), + [anon_sym_data] = ACTIONS(4973), + [anon_sym_inner] = ACTIONS(4973), + [anon_sym_override] = ACTIONS(4973), + [anon_sym_lateinit] = ACTIONS(4973), + [anon_sym_public] = ACTIONS(4973), + [anon_sym_private] = ACTIONS(4973), + [anon_sym_internal] = ACTIONS(4973), + [anon_sym_protected] = ACTIONS(4973), + [anon_sym_tailrec] = ACTIONS(4973), + [anon_sym_operator] = ACTIONS(4973), + [anon_sym_infix] = ACTIONS(4973), + [anon_sym_inline] = ACTIONS(4973), + [anon_sym_external] = ACTIONS(4973), + [sym_property_modifier] = ACTIONS(4973), + [anon_sym_abstract] = ACTIONS(4973), + [anon_sym_final] = ACTIONS(4973), + [anon_sym_open] = ACTIONS(4973), + [anon_sym_vararg] = ACTIONS(4973), + [anon_sym_noinline] = ACTIONS(4973), + [anon_sym_crossinline] = ACTIONS(4973), + [anon_sym_expect] = ACTIONS(4973), + [anon_sym_actual] = ACTIONS(4973), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1696), - [anon_sym_continue_AT] = ACTIONS(1696), - [anon_sym_break_AT] = ACTIONS(1696), - [sym_real_literal] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [sym_hex_literal] = ACTIONS(1696), - [sym_bin_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(4975), + [sym_safe_nav] = ACTIONS(4975), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1696), }, - [3289] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6541), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [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(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [3266] = { + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, - [3290] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6545), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), + [3267] = { + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, - [3291] = { - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(1784), - [anon_sym_set] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_DASH_GT] = ACTIONS(1786), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(1784), - [anon_sym_sealed] = ACTIONS(1784), - [anon_sym_annotation] = ACTIONS(1784), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_lateinit] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_internal] = ACTIONS(1784), - [anon_sym_protected] = ACTIONS(1784), - [anon_sym_tailrec] = ACTIONS(1784), - [anon_sym_operator] = ACTIONS(1784), - [anon_sym_infix] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_external] = ACTIONS(1784), - [sym_property_modifier] = ACTIONS(1784), - [anon_sym_abstract] = ACTIONS(1784), - [anon_sym_final] = ACTIONS(1784), - [anon_sym_open] = ACTIONS(1784), - [anon_sym_vararg] = ACTIONS(1784), - [anon_sym_noinline] = ACTIONS(1784), - [anon_sym_crossinline] = ACTIONS(1784), - [anon_sym_expect] = ACTIONS(1784), - [anon_sym_actual] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), + [3268] = { + [sym_file_annotation] = STATE(3268), + [aux_sym_source_file_repeat1] = STATE(3268), + [ts_builtin_sym_end] = ACTIONS(6558), + [sym__alpha_identifier] = ACTIONS(6560), + [anon_sym_AT] = ACTIONS(6562), + [anon_sym_LBRACK] = ACTIONS(6558), + [anon_sym_package] = ACTIONS(6560), + [anon_sym_import] = ACTIONS(6560), + [anon_sym_typealias] = ACTIONS(6560), + [anon_sym_class] = ACTIONS(6560), + [anon_sym_interface] = ACTIONS(6560), + [anon_sym_enum] = ACTIONS(6560), + [anon_sym_LBRACE] = ACTIONS(6558), + [anon_sym_LPAREN] = ACTIONS(6558), + [anon_sym_val] = ACTIONS(6560), + [anon_sym_var] = ACTIONS(6560), + [anon_sym_object] = ACTIONS(6560), + [anon_sym_fun] = ACTIONS(6560), + [anon_sym_get] = ACTIONS(6560), + [anon_sym_set] = ACTIONS(6560), + [anon_sym_this] = ACTIONS(6560), + [anon_sym_super] = ACTIONS(6560), + [anon_sym_STAR] = ACTIONS(6558), + [sym_label] = ACTIONS(6560), + [anon_sym_for] = ACTIONS(6560), + [anon_sym_while] = ACTIONS(6560), + [anon_sym_do] = ACTIONS(6560), + [anon_sym_null] = ACTIONS(6560), + [anon_sym_if] = ACTIONS(6560), + [anon_sym_when] = ACTIONS(6560), + [anon_sym_try] = ACTIONS(6560), + [anon_sym_throw] = ACTIONS(6560), + [anon_sym_return] = ACTIONS(6560), + [anon_sym_continue] = ACTIONS(6560), + [anon_sym_break] = ACTIONS(6560), + [anon_sym_COLON_COLON] = ACTIONS(6558), + [anon_sym_PLUS] = ACTIONS(6560), + [anon_sym_DASH] = ACTIONS(6560), + [anon_sym_PLUS_PLUS] = ACTIONS(6558), + [anon_sym_DASH_DASH] = ACTIONS(6558), + [anon_sym_BANG] = ACTIONS(6558), + [anon_sym_suspend] = ACTIONS(6560), + [anon_sym_sealed] = ACTIONS(6560), + [anon_sym_annotation] = ACTIONS(6560), + [anon_sym_data] = ACTIONS(6560), + [anon_sym_inner] = ACTIONS(6560), + [anon_sym_override] = ACTIONS(6560), + [anon_sym_lateinit] = ACTIONS(6560), + [anon_sym_public] = ACTIONS(6560), + [anon_sym_private] = ACTIONS(6560), + [anon_sym_internal] = ACTIONS(6560), + [anon_sym_protected] = ACTIONS(6560), + [anon_sym_tailrec] = ACTIONS(6560), + [anon_sym_operator] = ACTIONS(6560), + [anon_sym_infix] = ACTIONS(6560), + [anon_sym_inline] = ACTIONS(6560), + [anon_sym_external] = ACTIONS(6560), + [sym_property_modifier] = ACTIONS(6560), + [anon_sym_abstract] = ACTIONS(6560), + [anon_sym_final] = ACTIONS(6560), + [anon_sym_open] = ACTIONS(6560), + [anon_sym_vararg] = ACTIONS(6560), + [anon_sym_noinline] = ACTIONS(6560), + [anon_sym_crossinline] = ACTIONS(6560), + [anon_sym_expect] = ACTIONS(6560), + [anon_sym_actual] = ACTIONS(6560), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6558), + [anon_sym_continue_AT] = ACTIONS(6558), + [anon_sym_break_AT] = ACTIONS(6558), + [sym_real_literal] = ACTIONS(6558), + [sym_integer_literal] = ACTIONS(6560), + [sym_hex_literal] = ACTIONS(6558), + [sym_bin_literal] = ACTIONS(6558), + [anon_sym_true] = ACTIONS(6560), + [anon_sym_false] = ACTIONS(6560), + [anon_sym_SQUOTE] = ACTIONS(6558), + [sym__backtick_identifier] = ACTIONS(6558), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6558), }, - [3292] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5005), - [sym_label] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_while] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_suspend] = ACTIONS(5003), - [anon_sym_sealed] = ACTIONS(5003), - [anon_sym_annotation] = ACTIONS(5003), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_override] = ACTIONS(5003), - [anon_sym_lateinit] = ACTIONS(5003), - [anon_sym_public] = ACTIONS(5003), - [anon_sym_private] = ACTIONS(5003), - [anon_sym_internal] = ACTIONS(5003), - [anon_sym_protected] = ACTIONS(5003), - [anon_sym_tailrec] = ACTIONS(5003), - [anon_sym_operator] = ACTIONS(5003), - [anon_sym_infix] = ACTIONS(5003), - [anon_sym_inline] = ACTIONS(5003), - [anon_sym_external] = ACTIONS(5003), - [sym_property_modifier] = ACTIONS(5003), - [anon_sym_abstract] = ACTIONS(5003), - [anon_sym_final] = ACTIONS(5003), - [anon_sym_open] = ACTIONS(5003), - [anon_sym_vararg] = ACTIONS(5003), - [anon_sym_noinline] = ACTIONS(5003), - [anon_sym_crossinline] = ACTIONS(5003), - [anon_sym_expect] = ACTIONS(5003), - [anon_sym_actual] = ACTIONS(5003), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5005), - [sym_safe_nav] = ACTIONS(5005), - [sym_multiline_comment] = ACTIONS(3), + [3269] = { + [sym__alpha_identifier] = ACTIONS(4265), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_by] = ACTIONS(4265), + [anon_sym_where] = ACTIONS(4265), + [anon_sym_object] = ACTIONS(4265), + [anon_sym_fun] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_get] = ACTIONS(4265), + [anon_sym_set] = ACTIONS(4265), + [anon_sym_this] = ACTIONS(4265), + [anon_sym_super] = ACTIONS(4265), + [sym__quest] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_if] = ACTIONS(4265), + [anon_sym_else] = ACTIONS(4265), + [anon_sym_when] = ACTIONS(4265), + [anon_sym_try] = ACTIONS(4265), + [anon_sym_throw] = ACTIONS(4265), + [anon_sym_return] = ACTIONS(4265), + [anon_sym_continue] = ACTIONS(4265), + [anon_sym_break] = ACTIONS(4265), + [anon_sym_COLON_COLON] = ACTIONS(4267), + [anon_sym_BANGin] = ACTIONS(4267), + [anon_sym_is] = ACTIONS(4265), + [anon_sym_BANGis] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4265), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4265), + [anon_sym_sealed] = ACTIONS(4265), + [anon_sym_annotation] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4265), + [anon_sym_inner] = ACTIONS(4265), + [anon_sym_override] = ACTIONS(4265), + [anon_sym_lateinit] = ACTIONS(4265), + [anon_sym_public] = ACTIONS(4265), + [anon_sym_private] = ACTIONS(4265), + [anon_sym_internal] = ACTIONS(4265), + [anon_sym_protected] = ACTIONS(4265), + [anon_sym_tailrec] = ACTIONS(4265), + [anon_sym_operator] = ACTIONS(4265), + [anon_sym_infix] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym_external] = ACTIONS(4265), + [sym_property_modifier] = ACTIONS(4265), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_final] = ACTIONS(4265), + [anon_sym_open] = ACTIONS(4265), + [anon_sym_vararg] = ACTIONS(4265), + [anon_sym_noinline] = ACTIONS(4265), + [anon_sym_crossinline] = ACTIONS(4265), + [anon_sym_expect] = ACTIONS(4265), + [anon_sym_actual] = ACTIONS(4265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4267), + [anon_sym_continue_AT] = ACTIONS(4267), + [anon_sym_break_AT] = ACTIONS(4267), + [sym_real_literal] = ACTIONS(4267), + [sym_integer_literal] = ACTIONS(4265), + [sym_hex_literal] = ACTIONS(4267), + [sym_bin_literal] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4265), + [anon_sym_false] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4267), + [sym__backtick_identifier] = ACTIONS(4267), + [sym__automatic_semicolon] = ACTIONS(4267), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4267), }, - [3293] = { - [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(4426), - [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_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), - [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), + [3270] = { + [sym_class_body] = STATE(3455), + [sym_type_constraints] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4426), }, - [3294] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(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_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), + [3271] = { + [sym__alpha_identifier] = ACTIONS(4949), + [anon_sym_AT] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_RBRACK] = ACTIONS(4951), + [anon_sym_as] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_RBRACE] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_COMMA] = ACTIONS(4951), + [anon_sym_RPAREN] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_where] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_get] = ACTIONS(4949), + [anon_sym_set] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4949), + [anon_sym_DASH_GT] = ACTIONS(4951), + [sym_label] = ACTIONS(4951), + [anon_sym_in] = ACTIONS(4949), + [anon_sym_while] = ACTIONS(4949), + [anon_sym_DOT_DOT] = ACTIONS(4951), + [anon_sym_QMARK_COLON] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4951), + [anon_sym_PIPE_PIPE] = ACTIONS(4951), + [anon_sym_else] = ACTIONS(4949), + [anon_sym_COLON_COLON] = ACTIONS(4951), + [anon_sym_PLUS_EQ] = ACTIONS(4951), + [anon_sym_DASH_EQ] = ACTIONS(4951), + [anon_sym_STAR_EQ] = ACTIONS(4951), + [anon_sym_SLASH_EQ] = ACTIONS(4951), + [anon_sym_PERCENT_EQ] = ACTIONS(4951), + [anon_sym_BANG_EQ] = ACTIONS(4949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4951), + [anon_sym_EQ_EQ] = ACTIONS(4949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4951), + [anon_sym_LT_EQ] = ACTIONS(4951), + [anon_sym_GT_EQ] = ACTIONS(4951), + [anon_sym_BANGin] = ACTIONS(4951), + [anon_sym_is] = ACTIONS(4949), + [anon_sym_BANGis] = ACTIONS(4951), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_SLASH] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_as_QMARK] = ACTIONS(4951), + [anon_sym_PLUS_PLUS] = ACTIONS(4951), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_BANG_BANG] = ACTIONS(4951), + [anon_sym_suspend] = ACTIONS(4949), + [anon_sym_sealed] = ACTIONS(4949), + [anon_sym_annotation] = ACTIONS(4949), + [anon_sym_data] = ACTIONS(4949), + [anon_sym_inner] = ACTIONS(4949), + [anon_sym_override] = ACTIONS(4949), + [anon_sym_lateinit] = ACTIONS(4949), + [anon_sym_public] = ACTIONS(4949), + [anon_sym_private] = ACTIONS(4949), + [anon_sym_internal] = ACTIONS(4949), + [anon_sym_protected] = ACTIONS(4949), + [anon_sym_tailrec] = ACTIONS(4949), + [anon_sym_operator] = ACTIONS(4949), + [anon_sym_infix] = ACTIONS(4949), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_external] = ACTIONS(4949), + [sym_property_modifier] = ACTIONS(4949), + [anon_sym_abstract] = ACTIONS(4949), + [anon_sym_final] = ACTIONS(4949), + [anon_sym_open] = ACTIONS(4949), + [anon_sym_vararg] = ACTIONS(4949), + [anon_sym_noinline] = ACTIONS(4949), + [anon_sym_crossinline] = ACTIONS(4949), + [anon_sym_expect] = ACTIONS(4949), + [anon_sym_actual] = ACTIONS(4949), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [sym__backtick_identifier] = ACTIONS(4951), + [sym_safe_nav] = ACTIONS(4951), [sym_multiline_comment] = ACTIONS(3), }, - [3295] = { - [sym__alpha_identifier] = ACTIONS(4871), - [anon_sym_AT] = ACTIONS(4873), - [anon_sym_LBRACK] = ACTIONS(4873), - [anon_sym_as] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(4873), - [anon_sym_RBRACE] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4873), - [anon_sym_COMMA] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4871), - [anon_sym_GT] = ACTIONS(4871), - [anon_sym_where] = ACTIONS(4871), - [anon_sym_object] = ACTIONS(4871), - [anon_sym_fun] = ACTIONS(4871), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_this] = ACTIONS(4871), - [anon_sym_super] = ACTIONS(4871), - [anon_sym_STAR] = ACTIONS(4871), - [sym_label] = ACTIONS(4871), - [anon_sym_in] = ACTIONS(4871), - [anon_sym_DOT_DOT] = ACTIONS(4873), - [anon_sym_QMARK_COLON] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_null] = ACTIONS(4871), - [anon_sym_if] = ACTIONS(4871), - [anon_sym_else] = ACTIONS(4871), - [anon_sym_when] = ACTIONS(4871), - [anon_sym_try] = ACTIONS(4871), - [anon_sym_throw] = ACTIONS(4871), - [anon_sym_return] = ACTIONS(4871), - [anon_sym_continue] = ACTIONS(4871), - [anon_sym_break] = ACTIONS(4871), - [anon_sym_COLON_COLON] = ACTIONS(4873), - [anon_sym_PLUS_EQ] = ACTIONS(4873), - [anon_sym_DASH_EQ] = ACTIONS(4873), - [anon_sym_STAR_EQ] = ACTIONS(4873), - [anon_sym_SLASH_EQ] = ACTIONS(4873), - [anon_sym_PERCENT_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT_EQ] = ACTIONS(4873), - [anon_sym_GT_EQ] = ACTIONS(4873), - [anon_sym_BANGin] = ACTIONS(4873), - [anon_sym_is] = ACTIONS(4871), - [anon_sym_BANGis] = ACTIONS(4873), - [anon_sym_PLUS] = ACTIONS(4871), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_SLASH] = ACTIONS(4871), - [anon_sym_PERCENT] = ACTIONS(4871), - [anon_sym_as_QMARK] = ACTIONS(4873), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_BANG] = ACTIONS(4871), - [anon_sym_BANG_BANG] = ACTIONS(4873), - [anon_sym_data] = ACTIONS(4871), - [anon_sym_inner] = ACTIONS(4871), - [anon_sym_expect] = ACTIONS(4871), - [anon_sym_actual] = ACTIONS(4871), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4873), - [anon_sym_continue_AT] = ACTIONS(4873), - [anon_sym_break_AT] = ACTIONS(4873), - [sym_real_literal] = ACTIONS(4873), - [sym_integer_literal] = ACTIONS(4871), - [sym_hex_literal] = ACTIONS(4873), - [sym_bin_literal] = ACTIONS(4873), - [anon_sym_true] = ACTIONS(4871), - [anon_sym_false] = ACTIONS(4871), - [anon_sym_SQUOTE] = ACTIONS(4873), - [sym__backtick_identifier] = ACTIONS(4873), - [sym__automatic_semicolon] = ACTIONS(4873), - [sym_safe_nav] = ACTIONS(4873), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4873), - }, - [3296] = { - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [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_DOT] = 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_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), - [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), + [3272] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6540), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, - [3297] = { - [sym_function_body] = STATE(3308), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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_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), - [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), + [3273] = { + [sym_class_body] = STATE(3794), + [sym_type_constraints] = STATE(3666), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6567), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4426), - }, - [3298] = { - [sym__alpha_identifier] = ACTIONS(4634), - [anon_sym_AT] = ACTIONS(4636), - [anon_sym_LBRACK] = ACTIONS(4636), - [anon_sym_as] = ACTIONS(4634), - [anon_sym_EQ] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4636), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4636), - [anon_sym_COMMA] = ACTIONS(4636), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_where] = ACTIONS(4634), - [anon_sym_object] = ACTIONS(4634), - [anon_sym_fun] = ACTIONS(4634), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_SEMI] = ACTIONS(4636), - [anon_sym_get] = ACTIONS(4634), - [anon_sym_set] = ACTIONS(4634), - [anon_sym_this] = ACTIONS(4634), - [anon_sym_super] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4634), - [sym_label] = ACTIONS(4634), - [anon_sym_in] = ACTIONS(4634), - [anon_sym_DOT_DOT] = ACTIONS(4636), - [anon_sym_QMARK_COLON] = ACTIONS(4636), - [anon_sym_AMP_AMP] = ACTIONS(4636), - [anon_sym_PIPE_PIPE] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(4634), - [anon_sym_if] = ACTIONS(4634), - [anon_sym_else] = ACTIONS(4634), - [anon_sym_when] = ACTIONS(4634), - [anon_sym_try] = ACTIONS(4634), - [anon_sym_throw] = ACTIONS(4634), - [anon_sym_return] = ACTIONS(4634), - [anon_sym_continue] = ACTIONS(4634), - [anon_sym_break] = ACTIONS(4634), - [anon_sym_COLON_COLON] = ACTIONS(4636), - [anon_sym_PLUS_EQ] = ACTIONS(4636), - [anon_sym_DASH_EQ] = ACTIONS(4636), - [anon_sym_STAR_EQ] = ACTIONS(4636), - [anon_sym_SLASH_EQ] = ACTIONS(4636), - [anon_sym_PERCENT_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ] = ACTIONS(4634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4636), - [anon_sym_LT_EQ] = ACTIONS(4636), - [anon_sym_GT_EQ] = ACTIONS(4636), - [anon_sym_BANGin] = ACTIONS(4636), - [anon_sym_is] = ACTIONS(4634), - [anon_sym_BANGis] = ACTIONS(4636), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_SLASH] = ACTIONS(4634), - [anon_sym_PERCENT] = ACTIONS(4634), - [anon_sym_as_QMARK] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_BANG] = ACTIONS(4634), - [anon_sym_BANG_BANG] = ACTIONS(4636), - [anon_sym_data] = ACTIONS(4634), - [anon_sym_inner] = ACTIONS(4634), - [anon_sym_expect] = ACTIONS(4634), - [anon_sym_actual] = ACTIONS(4634), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4636), - [anon_sym_continue_AT] = ACTIONS(4636), - [anon_sym_break_AT] = ACTIONS(4636), - [sym_real_literal] = ACTIONS(4636), - [sym_integer_literal] = ACTIONS(4634), - [sym_hex_literal] = ACTIONS(4636), - [sym_bin_literal] = ACTIONS(4636), - [anon_sym_true] = ACTIONS(4634), - [anon_sym_false] = ACTIONS(4634), - [anon_sym_SQUOTE] = ACTIONS(4636), - [sym__backtick_identifier] = ACTIONS(4636), - [sym__automatic_semicolon] = ACTIONS(4636), - [sym_safe_nav] = ACTIONS(4636), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4636), }, - [3299] = { - [sym__alpha_identifier] = ACTIONS(4851), - [anon_sym_AT] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4853), - [anon_sym_as] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4853), - [anon_sym_COMMA] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_where] = ACTIONS(4851), - [anon_sym_object] = ACTIONS(4851), - [anon_sym_fun] = ACTIONS(4851), - [anon_sym_DOT] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym_get] = ACTIONS(4851), - [anon_sym_set] = ACTIONS(4851), - [anon_sym_this] = ACTIONS(4851), - [anon_sym_super] = ACTIONS(4851), - [anon_sym_STAR] = ACTIONS(4851), - [sym_label] = ACTIONS(4851), - [anon_sym_in] = ACTIONS(4851), - [anon_sym_DOT_DOT] = ACTIONS(4853), - [anon_sym_QMARK_COLON] = ACTIONS(4853), - [anon_sym_AMP_AMP] = ACTIONS(4853), - [anon_sym_PIPE_PIPE] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(4851), - [anon_sym_if] = ACTIONS(4851), - [anon_sym_else] = ACTIONS(4851), - [anon_sym_when] = ACTIONS(4851), - [anon_sym_try] = ACTIONS(4851), - [anon_sym_throw] = ACTIONS(4851), - [anon_sym_return] = ACTIONS(4851), - [anon_sym_continue] = ACTIONS(4851), - [anon_sym_break] = ACTIONS(4851), - [anon_sym_COLON_COLON] = ACTIONS(4853), - [anon_sym_PLUS_EQ] = ACTIONS(4853), - [anon_sym_DASH_EQ] = ACTIONS(4853), - [anon_sym_STAR_EQ] = ACTIONS(4853), - [anon_sym_SLASH_EQ] = ACTIONS(4853), - [anon_sym_PERCENT_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ] = ACTIONS(4851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4853), - [anon_sym_EQ_EQ] = ACTIONS(4851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4853), - [anon_sym_LT_EQ] = ACTIONS(4853), - [anon_sym_GT_EQ] = ACTIONS(4853), - [anon_sym_BANGin] = ACTIONS(4853), - [anon_sym_is] = ACTIONS(4851), - [anon_sym_BANGis] = ACTIONS(4853), - [anon_sym_PLUS] = ACTIONS(4851), - [anon_sym_DASH] = ACTIONS(4851), - [anon_sym_SLASH] = ACTIONS(4851), - [anon_sym_PERCENT] = ACTIONS(4851), - [anon_sym_as_QMARK] = ACTIONS(4853), - [anon_sym_PLUS_PLUS] = ACTIONS(4853), - [anon_sym_DASH_DASH] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4851), - [anon_sym_BANG_BANG] = ACTIONS(4853), - [anon_sym_data] = ACTIONS(4851), - [anon_sym_inner] = ACTIONS(4851), - [anon_sym_expect] = ACTIONS(4851), - [anon_sym_actual] = ACTIONS(4851), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4853), - [anon_sym_continue_AT] = ACTIONS(4853), - [anon_sym_break_AT] = ACTIONS(4853), - [sym_real_literal] = ACTIONS(4853), - [sym_integer_literal] = ACTIONS(4851), - [sym_hex_literal] = ACTIONS(4853), - [sym_bin_literal] = ACTIONS(4853), - [anon_sym_true] = ACTIONS(4851), - [anon_sym_false] = ACTIONS(4851), - [anon_sym_SQUOTE] = ACTIONS(4853), - [sym__backtick_identifier] = ACTIONS(4853), - [sym__automatic_semicolon] = ACTIONS(4853), - [sym_safe_nav] = ACTIONS(4853), + [3274] = { + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4853), }, - [3300] = { - [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_override] = ACTIONS(4826), - [anon_sym_lateinit] = ACTIONS(4826), - [anon_sym_public] = ACTIONS(4826), - [anon_sym_private] = ACTIONS(4826), - [anon_sym_internal] = ACTIONS(4826), - [anon_sym_protected] = ACTIONS(4826), - [anon_sym_tailrec] = ACTIONS(4826), - [anon_sym_operator] = ACTIONS(4826), - [anon_sym_infix] = ACTIONS(4826), - [anon_sym_inline] = ACTIONS(4826), - [anon_sym_external] = ACTIONS(4826), - [sym_property_modifier] = ACTIONS(4826), - [anon_sym_abstract] = ACTIONS(4826), - [anon_sym_final] = ACTIONS(4826), - [anon_sym_open] = ACTIONS(4826), - [anon_sym_vararg] = ACTIONS(4826), - [anon_sym_noinline] = ACTIONS(4826), - [anon_sym_crossinline] = ACTIONS(4826), - [anon_sym_expect] = ACTIONS(4826), - [anon_sym_actual] = ACTIONS(4826), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4828), - [sym_safe_nav] = ACTIONS(4828), - [sym_multiline_comment] = ACTIONS(3), + [3275] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), }, - [3301] = { - [sym_type_constraints] = STATE(3513), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [3276] = { + [sym_class_body] = STATE(3776), + [sym_type_constraints] = STATE(3580), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3302] = { - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), + [3277] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6536), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, - [3303] = { - [sym__alpha_identifier] = ACTIONS(4847), - [anon_sym_AT] = ACTIONS(4849), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4847), - [anon_sym_GT] = ACTIONS(4847), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_object] = ACTIONS(4847), - [anon_sym_fun] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_this] = ACTIONS(4847), - [anon_sym_super] = ACTIONS(4847), - [anon_sym_STAR] = ACTIONS(4847), - [sym_label] = ACTIONS(4847), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4849), - [anon_sym_QMARK_COLON] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(4847), - [anon_sym_if] = ACTIONS(4847), - [anon_sym_else] = ACTIONS(4847), - [anon_sym_when] = ACTIONS(4847), - [anon_sym_try] = ACTIONS(4847), - [anon_sym_throw] = ACTIONS(4847), - [anon_sym_return] = ACTIONS(4847), - [anon_sym_continue] = ACTIONS(4847), - [anon_sym_break] = ACTIONS(4847), - [anon_sym_COLON_COLON] = ACTIONS(4849), - [anon_sym_PLUS_EQ] = ACTIONS(4849), - [anon_sym_DASH_EQ] = ACTIONS(4849), - [anon_sym_STAR_EQ] = ACTIONS(4849), - [anon_sym_SLASH_EQ] = ACTIONS(4849), - [anon_sym_PERCENT_EQ] = ACTIONS(4849), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), - [anon_sym_LT_EQ] = ACTIONS(4849), - [anon_sym_GT_EQ] = ACTIONS(4849), - [anon_sym_BANGin] = ACTIONS(4849), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_BANGis] = ACTIONS(4849), - [anon_sym_PLUS] = ACTIONS(4847), - [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4847), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_as_QMARK] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4847), - [anon_sym_BANG_BANG] = ACTIONS(4849), - [anon_sym_data] = ACTIONS(4847), - [anon_sym_inner] = ACTIONS(4847), - [anon_sym_expect] = ACTIONS(4847), - [anon_sym_actual] = ACTIONS(4847), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4849), - [anon_sym_continue_AT] = ACTIONS(4849), - [anon_sym_break_AT] = ACTIONS(4849), - [sym_real_literal] = ACTIONS(4849), - [sym_integer_literal] = ACTIONS(4847), - [sym_hex_literal] = ACTIONS(4849), - [sym_bin_literal] = ACTIONS(4849), - [anon_sym_true] = ACTIONS(4847), - [anon_sym_false] = ACTIONS(4847), - [anon_sym_SQUOTE] = ACTIONS(4849), - [sym__backtick_identifier] = ACTIONS(4849), - [sym__automatic_semicolon] = ACTIONS(4849), - [sym_safe_nav] = ACTIONS(4849), + [3278] = { + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_RBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [anon_sym_DASH_GT] = ACTIONS(4625), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_while] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4849), }, - [3304] = { - [sym__alpha_identifier] = ACTIONS(4830), - [anon_sym_AT] = ACTIONS(4832), - [anon_sym_LBRACK] = ACTIONS(4832), - [anon_sym_as] = ACTIONS(4830), - [anon_sym_EQ] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(4832), - [anon_sym_RBRACE] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4832), - [anon_sym_COMMA] = ACTIONS(4832), - [anon_sym_LT] = ACTIONS(4830), - [anon_sym_GT] = ACTIONS(4830), - [anon_sym_where] = ACTIONS(4830), - [anon_sym_object] = ACTIONS(4830), - [anon_sym_fun] = ACTIONS(4830), - [anon_sym_DOT] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(4830), - [anon_sym_set] = ACTIONS(4830), - [anon_sym_this] = ACTIONS(4830), - [anon_sym_super] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4830), - [sym_label] = ACTIONS(4830), - [anon_sym_in] = ACTIONS(4830), - [anon_sym_DOT_DOT] = ACTIONS(4832), - [anon_sym_QMARK_COLON] = ACTIONS(4832), - [anon_sym_AMP_AMP] = ACTIONS(4832), - [anon_sym_PIPE_PIPE] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(4830), - [anon_sym_if] = ACTIONS(4830), - [anon_sym_else] = ACTIONS(4830), - [anon_sym_when] = ACTIONS(4830), - [anon_sym_try] = ACTIONS(4830), - [anon_sym_throw] = ACTIONS(4830), - [anon_sym_return] = ACTIONS(4830), - [anon_sym_continue] = ACTIONS(4830), - [anon_sym_break] = ACTIONS(4830), - [anon_sym_COLON_COLON] = ACTIONS(4832), - [anon_sym_PLUS_EQ] = ACTIONS(4832), - [anon_sym_DASH_EQ] = ACTIONS(4832), - [anon_sym_STAR_EQ] = ACTIONS(4832), - [anon_sym_SLASH_EQ] = ACTIONS(4832), - [anon_sym_PERCENT_EQ] = ACTIONS(4832), - [anon_sym_BANG_EQ] = ACTIONS(4830), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4832), - [anon_sym_EQ_EQ] = ACTIONS(4830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4832), - [anon_sym_LT_EQ] = ACTIONS(4832), - [anon_sym_GT_EQ] = ACTIONS(4832), - [anon_sym_BANGin] = ACTIONS(4832), - [anon_sym_is] = ACTIONS(4830), - [anon_sym_BANGis] = ACTIONS(4832), - [anon_sym_PLUS] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_SLASH] = ACTIONS(4830), - [anon_sym_PERCENT] = ACTIONS(4830), - [anon_sym_as_QMARK] = ACTIONS(4832), - [anon_sym_PLUS_PLUS] = ACTIONS(4832), - [anon_sym_DASH_DASH] = ACTIONS(4832), - [anon_sym_BANG] = ACTIONS(4830), - [anon_sym_BANG_BANG] = ACTIONS(4832), - [anon_sym_data] = ACTIONS(4830), - [anon_sym_inner] = ACTIONS(4830), - [anon_sym_expect] = ACTIONS(4830), - [anon_sym_actual] = ACTIONS(4830), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4832), - [anon_sym_continue_AT] = ACTIONS(4832), - [anon_sym_break_AT] = ACTIONS(4832), - [sym_real_literal] = ACTIONS(4832), - [sym_integer_literal] = ACTIONS(4830), - [sym_hex_literal] = ACTIONS(4832), - [sym_bin_literal] = ACTIONS(4832), - [anon_sym_true] = ACTIONS(4830), - [anon_sym_false] = ACTIONS(4830), - [anon_sym_SQUOTE] = ACTIONS(4832), - [sym__backtick_identifier] = ACTIONS(4832), - [sym__automatic_semicolon] = ACTIONS(4832), - [sym_safe_nav] = ACTIONS(4832), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4832), + [3279] = { + [sym_type_constraints] = STATE(3535), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), }, - [3305] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [3280] = { + [sym_type_constraints] = STATE(3554), + [sym_enum_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6569), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [3306] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_RBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_RPAREN] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [anon_sym_DASH_GT] = ACTIONS(4519), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_while] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), + [3281] = { + [aux_sym_nullable_type_repeat1] = STATE(3163), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_COMMA] = ACTIONS(4261), + [anon_sym_by] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [sym__quest] = ACTIONS(6571), + [anon_sym_STAR] = ACTIONS(4259), + [sym_label] = ACTIONS(4261), + [anon_sym_in] = ACTIONS(4259), + [anon_sym_DOT_DOT] = ACTIONS(4261), + [anon_sym_QMARK_COLON] = ACTIONS(4261), + [anon_sym_AMP_AMP] = ACTIONS(4261), + [anon_sym_PIPE_PIPE] = ACTIONS(4261), + [anon_sym_else] = ACTIONS(4259), + [anon_sym_COLON_COLON] = ACTIONS(4261), + [anon_sym_PLUS_EQ] = ACTIONS(4261), + [anon_sym_DASH_EQ] = ACTIONS(4261), + [anon_sym_STAR_EQ] = ACTIONS(4261), + [anon_sym_SLASH_EQ] = ACTIONS(4261), + [anon_sym_PERCENT_EQ] = ACTIONS(4261), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4261), + [anon_sym_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4261), + [anon_sym_LT_EQ] = ACTIONS(4261), + [anon_sym_GT_EQ] = ACTIONS(4261), + [anon_sym_BANGin] = ACTIONS(4261), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4261), + [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(4261), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_BANG_BANG] = ACTIONS(4261), + [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_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(4261), + [sym__automatic_semicolon] = ACTIONS(4261), + [sym_safe_nav] = ACTIONS(4261), [sym_multiline_comment] = ACTIONS(3), }, - [3307] = { - [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_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), - [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), + [3282] = { + [sym_class_body] = STATE(3711), + [sym_type_constraints] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6573), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4784), }, - [3308] = { - [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_expect] = ACTIONS(5051), - [anon_sym_actual] = ACTIONS(5051), + [3283] = { + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5053), - [anon_sym_continue_AT] = ACTIONS(5053), - [anon_sym_break_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__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5053), }, - [3309] = { - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [sym_label] = ACTIONS(4007), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_while] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_suspend] = ACTIONS(4005), - [anon_sym_sealed] = ACTIONS(4005), - [anon_sym_annotation] = ACTIONS(4005), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_lateinit] = ACTIONS(4005), - [anon_sym_public] = ACTIONS(4005), - [anon_sym_private] = ACTIONS(4005), - [anon_sym_internal] = ACTIONS(4005), - [anon_sym_protected] = ACTIONS(4005), - [anon_sym_tailrec] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_infix] = ACTIONS(4005), - [anon_sym_inline] = ACTIONS(4005), - [anon_sym_external] = ACTIONS(4005), - [sym_property_modifier] = ACTIONS(4005), - [anon_sym_abstract] = ACTIONS(4005), - [anon_sym_final] = ACTIONS(4005), - [anon_sym_open] = ACTIONS(4005), - [anon_sym_vararg] = ACTIONS(4005), - [anon_sym_noinline] = ACTIONS(4005), - [anon_sym_crossinline] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), + [3284] = { + [sym_type_constraints] = STATE(3080), + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6575), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, - [3310] = { - [sym_type_constraints] = STATE(3808), - [sym_function_body] = STATE(3891), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6549), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4041), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [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(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4041), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), + [3285] = { + [sym_type_constraints] = STATE(3639), + [sym_enum_class_body] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6577), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, - [3311] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_label] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_while] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_suspend] = ACTIONS(4931), - [anon_sym_sealed] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4931), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), - [anon_sym_lateinit] = ACTIONS(4931), - [anon_sym_public] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4931), - [anon_sym_internal] = ACTIONS(4931), - [anon_sym_protected] = ACTIONS(4931), - [anon_sym_tailrec] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_infix] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym_external] = ACTIONS(4931), - [sym_property_modifier] = ACTIONS(4931), - [anon_sym_abstract] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_open] = ACTIONS(4931), - [anon_sym_vararg] = ACTIONS(4931), - [anon_sym_noinline] = ACTIONS(4931), - [anon_sym_crossinline] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), + [3286] = { + [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_override] = ACTIONS(5031), + [anon_sym_lateinit] = ACTIONS(5031), + [anon_sym_public] = ACTIONS(5031), + [anon_sym_private] = ACTIONS(5031), + [anon_sym_internal] = ACTIONS(5031), + [anon_sym_protected] = ACTIONS(5031), + [anon_sym_tailrec] = ACTIONS(5031), + [anon_sym_operator] = ACTIONS(5031), + [anon_sym_infix] = ACTIONS(5031), + [anon_sym_inline] = ACTIONS(5031), + [anon_sym_external] = ACTIONS(5031), + [sym_property_modifier] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_final] = ACTIONS(5031), + [anon_sym_open] = ACTIONS(5031), + [anon_sym_vararg] = ACTIONS(5031), + [anon_sym_noinline] = ACTIONS(5031), + [anon_sym_crossinline] = ACTIONS(5031), + [anon_sym_expect] = ACTIONS(5031), + [anon_sym_actual] = ACTIONS(5031), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5033), + [sym_safe_nav] = ACTIONS(5033), [sym_multiline_comment] = ACTIONS(3), }, - [3312] = { - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_RBRACK] = ACTIONS(3340), - [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_DOT] = 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_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), + [3287] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [sym__quest] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), [sym_multiline_comment] = ACTIONS(3), }, - [3313] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), + [3288] = { + [sym__alpha_identifier] = ACTIONS(4869), + [anon_sym_AT] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_where] = ACTIONS(4869), + [anon_sym_object] = ACTIONS(4869), + [anon_sym_fun] = ACTIONS(4869), + [anon_sym_DOT] = ACTIONS(4869), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4869), + [anon_sym_set] = ACTIONS(4869), + [anon_sym_this] = ACTIONS(4869), + [anon_sym_super] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [sym_label] = ACTIONS(4869), + [anon_sym_in] = ACTIONS(4869), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_QMARK_COLON] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_null] = ACTIONS(4869), + [anon_sym_if] = ACTIONS(4869), + [anon_sym_else] = ACTIONS(4869), + [anon_sym_when] = ACTIONS(4869), + [anon_sym_try] = ACTIONS(4869), + [anon_sym_throw] = ACTIONS(4869), + [anon_sym_return] = ACTIONS(4869), + [anon_sym_continue] = ACTIONS(4869), + [anon_sym_break] = ACTIONS(4869), + [anon_sym_COLON_COLON] = ACTIONS(4871), + [anon_sym_PLUS_EQ] = ACTIONS(4871), + [anon_sym_DASH_EQ] = ACTIONS(4871), + [anon_sym_STAR_EQ] = ACTIONS(4871), + [anon_sym_SLASH_EQ] = ACTIONS(4871), + [anon_sym_PERCENT_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_BANGin] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4869), + [anon_sym_BANGis] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_as_QMARK] = ACTIONS(4871), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_BANG] = ACTIONS(4869), + [anon_sym_BANG_BANG] = ACTIONS(4871), + [anon_sym_data] = ACTIONS(4869), + [anon_sym_inner] = ACTIONS(4869), + [anon_sym_expect] = ACTIONS(4869), + [anon_sym_actual] = ACTIONS(4869), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4871), + [anon_sym_continue_AT] = ACTIONS(4871), + [anon_sym_break_AT] = ACTIONS(4871), + [sym_real_literal] = ACTIONS(4871), + [sym_integer_literal] = ACTIONS(4869), + [sym_hex_literal] = ACTIONS(4871), + [sym_bin_literal] = ACTIONS(4871), + [anon_sym_true] = ACTIONS(4869), + [anon_sym_false] = ACTIONS(4869), + [anon_sym_SQUOTE] = ACTIONS(4871), + [sym__backtick_identifier] = ACTIONS(4871), + [sym__automatic_semicolon] = ACTIONS(4871), + [sym_safe_nav] = ACTIONS(4871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4871), }, - [3314] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_object] = ACTIONS(5021), - [anon_sym_fun] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_this] = ACTIONS(5021), - [anon_sym_super] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [sym_label] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_null] = ACTIONS(5021), - [anon_sym_if] = ACTIONS(5021), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_when] = ACTIONS(5021), - [anon_sym_try] = ACTIONS(5021), - [anon_sym_throw] = ACTIONS(5021), - [anon_sym_return] = ACTIONS(5021), - [anon_sym_continue] = ACTIONS(5021), - [anon_sym_break] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5023), - [anon_sym_continue_AT] = ACTIONS(5023), - [anon_sym_break_AT] = ACTIONS(5023), - [sym_real_literal] = ACTIONS(5023), - [sym_integer_literal] = ACTIONS(5021), - [sym_hex_literal] = ACTIONS(5023), - [sym_bin_literal] = ACTIONS(5023), - [anon_sym_true] = ACTIONS(5021), - [anon_sym_false] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5023), - [sym__backtick_identifier] = ACTIONS(5023), - [sym__automatic_semicolon] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), + [3289] = { + [sym_type_constraints] = STATE(3492), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5023), }, - [3315] = { - [sym_type_constraints] = STATE(3509), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), + [3290] = { + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), }, - [3316] = { - [sym__alpha_identifier] = ACTIONS(4746), - [anon_sym_AT] = ACTIONS(4748), - [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_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), + [3291] = { + [sym_type_constraints] = STATE(3476), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3317] = { - [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_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_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), + [3292] = { + [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_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), }, - [3318] = { - [sym__alpha_identifier] = ACTIONS(4859), - [anon_sym_AT] = ACTIONS(4861), - [anon_sym_LBRACK] = ACTIONS(4861), - [anon_sym_as] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4861), - [anon_sym_COMMA] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4859), - [anon_sym_GT] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4859), - [anon_sym_object] = ACTIONS(4859), - [anon_sym_fun] = ACTIONS(4859), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_get] = ACTIONS(4859), - [anon_sym_set] = ACTIONS(4859), - [anon_sym_this] = ACTIONS(4859), - [anon_sym_super] = ACTIONS(4859), - [anon_sym_STAR] = ACTIONS(4859), - [sym_label] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4859), - [anon_sym_DOT_DOT] = ACTIONS(4861), - [anon_sym_QMARK_COLON] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_null] = ACTIONS(4859), - [anon_sym_if] = ACTIONS(4859), - [anon_sym_else] = ACTIONS(4859), - [anon_sym_when] = ACTIONS(4859), - [anon_sym_try] = ACTIONS(4859), - [anon_sym_throw] = ACTIONS(4859), - [anon_sym_return] = ACTIONS(4859), - [anon_sym_continue] = ACTIONS(4859), - [anon_sym_break] = ACTIONS(4859), - [anon_sym_COLON_COLON] = ACTIONS(4861), - [anon_sym_PLUS_EQ] = ACTIONS(4861), - [anon_sym_DASH_EQ] = ACTIONS(4861), - [anon_sym_STAR_EQ] = ACTIONS(4861), - [anon_sym_SLASH_EQ] = ACTIONS(4861), - [anon_sym_PERCENT_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), - [anon_sym_LT_EQ] = ACTIONS(4861), - [anon_sym_GT_EQ] = ACTIONS(4861), - [anon_sym_BANGin] = ACTIONS(4861), - [anon_sym_is] = ACTIONS(4859), - [anon_sym_BANGis] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4859), - [anon_sym_DASH] = ACTIONS(4859), - [anon_sym_SLASH] = ACTIONS(4859), - [anon_sym_PERCENT] = ACTIONS(4859), - [anon_sym_as_QMARK] = ACTIONS(4861), - [anon_sym_PLUS_PLUS] = ACTIONS(4861), - [anon_sym_DASH_DASH] = ACTIONS(4861), - [anon_sym_BANG] = ACTIONS(4859), - [anon_sym_BANG_BANG] = ACTIONS(4861), - [anon_sym_data] = ACTIONS(4859), - [anon_sym_inner] = ACTIONS(4859), - [anon_sym_expect] = ACTIONS(4859), - [anon_sym_actual] = ACTIONS(4859), + [3293] = { + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [3294] = { + [sym__alpha_identifier] = ACTIONS(4925), + [anon_sym_AT] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_as] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_where] = ACTIONS(4925), + [anon_sym_object] = ACTIONS(4925), + [anon_sym_fun] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4925), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), + [anon_sym_this] = ACTIONS(4925), + [anon_sym_super] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [sym_label] = ACTIONS(4925), + [anon_sym_in] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4927), + [anon_sym_QMARK_COLON] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4927), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_null] = ACTIONS(4925), + [anon_sym_if] = ACTIONS(4925), + [anon_sym_else] = ACTIONS(4925), + [anon_sym_when] = ACTIONS(4925), + [anon_sym_try] = ACTIONS(4925), + [anon_sym_throw] = ACTIONS(4925), + [anon_sym_return] = ACTIONS(4925), + [anon_sym_continue] = ACTIONS(4925), + [anon_sym_break] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4927), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_BANGin] = ACTIONS(4927), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_BANGis] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_as_QMARK] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_BANG_BANG] = ACTIONS(4927), + [anon_sym_data] = ACTIONS(4925), + [anon_sym_inner] = ACTIONS(4925), + [anon_sym_expect] = ACTIONS(4925), + [anon_sym_actual] = ACTIONS(4925), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4861), - [anon_sym_continue_AT] = ACTIONS(4861), - [anon_sym_break_AT] = ACTIONS(4861), - [sym_real_literal] = ACTIONS(4861), - [sym_integer_literal] = ACTIONS(4859), - [sym_hex_literal] = ACTIONS(4861), - [sym_bin_literal] = ACTIONS(4861), - [anon_sym_true] = ACTIONS(4859), - [anon_sym_false] = ACTIONS(4859), - [anon_sym_SQUOTE] = ACTIONS(4861), - [sym__backtick_identifier] = ACTIONS(4861), - [sym__automatic_semicolon] = ACTIONS(4861), - [sym_safe_nav] = ACTIONS(4861), + [anon_sym_return_AT] = ACTIONS(4927), + [anon_sym_continue_AT] = ACTIONS(4927), + [anon_sym_break_AT] = ACTIONS(4927), + [sym_real_literal] = ACTIONS(4927), + [sym_integer_literal] = ACTIONS(4925), + [sym_hex_literal] = ACTIONS(4927), + [sym_bin_literal] = ACTIONS(4927), + [anon_sym_true] = ACTIONS(4925), + [anon_sym_false] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4927), + [sym__backtick_identifier] = ACTIONS(4927), + [sym__automatic_semicolon] = ACTIONS(4927), + [sym_safe_nav] = ACTIONS(4927), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4861), + [sym__string_start] = ACTIONS(4927), }, - [3319] = { - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [anon_sym_DASH_GT] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [3295] = { + [aux_sym_user_type_repeat1] = STATE(3295), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(6579), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [sym_label] = ACTIONS(4225), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), [sym_multiline_comment] = ACTIONS(3), }, - [3320] = { - [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_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), - [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), - }, - [3321] = { - [sym__alpha_identifier] = ACTIONS(4883), - [anon_sym_AT] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_RBRACK] = ACTIONS(4885), - [anon_sym_as] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4883), - [anon_sym_GT] = ACTIONS(4883), - [anon_sym_where] = ACTIONS(4883), - [anon_sym_DOT] = ACTIONS(4883), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_get] = ACTIONS(4883), - [anon_sym_set] = ACTIONS(4883), - [anon_sym_STAR] = ACTIONS(4883), - [anon_sym_DASH_GT] = ACTIONS(4885), - [sym_label] = ACTIONS(4885), - [anon_sym_in] = ACTIONS(4883), - [anon_sym_while] = ACTIONS(4883), - [anon_sym_DOT_DOT] = ACTIONS(4885), - [anon_sym_QMARK_COLON] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [anon_sym_else] = ACTIONS(4883), - [anon_sym_COLON_COLON] = ACTIONS(4885), - [anon_sym_PLUS_EQ] = ACTIONS(4885), - [anon_sym_DASH_EQ] = ACTIONS(4885), - [anon_sym_STAR_EQ] = ACTIONS(4885), - [anon_sym_SLASH_EQ] = ACTIONS(4885), - [anon_sym_PERCENT_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT_EQ] = ACTIONS(4885), - [anon_sym_GT_EQ] = ACTIONS(4885), - [anon_sym_BANGin] = ACTIONS(4885), - [anon_sym_is] = ACTIONS(4883), - [anon_sym_BANGis] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_SLASH] = ACTIONS(4883), - [anon_sym_PERCENT] = ACTIONS(4883), - [anon_sym_as_QMARK] = ACTIONS(4885), - [anon_sym_PLUS_PLUS] = ACTIONS(4885), - [anon_sym_DASH_DASH] = ACTIONS(4885), - [anon_sym_BANG_BANG] = ACTIONS(4885), - [anon_sym_suspend] = ACTIONS(4883), - [anon_sym_sealed] = ACTIONS(4883), - [anon_sym_annotation] = ACTIONS(4883), - [anon_sym_data] = ACTIONS(4883), - [anon_sym_inner] = ACTIONS(4883), - [anon_sym_override] = ACTIONS(4883), - [anon_sym_lateinit] = ACTIONS(4883), - [anon_sym_public] = ACTIONS(4883), - [anon_sym_private] = ACTIONS(4883), - [anon_sym_internal] = ACTIONS(4883), - [anon_sym_protected] = ACTIONS(4883), - [anon_sym_tailrec] = ACTIONS(4883), - [anon_sym_operator] = ACTIONS(4883), - [anon_sym_infix] = ACTIONS(4883), - [anon_sym_inline] = ACTIONS(4883), - [anon_sym_external] = ACTIONS(4883), - [sym_property_modifier] = ACTIONS(4883), - [anon_sym_abstract] = ACTIONS(4883), - [anon_sym_final] = ACTIONS(4883), - [anon_sym_open] = ACTIONS(4883), - [anon_sym_vararg] = ACTIONS(4883), - [anon_sym_noinline] = ACTIONS(4883), - [anon_sym_crossinline] = ACTIONS(4883), - [anon_sym_expect] = ACTIONS(4883), - [anon_sym_actual] = ACTIONS(4883), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4885), - [sym_safe_nav] = ACTIONS(4885), + [3296] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_RBRACK] = ACTIONS(4470), + [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_DOT] = 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_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_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), }, - [3322] = { - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [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_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_DOT] = 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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3323] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_object] = ACTIONS(5037), - [anon_sym_fun] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_this] = ACTIONS(5037), - [anon_sym_super] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [sym_label] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(5037), - [anon_sym_if] = ACTIONS(5037), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_when] = ACTIONS(5037), - [anon_sym_try] = ACTIONS(5037), - [anon_sym_throw] = ACTIONS(5037), - [anon_sym_return] = ACTIONS(5037), - [anon_sym_continue] = ACTIONS(5037), - [anon_sym_break] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_expect] = ACTIONS(5037), - [anon_sym_actual] = ACTIONS(5037), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5039), - [anon_sym_continue_AT] = ACTIONS(5039), - [anon_sym_break_AT] = ACTIONS(5039), - [sym_real_literal] = ACTIONS(5039), - [sym_integer_literal] = ACTIONS(5037), - [sym_hex_literal] = ACTIONS(5039), - [sym_bin_literal] = ACTIONS(5039), - [anon_sym_true] = ACTIONS(5037), - [anon_sym_false] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5039), - [sym__backtick_identifier] = ACTIONS(5039), - [sym__automatic_semicolon] = ACTIONS(5039), - [sym_safe_nav] = ACTIONS(5039), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5039), + [3297] = { + [sym_class_body] = STATE(3253), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6582), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), }, - [3324] = { - [sym__alpha_identifier] = ACTIONS(4905), - [anon_sym_AT] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_as] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(4905), - [anon_sym_where] = ACTIONS(4905), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_SEMI] = ACTIONS(4907), - [anon_sym_get] = ACTIONS(4905), - [anon_sym_set] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_DASH_GT] = ACTIONS(4907), - [sym_label] = ACTIONS(4907), - [anon_sym_in] = ACTIONS(4905), - [anon_sym_while] = ACTIONS(4905), - [anon_sym_DOT_DOT] = ACTIONS(4907), - [anon_sym_QMARK_COLON] = ACTIONS(4907), - [anon_sym_AMP_AMP] = ACTIONS(4907), - [anon_sym_PIPE_PIPE] = ACTIONS(4907), - [anon_sym_else] = ACTIONS(4905), - [anon_sym_COLON_COLON] = ACTIONS(4907), - [anon_sym_PLUS_EQ] = ACTIONS(4907), - [anon_sym_DASH_EQ] = ACTIONS(4907), - [anon_sym_STAR_EQ] = ACTIONS(4907), - [anon_sym_SLASH_EQ] = ACTIONS(4907), - [anon_sym_PERCENT_EQ] = ACTIONS(4907), - [anon_sym_BANG_EQ] = ACTIONS(4905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), - [anon_sym_EQ_EQ] = ACTIONS(4905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), - [anon_sym_LT_EQ] = ACTIONS(4907), - [anon_sym_GT_EQ] = ACTIONS(4907), - [anon_sym_BANGin] = ACTIONS(4907), - [anon_sym_is] = ACTIONS(4905), - [anon_sym_BANGis] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_as_QMARK] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(4907), - [anon_sym_DASH_DASH] = ACTIONS(4907), - [anon_sym_BANG_BANG] = ACTIONS(4907), - [anon_sym_suspend] = ACTIONS(4905), - [anon_sym_sealed] = ACTIONS(4905), - [anon_sym_annotation] = ACTIONS(4905), - [anon_sym_data] = ACTIONS(4905), - [anon_sym_inner] = ACTIONS(4905), - [anon_sym_override] = ACTIONS(4905), - [anon_sym_lateinit] = ACTIONS(4905), - [anon_sym_public] = ACTIONS(4905), - [anon_sym_private] = ACTIONS(4905), - [anon_sym_internal] = ACTIONS(4905), - [anon_sym_protected] = ACTIONS(4905), - [anon_sym_tailrec] = ACTIONS(4905), - [anon_sym_operator] = ACTIONS(4905), - [anon_sym_infix] = ACTIONS(4905), - [anon_sym_inline] = ACTIONS(4905), - [anon_sym_external] = ACTIONS(4905), - [sym_property_modifier] = ACTIONS(4905), - [anon_sym_abstract] = ACTIONS(4905), - [anon_sym_final] = ACTIONS(4905), - [anon_sym_open] = ACTIONS(4905), - [anon_sym_vararg] = ACTIONS(4905), - [anon_sym_noinline] = ACTIONS(4905), - [anon_sym_crossinline] = ACTIONS(4905), - [anon_sym_expect] = ACTIONS(4905), - [anon_sym_actual] = ACTIONS(4905), + [3298] = { + [sym__alpha_identifier] = ACTIONS(4985), + [anon_sym_AT] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_where] = ACTIONS(4985), + [anon_sym_object] = ACTIONS(4985), + [anon_sym_fun] = ACTIONS(4985), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_get] = ACTIONS(4985), + [anon_sym_set] = ACTIONS(4985), + [anon_sym_this] = ACTIONS(4985), + [anon_sym_super] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [sym_label] = ACTIONS(4985), + [anon_sym_in] = ACTIONS(4985), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_QMARK_COLON] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_null] = ACTIONS(4985), + [anon_sym_if] = ACTIONS(4985), + [anon_sym_else] = ACTIONS(4985), + [anon_sym_when] = ACTIONS(4985), + [anon_sym_try] = ACTIONS(4985), + [anon_sym_throw] = ACTIONS(4985), + [anon_sym_return] = ACTIONS(4985), + [anon_sym_continue] = ACTIONS(4985), + [anon_sym_break] = ACTIONS(4985), + [anon_sym_COLON_COLON] = ACTIONS(4987), + [anon_sym_PLUS_EQ] = ACTIONS(4987), + [anon_sym_DASH_EQ] = ACTIONS(4987), + [anon_sym_STAR_EQ] = ACTIONS(4987), + [anon_sym_SLASH_EQ] = ACTIONS(4987), + [anon_sym_PERCENT_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4985), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4985), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_BANGin] = ACTIONS(4987), + [anon_sym_is] = ACTIONS(4985), + [anon_sym_BANGis] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4985), + [anon_sym_as_QMARK] = ACTIONS(4987), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4985), + [anon_sym_BANG_BANG] = ACTIONS(4987), + [anon_sym_data] = ACTIONS(4985), + [anon_sym_inner] = ACTIONS(4985), + [anon_sym_expect] = ACTIONS(4985), + [anon_sym_actual] = ACTIONS(4985), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4907), - [sym_safe_nav] = ACTIONS(4907), + [anon_sym_return_AT] = ACTIONS(4987), + [anon_sym_continue_AT] = ACTIONS(4987), + [anon_sym_break_AT] = ACTIONS(4987), + [sym_real_literal] = ACTIONS(4987), + [sym_integer_literal] = ACTIONS(4985), + [sym_hex_literal] = ACTIONS(4987), + [sym_bin_literal] = ACTIONS(4987), + [anon_sym_true] = ACTIONS(4985), + [anon_sym_false] = ACTIONS(4985), + [anon_sym_SQUOTE] = ACTIONS(4987), + [sym__backtick_identifier] = ACTIONS(4987), + [sym__automatic_semicolon] = ACTIONS(4987), + [sym_safe_nav] = ACTIONS(4987), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4987), }, - [3325] = { - [sym__alpha_identifier] = ACTIONS(4921), - [anon_sym_AT] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RBRACK] = ACTIONS(4923), - [anon_sym_as] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_where] = ACTIONS(4921), - [anon_sym_DOT] = ACTIONS(4921), - [anon_sym_SEMI] = ACTIONS(4923), - [anon_sym_get] = ACTIONS(4921), - [anon_sym_set] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [anon_sym_DASH_GT] = ACTIONS(4923), - [sym_label] = ACTIONS(4923), - [anon_sym_in] = ACTIONS(4921), - [anon_sym_while] = ACTIONS(4921), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [anon_sym_QMARK_COLON] = ACTIONS(4923), - [anon_sym_AMP_AMP] = ACTIONS(4923), - [anon_sym_PIPE_PIPE] = ACTIONS(4923), - [anon_sym_else] = ACTIONS(4921), - [anon_sym_COLON_COLON] = ACTIONS(4923), - [anon_sym_PLUS_EQ] = ACTIONS(4923), - [anon_sym_DASH_EQ] = ACTIONS(4923), - [anon_sym_STAR_EQ] = ACTIONS(4923), - [anon_sym_SLASH_EQ] = ACTIONS(4923), - [anon_sym_PERCENT_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4923), - [anon_sym_LT_EQ] = ACTIONS(4923), - [anon_sym_GT_EQ] = ACTIONS(4923), - [anon_sym_BANGin] = ACTIONS(4923), - [anon_sym_is] = ACTIONS(4921), - [anon_sym_BANGis] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_PERCENT] = ACTIONS(4921), - [anon_sym_as_QMARK] = ACTIONS(4923), - [anon_sym_PLUS_PLUS] = ACTIONS(4923), - [anon_sym_DASH_DASH] = ACTIONS(4923), - [anon_sym_BANG_BANG] = ACTIONS(4923), - [anon_sym_suspend] = ACTIONS(4921), - [anon_sym_sealed] = ACTIONS(4921), - [anon_sym_annotation] = ACTIONS(4921), - [anon_sym_data] = ACTIONS(4921), - [anon_sym_inner] = ACTIONS(4921), - [anon_sym_override] = ACTIONS(4921), - [anon_sym_lateinit] = ACTIONS(4921), - [anon_sym_public] = ACTIONS(4921), - [anon_sym_private] = ACTIONS(4921), - [anon_sym_internal] = ACTIONS(4921), - [anon_sym_protected] = ACTIONS(4921), - [anon_sym_tailrec] = ACTIONS(4921), - [anon_sym_operator] = ACTIONS(4921), - [anon_sym_infix] = ACTIONS(4921), - [anon_sym_inline] = ACTIONS(4921), - [anon_sym_external] = ACTIONS(4921), - [sym_property_modifier] = ACTIONS(4921), - [anon_sym_abstract] = ACTIONS(4921), - [anon_sym_final] = ACTIONS(4921), - [anon_sym_open] = ACTIONS(4921), - [anon_sym_vararg] = ACTIONS(4921), - [anon_sym_noinline] = ACTIONS(4921), - [anon_sym_crossinline] = ACTIONS(4921), - [anon_sym_expect] = ACTIONS(4921), - [anon_sym_actual] = ACTIONS(4921), + [3299] = { + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(4508), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_object] = ACTIONS(4506), + [anon_sym_fun] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_this] = ACTIONS(4506), + [anon_sym_super] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [sym_label] = ACTIONS(4506), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_null] = ACTIONS(4506), + [anon_sym_if] = ACTIONS(4506), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_when] = ACTIONS(4506), + [anon_sym_try] = ACTIONS(4506), + [anon_sym_throw] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4506), + [anon_sym_continue] = ACTIONS(4506), + [anon_sym_break] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4508), + [anon_sym_continue_AT] = ACTIONS(4508), + [anon_sym_break_AT] = ACTIONS(4508), + [sym_real_literal] = ACTIONS(4508), + [sym_integer_literal] = ACTIONS(4506), + [sym_hex_literal] = ACTIONS(4508), + [sym_bin_literal] = ACTIONS(4508), + [anon_sym_true] = ACTIONS(4506), + [anon_sym_false] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4508), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4508), + }, + [3300] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4772), + [anon_sym_as] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4772), + [anon_sym_RPAREN] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_DASH_GT] = ACTIONS(4772), + [sym_label] = ACTIONS(4772), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_while] = ACTIONS(4770), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_QMARK_COLON] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4770), + [anon_sym_COLON_COLON] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4772), + [anon_sym_DASH_EQ] = ACTIONS(4772), + [anon_sym_STAR_EQ] = ACTIONS(4772), + [anon_sym_SLASH_EQ] = ACTIONS(4772), + [anon_sym_PERCENT_EQ] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4772), + [anon_sym_BANGin] = ACTIONS(4772), + [anon_sym_is] = ACTIONS(4770), + [anon_sym_BANGis] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_as_QMARK] = ACTIONS(4772), + [anon_sym_PLUS_PLUS] = ACTIONS(4772), + [anon_sym_DASH_DASH] = ACTIONS(4772), + [anon_sym_BANG_BANG] = ACTIONS(4772), + [anon_sym_suspend] = ACTIONS(4770), + [anon_sym_sealed] = ACTIONS(4770), + [anon_sym_annotation] = ACTIONS(4770), + [anon_sym_data] = ACTIONS(4770), + [anon_sym_inner] = ACTIONS(4770), + [anon_sym_override] = ACTIONS(4770), + [anon_sym_lateinit] = ACTIONS(4770), + [anon_sym_public] = ACTIONS(4770), + [anon_sym_private] = ACTIONS(4770), + [anon_sym_internal] = ACTIONS(4770), + [anon_sym_protected] = ACTIONS(4770), + [anon_sym_tailrec] = ACTIONS(4770), + [anon_sym_operator] = ACTIONS(4770), + [anon_sym_infix] = ACTIONS(4770), + [anon_sym_inline] = ACTIONS(4770), + [anon_sym_external] = ACTIONS(4770), + [sym_property_modifier] = ACTIONS(4770), + [anon_sym_abstract] = ACTIONS(4770), + [anon_sym_final] = ACTIONS(4770), + [anon_sym_open] = ACTIONS(4770), + [anon_sym_vararg] = ACTIONS(4770), + [anon_sym_noinline] = ACTIONS(4770), + [anon_sym_crossinline] = ACTIONS(4770), + [anon_sym_expect] = ACTIONS(4770), + [anon_sym_actual] = ACTIONS(4770), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4923), - [sym_safe_nav] = ACTIONS(4923), + [sym__backtick_identifier] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), [sym_multiline_comment] = ACTIONS(3), }, - [3326] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4732), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_RBRACK] = ACTIONS(4732), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4732), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_LPAREN] = ACTIONS(4732), - [anon_sym_COMMA] = ACTIONS(4732), - [anon_sym_RPAREN] = ACTIONS(4732), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4732), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4732), - [sym_label] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_while] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_QMARK_COLON] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4732), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4732), - [anon_sym_PLUS_EQ] = ACTIONS(4732), - [anon_sym_DASH_EQ] = ACTIONS(4732), - [anon_sym_STAR_EQ] = ACTIONS(4732), - [anon_sym_SLASH_EQ] = ACTIONS(4732), - [anon_sym_PERCENT_EQ] = ACTIONS(4732), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4732), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4732), - [anon_sym_LT_EQ] = ACTIONS(4732), - [anon_sym_GT_EQ] = ACTIONS(4732), - [anon_sym_BANGin] = ACTIONS(4732), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4732), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4732), - [anon_sym_DASH_DASH] = ACTIONS(4732), - [anon_sym_BANG_BANG] = ACTIONS(4732), - [anon_sym_suspend] = ACTIONS(4730), - [anon_sym_sealed] = ACTIONS(4730), - [anon_sym_annotation] = ACTIONS(4730), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_override] = ACTIONS(4730), - [anon_sym_lateinit] = ACTIONS(4730), - [anon_sym_public] = ACTIONS(4730), - [anon_sym_private] = ACTIONS(4730), - [anon_sym_internal] = ACTIONS(4730), - [anon_sym_protected] = ACTIONS(4730), - [anon_sym_tailrec] = ACTIONS(4730), - [anon_sym_operator] = ACTIONS(4730), - [anon_sym_infix] = ACTIONS(4730), - [anon_sym_inline] = ACTIONS(4730), - [anon_sym_external] = ACTIONS(4730), - [sym_property_modifier] = ACTIONS(4730), - [anon_sym_abstract] = ACTIONS(4730), - [anon_sym_final] = ACTIONS(4730), - [anon_sym_open] = ACTIONS(4730), - [anon_sym_vararg] = ACTIONS(4730), - [anon_sym_noinline] = ACTIONS(4730), - [anon_sym_crossinline] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), + [3301] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [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_expect] = ACTIONS(4585), + [anon_sym_actual] = ACTIONS(4585), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4732), - [sym_safe_nav] = ACTIONS(4732), + [anon_sym_return_AT] = ACTIONS(4587), + [anon_sym_continue_AT] = ACTIONS(4587), + [anon_sym_break_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), }, - [3327] = { - [sym_type_constraints] = STATE(3542), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3302] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6584), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), + }, + [3303] = { + [sym__alpha_identifier] = ACTIONS(4957), + [anon_sym_AT] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_RBRACK] = ACTIONS(4959), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_COMMA] = ACTIONS(4959), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_where] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4959), + [anon_sym_get] = ACTIONS(4957), + [anon_sym_set] = ACTIONS(4957), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4959), + [sym_label] = ACTIONS(4959), + [anon_sym_in] = ACTIONS(4957), + [anon_sym_while] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_QMARK_COLON] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_else] = ACTIONS(4957), + [anon_sym_COLON_COLON] = ACTIONS(4959), + [anon_sym_PLUS_EQ] = ACTIONS(4959), + [anon_sym_DASH_EQ] = ACTIONS(4959), + [anon_sym_STAR_EQ] = ACTIONS(4959), + [anon_sym_SLASH_EQ] = ACTIONS(4959), + [anon_sym_PERCENT_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4959), + [anon_sym_LT_EQ] = ACTIONS(4959), + [anon_sym_GT_EQ] = ACTIONS(4959), + [anon_sym_BANGin] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_BANGis] = ACTIONS(4959), + [anon_sym_PLUS] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_as_QMARK] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_BANG_BANG] = ACTIONS(4959), + [anon_sym_suspend] = ACTIONS(4957), + [anon_sym_sealed] = ACTIONS(4957), + [anon_sym_annotation] = ACTIONS(4957), + [anon_sym_data] = ACTIONS(4957), + [anon_sym_inner] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_lateinit] = ACTIONS(4957), + [anon_sym_public] = ACTIONS(4957), + [anon_sym_private] = ACTIONS(4957), + [anon_sym_internal] = ACTIONS(4957), + [anon_sym_protected] = ACTIONS(4957), + [anon_sym_tailrec] = ACTIONS(4957), + [anon_sym_operator] = ACTIONS(4957), + [anon_sym_infix] = ACTIONS(4957), + [anon_sym_inline] = ACTIONS(4957), + [anon_sym_external] = ACTIONS(4957), + [sym_property_modifier] = ACTIONS(4957), + [anon_sym_abstract] = ACTIONS(4957), + [anon_sym_final] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_vararg] = ACTIONS(4957), + [anon_sym_noinline] = ACTIONS(4957), + [anon_sym_crossinline] = ACTIONS(4957), + [anon_sym_expect] = ACTIONS(4957), + [anon_sym_actual] = ACTIONS(4957), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4959), + [sym_safe_nav] = ACTIONS(4959), [sym_multiline_comment] = ACTIONS(3), }, - [3328] = { - [sym_class_body] = STATE(3344), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6551), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), + [3304] = { + [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_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), }, - [3329] = { - [sym__alpha_identifier] = ACTIONS(4913), - [anon_sym_AT] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_as] = ACTIONS(4913), - [anon_sym_EQ] = ACTIONS(4913), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_RBRACE] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_where] = ACTIONS(4913), - [anon_sym_DOT] = ACTIONS(4913), - [anon_sym_SEMI] = ACTIONS(4915), - [anon_sym_get] = ACTIONS(4913), - [anon_sym_set] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_DASH_GT] = ACTIONS(4915), - [sym_label] = ACTIONS(4915), - [anon_sym_in] = ACTIONS(4913), - [anon_sym_while] = ACTIONS(4913), - [anon_sym_DOT_DOT] = ACTIONS(4915), - [anon_sym_QMARK_COLON] = ACTIONS(4915), - [anon_sym_AMP_AMP] = ACTIONS(4915), - [anon_sym_PIPE_PIPE] = ACTIONS(4915), - [anon_sym_else] = ACTIONS(4913), - [anon_sym_COLON_COLON] = ACTIONS(4915), - [anon_sym_PLUS_EQ] = ACTIONS(4915), - [anon_sym_DASH_EQ] = ACTIONS(4915), - [anon_sym_STAR_EQ] = ACTIONS(4915), - [anon_sym_SLASH_EQ] = ACTIONS(4915), - [anon_sym_PERCENT_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), - [anon_sym_LT_EQ] = ACTIONS(4915), - [anon_sym_GT_EQ] = ACTIONS(4915), - [anon_sym_BANGin] = ACTIONS(4915), - [anon_sym_is] = ACTIONS(4913), - [anon_sym_BANGis] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_PERCENT] = ACTIONS(4913), - [anon_sym_as_QMARK] = ACTIONS(4915), - [anon_sym_PLUS_PLUS] = ACTIONS(4915), - [anon_sym_DASH_DASH] = ACTIONS(4915), - [anon_sym_BANG_BANG] = ACTIONS(4915), - [anon_sym_suspend] = ACTIONS(4913), - [anon_sym_sealed] = ACTIONS(4913), - [anon_sym_annotation] = ACTIONS(4913), - [anon_sym_data] = ACTIONS(4913), - [anon_sym_inner] = ACTIONS(4913), - [anon_sym_override] = ACTIONS(4913), - [anon_sym_lateinit] = ACTIONS(4913), - [anon_sym_public] = ACTIONS(4913), - [anon_sym_private] = ACTIONS(4913), - [anon_sym_internal] = ACTIONS(4913), - [anon_sym_protected] = ACTIONS(4913), - [anon_sym_tailrec] = ACTIONS(4913), - [anon_sym_operator] = ACTIONS(4913), - [anon_sym_infix] = ACTIONS(4913), - [anon_sym_inline] = ACTIONS(4913), - [anon_sym_external] = ACTIONS(4913), - [sym_property_modifier] = ACTIONS(4913), - [anon_sym_abstract] = ACTIONS(4913), - [anon_sym_final] = ACTIONS(4913), - [anon_sym_open] = ACTIONS(4913), - [anon_sym_vararg] = ACTIONS(4913), - [anon_sym_noinline] = ACTIONS(4913), - [anon_sym_crossinline] = ACTIONS(4913), - [anon_sym_expect] = ACTIONS(4913), - [anon_sym_actual] = ACTIONS(4913), + [3305] = { + [sym__alpha_identifier] = ACTIONS(4953), + [anon_sym_AT] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4955), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4955), + [anon_sym_COMMA] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4953), + [anon_sym_GT] = ACTIONS(4953), + [anon_sym_where] = ACTIONS(4953), + [anon_sym_object] = ACTIONS(4953), + [anon_sym_fun] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4953), + [anon_sym_SEMI] = ACTIONS(4955), + [anon_sym_get] = ACTIONS(4953), + [anon_sym_set] = ACTIONS(4953), + [anon_sym_this] = ACTIONS(4953), + [anon_sym_super] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [sym_label] = ACTIONS(4953), + [anon_sym_in] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4955), + [anon_sym_QMARK_COLON] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_null] = ACTIONS(4953), + [anon_sym_if] = ACTIONS(4953), + [anon_sym_else] = ACTIONS(4953), + [anon_sym_when] = ACTIONS(4953), + [anon_sym_try] = ACTIONS(4953), + [anon_sym_throw] = ACTIONS(4953), + [anon_sym_return] = ACTIONS(4953), + [anon_sym_continue] = ACTIONS(4953), + [anon_sym_break] = ACTIONS(4953), + [anon_sym_COLON_COLON] = ACTIONS(4955), + [anon_sym_PLUS_EQ] = ACTIONS(4955), + [anon_sym_DASH_EQ] = ACTIONS(4955), + [anon_sym_STAR_EQ] = ACTIONS(4955), + [anon_sym_SLASH_EQ] = ACTIONS(4955), + [anon_sym_PERCENT_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4955), + [anon_sym_BANGin] = ACTIONS(4955), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_BANGis] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4953), + [anon_sym_DASH] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4953), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_as_QMARK] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4953), + [anon_sym_BANG_BANG] = ACTIONS(4955), + [anon_sym_data] = ACTIONS(4953), + [anon_sym_inner] = ACTIONS(4953), + [anon_sym_expect] = ACTIONS(4953), + [anon_sym_actual] = ACTIONS(4953), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4915), - [sym_safe_nav] = ACTIONS(4915), + [anon_sym_return_AT] = ACTIONS(4955), + [anon_sym_continue_AT] = ACTIONS(4955), + [anon_sym_break_AT] = ACTIONS(4955), + [sym_real_literal] = ACTIONS(4955), + [sym_integer_literal] = ACTIONS(4953), + [sym_hex_literal] = ACTIONS(4955), + [sym_bin_literal] = ACTIONS(4955), + [anon_sym_true] = ACTIONS(4953), + [anon_sym_false] = ACTIONS(4953), + [anon_sym_SQUOTE] = ACTIONS(4955), + [sym__backtick_identifier] = ACTIONS(4955), + [sym__automatic_semicolon] = ACTIONS(4955), + [sym_safe_nav] = ACTIONS(4955), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4955), }, - [3330] = { + [3306] = { + [sym__alpha_identifier] = ACTIONS(4929), + [anon_sym_AT] = ACTIONS(4931), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_RBRACK] = ACTIONS(4931), + [anon_sym_as] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4929), + [anon_sym_LBRACE] = ACTIONS(4931), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_LPAREN] = ACTIONS(4931), + [anon_sym_COMMA] = ACTIONS(4931), + [anon_sym_RPAREN] = ACTIONS(4931), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_where] = ACTIONS(4929), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_get] = ACTIONS(4929), + [anon_sym_set] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_DASH_GT] = ACTIONS(4931), + [sym_label] = ACTIONS(4931), + [anon_sym_in] = ACTIONS(4929), + [anon_sym_while] = ACTIONS(4929), + [anon_sym_DOT_DOT] = ACTIONS(4931), + [anon_sym_QMARK_COLON] = ACTIONS(4931), + [anon_sym_AMP_AMP] = ACTIONS(4931), + [anon_sym_PIPE_PIPE] = ACTIONS(4931), + [anon_sym_else] = ACTIONS(4929), + [anon_sym_COLON_COLON] = ACTIONS(4931), + [anon_sym_PLUS_EQ] = ACTIONS(4931), + [anon_sym_DASH_EQ] = ACTIONS(4931), + [anon_sym_STAR_EQ] = ACTIONS(4931), + [anon_sym_SLASH_EQ] = ACTIONS(4931), + [anon_sym_PERCENT_EQ] = ACTIONS(4931), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4931), + [anon_sym_EQ_EQ] = ACTIONS(4929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4931), + [anon_sym_LT_EQ] = ACTIONS(4931), + [anon_sym_GT_EQ] = ACTIONS(4931), + [anon_sym_BANGin] = ACTIONS(4931), + [anon_sym_is] = ACTIONS(4929), + [anon_sym_BANGis] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_as_QMARK] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4931), + [anon_sym_DASH_DASH] = ACTIONS(4931), + [anon_sym_BANG_BANG] = ACTIONS(4931), + [anon_sym_suspend] = ACTIONS(4929), + [anon_sym_sealed] = ACTIONS(4929), + [anon_sym_annotation] = ACTIONS(4929), + [anon_sym_data] = ACTIONS(4929), + [anon_sym_inner] = ACTIONS(4929), + [anon_sym_override] = ACTIONS(4929), + [anon_sym_lateinit] = ACTIONS(4929), + [anon_sym_public] = ACTIONS(4929), + [anon_sym_private] = ACTIONS(4929), + [anon_sym_internal] = ACTIONS(4929), + [anon_sym_protected] = ACTIONS(4929), + [anon_sym_tailrec] = ACTIONS(4929), + [anon_sym_operator] = ACTIONS(4929), + [anon_sym_infix] = ACTIONS(4929), + [anon_sym_inline] = ACTIONS(4929), + [anon_sym_external] = ACTIONS(4929), + [sym_property_modifier] = ACTIONS(4929), + [anon_sym_abstract] = ACTIONS(4929), + [anon_sym_final] = ACTIONS(4929), + [anon_sym_open] = ACTIONS(4929), + [anon_sym_vararg] = ACTIONS(4929), + [anon_sym_noinline] = ACTIONS(4929), + [anon_sym_crossinline] = ACTIONS(4929), + [anon_sym_expect] = ACTIONS(4929), + [anon_sym_actual] = ACTIONS(4929), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4931), + [sym_safe_nav] = ACTIONS(4931), + [sym_multiline_comment] = ACTIONS(3), + }, + [3307] = { [sym__alpha_identifier] = ACTIONS(4525), [anon_sym_AT] = ACTIONS(4527), [anon_sym_LBRACK] = ACTIONS(4527), @@ -369097,251 +367288,2137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4527), }, + [3308] = { + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_fun] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_this] = ACTIONS(3264), + [anon_sym_super] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_null] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_when] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_data] = ACTIONS(3264), + [anon_sym_inner] = ACTIONS(3264), + [anon_sym_expect] = ACTIONS(3264), + [anon_sym_actual] = ACTIONS(3264), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3266), + [anon_sym_continue_AT] = ACTIONS(3266), + [anon_sym_break_AT] = ACTIONS(3266), + [sym_real_literal] = ACTIONS(3266), + [sym_integer_literal] = ACTIONS(3264), + [sym_hex_literal] = ACTIONS(3266), + [sym_bin_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3266), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3266), + }, + [3309] = { + [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_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), + }, + [3310] = { + [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_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), + }, + [3311] = { + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [3312] = { + [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_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), + }, + [3313] = { + [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_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), + }, + [3314] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(6586), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), + }, + [3315] = { + [sym__alpha_identifier] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_fun] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_super] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [sym_label] = ACTIONS(3074), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3076), + [anon_sym_QMARK_COLON] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_when] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_as_QMARK] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_BANG_BANG] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3074), + [anon_sym_inner] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(3074), + [anon_sym_actual] = ACTIONS(3074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3076), + [anon_sym_continue_AT] = ACTIONS(3076), + [anon_sym_break_AT] = ACTIONS(3076), + [sym_real_literal] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [sym_hex_literal] = ACTIONS(3076), + [sym_bin_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [sym__backtick_identifier] = ACTIONS(3076), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3076), + }, + [3316] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4861), + }, + [3317] = { + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [3318] = { + [sym__alpha_identifier] = ACTIONS(4869), + [anon_sym_AT] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_where] = ACTIONS(4869), + [anon_sym_DOT] = ACTIONS(4869), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4869), + [anon_sym_set] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [anon_sym_DASH_GT] = ACTIONS(4871), + [sym_label] = ACTIONS(4871), + [anon_sym_in] = ACTIONS(4869), + [anon_sym_while] = ACTIONS(4869), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_QMARK_COLON] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_else] = ACTIONS(4869), + [anon_sym_COLON_COLON] = ACTIONS(4871), + [anon_sym_PLUS_EQ] = ACTIONS(4871), + [anon_sym_DASH_EQ] = ACTIONS(4871), + [anon_sym_STAR_EQ] = ACTIONS(4871), + [anon_sym_SLASH_EQ] = ACTIONS(4871), + [anon_sym_PERCENT_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_BANGin] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4869), + [anon_sym_BANGis] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_as_QMARK] = ACTIONS(4871), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_BANG_BANG] = ACTIONS(4871), + [anon_sym_suspend] = ACTIONS(4869), + [anon_sym_sealed] = ACTIONS(4869), + [anon_sym_annotation] = ACTIONS(4869), + [anon_sym_data] = ACTIONS(4869), + [anon_sym_inner] = ACTIONS(4869), + [anon_sym_override] = ACTIONS(4869), + [anon_sym_lateinit] = ACTIONS(4869), + [anon_sym_public] = ACTIONS(4869), + [anon_sym_private] = ACTIONS(4869), + [anon_sym_internal] = ACTIONS(4869), + [anon_sym_protected] = ACTIONS(4869), + [anon_sym_tailrec] = ACTIONS(4869), + [anon_sym_operator] = ACTIONS(4869), + [anon_sym_infix] = ACTIONS(4869), + [anon_sym_inline] = ACTIONS(4869), + [anon_sym_external] = ACTIONS(4869), + [sym_property_modifier] = ACTIONS(4869), + [anon_sym_abstract] = ACTIONS(4869), + [anon_sym_final] = ACTIONS(4869), + [anon_sym_open] = ACTIONS(4869), + [anon_sym_vararg] = ACTIONS(4869), + [anon_sym_noinline] = ACTIONS(4869), + [anon_sym_crossinline] = ACTIONS(4869), + [anon_sym_expect] = ACTIONS(4869), + [anon_sym_actual] = ACTIONS(4869), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4871), + [sym_safe_nav] = ACTIONS(4871), + [sym_multiline_comment] = ACTIONS(3), + }, + [3319] = { + [sym__alpha_identifier] = ACTIONS(4865), + [anon_sym_AT] = ACTIONS(4867), + [anon_sym_LBRACK] = ACTIONS(4867), + [anon_sym_as] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4867), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4867), + [anon_sym_COMMA] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_where] = ACTIONS(4865), + [anon_sym_object] = ACTIONS(4865), + [anon_sym_fun] = ACTIONS(4865), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_get] = ACTIONS(4865), + [anon_sym_set] = ACTIONS(4865), + [anon_sym_this] = ACTIONS(4865), + [anon_sym_super] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [sym_label] = ACTIONS(4865), + [anon_sym_in] = ACTIONS(4865), + [anon_sym_DOT_DOT] = ACTIONS(4867), + [anon_sym_QMARK_COLON] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_null] = ACTIONS(4865), + [anon_sym_if] = ACTIONS(4865), + [anon_sym_else] = ACTIONS(4865), + [anon_sym_when] = ACTIONS(4865), + [anon_sym_try] = ACTIONS(4865), + [anon_sym_throw] = ACTIONS(4865), + [anon_sym_return] = ACTIONS(4865), + [anon_sym_continue] = ACTIONS(4865), + [anon_sym_break] = ACTIONS(4865), + [anon_sym_COLON_COLON] = ACTIONS(4867), + [anon_sym_PLUS_EQ] = ACTIONS(4867), + [anon_sym_DASH_EQ] = ACTIONS(4867), + [anon_sym_STAR_EQ] = ACTIONS(4867), + [anon_sym_SLASH_EQ] = ACTIONS(4867), + [anon_sym_PERCENT_EQ] = ACTIONS(4867), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), + [anon_sym_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), + [anon_sym_LT_EQ] = ACTIONS(4867), + [anon_sym_GT_EQ] = ACTIONS(4867), + [anon_sym_BANGin] = ACTIONS(4867), + [anon_sym_is] = ACTIONS(4865), + [anon_sym_BANGis] = ACTIONS(4867), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_as_QMARK] = ACTIONS(4867), + [anon_sym_PLUS_PLUS] = ACTIONS(4867), + [anon_sym_DASH_DASH] = ACTIONS(4867), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_BANG_BANG] = ACTIONS(4867), + [anon_sym_data] = ACTIONS(4865), + [anon_sym_inner] = ACTIONS(4865), + [anon_sym_expect] = ACTIONS(4865), + [anon_sym_actual] = ACTIONS(4865), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4867), + [anon_sym_continue_AT] = ACTIONS(4867), + [anon_sym_break_AT] = ACTIONS(4867), + [sym_real_literal] = ACTIONS(4867), + [sym_integer_literal] = ACTIONS(4865), + [sym_hex_literal] = ACTIONS(4867), + [sym_bin_literal] = ACTIONS(4867), + [anon_sym_true] = ACTIONS(4865), + [anon_sym_false] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4867), + [sym__backtick_identifier] = ACTIONS(4867), + [sym__automatic_semicolon] = ACTIONS(4867), + [sym_safe_nav] = ACTIONS(4867), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4867), + }, + [3320] = { + [sym__alpha_identifier] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(1596), + [anon_sym_super] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [sym_label] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_when] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [anon_sym_throw] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1594), + [anon_sym_continue_AT] = ACTIONS(1594), + [anon_sym_break_AT] = ACTIONS(1594), + [sym_real_literal] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1596), + [sym_hex_literal] = ACTIONS(1594), + [sym_bin_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1594), + [sym__backtick_identifier] = ACTIONS(1594), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1594), + }, + [3321] = { + [sym__alpha_identifier] = ACTIONS(4957), + [anon_sym_AT] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_COMMA] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_where] = ACTIONS(4957), + [anon_sym_object] = ACTIONS(4957), + [anon_sym_fun] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4959), + [anon_sym_get] = ACTIONS(4957), + [anon_sym_set] = ACTIONS(4957), + [anon_sym_this] = ACTIONS(4957), + [anon_sym_super] = ACTIONS(4957), + [anon_sym_STAR] = ACTIONS(4957), + [sym_label] = ACTIONS(4957), + [anon_sym_in] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_QMARK_COLON] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_null] = ACTIONS(4957), + [anon_sym_if] = ACTIONS(4957), + [anon_sym_else] = ACTIONS(4957), + [anon_sym_when] = ACTIONS(4957), + [anon_sym_try] = ACTIONS(4957), + [anon_sym_throw] = ACTIONS(4957), + [anon_sym_return] = ACTIONS(4957), + [anon_sym_continue] = ACTIONS(4957), + [anon_sym_break] = ACTIONS(4957), + [anon_sym_COLON_COLON] = ACTIONS(4959), + [anon_sym_PLUS_EQ] = ACTIONS(4959), + [anon_sym_DASH_EQ] = ACTIONS(4959), + [anon_sym_STAR_EQ] = ACTIONS(4959), + [anon_sym_SLASH_EQ] = ACTIONS(4959), + [anon_sym_PERCENT_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4959), + [anon_sym_LT_EQ] = ACTIONS(4959), + [anon_sym_GT_EQ] = ACTIONS(4959), + [anon_sym_BANGin] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_BANGis] = ACTIONS(4959), + [anon_sym_PLUS] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_as_QMARK] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4957), + [anon_sym_BANG_BANG] = ACTIONS(4959), + [anon_sym_data] = ACTIONS(4957), + [anon_sym_inner] = ACTIONS(4957), + [anon_sym_expect] = ACTIONS(4957), + [anon_sym_actual] = ACTIONS(4957), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4959), + [anon_sym_continue_AT] = ACTIONS(4959), + [anon_sym_break_AT] = ACTIONS(4959), + [sym_real_literal] = ACTIONS(4959), + [sym_integer_literal] = ACTIONS(4957), + [sym_hex_literal] = ACTIONS(4959), + [sym_bin_literal] = ACTIONS(4959), + [anon_sym_true] = ACTIONS(4957), + [anon_sym_false] = ACTIONS(4957), + [anon_sym_SQUOTE] = ACTIONS(4959), + [sym__backtick_identifier] = ACTIONS(4959), + [sym__automatic_semicolon] = ACTIONS(4959), + [sym_safe_nav] = ACTIONS(4959), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4959), + }, + [3322] = { + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_RBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RPAREN] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_DASH_GT] = ACTIONS(3914), + [sym_label] = ACTIONS(3914), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_while] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_suspend] = ACTIONS(3912), + [anon_sym_sealed] = ACTIONS(3912), + [anon_sym_annotation] = ACTIONS(3912), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_override] = ACTIONS(3912), + [anon_sym_lateinit] = ACTIONS(3912), + [anon_sym_public] = ACTIONS(3912), + [anon_sym_private] = ACTIONS(3912), + [anon_sym_internal] = ACTIONS(3912), + [anon_sym_protected] = ACTIONS(3912), + [anon_sym_tailrec] = ACTIONS(3912), + [anon_sym_operator] = ACTIONS(3912), + [anon_sym_infix] = ACTIONS(3912), + [anon_sym_inline] = ACTIONS(3912), + [anon_sym_external] = ACTIONS(3912), + [sym_property_modifier] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3912), + [anon_sym_final] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3912), + [anon_sym_vararg] = ACTIONS(3912), + [anon_sym_noinline] = ACTIONS(3912), + [anon_sym_crossinline] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), + }, + [3323] = { + [sym__alpha_identifier] = ACTIONS(4929), + [anon_sym_AT] = ACTIONS(4931), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_as] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4929), + [anon_sym_LBRACE] = ACTIONS(4931), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_LPAREN] = ACTIONS(4931), + [anon_sym_COMMA] = ACTIONS(4931), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_where] = ACTIONS(4929), + [anon_sym_object] = ACTIONS(4929), + [anon_sym_fun] = ACTIONS(4929), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_get] = ACTIONS(4929), + [anon_sym_set] = ACTIONS(4929), + [anon_sym_this] = ACTIONS(4929), + [anon_sym_super] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [sym_label] = ACTIONS(4929), + [anon_sym_in] = ACTIONS(4929), + [anon_sym_DOT_DOT] = ACTIONS(4931), + [anon_sym_QMARK_COLON] = ACTIONS(4931), + [anon_sym_AMP_AMP] = ACTIONS(4931), + [anon_sym_PIPE_PIPE] = ACTIONS(4931), + [anon_sym_null] = ACTIONS(4929), + [anon_sym_if] = ACTIONS(4929), + [anon_sym_else] = ACTIONS(4929), + [anon_sym_when] = ACTIONS(4929), + [anon_sym_try] = ACTIONS(4929), + [anon_sym_throw] = ACTIONS(4929), + [anon_sym_return] = ACTIONS(4929), + [anon_sym_continue] = ACTIONS(4929), + [anon_sym_break] = ACTIONS(4929), + [anon_sym_COLON_COLON] = ACTIONS(4931), + [anon_sym_PLUS_EQ] = ACTIONS(4931), + [anon_sym_DASH_EQ] = ACTIONS(4931), + [anon_sym_STAR_EQ] = ACTIONS(4931), + [anon_sym_SLASH_EQ] = ACTIONS(4931), + [anon_sym_PERCENT_EQ] = ACTIONS(4931), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4931), + [anon_sym_EQ_EQ] = ACTIONS(4929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4931), + [anon_sym_LT_EQ] = ACTIONS(4931), + [anon_sym_GT_EQ] = ACTIONS(4931), + [anon_sym_BANGin] = ACTIONS(4931), + [anon_sym_is] = ACTIONS(4929), + [anon_sym_BANGis] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_as_QMARK] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4931), + [anon_sym_DASH_DASH] = ACTIONS(4931), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_BANG_BANG] = ACTIONS(4931), + [anon_sym_data] = ACTIONS(4929), + [anon_sym_inner] = ACTIONS(4929), + [anon_sym_expect] = ACTIONS(4929), + [anon_sym_actual] = ACTIONS(4929), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4931), + [anon_sym_continue_AT] = ACTIONS(4931), + [anon_sym_break_AT] = ACTIONS(4931), + [sym_real_literal] = ACTIONS(4931), + [sym_integer_literal] = ACTIONS(4929), + [sym_hex_literal] = ACTIONS(4931), + [sym_bin_literal] = ACTIONS(4931), + [anon_sym_true] = ACTIONS(4929), + [anon_sym_false] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4931), + [sym__backtick_identifier] = ACTIONS(4931), + [sym__automatic_semicolon] = ACTIONS(4931), + [sym_safe_nav] = ACTIONS(4931), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4931), + }, + [3324] = { + [sym__alpha_identifier] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(4849), + [anon_sym_as] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4849), + [anon_sym_COMMA] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_GT] = ACTIONS(4847), + [anon_sym_where] = ACTIONS(4847), + [anon_sym_object] = ACTIONS(4847), + [anon_sym_fun] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(4849), + [anon_sym_get] = ACTIONS(4847), + [anon_sym_set] = ACTIONS(4847), + [anon_sym_this] = ACTIONS(4847), + [anon_sym_super] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4847), + [sym_label] = ACTIONS(4847), + [anon_sym_in] = ACTIONS(4847), + [anon_sym_DOT_DOT] = ACTIONS(4849), + [anon_sym_QMARK_COLON] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_null] = ACTIONS(4847), + [anon_sym_if] = ACTIONS(4847), + [anon_sym_else] = ACTIONS(4847), + [anon_sym_when] = ACTIONS(4847), + [anon_sym_try] = ACTIONS(4847), + [anon_sym_throw] = ACTIONS(4847), + [anon_sym_return] = ACTIONS(4847), + [anon_sym_continue] = ACTIONS(4847), + [anon_sym_break] = ACTIONS(4847), + [anon_sym_COLON_COLON] = ACTIONS(4849), + [anon_sym_PLUS_EQ] = ACTIONS(4849), + [anon_sym_DASH_EQ] = ACTIONS(4849), + [anon_sym_STAR_EQ] = ACTIONS(4849), + [anon_sym_SLASH_EQ] = ACTIONS(4849), + [anon_sym_PERCENT_EQ] = ACTIONS(4849), + [anon_sym_BANG_EQ] = ACTIONS(4847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), + [anon_sym_EQ_EQ] = ACTIONS(4847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), + [anon_sym_LT_EQ] = ACTIONS(4849), + [anon_sym_GT_EQ] = ACTIONS(4849), + [anon_sym_BANGin] = ACTIONS(4849), + [anon_sym_is] = ACTIONS(4847), + [anon_sym_BANGis] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(4847), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_SLASH] = ACTIONS(4847), + [anon_sym_PERCENT] = ACTIONS(4847), + [anon_sym_as_QMARK] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_BANG_BANG] = ACTIONS(4849), + [anon_sym_data] = ACTIONS(4847), + [anon_sym_inner] = ACTIONS(4847), + [anon_sym_expect] = ACTIONS(4847), + [anon_sym_actual] = ACTIONS(4847), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4849), + [anon_sym_continue_AT] = ACTIONS(4849), + [anon_sym_break_AT] = ACTIONS(4849), + [sym_real_literal] = ACTIONS(4849), + [sym_integer_literal] = ACTIONS(4847), + [sym_hex_literal] = ACTIONS(4849), + [sym_bin_literal] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4847), + [anon_sym_false] = ACTIONS(4847), + [anon_sym_SQUOTE] = ACTIONS(4849), + [sym__backtick_identifier] = ACTIONS(4849), + [sym__automatic_semicolon] = ACTIONS(4849), + [sym_safe_nav] = ACTIONS(4849), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4849), + }, + [3325] = { + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_fun] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3346), + [anon_sym_super] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [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(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_BANG_BANG] = ACTIONS(3360), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3360), + [anon_sym_continue_AT] = ACTIONS(3360), + [anon_sym_break_AT] = ACTIONS(3360), + [sym_real_literal] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3346), + [sym_hex_literal] = ACTIONS(3360), + [sym_bin_literal] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [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), + }, + [3326] = { + [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(4837), + [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(6590), + [anon_sym_PLUS_EQ] = ACTIONS(4839), + [anon_sym_DASH_EQ] = ACTIONS(4839), + [anon_sym_STAR_EQ] = ACTIONS(4839), + [anon_sym_SLASH_EQ] = ACTIONS(4839), + [anon_sym_PERCENT_EQ] = ACTIONS(4839), + [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_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), + }, + [3327] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6593), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [anon_sym_DASH_GT] = ACTIONS(4296), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + }, + [3328] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6595), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(4310), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + }, + [3329] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(6597), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [anon_sym_DASH_GT] = ACTIONS(4843), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_while] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + }, + [3330] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6599), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), + }, [3331] = { - [sym__alpha_identifier] = ACTIONS(4746), - [anon_sym_AT] = ACTIONS(4748), - [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_expect] = ACTIONS(4746), - [anon_sym_actual] = ACTIONS(4746), + [sym_class_body] = STATE(3305), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4748), - [anon_sym_continue_AT] = ACTIONS(4748), - [anon_sym_break_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), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4748), + [sym__string_start] = ACTIONS(4392), }, [3332] = { - [sym__alpha_identifier] = ACTIONS(4909), - [anon_sym_AT] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_RBRACK] = ACTIONS(4911), - [anon_sym_as] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(4909), - [anon_sym_LBRACE] = ACTIONS(4911), - [anon_sym_RBRACE] = ACTIONS(4911), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4911), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_where] = ACTIONS(4909), - [anon_sym_DOT] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(4911), - [anon_sym_get] = ACTIONS(4909), - [anon_sym_set] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_DASH_GT] = ACTIONS(4911), - [sym_label] = ACTIONS(4911), - [anon_sym_in] = ACTIONS(4909), - [anon_sym_while] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(4911), - [anon_sym_QMARK_COLON] = ACTIONS(4911), - [anon_sym_AMP_AMP] = ACTIONS(4911), - [anon_sym_PIPE_PIPE] = ACTIONS(4911), - [anon_sym_else] = ACTIONS(4909), - [anon_sym_COLON_COLON] = ACTIONS(4911), - [anon_sym_PLUS_EQ] = ACTIONS(4911), - [anon_sym_DASH_EQ] = ACTIONS(4911), - [anon_sym_STAR_EQ] = ACTIONS(4911), - [anon_sym_SLASH_EQ] = ACTIONS(4911), - [anon_sym_PERCENT_EQ] = ACTIONS(4911), - [anon_sym_BANG_EQ] = ACTIONS(4909), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4911), - [anon_sym_EQ_EQ] = ACTIONS(4909), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4911), - [anon_sym_LT_EQ] = ACTIONS(4911), - [anon_sym_GT_EQ] = ACTIONS(4911), - [anon_sym_BANGin] = ACTIONS(4911), - [anon_sym_is] = ACTIONS(4909), - [anon_sym_BANGis] = ACTIONS(4911), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_PERCENT] = ACTIONS(4909), - [anon_sym_as_QMARK] = ACTIONS(4911), - [anon_sym_PLUS_PLUS] = ACTIONS(4911), - [anon_sym_DASH_DASH] = ACTIONS(4911), - [anon_sym_BANG_BANG] = ACTIONS(4911), - [anon_sym_suspend] = ACTIONS(4909), - [anon_sym_sealed] = ACTIONS(4909), - [anon_sym_annotation] = ACTIONS(4909), - [anon_sym_data] = ACTIONS(4909), - [anon_sym_inner] = ACTIONS(4909), - [anon_sym_override] = ACTIONS(4909), - [anon_sym_lateinit] = ACTIONS(4909), - [anon_sym_public] = ACTIONS(4909), - [anon_sym_private] = ACTIONS(4909), - [anon_sym_internal] = ACTIONS(4909), - [anon_sym_protected] = ACTIONS(4909), - [anon_sym_tailrec] = ACTIONS(4909), - [anon_sym_operator] = ACTIONS(4909), - [anon_sym_infix] = ACTIONS(4909), - [anon_sym_inline] = ACTIONS(4909), - [anon_sym_external] = ACTIONS(4909), - [sym_property_modifier] = ACTIONS(4909), - [anon_sym_abstract] = ACTIONS(4909), - [anon_sym_final] = ACTIONS(4909), - [anon_sym_open] = ACTIONS(4909), - [anon_sym_vararg] = ACTIONS(4909), - [anon_sym_noinline] = ACTIONS(4909), - [anon_sym_crossinline] = ACTIONS(4909), - [anon_sym_expect] = ACTIONS(4909), - [anon_sym_actual] = ACTIONS(4909), + [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(6603), + [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_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4911), - [sym_safe_nav] = ACTIONS(4911), + [anon_sym_return_AT] = ACTIONS(4828), + [anon_sym_continue_AT] = ACTIONS(4828), + [anon_sym_break_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), }, [3333] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_object] = ACTIONS(4995), - [anon_sym_fun] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_this] = ACTIONS(4995), - [anon_sym_super] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [sym_label] = ACTIONS(4995), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_null] = ACTIONS(4995), - [anon_sym_if] = ACTIONS(4995), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_try] = ACTIONS(4995), - [anon_sym_throw] = ACTIONS(4995), - [anon_sym_return] = ACTIONS(4995), - [anon_sym_continue] = ACTIONS(4995), - [anon_sym_break] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_expect] = ACTIONS(4995), - [anon_sym_actual] = ACTIONS(4995), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4997), - [anon_sym_continue_AT] = ACTIONS(4997), - [anon_sym_break_AT] = ACTIONS(4997), - [sym_real_literal] = ACTIONS(4997), - [sym_integer_literal] = ACTIONS(4995), - [sym_hex_literal] = ACTIONS(4997), - [sym_bin_literal] = ACTIONS(4997), - [anon_sym_true] = ACTIONS(4995), - [anon_sym_false] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4997), - [sym__backtick_identifier] = ACTIONS(4997), - [sym__automatic_semicolon] = ACTIONS(4997), - [sym_safe_nav] = ACTIONS(4997), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4997), + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_RBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_RPAREN] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [anon_sym_DASH_GT] = ACTIONS(4037), + [sym_label] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_while] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_suspend] = ACTIONS(4035), + [anon_sym_sealed] = ACTIONS(4035), + [anon_sym_annotation] = ACTIONS(4035), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_override] = ACTIONS(4035), + [anon_sym_lateinit] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_private] = ACTIONS(4035), + [anon_sym_internal] = ACTIONS(4035), + [anon_sym_protected] = ACTIONS(4035), + [anon_sym_tailrec] = ACTIONS(4035), + [anon_sym_operator] = ACTIONS(4035), + [anon_sym_infix] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_external] = ACTIONS(4035), + [sym_property_modifier] = ACTIONS(4035), + [anon_sym_abstract] = ACTIONS(4035), + [anon_sym_final] = ACTIONS(4035), + [anon_sym_open] = ACTIONS(4035), + [anon_sym_vararg] = ACTIONS(4035), + [anon_sym_noinline] = ACTIONS(4035), + [anon_sym_crossinline] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), }, [3334] = { [sym__alpha_identifier] = ACTIONS(4822), @@ -369426,88 +369503,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(4824), }, [3335] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [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_DOT] = 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_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), - [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), + [sym_type_arguments] = STATE(3495), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4148), + [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(4148), + [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(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [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(4148), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [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(4148), + [anon_sym_sealed] = ACTIONS(4148), + [anon_sym_annotation] = ACTIONS(4148), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_override] = ACTIONS(4148), + [anon_sym_lateinit] = ACTIONS(4148), + [anon_sym_public] = ACTIONS(4148), + [anon_sym_private] = ACTIONS(4148), + [anon_sym_internal] = ACTIONS(4148), + [anon_sym_protected] = ACTIONS(4148), + [anon_sym_tailrec] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_infix] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym_external] = ACTIONS(4148), + [sym_property_modifier] = ACTIONS(4148), + [anon_sym_abstract] = ACTIONS(4148), + [anon_sym_final] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4148), + [anon_sym_vararg] = ACTIONS(4148), + [anon_sym_noinline] = ACTIONS(4148), + [anon_sym_crossinline] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [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), }, [3336] = { + [sym__alpha_identifier] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RPAREN] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_DASH_GT] = ACTIONS(3076), + [sym_label] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3076), + [anon_sym_QMARK_COLON] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_as_QMARK] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(3076), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(3074), + [anon_sym_inner] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(3074), + [anon_sym_actual] = ACTIONS(3074), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3076), + [sym_multiline_comment] = ACTIONS(3), + }, + [3337] = { [sym__alpha_identifier] = ACTIONS(4818), [anon_sym_AT] = ACTIONS(4820), [anon_sym_LBRACK] = ACTIONS(4820), @@ -369589,35 +369748,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4820), }, - [3337] = { + [3338] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(1780), + [anon_sym_sealed] = ACTIONS(1780), + [anon_sym_annotation] = ACTIONS(1780), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_lateinit] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_internal] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_tailrec] = ACTIONS(1780), + [anon_sym_operator] = ACTIONS(1780), + [anon_sym_infix] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [anon_sym_external] = ACTIONS(1780), + [sym_property_modifier] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_final] = ACTIONS(1780), + [anon_sym_open] = ACTIONS(1780), + [anon_sym_vararg] = ACTIONS(1780), + [anon_sym_noinline] = ACTIONS(1780), + [anon_sym_crossinline] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [3339] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_RBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_DASH_GT] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [3340] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_RBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(6610), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_DASH_GT] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [3341] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [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_DOT] = 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_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), + [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), + }, + [3342] = { [sym__alpha_identifier] = ACTIONS(4810), [anon_sym_AT] = ACTIONS(4812), [anon_sym_LBRACK] = ACTIONS(4812), - [anon_sym_RBRACK] = ACTIONS(4812), [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_object] = ACTIONS(4810), + [anon_sym_fun] = ACTIONS(4810), [anon_sym_DOT] = 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), - [anon_sym_DASH_GT] = ACTIONS(4812), - [sym_label] = ACTIONS(4812), + [sym_label] = ACTIONS(4810), [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_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), @@ -369640,120 +370135,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), + [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), }, - [3338] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [anon_sym_DASH_GT] = ACTIONS(4511), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_while] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - }, - [3339] = { + [3343] = { [sym__alpha_identifier] = ACTIONS(4806), [anon_sym_AT] = ACTIONS(4808), [anon_sym_LBRACK] = ACTIONS(4808), @@ -369835,937 +370240,1601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4808), }, - [3340] = { - [sym__alpha_identifier] = ACTIONS(4917), - [anon_sym_AT] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_as] = ACTIONS(4917), - [anon_sym_EQ] = ACTIONS(4917), - [anon_sym_LBRACE] = ACTIONS(4919), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_where] = ACTIONS(4917), - [anon_sym_object] = ACTIONS(4917), - [anon_sym_fun] = ACTIONS(4917), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_SEMI] = ACTIONS(4919), - [anon_sym_get] = ACTIONS(4917), - [anon_sym_set] = ACTIONS(4917), - [anon_sym_this] = ACTIONS(4917), - [anon_sym_super] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [sym_label] = ACTIONS(4917), - [anon_sym_in] = ACTIONS(4917), - [anon_sym_DOT_DOT] = ACTIONS(4919), - [anon_sym_QMARK_COLON] = ACTIONS(4919), - [anon_sym_AMP_AMP] = ACTIONS(4919), - [anon_sym_PIPE_PIPE] = ACTIONS(4919), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_if] = ACTIONS(4917), - [anon_sym_else] = ACTIONS(4917), - [anon_sym_when] = ACTIONS(4917), - [anon_sym_try] = ACTIONS(4917), - [anon_sym_throw] = ACTIONS(4917), - [anon_sym_return] = ACTIONS(4917), - [anon_sym_continue] = ACTIONS(4917), - [anon_sym_break] = ACTIONS(4917), - [anon_sym_COLON_COLON] = ACTIONS(4919), - [anon_sym_PLUS_EQ] = ACTIONS(4919), - [anon_sym_DASH_EQ] = ACTIONS(4919), - [anon_sym_STAR_EQ] = ACTIONS(4919), - [anon_sym_SLASH_EQ] = ACTIONS(4919), - [anon_sym_PERCENT_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4919), - [anon_sym_LT_EQ] = ACTIONS(4919), - [anon_sym_GT_EQ] = ACTIONS(4919), - [anon_sym_BANGin] = ACTIONS(4919), - [anon_sym_is] = ACTIONS(4917), - [anon_sym_BANGis] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_PERCENT] = ACTIONS(4917), - [anon_sym_as_QMARK] = ACTIONS(4919), - [anon_sym_PLUS_PLUS] = ACTIONS(4919), - [anon_sym_DASH_DASH] = ACTIONS(4919), - [anon_sym_BANG] = ACTIONS(4917), - [anon_sym_BANG_BANG] = ACTIONS(4919), - [anon_sym_data] = ACTIONS(4917), - [anon_sym_inner] = ACTIONS(4917), - [anon_sym_expect] = ACTIONS(4917), - [anon_sym_actual] = ACTIONS(4917), + [3344] = { + [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_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), - [anon_sym_return_AT] = ACTIONS(4919), - [anon_sym_continue_AT] = ACTIONS(4919), - [anon_sym_break_AT] = ACTIONS(4919), - [sym_real_literal] = ACTIONS(4919), - [sym_integer_literal] = ACTIONS(4917), - [sym_hex_literal] = ACTIONS(4919), - [sym_bin_literal] = ACTIONS(4919), - [anon_sym_true] = ACTIONS(4917), - [anon_sym_false] = ACTIONS(4917), - [anon_sym_SQUOTE] = ACTIONS(4919), - [sym__backtick_identifier] = ACTIONS(4919), - [sym__automatic_semicolon] = ACTIONS(4919), - [sym_safe_nav] = ACTIONS(4919), + [sym__backtick_identifier] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4919), }, - [3341] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_RBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4718), - [anon_sym_GT] = ACTIONS(4718), - [anon_sym_where] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [anon_sym_DASH_GT] = ACTIONS(4720), - [sym_label] = ACTIONS(4720), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_while] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), + [3345] = { + [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_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), }, - [3342] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [anon_sym_DASH_GT] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [3346] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_RBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_RPAREN] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [anon_sym_DASH_GT] = ACTIONS(4800), + [sym_label] = ACTIONS(4800), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_while] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_suspend] = ACTIONS(4798), + [anon_sym_sealed] = ACTIONS(4798), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_override] = ACTIONS(4798), + [anon_sym_lateinit] = ACTIONS(4798), + [anon_sym_public] = ACTIONS(4798), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_internal] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_tailrec] = ACTIONS(4798), + [anon_sym_operator] = ACTIONS(4798), + [anon_sym_infix] = ACTIONS(4798), + [anon_sym_inline] = ACTIONS(4798), + [anon_sym_external] = ACTIONS(4798), + [sym_property_modifier] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_final] = ACTIONS(4798), + [anon_sym_open] = ACTIONS(4798), + [anon_sym_vararg] = ACTIONS(4798), + [anon_sym_noinline] = ACTIONS(4798), + [anon_sym_crossinline] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), [sym_multiline_comment] = ACTIONS(3), }, - [3343] = { - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [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_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(3280), - [sym_safe_nav] = ACTIONS(3280), + [3347] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [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_DOT] = 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_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), + [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), }, - [3344] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_object] = ACTIONS(5025), - [anon_sym_fun] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_this] = ACTIONS(5025), - [anon_sym_super] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [sym_label] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_null] = ACTIONS(5025), - [anon_sym_if] = ACTIONS(5025), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_when] = ACTIONS(5025), - [anon_sym_try] = ACTIONS(5025), - [anon_sym_throw] = ACTIONS(5025), - [anon_sym_return] = ACTIONS(5025), - [anon_sym_continue] = ACTIONS(5025), - [anon_sym_break] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5027), - [anon_sym_continue_AT] = ACTIONS(5027), - [anon_sym_break_AT] = ACTIONS(5027), - [sym_real_literal] = ACTIONS(5027), - [sym_integer_literal] = ACTIONS(5025), - [sym_hex_literal] = ACTIONS(5027), - [sym_bin_literal] = ACTIONS(5027), - [anon_sym_true] = ACTIONS(5025), - [anon_sym_false] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5027), - [sym__backtick_identifier] = ACTIONS(5027), - [sym__automatic_semicolon] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5027), + [3348] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_as] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_COMMA] = ACTIONS(4800), + [anon_sym_LT] = ACTIONS(4798), + [anon_sym_GT] = ACTIONS(4798), + [anon_sym_where] = ACTIONS(4798), + [anon_sym_object] = ACTIONS(4798), + [anon_sym_fun] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4798), + [anon_sym_set] = ACTIONS(4798), + [anon_sym_this] = ACTIONS(4798), + [anon_sym_super] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(4800), + [anon_sym_QMARK_COLON] = ACTIONS(4800), + [anon_sym_AMP_AMP] = ACTIONS(4800), + [anon_sym_PIPE_PIPE] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_try] = ACTIONS(4798), + [anon_sym_throw] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_continue] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4800), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4800), + [anon_sym_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_EQ] = ACTIONS(4800), + [anon_sym_BANGin] = ACTIONS(4800), + [anon_sym_is] = ACTIONS(4798), + [anon_sym_BANGis] = ACTIONS(4800), + [anon_sym_PLUS] = ACTIONS(4798), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_SLASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4800), + [anon_sym_PLUS_PLUS] = ACTIONS(4800), + [anon_sym_DASH_DASH] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4800), + [anon_sym_data] = ACTIONS(4798), + [anon_sym_inner] = ACTIONS(4798), + [anon_sym_expect] = ACTIONS(4798), + [anon_sym_actual] = ACTIONS(4798), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4800), + [anon_sym_continue_AT] = ACTIONS(4800), + [anon_sym_break_AT] = ACTIONS(4800), + [sym_real_literal] = ACTIONS(4800), + [sym_integer_literal] = ACTIONS(4798), + [sym_hex_literal] = ACTIONS(4800), + [sym_bin_literal] = ACTIONS(4800), + [anon_sym_true] = ACTIONS(4798), + [anon_sym_false] = ACTIONS(4798), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4800), }, - [3345] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [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_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), + [3349] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_when] = ACTIONS(4794), + [anon_sym_try] = ACTIONS(4794), + [anon_sym_throw] = ACTIONS(4794), + [anon_sym_return] = ACTIONS(4794), + [anon_sym_continue] = ACTIONS(4794), + [anon_sym_break] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4796), + [anon_sym_continue_AT] = ACTIONS(4796), + [anon_sym_break_AT] = ACTIONS(4796), + [sym_real_literal] = ACTIONS(4796), + [sym_integer_literal] = ACTIONS(4794), + [sym_hex_literal] = ACTIONS(4796), + [sym_bin_literal] = ACTIONS(4796), + [anon_sym_true] = ACTIONS(4794), + [anon_sym_false] = ACTIONS(4794), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), + }, + [3350] = { + [sym__alpha_identifier] = ACTIONS(4989), + [anon_sym_AT] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_where] = ACTIONS(4989), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_get] = ACTIONS(4989), + [anon_sym_set] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4989), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_label] = ACTIONS(4991), + [anon_sym_in] = ACTIONS(4989), + [anon_sym_while] = ACTIONS(4989), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_QMARK_COLON] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_else] = ACTIONS(4989), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_PLUS_EQ] = ACTIONS(4991), + [anon_sym_DASH_EQ] = ACTIONS(4991), + [anon_sym_STAR_EQ] = ACTIONS(4991), + [anon_sym_SLASH_EQ] = ACTIONS(4991), + [anon_sym_PERCENT_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_BANGin] = ACTIONS(4991), + [anon_sym_is] = ACTIONS(4989), + [anon_sym_BANGis] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4989), + [anon_sym_as_QMARK] = ACTIONS(4991), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_BANG_BANG] = ACTIONS(4991), + [anon_sym_suspend] = ACTIONS(4989), + [anon_sym_sealed] = ACTIONS(4989), + [anon_sym_annotation] = ACTIONS(4989), + [anon_sym_data] = ACTIONS(4989), + [anon_sym_inner] = ACTIONS(4989), + [anon_sym_override] = ACTIONS(4989), + [anon_sym_lateinit] = ACTIONS(4989), + [anon_sym_public] = ACTIONS(4989), + [anon_sym_private] = ACTIONS(4989), + [anon_sym_internal] = ACTIONS(4989), + [anon_sym_protected] = ACTIONS(4989), + [anon_sym_tailrec] = ACTIONS(4989), + [anon_sym_operator] = ACTIONS(4989), + [anon_sym_infix] = ACTIONS(4989), + [anon_sym_inline] = ACTIONS(4989), + [anon_sym_external] = ACTIONS(4989), + [sym_property_modifier] = ACTIONS(4989), + [anon_sym_abstract] = ACTIONS(4989), + [anon_sym_final] = ACTIONS(4989), + [anon_sym_open] = ACTIONS(4989), + [anon_sym_vararg] = ACTIONS(4989), + [anon_sym_noinline] = ACTIONS(4989), + [anon_sym_crossinline] = ACTIONS(4989), + [anon_sym_expect] = ACTIONS(4989), + [anon_sym_actual] = ACTIONS(4989), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4760), - [anon_sym_continue_AT] = ACTIONS(4760), - [anon_sym_break_AT] = ACTIONS(4760), - [sym_real_literal] = ACTIONS(4760), - [sym_integer_literal] = ACTIONS(4758), - [sym_hex_literal] = ACTIONS(4760), - [sym_bin_literal] = ACTIONS(4760), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [anon_sym_SQUOTE] = ACTIONS(4760), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(4991), + [sym_safe_nav] = ACTIONS(4991), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4760), }, - [3346] = { - [sym__alpha_identifier] = ACTIONS(4949), - [anon_sym_AT] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_as] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_RBRACE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_where] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_get] = ACTIONS(4949), - [anon_sym_set] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_DASH_GT] = ACTIONS(4951), - [sym_label] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4949), - [anon_sym_while] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4951), - [anon_sym_QMARK_COLON] = ACTIONS(4951), - [anon_sym_AMP_AMP] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4951), - [anon_sym_else] = ACTIONS(4949), - [anon_sym_COLON_COLON] = ACTIONS(4951), - [anon_sym_PLUS_EQ] = ACTIONS(4951), - [anon_sym_DASH_EQ] = ACTIONS(4951), - [anon_sym_STAR_EQ] = ACTIONS(4951), - [anon_sym_SLASH_EQ] = ACTIONS(4951), - [anon_sym_PERCENT_EQ] = ACTIONS(4951), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4951), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4951), - [anon_sym_BANGin] = ACTIONS(4951), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_BANGis] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_as_QMARK] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4951), - [anon_sym_BANG_BANG] = ACTIONS(4951), - [anon_sym_suspend] = ACTIONS(4949), - [anon_sym_sealed] = ACTIONS(4949), - [anon_sym_annotation] = ACTIONS(4949), - [anon_sym_data] = ACTIONS(4949), - [anon_sym_inner] = ACTIONS(4949), - [anon_sym_override] = ACTIONS(4949), - [anon_sym_lateinit] = ACTIONS(4949), - [anon_sym_public] = ACTIONS(4949), - [anon_sym_private] = ACTIONS(4949), - [anon_sym_internal] = ACTIONS(4949), - [anon_sym_protected] = ACTIONS(4949), - [anon_sym_tailrec] = ACTIONS(4949), - [anon_sym_operator] = ACTIONS(4949), - [anon_sym_infix] = ACTIONS(4949), - [anon_sym_inline] = ACTIONS(4949), - [anon_sym_external] = ACTIONS(4949), - [sym_property_modifier] = ACTIONS(4949), - [anon_sym_abstract] = ACTIONS(4949), - [anon_sym_final] = ACTIONS(4949), - [anon_sym_open] = ACTIONS(4949), - [anon_sym_vararg] = ACTIONS(4949), - [anon_sym_noinline] = ACTIONS(4949), - [anon_sym_crossinline] = ACTIONS(4949), - [anon_sym_expect] = ACTIONS(4949), - [anon_sym_actual] = ACTIONS(4949), + [3351] = { + [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_expect] = ACTIONS(4790), + [anon_sym_actual] = ACTIONS(4790), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4951), - [sym_safe_nav] = ACTIONS(4951), + [anon_sym_return_AT] = ACTIONS(4792), + [anon_sym_continue_AT] = ACTIONS(4792), + [anon_sym_break_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), }, - [3347] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_object] = ACTIONS(4840), - [anon_sym_fun] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_this] = ACTIONS(4840), - [anon_sym_super] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), - [anon_sym_if] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_when] = ACTIONS(4840), - [anon_sym_try] = ACTIONS(4840), - [anon_sym_throw] = ACTIONS(4840), - [anon_sym_return] = ACTIONS(4840), - [anon_sym_continue] = ACTIONS(4840), - [anon_sym_break] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(6538), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4842), - [anon_sym_continue_AT] = ACTIONS(4842), - [anon_sym_break_AT] = ACTIONS(4842), - [sym_real_literal] = ACTIONS(4842), - [sym_integer_literal] = ACTIONS(4840), - [sym_hex_literal] = ACTIONS(4842), - [sym_bin_literal] = ACTIONS(4842), - [anon_sym_true] = ACTIONS(4840), - [anon_sym_false] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4842), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4842), + [3352] = { + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_object] = ACTIONS(3912), + [anon_sym_fun] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_this] = ACTIONS(3912), + [anon_sym_super] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [sym_label] = ACTIONS(3912), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_null] = ACTIONS(3912), + [anon_sym_if] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_when] = ACTIONS(3912), + [anon_sym_try] = ACTIONS(3912), + [anon_sym_throw] = ACTIONS(3912), + [anon_sym_return] = ACTIONS(3912), + [anon_sym_continue] = ACTIONS(3912), + [anon_sym_break] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3914), + [anon_sym_continue_AT] = ACTIONS(3914), + [anon_sym_break_AT] = ACTIONS(3914), + [sym_real_literal] = ACTIONS(3914), + [sym_integer_literal] = ACTIONS(3912), + [sym_hex_literal] = ACTIONS(3914), + [sym_bin_literal] = ACTIONS(3914), + [anon_sym_true] = ACTIONS(3912), + [anon_sym_false] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3914), + [sym__backtick_identifier] = ACTIONS(3914), + [sym__automatic_semicolon] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3914), }, - [3348] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [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_DOT] = 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_expect] = ACTIONS(5055), - [anon_sym_actual] = ACTIONS(5055), + [3353] = { + [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_expect] = ACTIONS(4786), + [anon_sym_actual] = ACTIONS(4786), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5057), - [anon_sym_continue_AT] = ACTIONS(5057), - [anon_sym_break_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), + [anon_sym_return_AT] = ACTIONS(4788), + [anon_sym_continue_AT] = ACTIONS(4788), + [anon_sym_break_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(5057), + [sym__string_start] = ACTIONS(4788), }, - [3349] = { - [sym__alpha_identifier] = ACTIONS(4887), - [anon_sym_AT] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_as] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4887), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_where] = ACTIONS(4887), - [anon_sym_object] = ACTIONS(4887), - [anon_sym_fun] = ACTIONS(4887), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_get] = ACTIONS(4887), - [anon_sym_set] = ACTIONS(4887), - [anon_sym_this] = ACTIONS(4887), - [anon_sym_super] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [sym_label] = ACTIONS(4887), - [anon_sym_in] = ACTIONS(4887), - [anon_sym_DOT_DOT] = ACTIONS(4889), - [anon_sym_QMARK_COLON] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_null] = ACTIONS(4887), - [anon_sym_if] = ACTIONS(4887), - [anon_sym_else] = ACTIONS(4887), - [anon_sym_when] = ACTIONS(4887), - [anon_sym_try] = ACTIONS(4887), - [anon_sym_throw] = ACTIONS(4887), - [anon_sym_return] = ACTIONS(4887), - [anon_sym_continue] = ACTIONS(4887), - [anon_sym_break] = ACTIONS(4887), - [anon_sym_COLON_COLON] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(4889), - [anon_sym_DASH_EQ] = ACTIONS(4889), - [anon_sym_STAR_EQ] = ACTIONS(4889), - [anon_sym_SLASH_EQ] = ACTIONS(4889), - [anon_sym_PERCENT_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4889), - [anon_sym_LT_EQ] = ACTIONS(4889), - [anon_sym_GT_EQ] = ACTIONS(4889), - [anon_sym_BANGin] = ACTIONS(4889), - [anon_sym_is] = ACTIONS(4887), - [anon_sym_BANGis] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_PERCENT] = ACTIONS(4887), - [anon_sym_as_QMARK] = ACTIONS(4889), - [anon_sym_PLUS_PLUS] = ACTIONS(4889), - [anon_sym_DASH_DASH] = ACTIONS(4889), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_BANG_BANG] = ACTIONS(4889), - [anon_sym_data] = ACTIONS(4887), - [anon_sym_inner] = ACTIONS(4887), - [anon_sym_expect] = ACTIONS(4887), - [anon_sym_actual] = ACTIONS(4887), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4889), - [anon_sym_continue_AT] = ACTIONS(4889), - [anon_sym_break_AT] = ACTIONS(4889), - [sym_real_literal] = ACTIONS(4889), - [sym_integer_literal] = ACTIONS(4887), - [sym_hex_literal] = ACTIONS(4889), - [sym_bin_literal] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4887), - [anon_sym_false] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4889), - [sym__backtick_identifier] = ACTIONS(4889), - [sym__automatic_semicolon] = ACTIONS(4889), - [sym_safe_nav] = ACTIONS(4889), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4889), + [3354] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_RBRACK] = ACTIONS(4637), + [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_DOT] = 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_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), }, - [3350] = { - [sym__alpha_identifier] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_object] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(3029), - [anon_sym_set] = ACTIONS(3029), - [anon_sym_this] = ACTIONS(3029), - [anon_sym_super] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [sym_label] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3031), - [anon_sym_QMARK_COLON] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_when] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_throw] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_as_QMARK] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_BANG_BANG] = ACTIONS(3031), - [anon_sym_data] = ACTIONS(3029), - [anon_sym_inner] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(3029), - [anon_sym_actual] = ACTIONS(3029), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3031), - [anon_sym_continue_AT] = ACTIONS(3031), - [anon_sym_break_AT] = ACTIONS(3031), - [sym_real_literal] = ACTIONS(3031), - [sym_integer_literal] = ACTIONS(3029), - [sym_hex_literal] = ACTIONS(3031), - [sym_bin_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3031), - [sym__backtick_identifier] = ACTIONS(3031), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3031), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3031), + [3355] = { + [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_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), + [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), }, - [3351] = { + [3356] = { + [sym__alpha_identifier] = ACTIONS(4833), + [anon_sym_AT] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_as] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4833), + [anon_sym_LBRACE] = ACTIONS(4835), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_object] = ACTIONS(4833), + [anon_sym_fun] = ACTIONS(4833), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4835), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_this] = ACTIONS(4833), + [anon_sym_super] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [sym_label] = ACTIONS(4833), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_DOT_DOT] = ACTIONS(4835), + [anon_sym_QMARK_COLON] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(4833), + [anon_sym_if] = ACTIONS(4833), + [anon_sym_else] = ACTIONS(4833), + [anon_sym_when] = ACTIONS(4833), + [anon_sym_try] = ACTIONS(4833), + [anon_sym_throw] = ACTIONS(4833), + [anon_sym_return] = ACTIONS(4833), + [anon_sym_continue] = ACTIONS(4833), + [anon_sym_break] = ACTIONS(4833), + [anon_sym_COLON_COLON] = ACTIONS(4835), + [anon_sym_PLUS_EQ] = ACTIONS(4835), + [anon_sym_DASH_EQ] = ACTIONS(4835), + [anon_sym_STAR_EQ] = ACTIONS(4835), + [anon_sym_SLASH_EQ] = ACTIONS(4835), + [anon_sym_PERCENT_EQ] = ACTIONS(4835), + [anon_sym_BANG_EQ] = ACTIONS(4833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), + [anon_sym_EQ_EQ] = ACTIONS(4833), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), + [anon_sym_LT_EQ] = ACTIONS(4835), + [anon_sym_GT_EQ] = ACTIONS(4835), + [anon_sym_BANGin] = ACTIONS(4835), + [anon_sym_is] = ACTIONS(4833), + [anon_sym_BANGis] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4833), + [anon_sym_as_QMARK] = ACTIONS(4835), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_BANG_BANG] = ACTIONS(4835), + [anon_sym_data] = ACTIONS(4833), + [anon_sym_inner] = ACTIONS(4833), + [anon_sym_expect] = ACTIONS(4833), + [anon_sym_actual] = ACTIONS(4833), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4835), + [anon_sym_continue_AT] = ACTIONS(4835), + [anon_sym_break_AT] = ACTIONS(4835), + [sym_real_literal] = ACTIONS(4835), + [sym_integer_literal] = ACTIONS(4833), + [sym_hex_literal] = ACTIONS(4835), + [sym_bin_literal] = ACTIONS(4835), + [anon_sym_true] = ACTIONS(4833), + [anon_sym_false] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4835), + [sym__backtick_identifier] = ACTIONS(4835), + [sym__automatic_semicolon] = ACTIONS(4835), + [sym_safe_nav] = ACTIONS(4835), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4835), + }, + [3357] = { + [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_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), + [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), + }, + [3358] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_as] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_object] = ACTIONS(4770), + [anon_sym_fun] = ACTIONS(4770), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_this] = ACTIONS(4770), + [anon_sym_super] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [sym_label] = ACTIONS(4770), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_QMARK_COLON] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4770), + [anon_sym_if] = ACTIONS(4770), + [anon_sym_else] = ACTIONS(4770), + [anon_sym_when] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4770), + [anon_sym_throw] = ACTIONS(4770), + [anon_sym_return] = ACTIONS(4770), + [anon_sym_continue] = ACTIONS(4770), + [anon_sym_break] = ACTIONS(4770), + [anon_sym_COLON_COLON] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4772), + [anon_sym_DASH_EQ] = ACTIONS(4772), + [anon_sym_STAR_EQ] = ACTIONS(4772), + [anon_sym_SLASH_EQ] = ACTIONS(4772), + [anon_sym_PERCENT_EQ] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4772), + [anon_sym_BANGin] = ACTIONS(4772), + [anon_sym_is] = ACTIONS(4770), + [anon_sym_BANGis] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_as_QMARK] = ACTIONS(4772), + [anon_sym_PLUS_PLUS] = ACTIONS(4772), + [anon_sym_DASH_DASH] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_BANG_BANG] = ACTIONS(4772), + [anon_sym_data] = ACTIONS(4770), + [anon_sym_inner] = ACTIONS(4770), + [anon_sym_expect] = ACTIONS(4770), + [anon_sym_actual] = ACTIONS(4770), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4772), + [anon_sym_continue_AT] = ACTIONS(4772), + [anon_sym_break_AT] = ACTIONS(4772), + [sym_real_literal] = ACTIONS(4772), + [sym_integer_literal] = ACTIONS(4770), + [sym_hex_literal] = ACTIONS(4772), + [sym_bin_literal] = ACTIONS(4772), + [anon_sym_true] = ACTIONS(4770), + [anon_sym_false] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4772), + [sym__backtick_identifier] = ACTIONS(4772), + [sym__automatic_semicolon] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4772), + }, + [3359] = { + [aux_sym_nullable_type_repeat1] = STATE(3281), + [sym__alpha_identifier] = ACTIONS(4278), + [anon_sym_AT] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4280), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_by] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4278), + [anon_sym_GT] = ACTIONS(4278), + [anon_sym_where] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [sym__quest] = ACTIONS(6526), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4278), + [anon_sym_DOT_DOT] = ACTIONS(4280), + [anon_sym_QMARK_COLON] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_else] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_PLUS_EQ] = ACTIONS(4280), + [anon_sym_DASH_EQ] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(4280), + [anon_sym_SLASH_EQ] = ACTIONS(4280), + [anon_sym_PERCENT_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4280), + [anon_sym_LT_EQ] = ACTIONS(4280), + [anon_sym_GT_EQ] = ACTIONS(4280), + [anon_sym_BANGin] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4278), + [anon_sym_BANGis] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_SLASH] = ACTIONS(4278), + [anon_sym_PERCENT] = ACTIONS(4278), + [anon_sym_as_QMARK] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_BANG_BANG] = ACTIONS(4280), + [anon_sym_suspend] = ACTIONS(4278), + [anon_sym_sealed] = ACTIONS(4278), + [anon_sym_annotation] = ACTIONS(4278), + [anon_sym_data] = ACTIONS(4278), + [anon_sym_inner] = ACTIONS(4278), + [anon_sym_override] = ACTIONS(4278), + [anon_sym_lateinit] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_internal] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_tailrec] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_infix] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym_external] = ACTIONS(4278), + [sym_property_modifier] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_open] = ACTIONS(4278), + [anon_sym_vararg] = ACTIONS(4278), + [anon_sym_noinline] = ACTIONS(4278), + [anon_sym_crossinline] = ACTIONS(4278), + [anon_sym_expect] = ACTIONS(4278), + [anon_sym_actual] = ACTIONS(4278), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4280), + [sym__automatic_semicolon] = ACTIONS(4280), + [sym_safe_nav] = ACTIONS(4280), + [sym_multiline_comment] = ACTIONS(3), + }, + [3360] = { + [aux_sym_user_type_repeat1] = STATE(3191), + [sym__alpha_identifier] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_as] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_COMMA] = ACTIONS(4273), + [anon_sym_by] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_where] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym_get] = ACTIONS(4271), + [anon_sym_set] = ACTIONS(4271), + [sym__quest] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [sym_label] = ACTIONS(4273), + [anon_sym_in] = ACTIONS(4271), + [anon_sym_DOT_DOT] = ACTIONS(4273), + [anon_sym_QMARK_COLON] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_PIPE_PIPE] = ACTIONS(4273), + [anon_sym_else] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_PLUS_EQ] = ACTIONS(4273), + [anon_sym_DASH_EQ] = ACTIONS(4273), + [anon_sym_STAR_EQ] = ACTIONS(4273), + [anon_sym_SLASH_EQ] = ACTIONS(4273), + [anon_sym_PERCENT_EQ] = ACTIONS(4273), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4273), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4273), + [anon_sym_LT_EQ] = ACTIONS(4273), + [anon_sym_GT_EQ] = ACTIONS(4273), + [anon_sym_BANGin] = ACTIONS(4273), + [anon_sym_is] = ACTIONS(4271), + [anon_sym_BANGis] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_as_QMARK] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_BANG_BANG] = ACTIONS(4273), + [anon_sym_suspend] = ACTIONS(4271), + [anon_sym_sealed] = ACTIONS(4271), + [anon_sym_annotation] = ACTIONS(4271), + [anon_sym_data] = ACTIONS(4271), + [anon_sym_inner] = ACTIONS(4271), + [anon_sym_override] = ACTIONS(4271), + [anon_sym_lateinit] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_internal] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_tailrec] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_infix] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_external] = ACTIONS(4271), + [sym_property_modifier] = ACTIONS(4271), + [anon_sym_abstract] = ACTIONS(4271), + [anon_sym_final] = ACTIONS(4271), + [anon_sym_open] = ACTIONS(4271), + [anon_sym_vararg] = ACTIONS(4271), + [anon_sym_noinline] = ACTIONS(4271), + [anon_sym_crossinline] = ACTIONS(4271), + [anon_sym_expect] = ACTIONS(4271), + [anon_sym_actual] = ACTIONS(4271), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4273), + [sym__automatic_semicolon] = ACTIONS(4273), + [sym_safe_nav] = ACTIONS(4273), + [sym_multiline_comment] = ACTIONS(3), + }, + [3361] = { + [sym__alpha_identifier] = ACTIONS(4993), + [anon_sym_AT] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_RBRACK] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_RPAREN] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_where] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4995), + [sym_label] = ACTIONS(4995), + [anon_sym_in] = ACTIONS(4993), + [anon_sym_while] = ACTIONS(4993), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_QMARK_COLON] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_else] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4995), + [anon_sym_PLUS_EQ] = ACTIONS(4995), + [anon_sym_DASH_EQ] = ACTIONS(4995), + [anon_sym_STAR_EQ] = ACTIONS(4995), + [anon_sym_SLASH_EQ] = ACTIONS(4995), + [anon_sym_PERCENT_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_BANGin] = ACTIONS(4995), + [anon_sym_is] = ACTIONS(4993), + [anon_sym_BANGis] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_as_QMARK] = ACTIONS(4995), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_BANG_BANG] = ACTIONS(4995), + [anon_sym_suspend] = ACTIONS(4993), + [anon_sym_sealed] = ACTIONS(4993), + [anon_sym_annotation] = ACTIONS(4993), + [anon_sym_data] = ACTIONS(4993), + [anon_sym_inner] = ACTIONS(4993), + [anon_sym_override] = ACTIONS(4993), + [anon_sym_lateinit] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_internal] = ACTIONS(4993), + [anon_sym_protected] = ACTIONS(4993), + [anon_sym_tailrec] = ACTIONS(4993), + [anon_sym_operator] = ACTIONS(4993), + [anon_sym_infix] = ACTIONS(4993), + [anon_sym_inline] = ACTIONS(4993), + [anon_sym_external] = ACTIONS(4993), + [sym_property_modifier] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_open] = ACTIONS(4993), + [anon_sym_vararg] = ACTIONS(4993), + [anon_sym_noinline] = ACTIONS(4993), + [anon_sym_crossinline] = ACTIONS(4993), + [anon_sym_expect] = ACTIONS(4993), + [anon_sym_actual] = ACTIONS(4993), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4995), + [sym_safe_nav] = ACTIONS(4995), + [sym_multiline_comment] = ACTIONS(3), + }, + [3362] = { + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_object] = ACTIONS(4766), + [anon_sym_fun] = ACTIONS(4766), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_this] = ACTIONS(4766), + [anon_sym_super] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [sym_label] = ACTIONS(4766), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4766), + [anon_sym_if] = ACTIONS(4766), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_when] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4766), + [anon_sym_throw] = ACTIONS(4766), + [anon_sym_return] = ACTIONS(4766), + [anon_sym_continue] = ACTIONS(4766), + [anon_sym_break] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4766), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4768), + [anon_sym_continue_AT] = ACTIONS(4768), + [anon_sym_break_AT] = ACTIONS(4768), + [sym_real_literal] = ACTIONS(4768), + [sym_integer_literal] = ACTIONS(4766), + [sym_hex_literal] = ACTIONS(4768), + [sym_bin_literal] = ACTIONS(4768), + [anon_sym_true] = ACTIONS(4766), + [anon_sym_false] = ACTIONS(4766), + [anon_sym_SQUOTE] = ACTIONS(4768), + [sym__backtick_identifier] = ACTIONS(4768), + [sym__automatic_semicolon] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4768), + }, + [3363] = { [sym__alpha_identifier] = ACTIONS(4762), [anon_sym_AT] = ACTIONS(4764), [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), [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_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), [anon_sym_DOT] = ACTIONS(4762), [anon_sym_SEMI] = ACTIONS(4764), [anon_sym_get] = ACTIONS(4762), [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), [anon_sym_STAR] = ACTIONS(4762), - [anon_sym_DASH_GT] = ACTIONS(4764), - [sym_label] = ACTIONS(4764), + [sym_label] = ACTIONS(4762), [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_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(4764), [anon_sym_PLUS_EQ] = ACTIONS(4764), [anon_sym_DASH_EQ] = ACTIONS(4764), @@ -370788,1022 +371857,1670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_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(4764), + [anon_sym_continue_AT] = ACTIONS(4764), + [anon_sym_break_AT] = ACTIONS(4764), + [sym_real_literal] = ACTIONS(4764), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4764), + [sym_bin_literal] = ACTIONS(4764), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [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(4764), }, - [3352] = { - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_object] = ACTIONS(4005), - [anon_sym_fun] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_this] = ACTIONS(4005), - [anon_sym_super] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [sym_label] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_null] = ACTIONS(4005), - [anon_sym_if] = ACTIONS(4005), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [anon_sym_try] = ACTIONS(4005), - [anon_sym_throw] = ACTIONS(4005), - [anon_sym_return] = ACTIONS(4005), - [anon_sym_continue] = ACTIONS(4005), - [anon_sym_break] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4007), - [anon_sym_continue_AT] = ACTIONS(4007), - [anon_sym_break_AT] = ACTIONS(4007), - [sym_real_literal] = ACTIONS(4007), - [sym_integer_literal] = ACTIONS(4005), - [sym_hex_literal] = ACTIONS(4007), - [sym_bin_literal] = ACTIONS(4007), - [anon_sym_true] = ACTIONS(4005), - [anon_sym_false] = ACTIONS(4005), - [anon_sym_SQUOTE] = ACTIONS(4007), - [sym__backtick_identifier] = ACTIONS(4007), - [sym__automatic_semicolon] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4007), + [3364] = { + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4035), + [anon_sym_fun] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_this] = ACTIONS(4035), + [anon_sym_super] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_when] = ACTIONS(4035), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_throw] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4037), + [anon_sym_continue_AT] = ACTIONS(4037), + [anon_sym_break_AT] = ACTIONS(4037), + [sym_real_literal] = ACTIONS(4037), + [sym_integer_literal] = ACTIONS(4035), + [sym_hex_literal] = ACTIONS(4037), + [sym_bin_literal] = ACTIONS(4037), + [anon_sym_true] = ACTIONS(4035), + [anon_sym_false] = ACTIONS(4035), + [anon_sym_SQUOTE] = ACTIONS(4037), + [sym__backtick_identifier] = ACTIONS(4037), + [sym__automatic_semicolon] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4037), }, - [3353] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_object] = ACTIONS(5009), - [anon_sym_fun] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_this] = ACTIONS(5009), - [anon_sym_super] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [sym_label] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_null] = ACTIONS(5009), - [anon_sym_if] = ACTIONS(5009), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_when] = ACTIONS(5009), - [anon_sym_try] = ACTIONS(5009), - [anon_sym_throw] = ACTIONS(5009), - [anon_sym_return] = ACTIONS(5009), - [anon_sym_continue] = ACTIONS(5009), - [anon_sym_break] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [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(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), + [3365] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [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_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5011), - [anon_sym_continue_AT] = ACTIONS(5011), - [anon_sym_break_AT] = ACTIONS(5011), - [sym_real_literal] = ACTIONS(5011), - [sym_integer_literal] = ACTIONS(5009), - [sym_hex_literal] = ACTIONS(5011), - [sym_bin_literal] = ACTIONS(5011), - [anon_sym_true] = ACTIONS(5009), - [anon_sym_false] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5011), - [sym__backtick_identifier] = ACTIONS(5011), - [sym__automatic_semicolon] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_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(5011), + [sym__string_start] = ACTIONS(4760), }, - [3354] = { - [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(6553), - [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(6555), - [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_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), + [3366] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(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_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_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), }, - [3355] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [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_DOT] = 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_expect] = ACTIONS(5013), - [anon_sym_actual] = ACTIONS(5013), + [3367] = { + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_object] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_this] = ACTIONS(3878), + [anon_sym_super] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [sym_label] = ACTIONS(3878), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_when] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_throw] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_continue] = ACTIONS(3878), + [anon_sym_break] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3880), + [anon_sym_continue_AT] = ACTIONS(3880), + [anon_sym_break_AT] = ACTIONS(3880), + [sym_real_literal] = ACTIONS(3880), + [sym_integer_literal] = ACTIONS(3878), + [sym_hex_literal] = ACTIONS(3880), + [sym_bin_literal] = ACTIONS(3880), + [anon_sym_true] = ACTIONS(3878), + [anon_sym_false] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3880), + [sym__backtick_identifier] = ACTIONS(3880), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3880), + }, + [3368] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_RBRACK] = ACTIONS(4804), + [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_DOT] = 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_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(5015), - [anon_sym_continue_AT] = ACTIONS(5015), - [anon_sym_break_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__backtick_identifier] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5015), }, - [3356] = { - [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_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), - [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), + [3369] = { + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5065), }, - [3357] = { - [sym__alpha_identifier] = ACTIONS(4867), - [anon_sym_AT] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_RBRACK] = ACTIONS(4869), - [anon_sym_as] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_COMMA] = ACTIONS(4869), - [anon_sym_RPAREN] = ACTIONS(4869), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_where] = ACTIONS(4867), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_get] = ACTIONS(4867), - [anon_sym_set] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4867), - [anon_sym_DASH_GT] = ACTIONS(4869), - [sym_label] = ACTIONS(4869), - [anon_sym_in] = ACTIONS(4867), - [anon_sym_while] = ACTIONS(4867), - [anon_sym_DOT_DOT] = ACTIONS(4869), - [anon_sym_QMARK_COLON] = ACTIONS(4869), - [anon_sym_AMP_AMP] = ACTIONS(4869), - [anon_sym_PIPE_PIPE] = ACTIONS(4869), - [anon_sym_else] = ACTIONS(4867), - [anon_sym_COLON_COLON] = ACTIONS(4869), - [anon_sym_PLUS_EQ] = ACTIONS(4869), - [anon_sym_DASH_EQ] = ACTIONS(4869), - [anon_sym_STAR_EQ] = ACTIONS(4869), - [anon_sym_SLASH_EQ] = ACTIONS(4869), - [anon_sym_PERCENT_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), - [anon_sym_LT_EQ] = ACTIONS(4869), - [anon_sym_GT_EQ] = ACTIONS(4869), - [anon_sym_BANGin] = ACTIONS(4869), - [anon_sym_is] = ACTIONS(4867), - [anon_sym_BANGis] = ACTIONS(4869), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_as_QMARK] = ACTIONS(4869), - [anon_sym_PLUS_PLUS] = ACTIONS(4869), - [anon_sym_DASH_DASH] = ACTIONS(4869), - [anon_sym_BANG_BANG] = ACTIONS(4869), - [anon_sym_suspend] = ACTIONS(4867), - [anon_sym_sealed] = ACTIONS(4867), - [anon_sym_annotation] = ACTIONS(4867), - [anon_sym_data] = ACTIONS(4867), - [anon_sym_inner] = ACTIONS(4867), - [anon_sym_override] = ACTIONS(4867), - [anon_sym_lateinit] = ACTIONS(4867), - [anon_sym_public] = ACTIONS(4867), - [anon_sym_private] = ACTIONS(4867), - [anon_sym_internal] = ACTIONS(4867), - [anon_sym_protected] = ACTIONS(4867), - [anon_sym_tailrec] = ACTIONS(4867), - [anon_sym_operator] = ACTIONS(4867), - [anon_sym_infix] = ACTIONS(4867), - [anon_sym_inline] = ACTIONS(4867), - [anon_sym_external] = ACTIONS(4867), - [sym_property_modifier] = ACTIONS(4867), - [anon_sym_abstract] = ACTIONS(4867), - [anon_sym_final] = ACTIONS(4867), - [anon_sym_open] = ACTIONS(4867), - [anon_sym_vararg] = ACTIONS(4867), - [anon_sym_noinline] = ACTIONS(4867), - [anon_sym_crossinline] = ACTIONS(4867), - [anon_sym_expect] = ACTIONS(4867), - [anon_sym_actual] = ACTIONS(4867), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4869), - [sym_safe_nav] = ACTIONS(4869), + [3370] = { + [sym__alpha_identifier] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_object] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [sym_label] = ACTIONS(2988), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_QMARK_COLON] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_when] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_as_QMARK] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_BANG_BANG] = ACTIONS(2990), + [anon_sym_data] = ACTIONS(2988), + [anon_sym_inner] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(2988), + [anon_sym_actual] = ACTIONS(2988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2990), + [anon_sym_continue_AT] = ACTIONS(2990), + [anon_sym_break_AT] = ACTIONS(2990), + [sym_real_literal] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [sym_hex_literal] = ACTIONS(2990), + [sym_bin_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [sym__backtick_identifier] = ACTIONS(2990), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(2990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2990), + }, + [3371] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [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_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), + [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), }, - [3358] = { - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_object] = ACTIONS(4023), - [anon_sym_fun] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_this] = ACTIONS(4023), - [anon_sym_super] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [sym_label] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_null] = ACTIONS(4023), - [anon_sym_if] = ACTIONS(4023), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(4023), - [anon_sym_throw] = ACTIONS(4023), - [anon_sym_return] = ACTIONS(4023), - [anon_sym_continue] = ACTIONS(4023), - [anon_sym_break] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [anon_sym_data] = ACTIONS(4023), - [anon_sym_inner] = ACTIONS(4023), - [anon_sym_expect] = ACTIONS(4023), - [anon_sym_actual] = ACTIONS(4023), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4025), - [anon_sym_continue_AT] = ACTIONS(4025), - [anon_sym_break_AT] = ACTIONS(4025), - [sym_real_literal] = ACTIONS(4025), - [sym_integer_literal] = ACTIONS(4023), - [sym_hex_literal] = ACTIONS(4025), - [sym_bin_literal] = ACTIONS(4025), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_SQUOTE] = ACTIONS(4025), - [sym__backtick_identifier] = ACTIONS(4025), - [sym__automatic_semicolon] = ACTIONS(4025), - [sym_safe_nav] = ACTIONS(4025), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4025), + [3372] = { + [sym__alpha_identifier] = ACTIONS(4734), + [anon_sym_AT] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4736), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_object] = ACTIONS(4734), + [anon_sym_fun] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_get] = ACTIONS(4734), + [anon_sym_set] = ACTIONS(4734), + [anon_sym_this] = ACTIONS(4734), + [anon_sym_super] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(4734), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_QMARK_COLON] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_when] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_throw] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_BANGin] = ACTIONS(4736), + [anon_sym_is] = ACTIONS(4734), + [anon_sym_BANGis] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_as_QMARK] = ACTIONS(4736), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4734), + [anon_sym_inner] = ACTIONS(4734), + [anon_sym_expect] = ACTIONS(4734), + [anon_sym_actual] = ACTIONS(4734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4736), + [anon_sym_continue_AT] = ACTIONS(4736), + [anon_sym_break_AT] = ACTIONS(4736), + [sym_real_literal] = ACTIONS(4736), + [sym_integer_literal] = ACTIONS(4734), + [sym_hex_literal] = ACTIONS(4736), + [sym_bin_literal] = ACTIONS(4736), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_SQUOTE] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4736), + [sym__automatic_semicolon] = ACTIONS(4736), + [sym_safe_nav] = ACTIONS(4736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4736), }, - [3359] = { - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_RBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_DASH_GT] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), + [3373] = { + [sym__alpha_identifier] = ACTIONS(4730), + [anon_sym_AT] = ACTIONS(4732), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_where] = ACTIONS(4730), + [anon_sym_object] = ACTIONS(4730), + [anon_sym_fun] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4732), + [anon_sym_get] = ACTIONS(4730), + [anon_sym_set] = ACTIONS(4730), + [anon_sym_this] = ACTIONS(4730), + [anon_sym_super] = ACTIONS(4730), + [anon_sym_STAR] = ACTIONS(4730), + [sym_label] = ACTIONS(4730), + [anon_sym_in] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4732), + [anon_sym_QMARK_COLON] = ACTIONS(4732), + [anon_sym_AMP_AMP] = ACTIONS(4732), + [anon_sym_PIPE_PIPE] = ACTIONS(4732), + [anon_sym_null] = ACTIONS(4730), + [anon_sym_if] = ACTIONS(4730), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_when] = ACTIONS(4730), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_throw] = ACTIONS(4730), + [anon_sym_return] = ACTIONS(4730), + [anon_sym_continue] = ACTIONS(4730), + [anon_sym_break] = ACTIONS(4730), + [anon_sym_COLON_COLON] = ACTIONS(4732), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_PERCENT_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4732), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_BANGin] = ACTIONS(4732), + [anon_sym_is] = ACTIONS(4730), + [anon_sym_BANGis] = ACTIONS(4732), + [anon_sym_PLUS] = ACTIONS(4730), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4730), + [anon_sym_PERCENT] = ACTIONS(4730), + [anon_sym_as_QMARK] = ACTIONS(4732), + [anon_sym_PLUS_PLUS] = ACTIONS(4732), + [anon_sym_DASH_DASH] = ACTIONS(4732), + [anon_sym_BANG] = ACTIONS(4730), + [anon_sym_BANG_BANG] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4730), + [anon_sym_inner] = ACTIONS(4730), + [anon_sym_expect] = ACTIONS(4730), + [anon_sym_actual] = ACTIONS(4730), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [anon_sym_return_AT] = ACTIONS(4732), + [anon_sym_continue_AT] = ACTIONS(4732), + [anon_sym_break_AT] = ACTIONS(4732), + [sym_real_literal] = ACTIONS(4732), + [sym_integer_literal] = ACTIONS(4730), + [sym_hex_literal] = ACTIONS(4732), + [sym_bin_literal] = ACTIONS(4732), + [anon_sym_true] = ACTIONS(4730), + [anon_sym_false] = ACTIONS(4730), + [anon_sym_SQUOTE] = ACTIONS(4732), + [sym__backtick_identifier] = ACTIONS(4732), + [sym__automatic_semicolon] = ACTIONS(4732), + [sym_safe_nav] = ACTIONS(4732), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4732), }, - [3360] = { - [sym__alpha_identifier] = ACTIONS(4879), - [anon_sym_AT] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_where] = ACTIONS(4879), - [anon_sym_object] = ACTIONS(4879), - [anon_sym_fun] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4881), - [anon_sym_get] = ACTIONS(4879), - [anon_sym_set] = ACTIONS(4879), - [anon_sym_this] = ACTIONS(4879), - [anon_sym_super] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [sym_label] = ACTIONS(4879), - [anon_sym_in] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4881), - [anon_sym_QMARK_COLON] = ACTIONS(4881), - [anon_sym_AMP_AMP] = ACTIONS(4881), - [anon_sym_PIPE_PIPE] = ACTIONS(4881), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_if] = ACTIONS(4879), - [anon_sym_else] = ACTIONS(4879), - [anon_sym_when] = ACTIONS(4879), - [anon_sym_try] = ACTIONS(4879), - [anon_sym_throw] = ACTIONS(4879), - [anon_sym_return] = ACTIONS(4879), - [anon_sym_continue] = ACTIONS(4879), - [anon_sym_break] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4881), - [anon_sym_PLUS_EQ] = ACTIONS(4881), - [anon_sym_DASH_EQ] = ACTIONS(4881), - [anon_sym_STAR_EQ] = ACTIONS(4881), - [anon_sym_SLASH_EQ] = ACTIONS(4881), - [anon_sym_PERCENT_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4881), - [anon_sym_LT_EQ] = ACTIONS(4881), - [anon_sym_GT_EQ] = ACTIONS(4881), - [anon_sym_BANGin] = ACTIONS(4881), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_BANGis] = ACTIONS(4881), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_as_QMARK] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4881), - [anon_sym_DASH_DASH] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_BANG_BANG] = ACTIONS(4881), - [anon_sym_data] = ACTIONS(4879), - [anon_sym_inner] = ACTIONS(4879), - [anon_sym_expect] = ACTIONS(4879), - [anon_sym_actual] = ACTIONS(4879), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4881), - [anon_sym_continue_AT] = ACTIONS(4881), - [anon_sym_break_AT] = ACTIONS(4881), - [sym_real_literal] = ACTIONS(4881), - [sym_integer_literal] = ACTIONS(4879), - [sym_hex_literal] = ACTIONS(4881), - [sym_bin_literal] = ACTIONS(4881), - [anon_sym_true] = ACTIONS(4879), - [anon_sym_false] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4881), - [sym__backtick_identifier] = ACTIONS(4881), - [sym__automatic_semicolon] = ACTIONS(4881), - [sym_safe_nav] = ACTIONS(4881), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4881), + [3374] = { + [sym__alpha_identifier] = ACTIONS(4997), + [anon_sym_AT] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_RBRACK] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4999), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_RPAREN] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4999), + [anon_sym_get] = ACTIONS(4997), + [anon_sym_set] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4999), + [sym_label] = ACTIONS(4999), + [anon_sym_in] = ACTIONS(4997), + [anon_sym_while] = ACTIONS(4997), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_QMARK_COLON] = ACTIONS(4999), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_else] = ACTIONS(4997), + [anon_sym_COLON_COLON] = ACTIONS(4999), + [anon_sym_PLUS_EQ] = ACTIONS(4999), + [anon_sym_DASH_EQ] = ACTIONS(4999), + [anon_sym_STAR_EQ] = ACTIONS(4999), + [anon_sym_SLASH_EQ] = ACTIONS(4999), + [anon_sym_PERCENT_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_BANGin] = ACTIONS(4999), + [anon_sym_is] = ACTIONS(4997), + [anon_sym_BANGis] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_as_QMARK] = ACTIONS(4999), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_BANG_BANG] = ACTIONS(4999), + [anon_sym_suspend] = ACTIONS(4997), + [anon_sym_sealed] = ACTIONS(4997), + [anon_sym_annotation] = ACTIONS(4997), + [anon_sym_data] = ACTIONS(4997), + [anon_sym_inner] = ACTIONS(4997), + [anon_sym_override] = ACTIONS(4997), + [anon_sym_lateinit] = ACTIONS(4997), + [anon_sym_public] = ACTIONS(4997), + [anon_sym_private] = ACTIONS(4997), + [anon_sym_internal] = ACTIONS(4997), + [anon_sym_protected] = ACTIONS(4997), + [anon_sym_tailrec] = ACTIONS(4997), + [anon_sym_operator] = ACTIONS(4997), + [anon_sym_infix] = ACTIONS(4997), + [anon_sym_inline] = ACTIONS(4997), + [anon_sym_external] = ACTIONS(4997), + [sym_property_modifier] = ACTIONS(4997), + [anon_sym_abstract] = ACTIONS(4997), + [anon_sym_final] = ACTIONS(4997), + [anon_sym_open] = ACTIONS(4997), + [anon_sym_vararg] = ACTIONS(4997), + [anon_sym_noinline] = ACTIONS(4997), + [anon_sym_crossinline] = ACTIONS(4997), + [anon_sym_expect] = ACTIONS(4997), + [anon_sym_actual] = ACTIONS(4997), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4999), + [sym_safe_nav] = ACTIONS(4999), + [sym_multiline_comment] = ACTIONS(3), }, - [3361] = { - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4021), - [sym_label] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_while] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), + [3375] = { + [sym__alpha_identifier] = ACTIONS(4865), + [anon_sym_AT] = ACTIONS(4867), + [anon_sym_LBRACK] = ACTIONS(4867), + [anon_sym_RBRACK] = ACTIONS(4867), + [anon_sym_as] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4867), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4867), + [anon_sym_COMMA] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_where] = ACTIONS(4865), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_get] = ACTIONS(4865), + [anon_sym_set] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_DASH_GT] = ACTIONS(4867), + [sym_label] = ACTIONS(4867), + [anon_sym_in] = ACTIONS(4865), + [anon_sym_while] = ACTIONS(4865), + [anon_sym_DOT_DOT] = ACTIONS(4867), + [anon_sym_QMARK_COLON] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_else] = ACTIONS(4865), + [anon_sym_COLON_COLON] = ACTIONS(4867), + [anon_sym_PLUS_EQ] = ACTIONS(4867), + [anon_sym_DASH_EQ] = ACTIONS(4867), + [anon_sym_STAR_EQ] = ACTIONS(4867), + [anon_sym_SLASH_EQ] = ACTIONS(4867), + [anon_sym_PERCENT_EQ] = ACTIONS(4867), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), + [anon_sym_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), + [anon_sym_LT_EQ] = ACTIONS(4867), + [anon_sym_GT_EQ] = ACTIONS(4867), + [anon_sym_BANGin] = ACTIONS(4867), + [anon_sym_is] = ACTIONS(4865), + [anon_sym_BANGis] = ACTIONS(4867), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_as_QMARK] = ACTIONS(4867), + [anon_sym_PLUS_PLUS] = ACTIONS(4867), + [anon_sym_DASH_DASH] = ACTIONS(4867), + [anon_sym_BANG_BANG] = ACTIONS(4867), + [anon_sym_suspend] = ACTIONS(4865), + [anon_sym_sealed] = ACTIONS(4865), + [anon_sym_annotation] = ACTIONS(4865), + [anon_sym_data] = ACTIONS(4865), + [anon_sym_inner] = ACTIONS(4865), + [anon_sym_override] = ACTIONS(4865), + [anon_sym_lateinit] = ACTIONS(4865), + [anon_sym_public] = ACTIONS(4865), + [anon_sym_private] = ACTIONS(4865), + [anon_sym_internal] = ACTIONS(4865), + [anon_sym_protected] = ACTIONS(4865), + [anon_sym_tailrec] = ACTIONS(4865), + [anon_sym_operator] = ACTIONS(4865), + [anon_sym_infix] = ACTIONS(4865), + [anon_sym_inline] = ACTIONS(4865), + [anon_sym_external] = ACTIONS(4865), + [sym_property_modifier] = ACTIONS(4865), + [anon_sym_abstract] = ACTIONS(4865), + [anon_sym_final] = ACTIONS(4865), + [anon_sym_open] = ACTIONS(4865), + [anon_sym_vararg] = ACTIONS(4865), + [anon_sym_noinline] = ACTIONS(4865), + [anon_sym_crossinline] = ACTIONS(4865), + [anon_sym_expect] = ACTIONS(4865), + [anon_sym_actual] = ACTIONS(4865), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4867), + [sym_safe_nav] = ACTIONS(4867), + [sym_multiline_comment] = ACTIONS(3), + }, + [3376] = { + [sym__alpha_identifier] = ACTIONS(4720), + [anon_sym_AT] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_as] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_where] = ACTIONS(4720), + [anon_sym_object] = ACTIONS(4720), + [anon_sym_fun] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_get] = ACTIONS(4720), + [anon_sym_set] = ACTIONS(4720), + [anon_sym_this] = ACTIONS(4720), + [anon_sym_super] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [sym_label] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4720), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_QMARK_COLON] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(4720), + [anon_sym_if] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4720), + [anon_sym_when] = ACTIONS(4720), + [anon_sym_try] = ACTIONS(4720), + [anon_sym_throw] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4720), + [anon_sym_continue] = ACTIONS(4720), + [anon_sym_break] = ACTIONS(4720), + [anon_sym_COLON_COLON] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4722), + [anon_sym_DASH_EQ] = ACTIONS(4722), + [anon_sym_STAR_EQ] = ACTIONS(4722), + [anon_sym_SLASH_EQ] = ACTIONS(4722), + [anon_sym_PERCENT_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_BANGin] = ACTIONS(4722), + [anon_sym_is] = ACTIONS(4720), + [anon_sym_BANGis] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_as_QMARK] = ACTIONS(4722), + [anon_sym_PLUS_PLUS] = ACTIONS(4722), + [anon_sym_DASH_DASH] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4720), + [anon_sym_BANG_BANG] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4720), + [anon_sym_inner] = ACTIONS(4720), + [anon_sym_expect] = ACTIONS(4720), + [anon_sym_actual] = ACTIONS(4720), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4722), + [anon_sym_continue_AT] = ACTIONS(4722), + [anon_sym_break_AT] = ACTIONS(4722), + [sym_real_literal] = ACTIONS(4722), + [sym_integer_literal] = ACTIONS(4720), + [sym_hex_literal] = ACTIONS(4722), + [sym_bin_literal] = ACTIONS(4722), + [anon_sym_true] = ACTIONS(4720), + [anon_sym_false] = ACTIONS(4720), + [anon_sym_SQUOTE] = ACTIONS(4722), + [sym__backtick_identifier] = ACTIONS(4722), + [sym__automatic_semicolon] = ACTIONS(4722), + [sym_safe_nav] = ACTIONS(4722), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4722), + }, + [3377] = { + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_RBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [anon_sym_DASH_GT] = ACTIONS(4454), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + }, + [3378] = { + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(3340), + [anon_sym_sealed] = ACTIONS(3340), + [anon_sym_annotation] = ACTIONS(3340), + [anon_sym_data] = ACTIONS(3340), + [anon_sym_inner] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_lateinit] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_internal] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_tailrec] = ACTIONS(3340), + [anon_sym_operator] = ACTIONS(3340), + [anon_sym_infix] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_external] = ACTIONS(3340), + [sym_property_modifier] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_final] = ACTIONS(3340), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_vararg] = ACTIONS(3340), + [anon_sym_noinline] = ACTIONS(3340), + [anon_sym_crossinline] = ACTIONS(3340), + [anon_sym_expect] = ACTIONS(3340), + [anon_sym_actual] = ACTIONS(3340), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + }, + [3379] = { + [sym__alpha_identifier] = ACTIONS(4619), + [anon_sym_AT] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_RBRACK] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4621), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4621), + [anon_sym_RPAREN] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_get] = ACTIONS(4619), + [anon_sym_set] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [anon_sym_DASH_GT] = ACTIONS(4621), + [sym_label] = ACTIONS(4621), + [anon_sym_in] = ACTIONS(4619), + [anon_sym_while] = ACTIONS(4619), + [anon_sym_DOT_DOT] = ACTIONS(4621), + [anon_sym_QMARK_COLON] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_else] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4621), + [anon_sym_PLUS_EQ] = ACTIONS(4621), + [anon_sym_DASH_EQ] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(4621), + [anon_sym_SLASH_EQ] = ACTIONS(4621), + [anon_sym_PERCENT_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ] = ACTIONS(4619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ] = ACTIONS(4619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_as_QMARK] = ACTIONS(4621), + [anon_sym_PLUS_PLUS] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_BANG_BANG] = ACTIONS(4621), + [anon_sym_suspend] = ACTIONS(4619), + [anon_sym_sealed] = ACTIONS(4619), + [anon_sym_annotation] = ACTIONS(4619), + [anon_sym_data] = ACTIONS(4619), + [anon_sym_inner] = ACTIONS(4619), + [anon_sym_override] = ACTIONS(4619), + [anon_sym_lateinit] = ACTIONS(4619), + [anon_sym_public] = ACTIONS(4619), + [anon_sym_private] = ACTIONS(4619), + [anon_sym_internal] = ACTIONS(4619), + [anon_sym_protected] = ACTIONS(4619), + [anon_sym_tailrec] = ACTIONS(4619), + [anon_sym_operator] = ACTIONS(4619), + [anon_sym_infix] = ACTIONS(4619), + [anon_sym_inline] = ACTIONS(4619), + [anon_sym_external] = ACTIONS(4619), + [sym_property_modifier] = ACTIONS(4619), + [anon_sym_abstract] = ACTIONS(4619), + [anon_sym_final] = ACTIONS(4619), + [anon_sym_open] = ACTIONS(4619), + [anon_sym_vararg] = ACTIONS(4619), + [anon_sym_noinline] = ACTIONS(4619), + [anon_sym_crossinline] = ACTIONS(4619), + [anon_sym_expect] = ACTIONS(4619), + [anon_sym_actual] = ACTIONS(4619), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), + [sym__backtick_identifier] = ACTIONS(4621), + [sym_safe_nav] = ACTIONS(4621), [sym_multiline_comment] = ACTIONS(3), }, - [3362] = { - [sym__alpha_identifier] = ACTIONS(4742), - [anon_sym_AT] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4744), - [anon_sym_RBRACK] = ACTIONS(4744), - [anon_sym_as] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LBRACE] = ACTIONS(4744), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_LPAREN] = ACTIONS(4744), - [anon_sym_COMMA] = ACTIONS(4744), - [anon_sym_RPAREN] = ACTIONS(4744), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(4742), - [anon_sym_set] = ACTIONS(4742), - [anon_sym_STAR] = ACTIONS(4742), - [anon_sym_DASH_GT] = ACTIONS(4744), - [sym_label] = ACTIONS(4744), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_while] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(4744), - [anon_sym_QMARK_COLON] = ACTIONS(4744), - [anon_sym_AMP_AMP] = ACTIONS(4744), - [anon_sym_PIPE_PIPE] = ACTIONS(4744), - [anon_sym_else] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(4744), - [anon_sym_PLUS_EQ] = ACTIONS(4744), - [anon_sym_DASH_EQ] = ACTIONS(4744), - [anon_sym_STAR_EQ] = ACTIONS(4744), - [anon_sym_SLASH_EQ] = ACTIONS(4744), - [anon_sym_PERCENT_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4744), - [anon_sym_LT_EQ] = ACTIONS(4744), - [anon_sym_GT_EQ] = ACTIONS(4744), - [anon_sym_BANGin] = ACTIONS(4744), - [anon_sym_is] = ACTIONS(4742), - [anon_sym_BANGis] = ACTIONS(4744), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4744), - [anon_sym_PLUS_PLUS] = ACTIONS(4744), - [anon_sym_DASH_DASH] = ACTIONS(4744), - [anon_sym_BANG_BANG] = ACTIONS(4744), - [anon_sym_suspend] = ACTIONS(4742), - [anon_sym_sealed] = ACTIONS(4742), - [anon_sym_annotation] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4742), - [anon_sym_inner] = ACTIONS(4742), - [anon_sym_override] = ACTIONS(4742), - [anon_sym_lateinit] = ACTIONS(4742), - [anon_sym_public] = ACTIONS(4742), - [anon_sym_private] = ACTIONS(4742), - [anon_sym_internal] = ACTIONS(4742), - [anon_sym_protected] = ACTIONS(4742), - [anon_sym_tailrec] = ACTIONS(4742), - [anon_sym_operator] = ACTIONS(4742), - [anon_sym_infix] = ACTIONS(4742), - [anon_sym_inline] = ACTIONS(4742), - [anon_sym_external] = ACTIONS(4742), - [sym_property_modifier] = ACTIONS(4742), - [anon_sym_abstract] = ACTIONS(4742), - [anon_sym_final] = ACTIONS(4742), - [anon_sym_open] = ACTIONS(4742), - [anon_sym_vararg] = ACTIONS(4742), - [anon_sym_noinline] = ACTIONS(4742), - [anon_sym_crossinline] = ACTIONS(4742), - [anon_sym_expect] = ACTIONS(4742), - [anon_sym_actual] = ACTIONS(4742), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4744), - [sym_safe_nav] = ACTIONS(4744), + [3380] = { + [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_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_data] = ACTIONS(4716), + [anon_sym_inner] = 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), + [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), + }, + [3381] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [3382] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_RBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(6615), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [anon_sym_DASH_GT] = ACTIONS(4861), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_while] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), }, - [3363] = { - [sym__alpha_identifier] = ACTIONS(4738), - [anon_sym_AT] = ACTIONS(4740), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_RBRACK] = ACTIONS(4740), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(4738), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_LPAREN] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_RPAREN] = ACTIONS(4740), - [anon_sym_LT] = ACTIONS(4738), - [anon_sym_GT] = ACTIONS(4738), - [anon_sym_where] = ACTIONS(4738), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(4738), - [anon_sym_set] = ACTIONS(4738), - [anon_sym_STAR] = ACTIONS(4738), - [anon_sym_DASH_GT] = ACTIONS(4740), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4738), - [anon_sym_while] = ACTIONS(4738), - [anon_sym_DOT_DOT] = ACTIONS(4740), - [anon_sym_QMARK_COLON] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4738), - [anon_sym_COLON_COLON] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_BANGin] = ACTIONS(4740), - [anon_sym_is] = ACTIONS(4738), - [anon_sym_BANGis] = ACTIONS(4740), - [anon_sym_PLUS] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [anon_sym_SLASH] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4738), - [anon_sym_as_QMARK] = ACTIONS(4740), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4740), - [anon_sym_suspend] = ACTIONS(4738), - [anon_sym_sealed] = ACTIONS(4738), - [anon_sym_annotation] = ACTIONS(4738), - [anon_sym_data] = ACTIONS(4738), - [anon_sym_inner] = ACTIONS(4738), - [anon_sym_override] = ACTIONS(4738), - [anon_sym_lateinit] = ACTIONS(4738), - [anon_sym_public] = ACTIONS(4738), - [anon_sym_private] = ACTIONS(4738), - [anon_sym_internal] = ACTIONS(4738), - [anon_sym_protected] = ACTIONS(4738), - [anon_sym_tailrec] = ACTIONS(4738), - [anon_sym_operator] = ACTIONS(4738), - [anon_sym_infix] = ACTIONS(4738), - [anon_sym_inline] = ACTIONS(4738), - [anon_sym_external] = ACTIONS(4738), - [sym_property_modifier] = ACTIONS(4738), - [anon_sym_abstract] = ACTIONS(4738), - [anon_sym_final] = ACTIONS(4738), - [anon_sym_open] = ACTIONS(4738), - [anon_sym_vararg] = ACTIONS(4738), - [anon_sym_noinline] = ACTIONS(4738), - [anon_sym_crossinline] = ACTIONS(4738), - [anon_sym_expect] = ACTIONS(4738), - [anon_sym_actual] = ACTIONS(4738), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4740), - [sym_safe_nav] = ACTIONS(4740), + [3383] = { + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_RBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [anon_sym_DASH_GT] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, - [3364] = { + [3384] = { [sym__alpha_identifier] = ACTIONS(5089), [anon_sym_AT] = ACTIONS(5091), [anon_sym_LBRACK] = ACTIONS(5091), @@ -371885,855 +373602,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5091), }, - [3365] = { - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_RBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_RPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_DASH_GT] = ACTIONS(4422), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_while] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - }, - [3366] = { - [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(6555), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), - }, - [3367] = { - [sym__alpha_identifier] = ACTIONS(5093), - [anon_sym_AT] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5093), - [anon_sym_EQ] = ACTIONS(5093), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_where] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_get] = ACTIONS(5093), - [anon_sym_set] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_DASH_GT] = ACTIONS(5095), - [sym_label] = ACTIONS(5095), - [anon_sym_in] = ACTIONS(5093), - [anon_sym_while] = ACTIONS(5093), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_QMARK_COLON] = ACTIONS(5095), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_else] = ACTIONS(5093), - [anon_sym_COLON_COLON] = ACTIONS(5095), - [anon_sym_PLUS_EQ] = ACTIONS(5095), - [anon_sym_DASH_EQ] = ACTIONS(5095), - [anon_sym_STAR_EQ] = ACTIONS(5095), - [anon_sym_SLASH_EQ] = ACTIONS(5095), - [anon_sym_PERCENT_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_BANGin] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5093), - [anon_sym_BANGis] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5093), - [anon_sym_as_QMARK] = ACTIONS(5095), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_BANG_BANG] = ACTIONS(5095), - [anon_sym_suspend] = ACTIONS(5093), - [anon_sym_sealed] = ACTIONS(5093), - [anon_sym_annotation] = ACTIONS(5093), - [anon_sym_data] = ACTIONS(5093), - [anon_sym_inner] = ACTIONS(5093), - [anon_sym_override] = ACTIONS(5093), - [anon_sym_lateinit] = ACTIONS(5093), - [anon_sym_public] = ACTIONS(5093), - [anon_sym_private] = ACTIONS(5093), - [anon_sym_internal] = ACTIONS(5093), - [anon_sym_protected] = ACTIONS(5093), - [anon_sym_tailrec] = ACTIONS(5093), - [anon_sym_operator] = ACTIONS(5093), - [anon_sym_infix] = ACTIONS(5093), - [anon_sym_inline] = ACTIONS(5093), - [anon_sym_external] = ACTIONS(5093), - [sym_property_modifier] = ACTIONS(5093), - [anon_sym_abstract] = ACTIONS(5093), - [anon_sym_final] = ACTIONS(5093), - [anon_sym_open] = ACTIONS(5093), - [anon_sym_vararg] = ACTIONS(5093), - [anon_sym_noinline] = ACTIONS(5093), - [anon_sym_crossinline] = ACTIONS(5093), - [anon_sym_expect] = ACTIONS(5093), - [anon_sym_actual] = ACTIONS(5093), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5095), - [sym_safe_nav] = ACTIONS(5095), - [sym_multiline_comment] = ACTIONS(3), - }, - [3368] = { - [sym__alpha_identifier] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_DASH_GT] = ACTIONS(3084), - [sym_label] = ACTIONS(3084), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3084), - [anon_sym_QMARK_COLON] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_as_QMARK] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_BANG_BANG] = ACTIONS(3084), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), - [anon_sym_data] = ACTIONS(3082), - [anon_sym_inner] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(3082), - [anon_sym_actual] = ACTIONS(3082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3084), - [sym_multiline_comment] = ACTIONS(3), - }, - [3369] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4768), - [sym_label] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_while] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_QMARK_COLON] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4768), - [anon_sym_PLUS_EQ] = ACTIONS(4768), - [anon_sym_DASH_EQ] = ACTIONS(4768), - [anon_sym_STAR_EQ] = ACTIONS(4768), - [anon_sym_SLASH_EQ] = ACTIONS(4768), - [anon_sym_PERCENT_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_BANGin] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4768), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_BANG_BANG] = ACTIONS(4768), - [anon_sym_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4768), - [sym_safe_nav] = ACTIONS(4768), - [sym_multiline_comment] = ACTIONS(3), - }, - [3370] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_RBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_RPAREN] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [anon_sym_DASH_GT] = ACTIONS(4519), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_while] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - }, - [3371] = { - [sym__alpha_identifier] = ACTIONS(4750), - [anon_sym_AT] = ACTIONS(4752), - [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_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), - }, - [3372] = { - [sym__alpha_identifier] = ACTIONS(4802), - [anon_sym_AT] = ACTIONS(4804), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_RBRACK] = ACTIONS(4804), - [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_DOT] = 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_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), + [3385] = { + [sym__alpha_identifier] = ACTIONS(4855), + [anon_sym_AT] = ACTIONS(4857), + [anon_sym_LBRACK] = ACTIONS(4857), + [anon_sym_as] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4857), + [anon_sym_RBRACE] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4857), + [anon_sym_COMMA] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4855), + [anon_sym_GT] = ACTIONS(4855), + [anon_sym_where] = ACTIONS(4855), + [anon_sym_object] = ACTIONS(4855), + [anon_sym_fun] = ACTIONS(4855), + [anon_sym_DOT] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_get] = ACTIONS(4855), + [anon_sym_set] = ACTIONS(4855), + [anon_sym_this] = ACTIONS(4855), + [anon_sym_super] = ACTIONS(4855), + [anon_sym_STAR] = ACTIONS(4855), + [sym_label] = ACTIONS(4855), + [anon_sym_in] = ACTIONS(4855), + [anon_sym_DOT_DOT] = ACTIONS(4857), + [anon_sym_QMARK_COLON] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [anon_sym_null] = ACTIONS(4855), + [anon_sym_if] = ACTIONS(4855), + [anon_sym_else] = ACTIONS(4855), + [anon_sym_when] = ACTIONS(4855), + [anon_sym_try] = ACTIONS(4855), + [anon_sym_throw] = ACTIONS(4855), + [anon_sym_return] = ACTIONS(4855), + [anon_sym_continue] = ACTIONS(4855), + [anon_sym_break] = ACTIONS(4855), + [anon_sym_COLON_COLON] = ACTIONS(4857), + [anon_sym_PLUS_EQ] = ACTIONS(4857), + [anon_sym_DASH_EQ] = ACTIONS(4857), + [anon_sym_STAR_EQ] = ACTIONS(4857), + [anon_sym_SLASH_EQ] = ACTIONS(4857), + [anon_sym_PERCENT_EQ] = ACTIONS(4857), + [anon_sym_BANG_EQ] = ACTIONS(4855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4857), + [anon_sym_EQ_EQ] = ACTIONS(4855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4857), + [anon_sym_LT_EQ] = ACTIONS(4857), + [anon_sym_GT_EQ] = ACTIONS(4857), + [anon_sym_BANGin] = ACTIONS(4857), + [anon_sym_is] = ACTIONS(4855), + [anon_sym_BANGis] = ACTIONS(4857), + [anon_sym_PLUS] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(4855), + [anon_sym_SLASH] = ACTIONS(4855), + [anon_sym_PERCENT] = ACTIONS(4855), + [anon_sym_as_QMARK] = ACTIONS(4857), + [anon_sym_PLUS_PLUS] = ACTIONS(4857), + [anon_sym_DASH_DASH] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4855), + [anon_sym_BANG_BANG] = ACTIONS(4857), + [anon_sym_data] = ACTIONS(4855), + [anon_sym_inner] = ACTIONS(4855), + [anon_sym_expect] = ACTIONS(4855), + [anon_sym_actual] = ACTIONS(4855), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4804), - [sym_safe_nav] = ACTIONS(4804), + [anon_sym_return_AT] = ACTIONS(4857), + [anon_sym_continue_AT] = ACTIONS(4857), + [anon_sym_break_AT] = ACTIONS(4857), + [sym_real_literal] = ACTIONS(4857), + [sym_integer_literal] = ACTIONS(4855), + [sym_hex_literal] = ACTIONS(4857), + [sym_bin_literal] = ACTIONS(4857), + [anon_sym_true] = ACTIONS(4855), + [anon_sym_false] = ACTIONS(4855), + [anon_sym_SQUOTE] = ACTIONS(4857), + [sym__backtick_identifier] = ACTIONS(4857), + [sym__automatic_semicolon] = ACTIONS(4857), + [sym_safe_nav] = ACTIONS(4857), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4857), }, - [3373] = { - [sym__alpha_identifier] = ACTIONS(4770), - [anon_sym_AT] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_EQ] = ACTIONS(4770), - [anon_sym_LBRACE] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4770), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4772), - [anon_sym_get] = ACTIONS(4770), - [anon_sym_set] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4770), - [anon_sym_DASH_GT] = ACTIONS(4772), - [sym_label] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_while] = ACTIONS(4770), - [anon_sym_DOT_DOT] = ACTIONS(4772), - [anon_sym_QMARK_COLON] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4772), - [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4770), - [anon_sym_COLON_COLON] = ACTIONS(4772), - [anon_sym_PLUS_EQ] = ACTIONS(4772), - [anon_sym_DASH_EQ] = ACTIONS(4772), - [anon_sym_STAR_EQ] = ACTIONS(4772), - [anon_sym_SLASH_EQ] = ACTIONS(4772), - [anon_sym_PERCENT_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ] = ACTIONS(4770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ] = ACTIONS(4770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), - [anon_sym_LT_EQ] = ACTIONS(4772), - [anon_sym_GT_EQ] = ACTIONS(4772), - [anon_sym_BANGin] = ACTIONS(4772), - [anon_sym_is] = ACTIONS(4770), - [anon_sym_BANGis] = ACTIONS(4772), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4770), - [anon_sym_as_QMARK] = ACTIONS(4772), - [anon_sym_PLUS_PLUS] = ACTIONS(4772), - [anon_sym_DASH_DASH] = ACTIONS(4772), - [anon_sym_BANG_BANG] = ACTIONS(4772), - [anon_sym_suspend] = ACTIONS(4770), - [anon_sym_sealed] = ACTIONS(4770), - [anon_sym_annotation] = ACTIONS(4770), - [anon_sym_data] = ACTIONS(4770), - [anon_sym_inner] = ACTIONS(4770), - [anon_sym_override] = ACTIONS(4770), - [anon_sym_lateinit] = ACTIONS(4770), - [anon_sym_public] = ACTIONS(4770), - [anon_sym_private] = ACTIONS(4770), - [anon_sym_internal] = ACTIONS(4770), - [anon_sym_protected] = ACTIONS(4770), - [anon_sym_tailrec] = ACTIONS(4770), - [anon_sym_operator] = ACTIONS(4770), - [anon_sym_infix] = ACTIONS(4770), - [anon_sym_inline] = ACTIONS(4770), - [anon_sym_external] = ACTIONS(4770), - [sym_property_modifier] = ACTIONS(4770), - [anon_sym_abstract] = ACTIONS(4770), - [anon_sym_final] = ACTIONS(4770), - [anon_sym_open] = ACTIONS(4770), - [anon_sym_vararg] = ACTIONS(4770), - [anon_sym_noinline] = ACTIONS(4770), - [anon_sym_crossinline] = ACTIONS(4770), - [anon_sym_expect] = ACTIONS(4770), - [anon_sym_actual] = ACTIONS(4770), + [3386] = { + [sym__alpha_identifier] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_RBRACK] = ACTIONS(4808), + [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_DOT] = 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_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(4772), - [sym_safe_nav] = ACTIONS(4772), + [sym__backtick_identifier] = ACTIONS(4808), + [sym_safe_nav] = ACTIONS(4808), [sym_multiline_comment] = ACTIONS(3), }, - [3374] = { - [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_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), + [3387] = { + [sym__alpha_identifier] = ACTIONS(4851), + [anon_sym_AT] = ACTIONS(4853), + [anon_sym_LBRACK] = ACTIONS(4853), + [anon_sym_as] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4853), + [anon_sym_COMMA] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_where] = ACTIONS(4851), + [anon_sym_object] = ACTIONS(4851), + [anon_sym_fun] = ACTIONS(4851), + [anon_sym_DOT] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4853), + [anon_sym_get] = ACTIONS(4851), + [anon_sym_set] = ACTIONS(4851), + [anon_sym_this] = ACTIONS(4851), + [anon_sym_super] = ACTIONS(4851), + [anon_sym_STAR] = ACTIONS(4851), + [sym_label] = ACTIONS(4851), + [anon_sym_in] = ACTIONS(4851), + [anon_sym_DOT_DOT] = ACTIONS(4853), + [anon_sym_QMARK_COLON] = ACTIONS(4853), + [anon_sym_AMP_AMP] = ACTIONS(4853), + [anon_sym_PIPE_PIPE] = ACTIONS(4853), + [anon_sym_null] = ACTIONS(4851), + [anon_sym_if] = ACTIONS(4851), + [anon_sym_else] = ACTIONS(4851), + [anon_sym_when] = ACTIONS(4851), + [anon_sym_try] = ACTIONS(4851), + [anon_sym_throw] = ACTIONS(4851), + [anon_sym_return] = ACTIONS(4851), + [anon_sym_continue] = ACTIONS(4851), + [anon_sym_break] = ACTIONS(4851), + [anon_sym_COLON_COLON] = ACTIONS(4853), + [anon_sym_PLUS_EQ] = ACTIONS(4853), + [anon_sym_DASH_EQ] = ACTIONS(4853), + [anon_sym_STAR_EQ] = ACTIONS(4853), + [anon_sym_SLASH_EQ] = ACTIONS(4853), + [anon_sym_PERCENT_EQ] = ACTIONS(4853), + [anon_sym_BANG_EQ] = ACTIONS(4851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4853), + [anon_sym_EQ_EQ] = ACTIONS(4851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4853), + [anon_sym_LT_EQ] = ACTIONS(4853), + [anon_sym_GT_EQ] = ACTIONS(4853), + [anon_sym_BANGin] = ACTIONS(4853), + [anon_sym_is] = ACTIONS(4851), + [anon_sym_BANGis] = ACTIONS(4853), + [anon_sym_PLUS] = ACTIONS(4851), + [anon_sym_DASH] = ACTIONS(4851), + [anon_sym_SLASH] = ACTIONS(4851), + [anon_sym_PERCENT] = ACTIONS(4851), + [anon_sym_as_QMARK] = ACTIONS(4853), + [anon_sym_PLUS_PLUS] = ACTIONS(4853), + [anon_sym_DASH_DASH] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4851), + [anon_sym_BANG_BANG] = ACTIONS(4853), + [anon_sym_data] = ACTIONS(4851), + [anon_sym_inner] = ACTIONS(4851), + [anon_sym_expect] = ACTIONS(4851), + [anon_sym_actual] = ACTIONS(4851), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5069), - [sym_safe_nav] = ACTIONS(5069), + [anon_sym_return_AT] = ACTIONS(4853), + [anon_sym_continue_AT] = ACTIONS(4853), + [anon_sym_break_AT] = ACTIONS(4853), + [sym_real_literal] = ACTIONS(4853), + [sym_integer_literal] = ACTIONS(4851), + [sym_hex_literal] = ACTIONS(4853), + [sym_bin_literal] = ACTIONS(4853), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [anon_sym_SQUOTE] = ACTIONS(4853), + [sym__backtick_identifier] = ACTIONS(4853), + [sym__automatic_semicolon] = ACTIONS(4853), + [sym_safe_nav] = ACTIONS(4853), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4853), }, - [3375] = { + [3388] = { [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_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), - [anon_sym_DASH_GT] = ACTIONS(4780), - [sym_label] = ACTIONS(4780), + [sym_label] = ACTIONS(4778), [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_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), @@ -372756,858 +373907,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4780), [anon_sym_PLUS_PLUS] = ACTIONS(4780), [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), [anon_sym_BANG_BANG] = ACTIONS(4780), - [anon_sym_suspend] = ACTIONS(4778), - [anon_sym_sealed] = ACTIONS(4778), - [anon_sym_annotation] = ACTIONS(4778), [anon_sym_data] = ACTIONS(4778), [anon_sym_inner] = ACTIONS(4778), - [anon_sym_override] = ACTIONS(4778), - [anon_sym_lateinit] = ACTIONS(4778), - [anon_sym_public] = ACTIONS(4778), - [anon_sym_private] = ACTIONS(4778), - [anon_sym_internal] = ACTIONS(4778), - [anon_sym_protected] = ACTIONS(4778), - [anon_sym_tailrec] = ACTIONS(4778), - [anon_sym_operator] = ACTIONS(4778), - [anon_sym_infix] = ACTIONS(4778), - [anon_sym_inline] = ACTIONS(4778), - [anon_sym_external] = ACTIONS(4778), - [sym_property_modifier] = ACTIONS(4778), - [anon_sym_abstract] = ACTIONS(4778), - [anon_sym_final] = ACTIONS(4778), - [anon_sym_open] = ACTIONS(4778), - [anon_sym_vararg] = ACTIONS(4778), - [anon_sym_noinline] = ACTIONS(4778), - [anon_sym_crossinline] = ACTIONS(4778), [anon_sym_expect] = ACTIONS(4778), [anon_sym_actual] = ACTIONS(4778), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [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), }, - [3376] = { - [sym__alpha_identifier] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [anon_sym_fun] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_this] = ACTIONS(1401), - [anon_sym_super] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [sym_label] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_when] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_throw] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_data] = ACTIONS(1401), - [anon_sym_inner] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(1401), - [anon_sym_actual] = ACTIONS(1401), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1399), - [anon_sym_continue_AT] = ACTIONS(1399), - [anon_sym_break_AT] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [sym_hex_literal] = ACTIONS(1399), - [sym_bin_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1399), - [sym__backtick_identifier] = ACTIONS(1399), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1399), - }, - [3377] = { - [aux_sym_user_type_repeat1] = STATE(3188), - [sym__alpha_identifier] = ACTIONS(4307), - [anon_sym_AT] = ACTIONS(4309), - [anon_sym_LBRACK] = ACTIONS(4309), - [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_DOT] = ACTIONS(6557), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_get] = ACTIONS(4307), - [anon_sym_set] = 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_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), + [3389] = { + [sym__alpha_identifier] = ACTIONS(4885), + [anon_sym_AT] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_where] = ACTIONS(4885), + [anon_sym_object] = ACTIONS(4885), + [anon_sym_fun] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_get] = ACTIONS(4885), + [anon_sym_set] = ACTIONS(4885), + [anon_sym_this] = ACTIONS(4885), + [anon_sym_super] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4885), + [sym_label] = ACTIONS(4885), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_QMARK_COLON] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_null] = ACTIONS(4885), + [anon_sym_if] = ACTIONS(4885), + [anon_sym_else] = ACTIONS(4885), + [anon_sym_when] = ACTIONS(4885), + [anon_sym_try] = ACTIONS(4885), + [anon_sym_throw] = ACTIONS(4885), + [anon_sym_return] = ACTIONS(4885), + [anon_sym_continue] = ACTIONS(4885), + [anon_sym_break] = ACTIONS(4885), + [anon_sym_COLON_COLON] = ACTIONS(4887), + [anon_sym_PLUS_EQ] = ACTIONS(4887), + [anon_sym_DASH_EQ] = ACTIONS(4887), + [anon_sym_STAR_EQ] = ACTIONS(4887), + [anon_sym_SLASH_EQ] = ACTIONS(4887), + [anon_sym_PERCENT_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_BANGin] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_BANGis] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4885), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_as_QMARK] = ACTIONS(4887), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4885), + [anon_sym_BANG_BANG] = ACTIONS(4887), + [anon_sym_data] = ACTIONS(4885), + [anon_sym_inner] = ACTIONS(4885), + [anon_sym_expect] = ACTIONS(4885), + [anon_sym_actual] = ACTIONS(4885), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4887), + [anon_sym_continue_AT] = ACTIONS(4887), + [anon_sym_break_AT] = ACTIONS(4887), + [sym_real_literal] = ACTIONS(4887), + [sym_integer_literal] = ACTIONS(4885), + [sym_hex_literal] = ACTIONS(4887), + [sym_bin_literal] = ACTIONS(4887), + [anon_sym_true] = ACTIONS(4885), + [anon_sym_false] = ACTIONS(4885), + [anon_sym_SQUOTE] = ACTIONS(4887), + [sym__backtick_identifier] = ACTIONS(4887), + [sym__automatic_semicolon] = ACTIONS(4887), + [sym_safe_nav] = ACTIONS(4887), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4887), }, - [3378] = { - [aux_sym_nullable_type_repeat1] = STATE(3201), - [sym__alpha_identifier] = ACTIONS(4320), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4320), - [anon_sym_EQ] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_get] = ACTIONS(4320), - [anon_sym_set] = ACTIONS(4320), - [sym__quest] = ACTIONS(6529), - [anon_sym_STAR] = ACTIONS(4320), - [sym_label] = ACTIONS(4322), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_QMARK_COLON] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [anon_sym_else] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(4322), - [anon_sym_PLUS_EQ] = ACTIONS(4322), - [anon_sym_DASH_EQ] = ACTIONS(4322), - [anon_sym_STAR_EQ] = ACTIONS(4322), - [anon_sym_SLASH_EQ] = ACTIONS(4322), - [anon_sym_PERCENT_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_BANGin] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_BANGis] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4320), - [anon_sym_as_QMARK] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_BANG_BANG] = ACTIONS(4322), - [anon_sym_suspend] = ACTIONS(4320), - [anon_sym_sealed] = ACTIONS(4320), - [anon_sym_annotation] = ACTIONS(4320), - [anon_sym_data] = ACTIONS(4320), - [anon_sym_inner] = ACTIONS(4320), - [anon_sym_override] = ACTIONS(4320), - [anon_sym_lateinit] = ACTIONS(4320), - [anon_sym_public] = ACTIONS(4320), - [anon_sym_private] = ACTIONS(4320), - [anon_sym_internal] = ACTIONS(4320), - [anon_sym_protected] = ACTIONS(4320), - [anon_sym_tailrec] = ACTIONS(4320), - [anon_sym_operator] = ACTIONS(4320), - [anon_sym_infix] = ACTIONS(4320), - [anon_sym_inline] = ACTIONS(4320), - [anon_sym_external] = ACTIONS(4320), - [sym_property_modifier] = ACTIONS(4320), - [anon_sym_abstract] = ACTIONS(4320), - [anon_sym_final] = ACTIONS(4320), - [anon_sym_open] = ACTIONS(4320), - [anon_sym_vararg] = ACTIONS(4320), - [anon_sym_noinline] = ACTIONS(4320), - [anon_sym_crossinline] = ACTIONS(4320), - [anon_sym_expect] = ACTIONS(4320), - [anon_sym_actual] = ACTIONS(4320), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4322), - [sym__automatic_semicolon] = ACTIONS(4322), - [sym_safe_nav] = ACTIONS(4322), + [3390] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(1694), + [anon_sym_sealed] = ACTIONS(1694), + [anon_sym_annotation] = ACTIONS(1694), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_lateinit] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_internal] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_tailrec] = ACTIONS(1694), + [anon_sym_operator] = ACTIONS(1694), + [anon_sym_infix] = ACTIONS(1694), + [anon_sym_inline] = ACTIONS(1694), + [anon_sym_external] = ACTIONS(1694), + [sym_property_modifier] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(1694), + [anon_sym_final] = ACTIONS(1694), + [anon_sym_open] = ACTIONS(1694), + [anon_sym_vararg] = ACTIONS(1694), + [anon_sym_noinline] = ACTIONS(1694), + [anon_sym_crossinline] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), [sym_multiline_comment] = ACTIONS(3), }, - [3379] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(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_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), + [3391] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [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_DOT] = 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_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(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_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__backtick_identifier] = ACTIONS(5015), + [sym_safe_nav] = ACTIONS(5015), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), }, - [3380] = { - [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_expect] = ACTIONS(4826), - [anon_sym_actual] = ACTIONS(4826), + [3392] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [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_DOT] = 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_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(4828), - [anon_sym_continue_AT] = ACTIONS(4828), - [anon_sym_break_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__backtick_identifier] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4828), }, - [3381] = { - [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_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), + [3393] = { + [sym__alpha_identifier] = ACTIONS(5021), + [anon_sym_AT] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_where] = ACTIONS(5021), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_get] = ACTIONS(5021), + [anon_sym_set] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_DASH_GT] = ACTIONS(5023), + [sym_label] = ACTIONS(5023), + [anon_sym_in] = ACTIONS(5021), + [anon_sym_while] = ACTIONS(5021), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_QMARK_COLON] = ACTIONS(5023), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_else] = ACTIONS(5021), + [anon_sym_COLON_COLON] = ACTIONS(5023), + [anon_sym_PLUS_EQ] = ACTIONS(5023), + [anon_sym_DASH_EQ] = ACTIONS(5023), + [anon_sym_STAR_EQ] = ACTIONS(5023), + [anon_sym_SLASH_EQ] = ACTIONS(5023), + [anon_sym_PERCENT_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5021), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5021), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_BANGin] = ACTIONS(5023), + [anon_sym_is] = ACTIONS(5021), + [anon_sym_BANGis] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5021), + [anon_sym_as_QMARK] = ACTIONS(5023), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_BANG_BANG] = ACTIONS(5023), + [anon_sym_suspend] = ACTIONS(5021), + [anon_sym_sealed] = ACTIONS(5021), + [anon_sym_annotation] = ACTIONS(5021), + [anon_sym_data] = ACTIONS(5021), + [anon_sym_inner] = ACTIONS(5021), + [anon_sym_override] = ACTIONS(5021), + [anon_sym_lateinit] = ACTIONS(5021), + [anon_sym_public] = ACTIONS(5021), + [anon_sym_private] = ACTIONS(5021), + [anon_sym_internal] = ACTIONS(5021), + [anon_sym_protected] = ACTIONS(5021), + [anon_sym_tailrec] = ACTIONS(5021), + [anon_sym_operator] = ACTIONS(5021), + [anon_sym_infix] = ACTIONS(5021), + [anon_sym_inline] = ACTIONS(5021), + [anon_sym_external] = ACTIONS(5021), + [sym_property_modifier] = ACTIONS(5021), + [anon_sym_abstract] = ACTIONS(5021), + [anon_sym_final] = ACTIONS(5021), + [anon_sym_open] = ACTIONS(5021), + [anon_sym_vararg] = ACTIONS(5021), + [anon_sym_noinline] = ACTIONS(5021), + [anon_sym_crossinline] = ACTIONS(5021), + [anon_sym_expect] = ACTIONS(5021), + [anon_sym_actual] = ACTIONS(5021), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4788), - [sym_safe_nav] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(5023), + [sym_safe_nav] = ACTIONS(5023), [sym_multiline_comment] = ACTIONS(3), }, - [3382] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [sym__quest] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [3394] = { + [sym__alpha_identifier] = ACTIONS(4963), + [anon_sym_AT] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_EQ] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4963), + [anon_sym_object] = ACTIONS(4963), + [anon_sym_fun] = ACTIONS(4963), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_get] = ACTIONS(4963), + [anon_sym_set] = ACTIONS(4963), + [anon_sym_this] = ACTIONS(4963), + [anon_sym_super] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [sym_label] = ACTIONS(4963), + [anon_sym_in] = ACTIONS(4963), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_QMARK_COLON] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_null] = ACTIONS(4963), + [anon_sym_if] = ACTIONS(4963), + [anon_sym_else] = ACTIONS(4963), + [anon_sym_when] = ACTIONS(4963), + [anon_sym_try] = ACTIONS(4963), + [anon_sym_throw] = ACTIONS(4963), + [anon_sym_return] = ACTIONS(4963), + [anon_sym_continue] = ACTIONS(4963), + [anon_sym_break] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_PLUS_EQ] = ACTIONS(4965), + [anon_sym_DASH_EQ] = ACTIONS(4965), + [anon_sym_STAR_EQ] = ACTIONS(4965), + [anon_sym_SLASH_EQ] = ACTIONS(4965), + [anon_sym_PERCENT_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_BANGin] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4963), + [anon_sym_BANGis] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_as_QMARK] = ACTIONS(4965), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_BANG_BANG] = ACTIONS(4965), + [anon_sym_data] = ACTIONS(4963), + [anon_sym_inner] = ACTIONS(4963), + [anon_sym_expect] = ACTIONS(4963), + [anon_sym_actual] = ACTIONS(4963), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4965), + [anon_sym_continue_AT] = ACTIONS(4965), + [anon_sym_break_AT] = ACTIONS(4965), + [sym_real_literal] = ACTIONS(4965), + [sym_integer_literal] = ACTIONS(4963), + [sym_hex_literal] = ACTIONS(4965), + [sym_bin_literal] = ACTIONS(4965), + [anon_sym_true] = ACTIONS(4963), + [anon_sym_false] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4965), + [sym__backtick_identifier] = ACTIONS(4965), + [sym__automatic_semicolon] = ACTIONS(4965), + [sym_safe_nav] = ACTIONS(4965), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4965), + }, + [3395] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_RBRACK] = ACTIONS(4812), + [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_DOT] = 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_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), }, - [3383] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6560), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [3396] = { + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_RBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_DASH_GT] = ACTIONS(4500), + [sym_label] = ACTIONS(4500), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_while] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), + [sym_multiline_comment] = ACTIONS(3), }, - [3384] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6562), - [anon_sym_COMMA] = ACTIONS(4144), - [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_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [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(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4146), - [anon_sym_inner] = ACTIONS(4146), - [anon_sym_expect] = ACTIONS(4146), - [anon_sym_actual] = ACTIONS(4146), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [3397] = { + [sym__alpha_identifier] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_RBRACK] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5029), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [anon_sym_COMMA] = ACTIONS(5029), + [anon_sym_RPAREN] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5027), + [anon_sym_GT] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_get] = ACTIONS(5027), + [anon_sym_set] = ACTIONS(5027), + [anon_sym_STAR] = ACTIONS(5027), + [anon_sym_DASH_GT] = ACTIONS(5029), + [sym_label] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5027), + [anon_sym_while] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5029), + [anon_sym_QMARK_COLON] = ACTIONS(5029), + [anon_sym_AMP_AMP] = ACTIONS(5029), + [anon_sym_PIPE_PIPE] = ACTIONS(5029), + [anon_sym_else] = ACTIONS(5027), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym_PLUS_EQ] = ACTIONS(5029), + [anon_sym_DASH_EQ] = ACTIONS(5029), + [anon_sym_STAR_EQ] = ACTIONS(5029), + [anon_sym_SLASH_EQ] = ACTIONS(5029), + [anon_sym_PERCENT_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_BANGin] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_BANGis] = ACTIONS(5029), + [anon_sym_PLUS] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5027), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_as_QMARK] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_BANG_BANG] = ACTIONS(5029), + [anon_sym_suspend] = ACTIONS(5027), + [anon_sym_sealed] = ACTIONS(5027), + [anon_sym_annotation] = ACTIONS(5027), + [anon_sym_data] = ACTIONS(5027), + [anon_sym_inner] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_lateinit] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_protected] = ACTIONS(5027), + [anon_sym_tailrec] = ACTIONS(5027), + [anon_sym_operator] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_inline] = ACTIONS(5027), + [anon_sym_external] = ACTIONS(5027), + [sym_property_modifier] = ACTIONS(5027), + [anon_sym_abstract] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_vararg] = ACTIONS(5027), + [anon_sym_noinline] = ACTIONS(5027), + [anon_sym_crossinline] = ACTIONS(5027), + [anon_sym_expect] = ACTIONS(5027), + [anon_sym_actual] = ACTIONS(5027), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5029), + [sym_safe_nav] = ACTIONS(5029), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), }, - [3385] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4732), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4732), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_LPAREN] = ACTIONS(4732), - [anon_sym_COMMA] = ACTIONS(4732), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_object] = ACTIONS(4730), - [anon_sym_fun] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4732), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_this] = ACTIONS(4730), - [anon_sym_super] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [sym_label] = ACTIONS(4730), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_QMARK_COLON] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4732), - [anon_sym_null] = ACTIONS(4730), - [anon_sym_if] = ACTIONS(4730), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_try] = ACTIONS(4730), - [anon_sym_throw] = ACTIONS(4730), - [anon_sym_return] = ACTIONS(4730), - [anon_sym_continue] = ACTIONS(4730), - [anon_sym_break] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4732), - [anon_sym_PLUS_EQ] = ACTIONS(4732), - [anon_sym_DASH_EQ] = ACTIONS(4732), - [anon_sym_STAR_EQ] = ACTIONS(4732), - [anon_sym_SLASH_EQ] = ACTIONS(4732), - [anon_sym_PERCENT_EQ] = ACTIONS(4732), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4732), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4732), - [anon_sym_LT_EQ] = ACTIONS(4732), - [anon_sym_GT_EQ] = ACTIONS(4732), - [anon_sym_BANGin] = ACTIONS(4732), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4732), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4732), - [anon_sym_DASH_DASH] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4730), - [anon_sym_BANG_BANG] = ACTIONS(4732), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4732), - [anon_sym_continue_AT] = ACTIONS(4732), - [anon_sym_break_AT] = ACTIONS(4732), - [sym_real_literal] = ACTIONS(4732), - [sym_integer_literal] = ACTIONS(4730), - [sym_hex_literal] = ACTIONS(4732), - [sym_bin_literal] = ACTIONS(4732), - [anon_sym_true] = ACTIONS(4730), - [anon_sym_false] = ACTIONS(4730), - [anon_sym_SQUOTE] = ACTIONS(4732), - [sym__backtick_identifier] = ACTIONS(4732), - [sym__automatic_semicolon] = ACTIONS(4732), - [sym_safe_nav] = ACTIONS(4732), + [3398] = { + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4732), }, - [3386] = { + [3399] = { [sym__alpha_identifier] = ACTIONS(4814), [anon_sym_AT] = ACTIONS(4816), [anon_sym_LBRACK] = ACTIONS(4816), @@ -373684,2554 +374827,1324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [3387] = { - [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(4426), - [anon_sym_RPAREN] = ACTIONS(4426), - [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_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), - }, - [3388] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(6564), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), - }, - [3389] = { - [sym__alpha_identifier] = ACTIONS(4895), - [anon_sym_AT] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4897), - [anon_sym_as] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4897), - [anon_sym_COMMA] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4895), - [anon_sym_GT] = ACTIONS(4895), - [anon_sym_where] = ACTIONS(4895), - [anon_sym_object] = ACTIONS(4895), - [anon_sym_fun] = ACTIONS(4895), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_get] = ACTIONS(4895), - [anon_sym_set] = ACTIONS(4895), - [anon_sym_this] = ACTIONS(4895), - [anon_sym_super] = ACTIONS(4895), - [anon_sym_STAR] = ACTIONS(4895), - [sym_label] = ACTIONS(4895), - [anon_sym_in] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(4897), - [anon_sym_QMARK_COLON] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_null] = ACTIONS(4895), - [anon_sym_if] = ACTIONS(4895), - [anon_sym_else] = ACTIONS(4895), - [anon_sym_when] = ACTIONS(4895), - [anon_sym_try] = ACTIONS(4895), - [anon_sym_throw] = ACTIONS(4895), - [anon_sym_return] = ACTIONS(4895), - [anon_sym_continue] = ACTIONS(4895), - [anon_sym_break] = ACTIONS(4895), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_PLUS_EQ] = ACTIONS(4897), - [anon_sym_DASH_EQ] = ACTIONS(4897), - [anon_sym_STAR_EQ] = ACTIONS(4897), - [anon_sym_SLASH_EQ] = ACTIONS(4897), - [anon_sym_PERCENT_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT_EQ] = ACTIONS(4897), - [anon_sym_GT_EQ] = ACTIONS(4897), - [anon_sym_BANGin] = ACTIONS(4897), - [anon_sym_is] = ACTIONS(4895), - [anon_sym_BANGis] = ACTIONS(4897), - [anon_sym_PLUS] = ACTIONS(4895), - [anon_sym_DASH] = ACTIONS(4895), - [anon_sym_SLASH] = ACTIONS(4895), - [anon_sym_PERCENT] = ACTIONS(4895), - [anon_sym_as_QMARK] = ACTIONS(4897), - [anon_sym_PLUS_PLUS] = ACTIONS(4897), - [anon_sym_DASH_DASH] = ACTIONS(4897), - [anon_sym_BANG] = ACTIONS(4895), - [anon_sym_BANG_BANG] = ACTIONS(4897), - [anon_sym_data] = ACTIONS(4895), - [anon_sym_inner] = ACTIONS(4895), - [anon_sym_expect] = ACTIONS(4895), - [anon_sym_actual] = ACTIONS(4895), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4897), - [anon_sym_continue_AT] = ACTIONS(4897), - [anon_sym_break_AT] = ACTIONS(4897), - [sym_real_literal] = ACTIONS(4897), - [sym_integer_literal] = ACTIONS(4895), - [sym_hex_literal] = ACTIONS(4897), - [sym_bin_literal] = ACTIONS(4897), - [anon_sym_true] = ACTIONS(4895), - [anon_sym_false] = ACTIONS(4895), - [anon_sym_SQUOTE] = ACTIONS(4897), - [sym__backtick_identifier] = ACTIONS(4897), - [sym__automatic_semicolon] = ACTIONS(4897), - [sym_safe_nav] = ACTIONS(4897), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4897), - }, - [3390] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_RBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_DASH_GT] = ACTIONS(4842), - [sym_label] = ACTIONS(4842), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_while] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(6566), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - }, - [3391] = { - [sym__alpha_identifier] = ACTIONS(4891), - [anon_sym_AT] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_as] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4893), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_LPAREN] = ACTIONS(4893), - [anon_sym_COMMA] = ACTIONS(4893), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_where] = ACTIONS(4891), - [anon_sym_object] = ACTIONS(4891), - [anon_sym_fun] = ACTIONS(4891), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4893), - [anon_sym_get] = ACTIONS(4891), - [anon_sym_set] = ACTIONS(4891), - [anon_sym_this] = ACTIONS(4891), - [anon_sym_super] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [sym_label] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_DOT_DOT] = ACTIONS(4893), - [anon_sym_QMARK_COLON] = ACTIONS(4893), - [anon_sym_AMP_AMP] = ACTIONS(4893), - [anon_sym_PIPE_PIPE] = ACTIONS(4893), - [anon_sym_null] = ACTIONS(4891), - [anon_sym_if] = ACTIONS(4891), - [anon_sym_else] = ACTIONS(4891), - [anon_sym_when] = ACTIONS(4891), - [anon_sym_try] = ACTIONS(4891), - [anon_sym_throw] = ACTIONS(4891), - [anon_sym_return] = ACTIONS(4891), - [anon_sym_continue] = ACTIONS(4891), - [anon_sym_break] = ACTIONS(4891), - [anon_sym_COLON_COLON] = ACTIONS(4893), - [anon_sym_PLUS_EQ] = ACTIONS(4893), - [anon_sym_DASH_EQ] = ACTIONS(4893), - [anon_sym_STAR_EQ] = ACTIONS(4893), - [anon_sym_SLASH_EQ] = ACTIONS(4893), - [anon_sym_PERCENT_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), - [anon_sym_LT_EQ] = ACTIONS(4893), - [anon_sym_GT_EQ] = ACTIONS(4893), - [anon_sym_BANGin] = ACTIONS(4893), - [anon_sym_is] = ACTIONS(4891), - [anon_sym_BANGis] = ACTIONS(4893), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4891), - [anon_sym_as_QMARK] = ACTIONS(4893), - [anon_sym_PLUS_PLUS] = ACTIONS(4893), - [anon_sym_DASH_DASH] = ACTIONS(4893), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_BANG_BANG] = ACTIONS(4893), - [anon_sym_data] = ACTIONS(4891), - [anon_sym_inner] = ACTIONS(4891), - [anon_sym_expect] = ACTIONS(4891), - [anon_sym_actual] = ACTIONS(4891), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4893), - [anon_sym_continue_AT] = ACTIONS(4893), - [anon_sym_break_AT] = ACTIONS(4893), - [sym_real_literal] = ACTIONS(4893), - [sym_integer_literal] = ACTIONS(4891), - [sym_hex_literal] = ACTIONS(4893), - [sym_bin_literal] = ACTIONS(4893), - [anon_sym_true] = ACTIONS(4891), - [anon_sym_false] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4893), - [sym__backtick_identifier] = ACTIONS(4893), - [sym__automatic_semicolon] = ACTIONS(4893), - [sym_safe_nav] = ACTIONS(4893), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4893), - }, - [3392] = { - [sym__alpha_identifier] = ACTIONS(4855), - [anon_sym_AT] = ACTIONS(4857), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_RBRACK] = ACTIONS(4857), - [anon_sym_as] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4857), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4857), - [anon_sym_COMMA] = ACTIONS(4857), - [anon_sym_RPAREN] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4855), - [anon_sym_GT] = ACTIONS(4855), - [anon_sym_where] = ACTIONS(4855), - [anon_sym_DOT] = ACTIONS(4855), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_get] = ACTIONS(4855), - [anon_sym_set] = ACTIONS(4855), - [anon_sym_STAR] = ACTIONS(4855), - [anon_sym_DASH_GT] = ACTIONS(4857), - [sym_label] = ACTIONS(4857), - [anon_sym_in] = ACTIONS(4855), - [anon_sym_while] = ACTIONS(4855), - [anon_sym_DOT_DOT] = ACTIONS(4857), - [anon_sym_QMARK_COLON] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [anon_sym_else] = ACTIONS(4855), - [anon_sym_COLON_COLON] = ACTIONS(4857), - [anon_sym_PLUS_EQ] = ACTIONS(4857), - [anon_sym_DASH_EQ] = ACTIONS(4857), - [anon_sym_STAR_EQ] = ACTIONS(4857), - [anon_sym_SLASH_EQ] = ACTIONS(4857), - [anon_sym_PERCENT_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ] = ACTIONS(4855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4857), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_BANGin] = ACTIONS(4857), - [anon_sym_is] = ACTIONS(4855), - [anon_sym_BANGis] = ACTIONS(4857), - [anon_sym_PLUS] = ACTIONS(4855), - [anon_sym_DASH] = ACTIONS(4855), - [anon_sym_SLASH] = ACTIONS(4855), - [anon_sym_PERCENT] = ACTIONS(4855), - [anon_sym_as_QMARK] = ACTIONS(4857), - [anon_sym_PLUS_PLUS] = ACTIONS(4857), - [anon_sym_DASH_DASH] = ACTIONS(4857), - [anon_sym_BANG_BANG] = ACTIONS(4857), - [anon_sym_suspend] = ACTIONS(4855), - [anon_sym_sealed] = ACTIONS(4855), - [anon_sym_annotation] = ACTIONS(4855), - [anon_sym_data] = ACTIONS(4855), - [anon_sym_inner] = ACTIONS(4855), - [anon_sym_override] = ACTIONS(4855), - [anon_sym_lateinit] = ACTIONS(4855), - [anon_sym_public] = ACTIONS(4855), - [anon_sym_private] = ACTIONS(4855), - [anon_sym_internal] = ACTIONS(4855), - [anon_sym_protected] = ACTIONS(4855), - [anon_sym_tailrec] = ACTIONS(4855), - [anon_sym_operator] = ACTIONS(4855), - [anon_sym_infix] = ACTIONS(4855), - [anon_sym_inline] = ACTIONS(4855), - [anon_sym_external] = ACTIONS(4855), - [sym_property_modifier] = ACTIONS(4855), - [anon_sym_abstract] = ACTIONS(4855), - [anon_sym_final] = ACTIONS(4855), - [anon_sym_open] = ACTIONS(4855), - [anon_sym_vararg] = ACTIONS(4855), - [anon_sym_noinline] = ACTIONS(4855), - [anon_sym_crossinline] = ACTIONS(4855), - [anon_sym_expect] = ACTIONS(4855), - [anon_sym_actual] = ACTIONS(4855), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4857), - [sym_safe_nav] = ACTIONS(4857), - [sym_multiline_comment] = ACTIONS(3), - }, - [3393] = { - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3971), - [anon_sym_RBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_RPAREN] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3971), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3971), - [anon_sym_PLUS_EQ] = ACTIONS(3971), - [anon_sym_DASH_EQ] = ACTIONS(3971), - [anon_sym_STAR_EQ] = ACTIONS(3971), - [anon_sym_SLASH_EQ] = ACTIONS(3971), - [anon_sym_PERCENT_EQ] = ACTIONS(3971), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3971), - [anon_sym_DASH_DASH] = ACTIONS(3971), - [anon_sym_BANG_BANG] = ACTIONS(3971), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3971), - [sym_multiline_comment] = ACTIONS(3), - }, - [3394] = { - [sym__alpha_identifier] = ACTIONS(4981), - [anon_sym_AT] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_RBRACK] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_where] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_get] = ACTIONS(4981), - [anon_sym_set] = ACTIONS(4981), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4983), - [sym_label] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4981), - [anon_sym_while] = ACTIONS(4981), - [anon_sym_DOT_DOT] = ACTIONS(4983), - [anon_sym_QMARK_COLON] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_else] = ACTIONS(4981), - [anon_sym_COLON_COLON] = ACTIONS(4983), - [anon_sym_PLUS_EQ] = ACTIONS(4983), - [anon_sym_DASH_EQ] = ACTIONS(4983), - [anon_sym_STAR_EQ] = ACTIONS(4983), - [anon_sym_SLASH_EQ] = ACTIONS(4983), - [anon_sym_PERCENT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_BANGin] = ACTIONS(4983), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_BANGis] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_as_QMARK] = ACTIONS(4983), - [anon_sym_PLUS_PLUS] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_BANG_BANG] = ACTIONS(4983), - [anon_sym_suspend] = ACTIONS(4981), - [anon_sym_sealed] = ACTIONS(4981), - [anon_sym_annotation] = ACTIONS(4981), - [anon_sym_data] = ACTIONS(4981), - [anon_sym_inner] = ACTIONS(4981), - [anon_sym_override] = ACTIONS(4981), - [anon_sym_lateinit] = ACTIONS(4981), - [anon_sym_public] = ACTIONS(4981), - [anon_sym_private] = ACTIONS(4981), - [anon_sym_internal] = ACTIONS(4981), - [anon_sym_protected] = ACTIONS(4981), - [anon_sym_tailrec] = ACTIONS(4981), - [anon_sym_operator] = ACTIONS(4981), - [anon_sym_infix] = ACTIONS(4981), - [anon_sym_inline] = ACTIONS(4981), - [anon_sym_external] = ACTIONS(4981), - [sym_property_modifier] = ACTIONS(4981), - [anon_sym_abstract] = ACTIONS(4981), - [anon_sym_final] = ACTIONS(4981), - [anon_sym_open] = ACTIONS(4981), - [anon_sym_vararg] = ACTIONS(4981), - [anon_sym_noinline] = ACTIONS(4981), - [anon_sym_crossinline] = ACTIONS(4981), - [anon_sym_expect] = ACTIONS(4981), - [anon_sym_actual] = ACTIONS(4981), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4983), - [sym_safe_nav] = ACTIONS(4983), - [sym_multiline_comment] = ACTIONS(3), - }, - [3395] = { - [sym__alpha_identifier] = ACTIONS(5017), - [anon_sym_AT] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [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_DOT] = 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_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), - [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), - }, - [3396] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_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_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_this] = ACTIONS(4718), - [anon_sym_super] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4718), - [anon_sym_if] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_when] = ACTIONS(4718), - [anon_sym_try] = ACTIONS(4718), - [anon_sym_throw] = ACTIONS(4718), - [anon_sym_return] = ACTIONS(4718), - [anon_sym_continue] = ACTIONS(4718), - [anon_sym_break] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4720), - [anon_sym_continue_AT] = ACTIONS(4720), - [anon_sym_break_AT] = ACTIONS(4720), - [sym_real_literal] = ACTIONS(4720), - [sym_integer_literal] = ACTIONS(4718), - [sym_hex_literal] = ACTIONS(4720), - [sym_bin_literal] = ACTIONS(4720), - [anon_sym_true] = ACTIONS(4718), - [anon_sym_false] = ACTIONS(4718), - [anon_sym_SQUOTE] = ACTIONS(4720), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4720), - }, - [3397] = { - [aux_sym_nullable_type_repeat1] = STATE(3407), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_by] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_object] = ACTIONS(4248), - [anon_sym_fun] = ACTIONS(4248), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [anon_sym_this] = ACTIONS(4248), - [anon_sym_super] = ACTIONS(4248), - [sym__quest] = ACTIONS(6569), - [anon_sym_STAR] = ACTIONS(4250), - [sym_label] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_null] = ACTIONS(4248), - [anon_sym_if] = ACTIONS(4248), - [anon_sym_else] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4248), - [anon_sym_try] = ACTIONS(4248), - [anon_sym_throw] = ACTIONS(4248), - [anon_sym_return] = ACTIONS(4248), - [anon_sym_continue] = ACTIONS(4248), - [anon_sym_break] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4250), - [anon_sym_BANGin] = ACTIONS(4250), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_BANGis] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_suspend] = ACTIONS(4248), - [anon_sym_sealed] = ACTIONS(4248), - [anon_sym_annotation] = ACTIONS(4248), - [anon_sym_data] = ACTIONS(4248), - [anon_sym_inner] = ACTIONS(4248), - [anon_sym_override] = ACTIONS(4248), - [anon_sym_lateinit] = ACTIONS(4248), - [anon_sym_public] = ACTIONS(4248), - [anon_sym_private] = ACTIONS(4248), - [anon_sym_internal] = ACTIONS(4248), - [anon_sym_protected] = ACTIONS(4248), - [anon_sym_tailrec] = ACTIONS(4248), - [anon_sym_operator] = ACTIONS(4248), - [anon_sym_infix] = ACTIONS(4248), - [anon_sym_inline] = ACTIONS(4248), - [anon_sym_external] = ACTIONS(4248), - [sym_property_modifier] = ACTIONS(4248), - [anon_sym_abstract] = ACTIONS(4248), - [anon_sym_final] = ACTIONS(4248), - [anon_sym_open] = ACTIONS(4248), - [anon_sym_vararg] = ACTIONS(4248), - [anon_sym_noinline] = ACTIONS(4248), - [anon_sym_crossinline] = ACTIONS(4248), - [anon_sym_expect] = ACTIONS(4248), - [anon_sym_actual] = ACTIONS(4248), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4250), - [anon_sym_continue_AT] = ACTIONS(4250), - [anon_sym_break_AT] = ACTIONS(4250), - [sym_real_literal] = ACTIONS(4250), - [sym_integer_literal] = ACTIONS(4248), - [sym_hex_literal] = ACTIONS(4250), - [sym_bin_literal] = ACTIONS(4250), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4250), - [sym__backtick_identifier] = ACTIONS(4250), - [sym__automatic_semicolon] = ACTIONS(4250), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4250), - }, - [3398] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), - }, - [3399] = { - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_object] = ACTIONS(3969), - [anon_sym_fun] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_this] = ACTIONS(3969), - [anon_sym_super] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3969), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_null] = ACTIONS(3969), - [anon_sym_if] = ACTIONS(3969), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_try] = ACTIONS(3969), - [anon_sym_throw] = ACTIONS(3969), - [anon_sym_return] = ACTIONS(3969), - [anon_sym_continue] = ACTIONS(3969), - [anon_sym_break] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3971), - [anon_sym_PLUS_EQ] = ACTIONS(3971), - [anon_sym_DASH_EQ] = ACTIONS(3971), - [anon_sym_STAR_EQ] = ACTIONS(3971), - [anon_sym_SLASH_EQ] = ACTIONS(3971), - [anon_sym_PERCENT_EQ] = ACTIONS(3971), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3971), - [anon_sym_DASH_DASH] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3969), - [anon_sym_BANG_BANG] = ACTIONS(3971), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3971), - [anon_sym_continue_AT] = ACTIONS(3971), - [anon_sym_break_AT] = ACTIONS(3971), - [sym_real_literal] = ACTIONS(3971), - [sym_integer_literal] = ACTIONS(3969), - [sym_hex_literal] = ACTIONS(3971), - [sym_bin_literal] = ACTIONS(3971), - [anon_sym_true] = ACTIONS(3969), - [anon_sym_false] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(3971), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3971), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3971), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), }, [3400] = { - [sym__alpha_identifier] = ACTIONS(4895), - [anon_sym_AT] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4897), - [anon_sym_RBRACK] = ACTIONS(4897), - [anon_sym_as] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4897), - [anon_sym_COMMA] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4895), - [anon_sym_GT] = ACTIONS(4895), - [anon_sym_where] = ACTIONS(4895), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_get] = ACTIONS(4895), - [anon_sym_set] = ACTIONS(4895), - [anon_sym_STAR] = ACTIONS(4895), - [anon_sym_DASH_GT] = ACTIONS(4897), - [sym_label] = ACTIONS(4897), - [anon_sym_in] = ACTIONS(4895), - [anon_sym_while] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(4897), - [anon_sym_QMARK_COLON] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_else] = ACTIONS(4895), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_PLUS_EQ] = ACTIONS(4897), - [anon_sym_DASH_EQ] = ACTIONS(4897), - [anon_sym_STAR_EQ] = ACTIONS(4897), - [anon_sym_SLASH_EQ] = ACTIONS(4897), - [anon_sym_PERCENT_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT_EQ] = ACTIONS(4897), - [anon_sym_GT_EQ] = ACTIONS(4897), - [anon_sym_BANGin] = ACTIONS(4897), - [anon_sym_is] = ACTIONS(4895), - [anon_sym_BANGis] = ACTIONS(4897), - [anon_sym_PLUS] = ACTIONS(4895), - [anon_sym_DASH] = ACTIONS(4895), - [anon_sym_SLASH] = ACTIONS(4895), - [anon_sym_PERCENT] = ACTIONS(4895), - [anon_sym_as_QMARK] = ACTIONS(4897), - [anon_sym_PLUS_PLUS] = ACTIONS(4897), - [anon_sym_DASH_DASH] = ACTIONS(4897), - [anon_sym_BANG_BANG] = ACTIONS(4897), - [anon_sym_suspend] = ACTIONS(4895), - [anon_sym_sealed] = ACTIONS(4895), - [anon_sym_annotation] = ACTIONS(4895), - [anon_sym_data] = ACTIONS(4895), - [anon_sym_inner] = ACTIONS(4895), - [anon_sym_override] = ACTIONS(4895), - [anon_sym_lateinit] = ACTIONS(4895), - [anon_sym_public] = ACTIONS(4895), - [anon_sym_private] = ACTIONS(4895), - [anon_sym_internal] = ACTIONS(4895), - [anon_sym_protected] = ACTIONS(4895), - [anon_sym_tailrec] = ACTIONS(4895), - [anon_sym_operator] = ACTIONS(4895), - [anon_sym_infix] = ACTIONS(4895), - [anon_sym_inline] = ACTIONS(4895), - [anon_sym_external] = ACTIONS(4895), - [sym_property_modifier] = ACTIONS(4895), - [anon_sym_abstract] = ACTIONS(4895), - [anon_sym_final] = ACTIONS(4895), - [anon_sym_open] = ACTIONS(4895), - [anon_sym_vararg] = ACTIONS(4895), - [anon_sym_noinline] = ACTIONS(4895), - [anon_sym_crossinline] = ACTIONS(4895), - [anon_sym_expect] = ACTIONS(4895), - [anon_sym_actual] = ACTIONS(4895), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4897), - [sym_safe_nav] = ACTIONS(4897), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(3410), + [sym__alpha_identifier] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_COMMA] = ACTIONS(4261), + [anon_sym_by] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_object] = ACTIONS(4259), + [anon_sym_fun] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4259), + [anon_sym_set] = ACTIONS(4259), + [anon_sym_this] = ACTIONS(4259), + [anon_sym_super] = ACTIONS(4259), + [sym__quest] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(4261), + [sym_label] = ACTIONS(4259), + [anon_sym_in] = ACTIONS(4259), + [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(4261), + [anon_sym_BANGin] = ACTIONS(4261), + [anon_sym_is] = ACTIONS(4259), + [anon_sym_BANGis] = ACTIONS(4261), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_BANG] = ACTIONS(4259), + [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_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(4261), + [anon_sym_continue_AT] = ACTIONS(4261), + [anon_sym_break_AT] = ACTIONS(4261), + [sym_real_literal] = ACTIONS(4261), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4261), + [sym_bin_literal] = ACTIONS(4261), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [sym__backtick_identifier] = ACTIONS(4261), + [sym__automatic_semicolon] = ACTIONS(4261), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4261), }, [3401] = { - [sym__alpha_identifier] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_label] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(1401), - [anon_sym_inner] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(1401), - [anon_sym_actual] = ACTIONS(1401), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, [3402] = { - [sym__alpha_identifier] = ACTIONS(4917), - [anon_sym_AT] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_RBRACK] = ACTIONS(4919), - [anon_sym_as] = ACTIONS(4917), - [anon_sym_EQ] = ACTIONS(4917), - [anon_sym_LBRACE] = ACTIONS(4919), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_where] = ACTIONS(4917), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_SEMI] = ACTIONS(4919), - [anon_sym_get] = ACTIONS(4917), - [anon_sym_set] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [anon_sym_DASH_GT] = ACTIONS(4919), - [sym_label] = ACTIONS(4919), - [anon_sym_in] = ACTIONS(4917), - [anon_sym_while] = ACTIONS(4917), - [anon_sym_DOT_DOT] = ACTIONS(4919), - [anon_sym_QMARK_COLON] = ACTIONS(4919), - [anon_sym_AMP_AMP] = ACTIONS(4919), - [anon_sym_PIPE_PIPE] = ACTIONS(4919), - [anon_sym_else] = ACTIONS(4917), - [anon_sym_COLON_COLON] = ACTIONS(4919), - [anon_sym_PLUS_EQ] = ACTIONS(4919), - [anon_sym_DASH_EQ] = ACTIONS(4919), - [anon_sym_STAR_EQ] = ACTIONS(4919), - [anon_sym_SLASH_EQ] = ACTIONS(4919), - [anon_sym_PERCENT_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4919), - [anon_sym_LT_EQ] = ACTIONS(4919), - [anon_sym_GT_EQ] = ACTIONS(4919), - [anon_sym_BANGin] = ACTIONS(4919), - [anon_sym_is] = ACTIONS(4917), - [anon_sym_BANGis] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_PERCENT] = ACTIONS(4917), - [anon_sym_as_QMARK] = ACTIONS(4919), - [anon_sym_PLUS_PLUS] = ACTIONS(4919), - [anon_sym_DASH_DASH] = ACTIONS(4919), - [anon_sym_BANG_BANG] = ACTIONS(4919), - [anon_sym_suspend] = ACTIONS(4917), - [anon_sym_sealed] = ACTIONS(4917), - [anon_sym_annotation] = ACTIONS(4917), - [anon_sym_data] = ACTIONS(4917), - [anon_sym_inner] = ACTIONS(4917), - [anon_sym_override] = ACTIONS(4917), - [anon_sym_lateinit] = ACTIONS(4917), - [anon_sym_public] = ACTIONS(4917), - [anon_sym_private] = ACTIONS(4917), - [anon_sym_internal] = ACTIONS(4917), - [anon_sym_protected] = ACTIONS(4917), - [anon_sym_tailrec] = ACTIONS(4917), - [anon_sym_operator] = ACTIONS(4917), - [anon_sym_infix] = ACTIONS(4917), - [anon_sym_inline] = ACTIONS(4917), - [anon_sym_external] = ACTIONS(4917), - [sym_property_modifier] = ACTIONS(4917), - [anon_sym_abstract] = ACTIONS(4917), - [anon_sym_final] = ACTIONS(4917), - [anon_sym_open] = ACTIONS(4917), - [anon_sym_vararg] = ACTIONS(4917), - [anon_sym_noinline] = ACTIONS(4917), - [anon_sym_crossinline] = ACTIONS(4917), - [anon_sym_expect] = ACTIONS(4917), - [anon_sym_actual] = ACTIONS(4917), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4919), - [sym_safe_nav] = ACTIONS(4919), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, [3403] = { - [sym__alpha_identifier] = ACTIONS(4925), - [anon_sym_AT] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_as] = ACTIONS(4925), - [anon_sym_EQ] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_where] = ACTIONS(4925), - [anon_sym_DOT] = ACTIONS(4925), - [anon_sym_SEMI] = ACTIONS(4927), - [anon_sym_get] = ACTIONS(4925), - [anon_sym_set] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_DASH_GT] = ACTIONS(4927), - [sym_label] = ACTIONS(4927), - [anon_sym_in] = ACTIONS(4925), - [anon_sym_while] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(4927), - [anon_sym_QMARK_COLON] = ACTIONS(4927), - [anon_sym_AMP_AMP] = ACTIONS(4927), - [anon_sym_PIPE_PIPE] = ACTIONS(4927), - [anon_sym_else] = ACTIONS(4925), - [anon_sym_COLON_COLON] = ACTIONS(4927), - [anon_sym_PLUS_EQ] = ACTIONS(4927), - [anon_sym_DASH_EQ] = ACTIONS(4927), - [anon_sym_STAR_EQ] = ACTIONS(4927), - [anon_sym_SLASH_EQ] = ACTIONS(4927), - [anon_sym_PERCENT_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4927), - [anon_sym_LT_EQ] = ACTIONS(4927), - [anon_sym_GT_EQ] = ACTIONS(4927), - [anon_sym_BANGin] = ACTIONS(4927), - [anon_sym_is] = ACTIONS(4925), - [anon_sym_BANGis] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_PERCENT] = ACTIONS(4925), - [anon_sym_as_QMARK] = ACTIONS(4927), - [anon_sym_PLUS_PLUS] = ACTIONS(4927), - [anon_sym_DASH_DASH] = ACTIONS(4927), - [anon_sym_BANG_BANG] = ACTIONS(4927), - [anon_sym_suspend] = ACTIONS(4925), - [anon_sym_sealed] = ACTIONS(4925), - [anon_sym_annotation] = ACTIONS(4925), - [anon_sym_data] = ACTIONS(4925), - [anon_sym_inner] = ACTIONS(4925), - [anon_sym_override] = ACTIONS(4925), - [anon_sym_lateinit] = ACTIONS(4925), - [anon_sym_public] = ACTIONS(4925), - [anon_sym_private] = ACTIONS(4925), - [anon_sym_internal] = ACTIONS(4925), - [anon_sym_protected] = ACTIONS(4925), - [anon_sym_tailrec] = ACTIONS(4925), - [anon_sym_operator] = ACTIONS(4925), - [anon_sym_infix] = ACTIONS(4925), - [anon_sym_inline] = ACTIONS(4925), - [anon_sym_external] = ACTIONS(4925), - [sym_property_modifier] = ACTIONS(4925), - [anon_sym_abstract] = ACTIONS(4925), - [anon_sym_final] = ACTIONS(4925), - [anon_sym_open] = ACTIONS(4925), - [anon_sym_vararg] = ACTIONS(4925), - [anon_sym_noinline] = ACTIONS(4925), - [anon_sym_crossinline] = ACTIONS(4925), - [anon_sym_expect] = ACTIONS(4925), - [anon_sym_actual] = ACTIONS(4925), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4927), - [sym_safe_nav] = ACTIONS(4927), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4893), + [anon_sym_AT] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_as] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_where] = ACTIONS(4893), + [anon_sym_object] = ACTIONS(4893), + [anon_sym_fun] = ACTIONS(4893), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_get] = ACTIONS(4893), + [anon_sym_set] = ACTIONS(4893), + [anon_sym_this] = ACTIONS(4893), + [anon_sym_super] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [sym_label] = ACTIONS(4893), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_DOT_DOT] = ACTIONS(4895), + [anon_sym_QMARK_COLON] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_null] = ACTIONS(4893), + [anon_sym_if] = ACTIONS(4893), + [anon_sym_else] = ACTIONS(4893), + [anon_sym_when] = ACTIONS(4893), + [anon_sym_try] = ACTIONS(4893), + [anon_sym_throw] = ACTIONS(4893), + [anon_sym_return] = ACTIONS(4893), + [anon_sym_continue] = ACTIONS(4893), + [anon_sym_break] = ACTIONS(4893), + [anon_sym_COLON_COLON] = ACTIONS(4895), + [anon_sym_PLUS_EQ] = ACTIONS(4895), + [anon_sym_DASH_EQ] = ACTIONS(4895), + [anon_sym_STAR_EQ] = ACTIONS(4895), + [anon_sym_SLASH_EQ] = ACTIONS(4895), + [anon_sym_PERCENT_EQ] = ACTIONS(4895), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), + [anon_sym_LT_EQ] = ACTIONS(4895), + [anon_sym_GT_EQ] = ACTIONS(4895), + [anon_sym_BANGin] = ACTIONS(4895), + [anon_sym_is] = ACTIONS(4893), + [anon_sym_BANGis] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_as_QMARK] = ACTIONS(4895), + [anon_sym_PLUS_PLUS] = ACTIONS(4895), + [anon_sym_DASH_DASH] = ACTIONS(4895), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_BANG_BANG] = ACTIONS(4895), + [anon_sym_data] = ACTIONS(4893), + [anon_sym_inner] = ACTIONS(4893), + [anon_sym_expect] = ACTIONS(4893), + [anon_sym_actual] = ACTIONS(4893), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4895), + [anon_sym_continue_AT] = ACTIONS(4895), + [anon_sym_break_AT] = ACTIONS(4895), + [sym_real_literal] = ACTIONS(4895), + [sym_integer_literal] = ACTIONS(4893), + [sym_hex_literal] = ACTIONS(4895), + [sym_bin_literal] = ACTIONS(4895), + [anon_sym_true] = ACTIONS(4893), + [anon_sym_false] = ACTIONS(4893), + [anon_sym_SQUOTE] = ACTIONS(4895), + [sym__backtick_identifier] = ACTIONS(4895), + [sym__automatic_semicolon] = ACTIONS(4895), + [sym_safe_nav] = ACTIONS(4895), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4895), }, [3404] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_RPAREN] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_DASH_GT] = ACTIONS(4141), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [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(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4141), + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1762), + [anon_sym_set] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1764), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(1762), + [anon_sym_sealed] = ACTIONS(1762), + [anon_sym_annotation] = ACTIONS(1762), + [anon_sym_data] = ACTIONS(1762), + [anon_sym_inner] = ACTIONS(1762), + [anon_sym_override] = ACTIONS(1762), + [anon_sym_lateinit] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_internal] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_tailrec] = ACTIONS(1762), + [anon_sym_operator] = ACTIONS(1762), + [anon_sym_infix] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_external] = ACTIONS(1762), + [sym_property_modifier] = ACTIONS(1762), + [anon_sym_abstract] = ACTIONS(1762), + [anon_sym_final] = ACTIONS(1762), + [anon_sym_open] = ACTIONS(1762), + [anon_sym_vararg] = ACTIONS(1762), + [anon_sym_noinline] = ACTIONS(1762), + [anon_sym_crossinline] = ACTIONS(1762), + [anon_sym_expect] = ACTIONS(1762), + [anon_sym_actual] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, [3405] = { - [aux_sym_nullable_type_repeat1] = STATE(3397), - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [sym__quest] = ACTIONS(6510), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(205), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_else] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(207), + [anon_sym_sealed] = ACTIONS(207), + [anon_sym_annotation] = ACTIONS(207), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_override] = ACTIONS(207), + [anon_sym_lateinit] = ACTIONS(207), + [anon_sym_public] = ACTIONS(207), + [anon_sym_private] = ACTIONS(207), + [anon_sym_internal] = ACTIONS(207), + [anon_sym_protected] = ACTIONS(207), + [anon_sym_tailrec] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(207), + [anon_sym_infix] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_external] = ACTIONS(207), + [sym_property_modifier] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_open] = ACTIONS(207), + [anon_sym_vararg] = ACTIONS(207), + [anon_sym_noinline] = ACTIONS(207), + [anon_sym_crossinline] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), }, [3406] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_where] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_DASH_GT] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_while] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4265), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_by] = ACTIONS(4265), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4265), + [anon_sym_where] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_get] = ACTIONS(4265), + [anon_sym_set] = ACTIONS(4265), + [sym__quest] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_QMARK_COLON] = ACTIONS(4267), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4267), + [anon_sym_else] = ACTIONS(4265), + [anon_sym_COLON_COLON] = ACTIONS(4267), + [anon_sym_PLUS_EQ] = ACTIONS(4267), + [anon_sym_DASH_EQ] = ACTIONS(4267), + [anon_sym_STAR_EQ] = ACTIONS(4267), + [anon_sym_SLASH_EQ] = ACTIONS(4267), + [anon_sym_PERCENT_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ] = ACTIONS(4265), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4267), + [anon_sym_LT_EQ] = ACTIONS(4267), + [anon_sym_GT_EQ] = ACTIONS(4267), + [anon_sym_BANGin] = ACTIONS(4267), + [anon_sym_is] = ACTIONS(4265), + [anon_sym_BANGis] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4265), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4265), + [anon_sym_PERCENT] = ACTIONS(4265), + [anon_sym_as_QMARK] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4267), + [anon_sym_suspend] = ACTIONS(4265), + [anon_sym_sealed] = ACTIONS(4265), + [anon_sym_annotation] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4265), + [anon_sym_inner] = ACTIONS(4265), + [anon_sym_override] = ACTIONS(4265), + [anon_sym_lateinit] = ACTIONS(4265), + [anon_sym_public] = ACTIONS(4265), + [anon_sym_private] = ACTIONS(4265), + [anon_sym_internal] = ACTIONS(4265), + [anon_sym_protected] = ACTIONS(4265), + [anon_sym_tailrec] = ACTIONS(4265), + [anon_sym_operator] = ACTIONS(4265), + [anon_sym_infix] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym_external] = ACTIONS(4265), + [sym_property_modifier] = ACTIONS(4265), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_final] = ACTIONS(4265), + [anon_sym_open] = ACTIONS(4265), + [anon_sym_vararg] = ACTIONS(4265), + [anon_sym_noinline] = ACTIONS(4265), + [anon_sym_crossinline] = ACTIONS(4265), + [anon_sym_expect] = ACTIONS(4265), + [anon_sym_actual] = ACTIONS(4265), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4267), + [sym__automatic_semicolon] = ACTIONS(4267), + [sym_safe_nav] = ACTIONS(4267), [sym_multiline_comment] = ACTIONS(3), }, [3407] = { - [aux_sym_nullable_type_repeat1] = STATE(3407), - [sym__alpha_identifier] = ACTIONS(4235), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4235), - [anon_sym_where] = ACTIONS(4235), - [anon_sym_object] = ACTIONS(4235), - [anon_sym_fun] = ACTIONS(4235), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4235), - [anon_sym_set] = ACTIONS(4235), - [anon_sym_this] = ACTIONS(4235), - [anon_sym_super] = ACTIONS(4235), - [sym__quest] = ACTIONS(6571), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4235), - [anon_sym_in] = ACTIONS(4235), - [anon_sym_null] = ACTIONS(4235), - [anon_sym_if] = ACTIONS(4235), - [anon_sym_else] = ACTIONS(4235), - [anon_sym_when] = ACTIONS(4235), - [anon_sym_try] = ACTIONS(4235), - [anon_sym_throw] = ACTIONS(4235), - [anon_sym_return] = ACTIONS(4235), - [anon_sym_continue] = ACTIONS(4235), - [anon_sym_break] = ACTIONS(4235), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANGin] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4235), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_suspend] = ACTIONS(4235), - [anon_sym_sealed] = ACTIONS(4235), - [anon_sym_annotation] = ACTIONS(4235), - [anon_sym_data] = ACTIONS(4235), - [anon_sym_inner] = ACTIONS(4235), - [anon_sym_override] = ACTIONS(4235), - [anon_sym_lateinit] = ACTIONS(4235), - [anon_sym_public] = ACTIONS(4235), - [anon_sym_private] = ACTIONS(4235), - [anon_sym_internal] = ACTIONS(4235), - [anon_sym_protected] = ACTIONS(4235), - [anon_sym_tailrec] = ACTIONS(4235), - [anon_sym_operator] = ACTIONS(4235), - [anon_sym_infix] = ACTIONS(4235), - [anon_sym_inline] = ACTIONS(4235), - [anon_sym_external] = ACTIONS(4235), - [sym_property_modifier] = ACTIONS(4235), - [anon_sym_abstract] = ACTIONS(4235), - [anon_sym_final] = ACTIONS(4235), - [anon_sym_open] = ACTIONS(4235), - [anon_sym_vararg] = ACTIONS(4235), - [anon_sym_noinline] = ACTIONS(4235), - [anon_sym_crossinline] = ACTIONS(4235), - [anon_sym_expect] = ACTIONS(4235), - [anon_sym_actual] = ACTIONS(4235), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4235), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [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_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), }, [3408] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6574), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(3400), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_by] = 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), + [sym__quest] = ACTIONS(6528), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [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_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_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [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_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), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), }, [3409] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), }, [3410] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_RBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_DASH_GT] = ACTIONS(4842), - [sym_label] = ACTIONS(4842), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_while] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(6566), - [anon_sym_PLUS_EQ] = ACTIONS(4877), - [anon_sym_DASH_EQ] = ACTIONS(4877), - [anon_sym_STAR_EQ] = ACTIONS(4877), - [anon_sym_SLASH_EQ] = ACTIONS(4877), - [anon_sym_PERCENT_EQ] = ACTIONS(4877), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_nullable_type_repeat1] = STATE(3410), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_EQ] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_by] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [sym__quest] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_null] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), }, [3411] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6576), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4144), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6624), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [3412] = { - [sym_function_body] = STATE(3794), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6578), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, [3413] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_RBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(6580), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_while] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [sym_function_body] = STATE(3715), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), [sym_multiline_comment] = ACTIONS(3), }, [3414] = { - [sym__alpha_identifier] = ACTIONS(4949), - [anon_sym_AT] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_as] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_RBRACE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_where] = ACTIONS(4949), - [anon_sym_object] = ACTIONS(4949), - [anon_sym_fun] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_get] = ACTIONS(4949), - [anon_sym_set] = ACTIONS(4949), - [anon_sym_this] = ACTIONS(4949), - [anon_sym_super] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [sym_label] = ACTIONS(4949), - [anon_sym_in] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4951), - [anon_sym_QMARK_COLON] = ACTIONS(4951), - [anon_sym_AMP_AMP] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4951), - [anon_sym_null] = ACTIONS(4949), - [anon_sym_if] = ACTIONS(4949), - [anon_sym_else] = ACTIONS(4949), - [anon_sym_when] = ACTIONS(4949), - [anon_sym_try] = ACTIONS(4949), - [anon_sym_throw] = ACTIONS(4949), - [anon_sym_return] = ACTIONS(4949), - [anon_sym_continue] = ACTIONS(4949), - [anon_sym_break] = ACTIONS(4949), - [anon_sym_COLON_COLON] = ACTIONS(4951), - [anon_sym_PLUS_EQ] = ACTIONS(4951), - [anon_sym_DASH_EQ] = ACTIONS(4951), - [anon_sym_STAR_EQ] = ACTIONS(4951), - [anon_sym_SLASH_EQ] = ACTIONS(4951), - [anon_sym_PERCENT_EQ] = ACTIONS(4951), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4951), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4951), - [anon_sym_BANGin] = ACTIONS(4951), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_BANGis] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_as_QMARK] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_BANG_BANG] = ACTIONS(4951), - [anon_sym_data] = ACTIONS(4949), - [anon_sym_inner] = ACTIONS(4949), - [anon_sym_expect] = ACTIONS(4949), - [anon_sym_actual] = ACTIONS(4949), + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4837), + [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(6603), + [anon_sym_PLUS_EQ] = ACTIONS(4839), + [anon_sym_DASH_EQ] = ACTIONS(4839), + [anon_sym_STAR_EQ] = ACTIONS(4839), + [anon_sym_SLASH_EQ] = ACTIONS(4839), + [anon_sym_PERCENT_EQ] = ACTIONS(4839), + [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_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4951), - [anon_sym_continue_AT] = ACTIONS(4951), - [anon_sym_break_AT] = ACTIONS(4951), - [sym_real_literal] = ACTIONS(4951), - [sym_integer_literal] = ACTIONS(4949), - [sym_hex_literal] = ACTIONS(4951), - [sym_bin_literal] = ACTIONS(4951), - [anon_sym_true] = ACTIONS(4949), - [anon_sym_false] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4951), - [sym__backtick_identifier] = ACTIONS(4951), - [sym__automatic_semicolon] = ACTIONS(4951), - [sym_safe_nav] = ACTIONS(4951), + [anon_sym_return_AT] = ACTIONS(4828), + [anon_sym_continue_AT] = ACTIONS(4828), + [anon_sym_break_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(4951), + [sym__string_start] = ACTIONS(4828), }, [3415] = { - [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [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_object] = ACTIONS(4762), - [anon_sym_fun] = ACTIONS(4762), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(4762), - [anon_sym_set] = ACTIONS(4762), - [anon_sym_this] = ACTIONS(4762), - [anon_sym_super] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4762), - [sym_label] = ACTIONS(4762), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_DOT_DOT] = ACTIONS(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), - [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(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] = ACTIONS(4762), - [anon_sym_BANG_BANG] = ACTIONS(4764), - [anon_sym_data] = ACTIONS(4762), - [anon_sym_inner] = ACTIONS(4762), - [anon_sym_expect] = ACTIONS(4762), - [anon_sym_actual] = ACTIONS(4762), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4764), - [anon_sym_continue_AT] = ACTIONS(4764), - [anon_sym_break_AT] = ACTIONS(4764), - [sym_real_literal] = ACTIONS(4764), - [sym_integer_literal] = ACTIONS(4762), - [sym_hex_literal] = ACTIONS(4764), - [sym_bin_literal] = ACTIONS(4764), - [anon_sym_true] = ACTIONS(4762), - [anon_sym_false] = ACTIONS(4762), - [anon_sym_SQUOTE] = ACTIONS(4764), - [sym__backtick_identifier] = ACTIONS(4764), - [sym__automatic_semicolon] = ACTIONS(4764), - [sym_safe_nav] = ACTIONS(4764), + [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_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), - [sym__string_start] = ACTIONS(4764), }, [3416] = { - [sym__alpha_identifier] = ACTIONS(4855), - [anon_sym_AT] = ACTIONS(4857), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_as] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4857), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4857), - [anon_sym_COMMA] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4855), - [anon_sym_GT] = ACTIONS(4855), - [anon_sym_where] = ACTIONS(4855), - [anon_sym_object] = ACTIONS(4855), - [anon_sym_fun] = ACTIONS(4855), - [anon_sym_DOT] = ACTIONS(4855), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_get] = ACTIONS(4855), - [anon_sym_set] = ACTIONS(4855), - [anon_sym_this] = ACTIONS(4855), - [anon_sym_super] = ACTIONS(4855), - [anon_sym_STAR] = ACTIONS(4855), - [sym_label] = ACTIONS(4855), - [anon_sym_in] = ACTIONS(4855), - [anon_sym_DOT_DOT] = ACTIONS(4857), - [anon_sym_QMARK_COLON] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [anon_sym_null] = ACTIONS(4855), - [anon_sym_if] = ACTIONS(4855), - [anon_sym_else] = ACTIONS(4855), - [anon_sym_when] = ACTIONS(4855), - [anon_sym_try] = ACTIONS(4855), - [anon_sym_throw] = ACTIONS(4855), - [anon_sym_return] = ACTIONS(4855), - [anon_sym_continue] = ACTIONS(4855), - [anon_sym_break] = ACTIONS(4855), - [anon_sym_COLON_COLON] = ACTIONS(4857), - [anon_sym_PLUS_EQ] = ACTIONS(4857), - [anon_sym_DASH_EQ] = ACTIONS(4857), - [anon_sym_STAR_EQ] = ACTIONS(4857), - [anon_sym_SLASH_EQ] = ACTIONS(4857), - [anon_sym_PERCENT_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ] = ACTIONS(4855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4857), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_BANGin] = ACTIONS(4857), - [anon_sym_is] = ACTIONS(4855), - [anon_sym_BANGis] = ACTIONS(4857), - [anon_sym_PLUS] = ACTIONS(4855), - [anon_sym_DASH] = ACTIONS(4855), - [anon_sym_SLASH] = ACTIONS(4855), - [anon_sym_PERCENT] = ACTIONS(4855), - [anon_sym_as_QMARK] = ACTIONS(4857), - [anon_sym_PLUS_PLUS] = ACTIONS(4857), - [anon_sym_DASH_DASH] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4855), - [anon_sym_BANG_BANG] = ACTIONS(4857), - [anon_sym_data] = ACTIONS(4855), - [anon_sym_inner] = ACTIONS(4855), - [anon_sym_expect] = ACTIONS(4855), - [anon_sym_actual] = ACTIONS(4855), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4857), - [anon_sym_continue_AT] = ACTIONS(4857), - [anon_sym_break_AT] = ACTIONS(4857), - [sym_real_literal] = ACTIONS(4857), - [sym_integer_literal] = ACTIONS(4855), - [sym_hex_literal] = ACTIONS(4857), - [sym_bin_literal] = ACTIONS(4857), - [anon_sym_true] = ACTIONS(4855), - [anon_sym_false] = ACTIONS(4855), - [anon_sym_SQUOTE] = ACTIONS(4857), - [sym__backtick_identifier] = ACTIONS(4857), - [sym__automatic_semicolon] = ACTIONS(4857), - [sym_safe_nav] = ACTIONS(4857), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4857), - }, - [3417] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6582), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3418] = { [sym__alpha_identifier] = ACTIONS(5051), [anon_sym_AT] = ACTIONS(5053), [anon_sym_LBRACK] = ACTIONS(5053), @@ -376309,503 +376222,749 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [3419] = { - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_object] = ACTIONS(4019), - [anon_sym_fun] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4019), - [anon_sym_super] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [sym_label] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_try] = ACTIONS(4019), - [anon_sym_throw] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4021), - [anon_sym_continue_AT] = ACTIONS(4021), - [anon_sym_break_AT] = ACTIONS(4021), - [sym_real_literal] = ACTIONS(4021), - [sym_integer_literal] = ACTIONS(4019), - [sym_hex_literal] = ACTIONS(4021), - [sym_bin_literal] = ACTIONS(4021), - [anon_sym_true] = ACTIONS(4019), - [anon_sym_false] = ACTIONS(4019), - [anon_sym_SQUOTE] = ACTIONS(4021), - [sym__backtick_identifier] = ACTIONS(4021), - [sym__automatic_semicolon] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4021), - }, - [3420] = { - [sym__alpha_identifier] = ACTIONS(4742), - [anon_sym_AT] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4744), - [anon_sym_as] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LBRACE] = ACTIONS(4744), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_LPAREN] = ACTIONS(4744), - [anon_sym_COMMA] = ACTIONS(4744), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_object] = ACTIONS(4742), - [anon_sym_fun] = ACTIONS(4742), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(4742), - [anon_sym_set] = ACTIONS(4742), - [anon_sym_this] = ACTIONS(4742), - [anon_sym_super] = ACTIONS(4742), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4742), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(4744), - [anon_sym_QMARK_COLON] = ACTIONS(4744), - [anon_sym_AMP_AMP] = ACTIONS(4744), - [anon_sym_PIPE_PIPE] = ACTIONS(4744), - [anon_sym_null] = ACTIONS(4742), - [anon_sym_if] = ACTIONS(4742), - [anon_sym_else] = ACTIONS(4742), - [anon_sym_when] = ACTIONS(4742), - [anon_sym_try] = ACTIONS(4742), - [anon_sym_throw] = ACTIONS(4742), - [anon_sym_return] = ACTIONS(4742), - [anon_sym_continue] = ACTIONS(4742), - [anon_sym_break] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(4744), - [anon_sym_PLUS_EQ] = ACTIONS(4744), - [anon_sym_DASH_EQ] = ACTIONS(4744), - [anon_sym_STAR_EQ] = ACTIONS(4744), - [anon_sym_SLASH_EQ] = ACTIONS(4744), - [anon_sym_PERCENT_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4744), - [anon_sym_LT_EQ] = ACTIONS(4744), - [anon_sym_GT_EQ] = ACTIONS(4744), - [anon_sym_BANGin] = ACTIONS(4744), - [anon_sym_is] = ACTIONS(4742), - [anon_sym_BANGis] = ACTIONS(4744), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4744), - [anon_sym_PLUS_PLUS] = ACTIONS(4744), - [anon_sym_DASH_DASH] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4742), - [anon_sym_BANG_BANG] = ACTIONS(4744), - [anon_sym_data] = ACTIONS(4742), - [anon_sym_inner] = ACTIONS(4742), - [anon_sym_expect] = ACTIONS(4742), - [anon_sym_actual] = ACTIONS(4742), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4744), - [anon_sym_continue_AT] = ACTIONS(4744), - [anon_sym_break_AT] = ACTIONS(4744), - [sym_real_literal] = ACTIONS(4744), - [sym_integer_literal] = ACTIONS(4742), - [sym_hex_literal] = ACTIONS(4744), - [sym_bin_literal] = ACTIONS(4744), - [anon_sym_true] = ACTIONS(4742), - [anon_sym_false] = ACTIONS(4742), - [anon_sym_SQUOTE] = ACTIONS(4744), - [sym__backtick_identifier] = ACTIONS(4744), - [sym__automatic_semicolon] = ACTIONS(4744), - [sym_safe_nav] = ACTIONS(4744), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4744), - }, - [3421] = { - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [3422] = { - [aux_sym_user_type_repeat1] = STATE(3422), - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(6586), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), + [sym__backtick_identifier] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), + [sym_multiline_comment] = ACTIONS(3), + }, + [3417] = { + [sym__alpha_identifier] = ACTIONS(4917), + [anon_sym_AT] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_as] = ACTIONS(4917), + [anon_sym_EQ] = ACTIONS(4917), + [anon_sym_LBRACE] = ACTIONS(4919), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_where] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4917), + [anon_sym_SEMI] = ACTIONS(4919), + [anon_sym_get] = ACTIONS(4917), + [anon_sym_set] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4919), + [sym_label] = ACTIONS(4919), + [anon_sym_in] = ACTIONS(4917), + [anon_sym_while] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4919), + [anon_sym_QMARK_COLON] = ACTIONS(4919), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE_PIPE] = ACTIONS(4919), + [anon_sym_else] = ACTIONS(4917), + [anon_sym_COLON_COLON] = ACTIONS(4919), + [anon_sym_PLUS_EQ] = ACTIONS(4919), + [anon_sym_DASH_EQ] = ACTIONS(4919), + [anon_sym_STAR_EQ] = ACTIONS(4919), + [anon_sym_SLASH_EQ] = ACTIONS(4919), + [anon_sym_PERCENT_EQ] = ACTIONS(4919), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4919), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4919), + [anon_sym_LT_EQ] = ACTIONS(4919), + [anon_sym_GT_EQ] = ACTIONS(4919), + [anon_sym_BANGin] = ACTIONS(4919), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_BANGis] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_as_QMARK] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4919), + [anon_sym_DASH_DASH] = ACTIONS(4919), + [anon_sym_BANG_BANG] = ACTIONS(4919), + [anon_sym_suspend] = ACTIONS(4917), + [anon_sym_sealed] = ACTIONS(4917), + [anon_sym_annotation] = ACTIONS(4917), + [anon_sym_data] = ACTIONS(4917), + [anon_sym_inner] = ACTIONS(4917), + [anon_sym_override] = ACTIONS(4917), + [anon_sym_lateinit] = ACTIONS(4917), + [anon_sym_public] = ACTIONS(4917), + [anon_sym_private] = ACTIONS(4917), + [anon_sym_internal] = ACTIONS(4917), + [anon_sym_protected] = ACTIONS(4917), + [anon_sym_tailrec] = ACTIONS(4917), + [anon_sym_operator] = ACTIONS(4917), + [anon_sym_infix] = ACTIONS(4917), + [anon_sym_inline] = ACTIONS(4917), + [anon_sym_external] = ACTIONS(4917), + [sym_property_modifier] = ACTIONS(4917), + [anon_sym_abstract] = ACTIONS(4917), + [anon_sym_final] = ACTIONS(4917), + [anon_sym_open] = ACTIONS(4917), + [anon_sym_vararg] = ACTIONS(4917), + [anon_sym_noinline] = ACTIONS(4917), + [anon_sym_crossinline] = ACTIONS(4917), + [anon_sym_expect] = ACTIONS(4917), + [anon_sym_actual] = ACTIONS(4917), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4919), + [sym_safe_nav] = ACTIONS(4919), + [sym_multiline_comment] = ACTIONS(3), + }, + [3418] = { + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_RBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_DASH_GT] = ACTIONS(4484), + [sym_label] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_while] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), + [sym_multiline_comment] = ACTIONS(3), + }, + [3419] = { + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [3420] = { + [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(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_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), + }, + [3421] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [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_DOT] = 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_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), + }, + [3422] = { + [sym__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [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_DOT] = 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_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), + }, + [3423] = { + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3424] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_RBRACK] = ACTIONS(4824), + [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_DOT] = 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_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), }, - [3423] = { - [sym__alpha_identifier] = ACTIONS(4738), - [anon_sym_AT] = ACTIONS(4740), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(4738), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_LPAREN] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_LT] = ACTIONS(4738), - [anon_sym_GT] = ACTIONS(4738), - [anon_sym_where] = ACTIONS(4738), - [anon_sym_object] = ACTIONS(4738), - [anon_sym_fun] = ACTIONS(4738), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(4738), - [anon_sym_set] = ACTIONS(4738), - [anon_sym_this] = ACTIONS(4738), - [anon_sym_super] = ACTIONS(4738), - [anon_sym_STAR] = ACTIONS(4738), - [sym_label] = ACTIONS(4738), - [anon_sym_in] = ACTIONS(4738), - [anon_sym_DOT_DOT] = ACTIONS(4740), - [anon_sym_QMARK_COLON] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_null] = ACTIONS(4738), - [anon_sym_if] = ACTIONS(4738), - [anon_sym_else] = ACTIONS(4738), - [anon_sym_when] = ACTIONS(4738), - [anon_sym_try] = ACTIONS(4738), - [anon_sym_throw] = ACTIONS(4738), - [anon_sym_return] = ACTIONS(4738), - [anon_sym_continue] = ACTIONS(4738), - [anon_sym_break] = ACTIONS(4738), - [anon_sym_COLON_COLON] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_BANGin] = ACTIONS(4740), - [anon_sym_is] = ACTIONS(4738), - [anon_sym_BANGis] = ACTIONS(4740), - [anon_sym_PLUS] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [anon_sym_SLASH] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4738), - [anon_sym_as_QMARK] = ACTIONS(4740), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_BANG] = ACTIONS(4738), - [anon_sym_BANG_BANG] = ACTIONS(4740), - [anon_sym_data] = ACTIONS(4738), - [anon_sym_inner] = ACTIONS(4738), - [anon_sym_expect] = ACTIONS(4738), - [anon_sym_actual] = ACTIONS(4738), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4740), - [anon_sym_continue_AT] = ACTIONS(4740), - [anon_sym_break_AT] = ACTIONS(4740), - [sym_real_literal] = ACTIONS(4740), - [sym_integer_literal] = ACTIONS(4738), - [sym_hex_literal] = ACTIONS(4740), - [sym_bin_literal] = ACTIONS(4740), - [anon_sym_true] = ACTIONS(4738), - [anon_sym_false] = ACTIONS(4738), - [anon_sym_SQUOTE] = ACTIONS(4740), - [sym__backtick_identifier] = ACTIONS(4740), - [sym__automatic_semicolon] = ACTIONS(4740), - [sym_safe_nav] = ACTIONS(4740), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4740), - }, - [3424] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_object] = ACTIONS(4714), - [anon_sym_fun] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_this] = ACTIONS(4714), - [anon_sym_super] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [sym_label] = ACTIONS(4714), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4714), - [anon_sym_if] = ACTIONS(4714), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_when] = ACTIONS(4714), - [anon_sym_try] = ACTIONS(4714), - [anon_sym_throw] = ACTIONS(4714), - [anon_sym_return] = ACTIONS(4714), - [anon_sym_continue] = ACTIONS(4714), - [anon_sym_break] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG] = ACTIONS(4714), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_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), - [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), - }, [3425] = { + [sym__alpha_identifier] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_EQ] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_COMMA] = ACTIONS(4450), + [anon_sym_by] = ACTIONS(4448), + [anon_sym_where] = ACTIONS(4448), + [anon_sym_object] = ACTIONS(4448), + [anon_sym_fun] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym_get] = ACTIONS(4448), + [anon_sym_set] = ACTIONS(4448), + [anon_sym_this] = ACTIONS(4448), + [anon_sym_super] = ACTIONS(4448), + [sym__quest] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [sym_label] = ACTIONS(4448), + [anon_sym_in] = ACTIONS(4448), + [anon_sym_null] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4448), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_when] = ACTIONS(4448), + [anon_sym_try] = ACTIONS(4448), + [anon_sym_throw] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4448), + [anon_sym_continue] = ACTIONS(4448), + [anon_sym_break] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_BANGin] = ACTIONS(4450), + [anon_sym_is] = ACTIONS(4448), + [anon_sym_BANGis] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_PLUS_PLUS] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4448), + [anon_sym_suspend] = ACTIONS(4448), + [anon_sym_sealed] = ACTIONS(4448), + [anon_sym_annotation] = ACTIONS(4448), + [anon_sym_data] = ACTIONS(4448), + [anon_sym_inner] = ACTIONS(4448), + [anon_sym_override] = ACTIONS(4448), + [anon_sym_lateinit] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_internal] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_tailrec] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_infix] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym_external] = ACTIONS(4448), + [sym_property_modifier] = ACTIONS(4448), + [anon_sym_abstract] = ACTIONS(4448), + [anon_sym_final] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4448), + [anon_sym_vararg] = ACTIONS(4448), + [anon_sym_noinline] = ACTIONS(4448), + [anon_sym_crossinline] = ACTIONS(4448), + [anon_sym_expect] = ACTIONS(4448), + [anon_sym_actual] = ACTIONS(4448), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4450), + [anon_sym_continue_AT] = ACTIONS(4450), + [anon_sym_break_AT] = ACTIONS(4450), + [sym_real_literal] = ACTIONS(4450), + [sym_integer_literal] = ACTIONS(4448), + [sym_hex_literal] = ACTIONS(4450), + [sym_bin_literal] = ACTIONS(4450), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [anon_sym_SQUOTE] = ACTIONS(4450), + [sym__backtick_identifier] = ACTIONS(4450), + [sym__automatic_semicolon] = ACTIONS(4450), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4450), + }, + [3426] = { [sym__alpha_identifier] = ACTIONS(4905), [anon_sym_AT] = ACTIONS(4907), [anon_sym_LBRACK] = ACTIONS(4907), @@ -376887,2011 +377046,2167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4907), }, - [3426] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(6545), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), - }, [3427] = { - [sym_function_body] = STATE(3679), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6589), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(1768), + [anon_sym_sealed] = ACTIONS(1768), + [anon_sym_annotation] = ACTIONS(1768), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_lateinit] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_internal] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_tailrec] = ACTIONS(1768), + [anon_sym_operator] = ACTIONS(1768), + [anon_sym_infix] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [anon_sym_external] = ACTIONS(1768), + [sym_property_modifier] = ACTIONS(1768), + [anon_sym_abstract] = ACTIONS(1768), + [anon_sym_final] = ACTIONS(1768), + [anon_sym_open] = ACTIONS(1768), + [anon_sym_vararg] = ACTIONS(1768), + [anon_sym_noinline] = ACTIONS(1768), + [anon_sym_crossinline] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, [3428] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(6541), - [anon_sym_COMMA] = ACTIONS(4286), - [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_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym_function_body] = STATE(3886), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), }, [3429] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(6591), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_while] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [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_override] = ACTIONS(5059), + [anon_sym_lateinit] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_tailrec] = ACTIONS(5059), + [anon_sym_operator] = ACTIONS(5059), + [anon_sym_infix] = ACTIONS(5059), + [anon_sym_inline] = ACTIONS(5059), + [anon_sym_external] = ACTIONS(5059), + [sym_property_modifier] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_final] = ACTIONS(5059), + [anon_sym_open] = ACTIONS(5059), + [anon_sym_vararg] = ACTIONS(5059), + [anon_sym_noinline] = ACTIONS(5059), + [anon_sym_crossinline] = ACTIONS(5059), + [anon_sym_expect] = ACTIONS(5059), + [anon_sym_actual] = ACTIONS(5059), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5061), + [sym_safe_nav] = ACTIONS(5061), [sym_multiline_comment] = ACTIONS(3), }, [3430] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_object] = ACTIONS(4766), - [anon_sym_fun] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_this] = ACTIONS(4766), - [anon_sym_super] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [sym_label] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_QMARK_COLON] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_null] = ACTIONS(4766), - [anon_sym_if] = ACTIONS(4766), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_try] = ACTIONS(4766), - [anon_sym_throw] = ACTIONS(4766), - [anon_sym_return] = ACTIONS(4766), - [anon_sym_continue] = ACTIONS(4766), - [anon_sym_break] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4768), - [anon_sym_PLUS_EQ] = ACTIONS(4768), - [anon_sym_DASH_EQ] = ACTIONS(4768), - [anon_sym_STAR_EQ] = ACTIONS(4768), - [anon_sym_SLASH_EQ] = ACTIONS(4768), - [anon_sym_PERCENT_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_BANGin] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4768), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_BANG_BANG] = ACTIONS(4768), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4768), - [anon_sym_continue_AT] = ACTIONS(4768), - [anon_sym_break_AT] = ACTIONS(4768), - [sym_real_literal] = ACTIONS(4768), - [sym_integer_literal] = ACTIONS(4766), - [sym_hex_literal] = ACTIONS(4768), - [sym_bin_literal] = ACTIONS(4768), - [anon_sym_true] = ACTIONS(4766), - [anon_sym_false] = ACTIONS(4766), - [anon_sym_SQUOTE] = ACTIONS(4768), - [sym__backtick_identifier] = ACTIONS(4768), - [sym__automatic_semicolon] = ACTIONS(4768), - [sym_safe_nav] = ACTIONS(4768), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_RBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_DASH_GT] = ACTIONS(4478), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4768), }, [3431] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_EQ] = ACTIONS(4471), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_by] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [sym__quest] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [sym_label] = ACTIONS(4469), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_RBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4644), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_RPAREN] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_DASH_GT] = ACTIONS(4644), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_while] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_suspend] = ACTIONS(4642), + [anon_sym_sealed] = ACTIONS(4642), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_lateinit] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_tailrec] = ACTIONS(4642), + [anon_sym_operator] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_inline] = ACTIONS(4642), + [anon_sym_external] = ACTIONS(4642), + [sym_property_modifier] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_vararg] = ACTIONS(4642), + [anon_sym_noinline] = ACTIONS(4642), + [anon_sym_crossinline] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), + [sym_multiline_comment] = ACTIONS(3), }, [3432] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6593), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [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(6590), + [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_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), [sym_multiline_comment] = ACTIONS(3), }, [3433] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(6595), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), + [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_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), }, [3434] = { - [sym_type_constraints] = STATE(3664), - [sym_enum_class_body] = STATE(3727), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6597), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5413), - [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(5364), - [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_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__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_override] = ACTIONS(5067), + [anon_sym_lateinit] = ACTIONS(5067), + [anon_sym_public] = ACTIONS(5067), + [anon_sym_private] = ACTIONS(5067), + [anon_sym_internal] = ACTIONS(5067), + [anon_sym_protected] = ACTIONS(5067), + [anon_sym_tailrec] = ACTIONS(5067), + [anon_sym_operator] = ACTIONS(5067), + [anon_sym_infix] = ACTIONS(5067), + [anon_sym_inline] = ACTIONS(5067), + [anon_sym_external] = ACTIONS(5067), + [sym_property_modifier] = ACTIONS(5067), + [anon_sym_abstract] = ACTIONS(5067), + [anon_sym_final] = ACTIONS(5067), + [anon_sym_open] = ACTIONS(5067), + [anon_sym_vararg] = ACTIONS(5067), + [anon_sym_noinline] = ACTIONS(5067), + [anon_sym_crossinline] = ACTIONS(5067), + [anon_sym_expect] = ACTIONS(5067), + [anon_sym_actual] = ACTIONS(5067), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), [sym_multiline_comment] = ACTIONS(3), }, [3435] = { - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym__alpha_identifier] = ACTIONS(4833), + [anon_sym_AT] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_as] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4833), + [anon_sym_LBRACE] = ACTIONS(4835), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4835), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_DASH_GT] = ACTIONS(4835), + [sym_label] = ACTIONS(4835), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_while] = ACTIONS(4833), + [anon_sym_DOT_DOT] = ACTIONS(4835), + [anon_sym_QMARK_COLON] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_else] = ACTIONS(4833), + [anon_sym_COLON_COLON] = ACTIONS(4835), + [anon_sym_PLUS_EQ] = ACTIONS(4835), + [anon_sym_DASH_EQ] = ACTIONS(4835), + [anon_sym_STAR_EQ] = ACTIONS(4835), + [anon_sym_SLASH_EQ] = ACTIONS(4835), + [anon_sym_PERCENT_EQ] = ACTIONS(4835), + [anon_sym_BANG_EQ] = ACTIONS(4833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), + [anon_sym_EQ_EQ] = ACTIONS(4833), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), + [anon_sym_LT_EQ] = ACTIONS(4835), + [anon_sym_GT_EQ] = ACTIONS(4835), + [anon_sym_BANGin] = ACTIONS(4835), + [anon_sym_is] = ACTIONS(4833), + [anon_sym_BANGis] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4833), + [anon_sym_as_QMARK] = ACTIONS(4835), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_BANG_BANG] = ACTIONS(4835), + [anon_sym_suspend] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_annotation] = ACTIONS(4833), + [anon_sym_data] = ACTIONS(4833), + [anon_sym_inner] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_lateinit] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_tailrec] = ACTIONS(4833), + [anon_sym_operator] = ACTIONS(4833), + [anon_sym_infix] = ACTIONS(4833), + [anon_sym_inline] = ACTIONS(4833), + [anon_sym_external] = ACTIONS(4833), + [sym_property_modifier] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_open] = ACTIONS(4833), + [anon_sym_vararg] = ACTIONS(4833), + [anon_sym_noinline] = ACTIONS(4833), + [anon_sym_crossinline] = ACTIONS(4833), + [anon_sym_expect] = ACTIONS(4833), + [anon_sym_actual] = ACTIONS(4833), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4835), + [sym_safe_nav] = ACTIONS(4835), [sym_multiline_comment] = ACTIONS(3), }, [3436] = { - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, [3437] = { - [sym__alpha_identifier] = ACTIONS(4802), - [anon_sym_AT] = ACTIONS(4804), - [anon_sym_LBRACK] = ACTIONS(4804), - [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_DOT] = 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_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), - [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__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_override] = ACTIONS(5073), + [anon_sym_lateinit] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_protected] = ACTIONS(5073), + [anon_sym_tailrec] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_inline] = ACTIONS(5073), + [anon_sym_external] = ACTIONS(5073), + [sym_property_modifier] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_vararg] = ACTIONS(5073), + [anon_sym_noinline] = ACTIONS(5073), + [anon_sym_crossinline] = ACTIONS(5073), + [anon_sym_expect] = ACTIONS(5073), + [anon_sym_actual] = ACTIONS(5073), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5075), + [sym_safe_nav] = ACTIONS(5075), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4804), }, [3438] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [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(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4511), + [sym_function_body] = STATE(3450), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, [3439] = { - [sym_class_body] = STATE(3833), - [sym_type_constraints] = STATE(3654), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6599), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = 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_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), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, [3440] = { - [sym__alpha_identifier] = ACTIONS(4770), - [anon_sym_AT] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_EQ] = ACTIONS(4770), - [anon_sym_LBRACE] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4770), - [anon_sym_object] = ACTIONS(4770), - [anon_sym_fun] = ACTIONS(4770), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4772), - [anon_sym_get] = ACTIONS(4770), - [anon_sym_set] = ACTIONS(4770), - [anon_sym_this] = ACTIONS(4770), - [anon_sym_super] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4770), - [sym_label] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_DOT_DOT] = ACTIONS(4772), - [anon_sym_QMARK_COLON] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4772), - [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_null] = ACTIONS(4770), - [anon_sym_if] = ACTIONS(4770), - [anon_sym_else] = ACTIONS(4770), - [anon_sym_when] = ACTIONS(4770), - [anon_sym_try] = ACTIONS(4770), - [anon_sym_throw] = ACTIONS(4770), - [anon_sym_return] = ACTIONS(4770), - [anon_sym_continue] = ACTIONS(4770), - [anon_sym_break] = ACTIONS(4770), - [anon_sym_COLON_COLON] = ACTIONS(4772), - [anon_sym_PLUS_EQ] = ACTIONS(4772), - [anon_sym_DASH_EQ] = ACTIONS(4772), - [anon_sym_STAR_EQ] = ACTIONS(4772), - [anon_sym_SLASH_EQ] = ACTIONS(4772), - [anon_sym_PERCENT_EQ] = ACTIONS(4772), - [anon_sym_BANG_EQ] = ACTIONS(4770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ_EQ] = ACTIONS(4770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), - [anon_sym_LT_EQ] = ACTIONS(4772), - [anon_sym_GT_EQ] = ACTIONS(4772), - [anon_sym_BANGin] = ACTIONS(4772), - [anon_sym_is] = ACTIONS(4770), - [anon_sym_BANGis] = ACTIONS(4772), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4770), - [anon_sym_as_QMARK] = ACTIONS(4772), - [anon_sym_PLUS_PLUS] = ACTIONS(4772), - [anon_sym_DASH_DASH] = ACTIONS(4772), - [anon_sym_BANG] = ACTIONS(4770), - [anon_sym_BANG_BANG] = ACTIONS(4772), - [anon_sym_data] = ACTIONS(4770), - [anon_sym_inner] = ACTIONS(4770), - [anon_sym_expect] = ACTIONS(4770), - [anon_sym_actual] = ACTIONS(4770), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4772), - [anon_sym_continue_AT] = ACTIONS(4772), - [anon_sym_break_AT] = ACTIONS(4772), - [sym_real_literal] = ACTIONS(4772), - [sym_integer_literal] = ACTIONS(4770), - [sym_hex_literal] = ACTIONS(4772), - [sym_bin_literal] = ACTIONS(4772), - [anon_sym_true] = ACTIONS(4770), - [anon_sym_false] = ACTIONS(4770), - [anon_sym_SQUOTE] = ACTIONS(4772), - [sym__backtick_identifier] = ACTIONS(4772), - [sym__automatic_semicolon] = ACTIONS(4772), - [sym_safe_nav] = ACTIONS(4772), + [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_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), - [sym__string_start] = ACTIONS(4772), }, [3441] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [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_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), + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(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(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, [3442] = { - [sym__alpha_identifier] = ACTIONS(4489), - [anon_sym_AT] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_by] = 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), - [sym__quest] = 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_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), - [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), - }, - [3443] = { - [sym_type_constraints] = STATE(3629), - [sym_enum_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = 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_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__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(3264), + [anon_sym_sealed] = ACTIONS(3264), + [anon_sym_annotation] = ACTIONS(3264), + [anon_sym_data] = ACTIONS(3264), + [anon_sym_inner] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_lateinit] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_internal] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_tailrec] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_infix] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym_external] = ACTIONS(3264), + [sym_property_modifier] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3264), + [anon_sym_vararg] = ACTIONS(3264), + [anon_sym_noinline] = ACTIONS(3264), + [anon_sym_crossinline] = ACTIONS(3264), + [anon_sym_expect] = ACTIONS(3264), + [anon_sym_actual] = ACTIONS(3264), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), [sym_multiline_comment] = ACTIONS(3), }, - [3444] = { - [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_expect] = ACTIONS(4778), - [anon_sym_actual] = ACTIONS(4778), + [3443] = { + [sym__alpha_identifier] = ACTIONS(4985), + [anon_sym_AT] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_RBRACK] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_where] = ACTIONS(4985), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_get] = ACTIONS(4985), + [anon_sym_set] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4987), + [sym_label] = ACTIONS(4987), + [anon_sym_in] = ACTIONS(4985), + [anon_sym_while] = ACTIONS(4985), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_QMARK_COLON] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_else] = ACTIONS(4985), + [anon_sym_COLON_COLON] = ACTIONS(4987), + [anon_sym_PLUS_EQ] = ACTIONS(4987), + [anon_sym_DASH_EQ] = ACTIONS(4987), + [anon_sym_STAR_EQ] = ACTIONS(4987), + [anon_sym_SLASH_EQ] = ACTIONS(4987), + [anon_sym_PERCENT_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4985), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4985), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_BANGin] = ACTIONS(4987), + [anon_sym_is] = ACTIONS(4985), + [anon_sym_BANGis] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4985), + [anon_sym_as_QMARK] = ACTIONS(4987), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_BANG_BANG] = ACTIONS(4987), + [anon_sym_suspend] = ACTIONS(4985), + [anon_sym_sealed] = ACTIONS(4985), + [anon_sym_annotation] = ACTIONS(4985), + [anon_sym_data] = ACTIONS(4985), + [anon_sym_inner] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_lateinit] = ACTIONS(4985), + [anon_sym_public] = ACTIONS(4985), + [anon_sym_private] = ACTIONS(4985), + [anon_sym_internal] = ACTIONS(4985), + [anon_sym_protected] = ACTIONS(4985), + [anon_sym_tailrec] = ACTIONS(4985), + [anon_sym_operator] = ACTIONS(4985), + [anon_sym_infix] = ACTIONS(4985), + [anon_sym_inline] = ACTIONS(4985), + [anon_sym_external] = ACTIONS(4985), + [sym_property_modifier] = ACTIONS(4985), + [anon_sym_abstract] = ACTIONS(4985), + [anon_sym_final] = ACTIONS(4985), + [anon_sym_open] = ACTIONS(4985), + [anon_sym_vararg] = ACTIONS(4985), + [anon_sym_noinline] = ACTIONS(4985), + [anon_sym_crossinline] = ACTIONS(4985), + [anon_sym_expect] = ACTIONS(4985), + [anon_sym_actual] = ACTIONS(4985), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4780), - [anon_sym_continue_AT] = ACTIONS(4780), - [anon_sym_break_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__backtick_identifier] = ACTIONS(4987), + [sym_safe_nav] = ACTIONS(4987), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4780), }, - [3445] = { - [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(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_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), + [3444] = { + [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_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(4820), - [sym_safe_nav] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + }, + [3445] = { + [sym__alpha_identifier] = ACTIONS(4909), + [anon_sym_AT] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_as] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(4909), + [anon_sym_LBRACE] = ACTIONS(4911), + [anon_sym_RBRACE] = ACTIONS(4911), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_where] = ACTIONS(4909), + [anon_sym_object] = ACTIONS(4909), + [anon_sym_fun] = ACTIONS(4909), + [anon_sym_DOT] = ACTIONS(4909), + [anon_sym_SEMI] = ACTIONS(4911), + [anon_sym_get] = ACTIONS(4909), + [anon_sym_set] = ACTIONS(4909), + [anon_sym_this] = ACTIONS(4909), + [anon_sym_super] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [sym_label] = ACTIONS(4909), + [anon_sym_in] = ACTIONS(4909), + [anon_sym_DOT_DOT] = ACTIONS(4911), + [anon_sym_QMARK_COLON] = ACTIONS(4911), + [anon_sym_AMP_AMP] = ACTIONS(4911), + [anon_sym_PIPE_PIPE] = ACTIONS(4911), + [anon_sym_null] = ACTIONS(4909), + [anon_sym_if] = ACTIONS(4909), + [anon_sym_else] = ACTIONS(4909), + [anon_sym_when] = ACTIONS(4909), + [anon_sym_try] = ACTIONS(4909), + [anon_sym_throw] = ACTIONS(4909), + [anon_sym_return] = ACTIONS(4909), + [anon_sym_continue] = ACTIONS(4909), + [anon_sym_break] = ACTIONS(4909), + [anon_sym_COLON_COLON] = ACTIONS(4911), + [anon_sym_PLUS_EQ] = ACTIONS(4911), + [anon_sym_DASH_EQ] = ACTIONS(4911), + [anon_sym_STAR_EQ] = ACTIONS(4911), + [anon_sym_SLASH_EQ] = ACTIONS(4911), + [anon_sym_PERCENT_EQ] = ACTIONS(4911), + [anon_sym_BANG_EQ] = ACTIONS(4909), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4911), + [anon_sym_EQ_EQ] = ACTIONS(4909), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4911), + [anon_sym_LT_EQ] = ACTIONS(4911), + [anon_sym_GT_EQ] = ACTIONS(4911), + [anon_sym_BANGin] = ACTIONS(4911), + [anon_sym_is] = ACTIONS(4909), + [anon_sym_BANGis] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_PERCENT] = ACTIONS(4909), + [anon_sym_as_QMARK] = ACTIONS(4911), + [anon_sym_PLUS_PLUS] = ACTIONS(4911), + [anon_sym_DASH_DASH] = ACTIONS(4911), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_BANG_BANG] = ACTIONS(4911), + [anon_sym_data] = ACTIONS(4909), + [anon_sym_inner] = ACTIONS(4909), + [anon_sym_expect] = ACTIONS(4909), + [anon_sym_actual] = ACTIONS(4909), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4911), + [anon_sym_continue_AT] = ACTIONS(4911), + [anon_sym_break_AT] = ACTIONS(4911), + [sym_real_literal] = ACTIONS(4911), + [sym_integer_literal] = ACTIONS(4909), + [sym_hex_literal] = ACTIONS(4911), + [sym_bin_literal] = ACTIONS(4911), + [anon_sym_true] = ACTIONS(4909), + [anon_sym_false] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4911), + [sym__backtick_identifier] = ACTIONS(4911), + [sym__automatic_semicolon] = ACTIONS(4911), + [sym_safe_nav] = ACTIONS(4911), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4911), }, [3446] = { - [sym_type_arguments] = STATE(3479), - [sym__alpha_identifier] = ACTIONS(4113), - [anon_sym_AT] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_as] = ACTIONS(4113), - [anon_sym_EQ] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_COMMA] = ACTIONS(4190), - [anon_sym_by] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_GT] = ACTIONS(4113), - [anon_sym_where] = ACTIONS(4113), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [sym__quest] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [sym_label] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4113), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_QMARK_COLON] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_PIPE_PIPE] = ACTIONS(4190), - [anon_sym_else] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4190), - [anon_sym_DASH_EQ] = ACTIONS(4190), - [anon_sym_STAR_EQ] = ACTIONS(4190), - [anon_sym_SLASH_EQ] = ACTIONS(4190), - [anon_sym_PERCENT_EQ] = ACTIONS(4190), - [anon_sym_BANG_EQ] = ACTIONS(4113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4190), - [anon_sym_LT_EQ] = ACTIONS(4190), - [anon_sym_GT_EQ] = ACTIONS(4190), - [anon_sym_BANGin] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4113), - [anon_sym_BANGis] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_SLASH] = ACTIONS(4113), - [anon_sym_PERCENT] = ACTIONS(4113), - [anon_sym_as_QMARK] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_BANG_BANG] = ACTIONS(4190), - [anon_sym_suspend] = ACTIONS(4113), - [anon_sym_sealed] = ACTIONS(4113), - [anon_sym_annotation] = ACTIONS(4113), - [anon_sym_data] = ACTIONS(4113), - [anon_sym_inner] = ACTIONS(4113), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_lateinit] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4113), - [anon_sym_private] = ACTIONS(4113), - [anon_sym_internal] = ACTIONS(4113), - [anon_sym_protected] = ACTIONS(4113), - [anon_sym_tailrec] = ACTIONS(4113), - [anon_sym_operator] = ACTIONS(4113), - [anon_sym_infix] = ACTIONS(4113), - [anon_sym_inline] = ACTIONS(4113), - [anon_sym_external] = ACTIONS(4113), - [sym_property_modifier] = ACTIONS(4113), - [anon_sym_abstract] = ACTIONS(4113), - [anon_sym_final] = ACTIONS(4113), - [anon_sym_open] = ACTIONS(4113), - [anon_sym_vararg] = ACTIONS(4113), - [anon_sym_noinline] = ACTIONS(4113), - [anon_sym_crossinline] = ACTIONS(4113), - [anon_sym_expect] = ACTIONS(4113), - [anon_sym_actual] = ACTIONS(4113), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4190), - [sym__automatic_semicolon] = ACTIONS(4190), - [sym_safe_nav] = ACTIONS(4190), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [3447] = { - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_object] = ACTIONS(1784), - [anon_sym_fun] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(1784), - [anon_sym_set] = ACTIONS(1784), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_super] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_when] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_expect] = ACTIONS(1784), - [anon_sym_actual] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1786), - [anon_sym_continue_AT] = ACTIONS(1786), - [anon_sym_break_AT] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [sym_hex_literal] = ACTIONS(1786), - [sym_bin_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1786), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1786), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [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_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [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(3346), + [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(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [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(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3360), + [sym_multiline_comment] = ACTIONS(3), }, [3448] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [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(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), + [sym__alpha_identifier] = ACTIONS(5093), + [anon_sym_AT] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_EQ] = ACTIONS(5093), + [anon_sym_LBRACE] = ACTIONS(5095), + [anon_sym_RBRACE] = ACTIONS(5095), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_where] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5093), + [anon_sym_SEMI] = ACTIONS(5095), + [anon_sym_get] = ACTIONS(5093), + [anon_sym_set] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_DASH_GT] = ACTIONS(5095), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5093), + [anon_sym_while] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5095), + [anon_sym_QMARK_COLON] = ACTIONS(5095), + [anon_sym_AMP_AMP] = ACTIONS(5095), + [anon_sym_PIPE_PIPE] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5093), + [anon_sym_COLON_COLON] = ACTIONS(5095), + [anon_sym_PLUS_EQ] = ACTIONS(5095), + [anon_sym_DASH_EQ] = ACTIONS(5095), + [anon_sym_STAR_EQ] = ACTIONS(5095), + [anon_sym_SLASH_EQ] = ACTIONS(5095), + [anon_sym_PERCENT_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5095), + [anon_sym_LT_EQ] = ACTIONS(5095), + [anon_sym_GT_EQ] = ACTIONS(5095), + [anon_sym_BANGin] = ACTIONS(5095), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_BANGis] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_as_QMARK] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5095), + [anon_sym_DASH_DASH] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5095), + [anon_sym_suspend] = ACTIONS(5093), + [anon_sym_sealed] = ACTIONS(5093), + [anon_sym_annotation] = ACTIONS(5093), + [anon_sym_data] = ACTIONS(5093), + [anon_sym_inner] = ACTIONS(5093), + [anon_sym_override] = ACTIONS(5093), + [anon_sym_lateinit] = ACTIONS(5093), + [anon_sym_public] = ACTIONS(5093), + [anon_sym_private] = ACTIONS(5093), + [anon_sym_internal] = ACTIONS(5093), + [anon_sym_protected] = ACTIONS(5093), + [anon_sym_tailrec] = ACTIONS(5093), + [anon_sym_operator] = ACTIONS(5093), + [anon_sym_infix] = ACTIONS(5093), + [anon_sym_inline] = ACTIONS(5093), + [anon_sym_external] = ACTIONS(5093), + [sym_property_modifier] = ACTIONS(5093), + [anon_sym_abstract] = ACTIONS(5093), + [anon_sym_final] = ACTIONS(5093), + [anon_sym_open] = ACTIONS(5093), + [anon_sym_vararg] = ACTIONS(5093), + [anon_sym_noinline] = ACTIONS(5093), + [anon_sym_crossinline] = ACTIONS(5093), + [anon_sym_expect] = ACTIONS(5093), + [anon_sym_actual] = ACTIONS(5093), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5095), + [sym_safe_nav] = ACTIONS(5095), + [sym_multiline_comment] = ACTIONS(3), }, [3449] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(6605), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), + [sym__alpha_identifier] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(4849), + [anon_sym_RBRACK] = ACTIONS(4849), + [anon_sym_as] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4849), + [anon_sym_COMMA] = ACTIONS(4849), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_GT] = ACTIONS(4847), + [anon_sym_where] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(4849), + [anon_sym_get] = ACTIONS(4847), + [anon_sym_set] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_DASH_GT] = ACTIONS(4849), + [sym_label] = ACTIONS(4849), + [anon_sym_in] = ACTIONS(4847), + [anon_sym_while] = ACTIONS(4847), + [anon_sym_DOT_DOT] = ACTIONS(4849), + [anon_sym_QMARK_COLON] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_else] = ACTIONS(4847), + [anon_sym_COLON_COLON] = ACTIONS(4849), + [anon_sym_PLUS_EQ] = ACTIONS(4849), + [anon_sym_DASH_EQ] = ACTIONS(4849), + [anon_sym_STAR_EQ] = ACTIONS(4849), + [anon_sym_SLASH_EQ] = ACTIONS(4849), + [anon_sym_PERCENT_EQ] = ACTIONS(4849), + [anon_sym_BANG_EQ] = ACTIONS(4847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), + [anon_sym_EQ_EQ] = ACTIONS(4847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), + [anon_sym_LT_EQ] = ACTIONS(4849), + [anon_sym_GT_EQ] = ACTIONS(4849), + [anon_sym_BANGin] = ACTIONS(4849), + [anon_sym_is] = ACTIONS(4847), + [anon_sym_BANGis] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(4847), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_SLASH] = ACTIONS(4847), + [anon_sym_PERCENT] = ACTIONS(4847), + [anon_sym_as_QMARK] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_BANG_BANG] = ACTIONS(4849), + [anon_sym_suspend] = ACTIONS(4847), + [anon_sym_sealed] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4847), + [anon_sym_data] = ACTIONS(4847), + [anon_sym_inner] = ACTIONS(4847), + [anon_sym_override] = ACTIONS(4847), + [anon_sym_lateinit] = ACTIONS(4847), + [anon_sym_public] = ACTIONS(4847), + [anon_sym_private] = ACTIONS(4847), + [anon_sym_internal] = ACTIONS(4847), + [anon_sym_protected] = ACTIONS(4847), + [anon_sym_tailrec] = ACTIONS(4847), + [anon_sym_operator] = ACTIONS(4847), + [anon_sym_infix] = ACTIONS(4847), + [anon_sym_inline] = ACTIONS(4847), + [anon_sym_external] = ACTIONS(4847), + [sym_property_modifier] = ACTIONS(4847), + [anon_sym_abstract] = ACTIONS(4847), + [anon_sym_final] = ACTIONS(4847), + [anon_sym_open] = ACTIONS(4847), + [anon_sym_vararg] = ACTIONS(4847), + [anon_sym_noinline] = ACTIONS(4847), + [anon_sym_crossinline] = ACTIONS(4847), + [anon_sym_expect] = ACTIONS(4847), + [anon_sym_actual] = ACTIONS(4847), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4849), + [sym_safe_nav] = ACTIONS(4849), + [sym_multiline_comment] = ACTIONS(3), }, [3450] = { + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), + }, + [3451] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [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(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), + }, + [3452] = { + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(1752), + [anon_sym_sealed] = ACTIONS(1752), + [anon_sym_annotation] = ACTIONS(1752), + [anon_sym_data] = ACTIONS(1752), + [anon_sym_inner] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_lateinit] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_internal] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_tailrec] = ACTIONS(1752), + [anon_sym_operator] = ACTIONS(1752), + [anon_sym_infix] = ACTIONS(1752), + [anon_sym_inline] = ACTIONS(1752), + [anon_sym_external] = ACTIONS(1752), + [sym_property_modifier] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_final] = ACTIONS(1752), + [anon_sym_open] = ACTIONS(1752), + [anon_sym_vararg] = ACTIONS(1752), + [anon_sym_noinline] = ACTIONS(1752), + [anon_sym_crossinline] = ACTIONS(1752), + [anon_sym_expect] = ACTIONS(1752), + [anon_sym_actual] = ACTIONS(1752), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), + [sym_multiline_comment] = ACTIONS(3), + }, + [3453] = { [sym__alpha_identifier] = ACTIONS(4981), [anon_sym_AT] = ACTIONS(4983), [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4983), [anon_sym_as] = ACTIONS(4981), [anon_sym_EQ] = ACTIONS(4981), [anon_sym_LBRACE] = ACTIONS(4983), [anon_sym_RBRACE] = ACTIONS(4983), [anon_sym_LPAREN] = ACTIONS(4983), [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_RPAREN] = ACTIONS(4983), [anon_sym_LT] = ACTIONS(4981), [anon_sym_GT] = ACTIONS(4981), [anon_sym_where] = ACTIONS(4981), - [anon_sym_object] = ACTIONS(4981), - [anon_sym_fun] = ACTIONS(4981), [anon_sym_DOT] = ACTIONS(4981), [anon_sym_SEMI] = ACTIONS(4983), [anon_sym_get] = ACTIONS(4981), [anon_sym_set] = ACTIONS(4981), - [anon_sym_this] = ACTIONS(4981), - [anon_sym_super] = ACTIONS(4981), [anon_sym_STAR] = ACTIONS(4981), - [sym_label] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4983), + [sym_label] = ACTIONS(4983), [anon_sym_in] = ACTIONS(4981), + [anon_sym_while] = ACTIONS(4981), [anon_sym_DOT_DOT] = ACTIONS(4983), [anon_sym_QMARK_COLON] = ACTIONS(4983), [anon_sym_AMP_AMP] = ACTIONS(4983), [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_null] = ACTIONS(4981), - [anon_sym_if] = ACTIONS(4981), [anon_sym_else] = ACTIONS(4981), - [anon_sym_when] = ACTIONS(4981), - [anon_sym_try] = ACTIONS(4981), - [anon_sym_throw] = ACTIONS(4981), - [anon_sym_return] = ACTIONS(4981), - [anon_sym_continue] = ACTIONS(4981), - [anon_sym_break] = ACTIONS(4981), [anon_sym_COLON_COLON] = ACTIONS(4983), [anon_sym_PLUS_EQ] = ACTIONS(4983), [anon_sym_DASH_EQ] = ACTIONS(4983), @@ -378914,148 +379229,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4983), [anon_sym_PLUS_PLUS] = ACTIONS(4983), [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4981), [anon_sym_BANG_BANG] = ACTIONS(4983), + [anon_sym_suspend] = ACTIONS(4981), + [anon_sym_sealed] = ACTIONS(4981), + [anon_sym_annotation] = ACTIONS(4981), [anon_sym_data] = ACTIONS(4981), [anon_sym_inner] = ACTIONS(4981), + [anon_sym_override] = ACTIONS(4981), + [anon_sym_lateinit] = ACTIONS(4981), + [anon_sym_public] = ACTIONS(4981), + [anon_sym_private] = ACTIONS(4981), + [anon_sym_internal] = ACTIONS(4981), + [anon_sym_protected] = ACTIONS(4981), + [anon_sym_tailrec] = ACTIONS(4981), + [anon_sym_operator] = ACTIONS(4981), + [anon_sym_infix] = ACTIONS(4981), + [anon_sym_inline] = ACTIONS(4981), + [anon_sym_external] = ACTIONS(4981), + [sym_property_modifier] = ACTIONS(4981), + [anon_sym_abstract] = ACTIONS(4981), + [anon_sym_final] = ACTIONS(4981), + [anon_sym_open] = ACTIONS(4981), + [anon_sym_vararg] = ACTIONS(4981), + [anon_sym_noinline] = ACTIONS(4981), + [anon_sym_crossinline] = ACTIONS(4981), [anon_sym_expect] = ACTIONS(4981), [anon_sym_actual] = ACTIONS(4981), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4983), - [anon_sym_continue_AT] = ACTIONS(4983), - [anon_sym_break_AT] = ACTIONS(4983), - [sym_real_literal] = ACTIONS(4983), - [sym_integer_literal] = ACTIONS(4981), - [sym_hex_literal] = ACTIONS(4983), - [sym_bin_literal] = ACTIONS(4983), - [anon_sym_true] = ACTIONS(4981), - [anon_sym_false] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4983), [sym__backtick_identifier] = ACTIONS(4983), - [sym__automatic_semicolon] = ACTIONS(4983), [sym_safe_nav] = ACTIONS(4983), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4983), }, - [3451] = { - [sym_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6609), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), + [3454] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_RBRACK] = ACTIONS(5111), + [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_DOT] = 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_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), }, - [3452] = { + [3455] = { + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_RPAREN] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + }, + [3456] = { + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RPAREN] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_DASH_GT] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + }, + [3457] = { [sym__alpha_identifier] = ACTIONS(4977), [anon_sym_AT] = ACTIONS(4979), [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(4979), [anon_sym_as] = ACTIONS(4977), [anon_sym_EQ] = ACTIONS(4977), [anon_sym_LBRACE] = ACTIONS(4979), [anon_sym_RBRACE] = ACTIONS(4979), [anon_sym_LPAREN] = ACTIONS(4979), [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_RPAREN] = ACTIONS(4979), [anon_sym_LT] = ACTIONS(4977), [anon_sym_GT] = ACTIONS(4977), [anon_sym_where] = ACTIONS(4977), - [anon_sym_object] = ACTIONS(4977), - [anon_sym_fun] = ACTIONS(4977), [anon_sym_DOT] = ACTIONS(4977), [anon_sym_SEMI] = ACTIONS(4979), [anon_sym_get] = ACTIONS(4977), [anon_sym_set] = ACTIONS(4977), - [anon_sym_this] = ACTIONS(4977), - [anon_sym_super] = ACTIONS(4977), [anon_sym_STAR] = ACTIONS(4977), - [sym_label] = ACTIONS(4977), + [anon_sym_DASH_GT] = ACTIONS(4979), + [sym_label] = ACTIONS(4979), [anon_sym_in] = ACTIONS(4977), + [anon_sym_while] = ACTIONS(4977), [anon_sym_DOT_DOT] = ACTIONS(4979), [anon_sym_QMARK_COLON] = ACTIONS(4979), [anon_sym_AMP_AMP] = ACTIONS(4979), [anon_sym_PIPE_PIPE] = ACTIONS(4979), - [anon_sym_null] = ACTIONS(4977), - [anon_sym_if] = ACTIONS(4977), [anon_sym_else] = ACTIONS(4977), - [anon_sym_when] = ACTIONS(4977), - [anon_sym_try] = ACTIONS(4977), - [anon_sym_throw] = ACTIONS(4977), - [anon_sym_return] = ACTIONS(4977), - [anon_sym_continue] = ACTIONS(4977), - [anon_sym_break] = ACTIONS(4977), [anon_sym_COLON_COLON] = ACTIONS(4979), [anon_sym_PLUS_EQ] = ACTIONS(4979), [anon_sym_DASH_EQ] = ACTIONS(4979), @@ -379078,1200 +379557,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as_QMARK] = ACTIONS(4979), [anon_sym_PLUS_PLUS] = ACTIONS(4979), [anon_sym_DASH_DASH] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4977), [anon_sym_BANG_BANG] = ACTIONS(4979), + [anon_sym_suspend] = ACTIONS(4977), + [anon_sym_sealed] = ACTIONS(4977), + [anon_sym_annotation] = ACTIONS(4977), [anon_sym_data] = ACTIONS(4977), [anon_sym_inner] = ACTIONS(4977), + [anon_sym_override] = ACTIONS(4977), + [anon_sym_lateinit] = ACTIONS(4977), + [anon_sym_public] = ACTIONS(4977), + [anon_sym_private] = ACTIONS(4977), + [anon_sym_internal] = ACTIONS(4977), + [anon_sym_protected] = ACTIONS(4977), + [anon_sym_tailrec] = ACTIONS(4977), + [anon_sym_operator] = ACTIONS(4977), + [anon_sym_infix] = ACTIONS(4977), + [anon_sym_inline] = ACTIONS(4977), + [anon_sym_external] = ACTIONS(4977), + [sym_property_modifier] = ACTIONS(4977), + [anon_sym_abstract] = ACTIONS(4977), + [anon_sym_final] = ACTIONS(4977), + [anon_sym_open] = ACTIONS(4977), + [anon_sym_vararg] = ACTIONS(4977), + [anon_sym_noinline] = ACTIONS(4977), + [anon_sym_crossinline] = ACTIONS(4977), [anon_sym_expect] = ACTIONS(4977), [anon_sym_actual] = ACTIONS(4977), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4979), - [anon_sym_continue_AT] = ACTIONS(4979), - [anon_sym_break_AT] = ACTIONS(4979), - [sym_real_literal] = ACTIONS(4979), - [sym_integer_literal] = ACTIONS(4977), - [sym_hex_literal] = ACTIONS(4979), - [sym_bin_literal] = ACTIONS(4979), - [anon_sym_true] = ACTIONS(4977), - [anon_sym_false] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4979), [sym__backtick_identifier] = ACTIONS(4979), - [sym__automatic_semicolon] = ACTIONS(4979), [sym_safe_nav] = ACTIONS(4979), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4979), - }, - [3453] = { - [sym__alpha_identifier] = ACTIONS(4887), - [anon_sym_AT] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [anon_sym_as] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4887), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_where] = ACTIONS(4887), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_get] = ACTIONS(4887), - [anon_sym_set] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_DASH_GT] = ACTIONS(4889), - [sym_label] = ACTIONS(4889), - [anon_sym_in] = ACTIONS(4887), - [anon_sym_while] = ACTIONS(4887), - [anon_sym_DOT_DOT] = ACTIONS(4889), - [anon_sym_QMARK_COLON] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_else] = ACTIONS(4887), - [anon_sym_COLON_COLON] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(4889), - [anon_sym_DASH_EQ] = ACTIONS(4889), - [anon_sym_STAR_EQ] = ACTIONS(4889), - [anon_sym_SLASH_EQ] = ACTIONS(4889), - [anon_sym_PERCENT_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4889), - [anon_sym_LT_EQ] = ACTIONS(4889), - [anon_sym_GT_EQ] = ACTIONS(4889), - [anon_sym_BANGin] = ACTIONS(4889), - [anon_sym_is] = ACTIONS(4887), - [anon_sym_BANGis] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_PERCENT] = ACTIONS(4887), - [anon_sym_as_QMARK] = ACTIONS(4889), - [anon_sym_PLUS_PLUS] = ACTIONS(4889), - [anon_sym_DASH_DASH] = ACTIONS(4889), - [anon_sym_BANG_BANG] = ACTIONS(4889), - [anon_sym_suspend] = ACTIONS(4887), - [anon_sym_sealed] = ACTIONS(4887), - [anon_sym_annotation] = ACTIONS(4887), - [anon_sym_data] = ACTIONS(4887), - [anon_sym_inner] = ACTIONS(4887), - [anon_sym_override] = ACTIONS(4887), - [anon_sym_lateinit] = ACTIONS(4887), - [anon_sym_public] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4887), - [anon_sym_internal] = ACTIONS(4887), - [anon_sym_protected] = ACTIONS(4887), - [anon_sym_tailrec] = ACTIONS(4887), - [anon_sym_operator] = ACTIONS(4887), - [anon_sym_infix] = ACTIONS(4887), - [anon_sym_inline] = ACTIONS(4887), - [anon_sym_external] = ACTIONS(4887), - [sym_property_modifier] = ACTIONS(4887), - [anon_sym_abstract] = ACTIONS(4887), - [anon_sym_final] = ACTIONS(4887), - [anon_sym_open] = ACTIONS(4887), - [anon_sym_vararg] = ACTIONS(4887), - [anon_sym_noinline] = ACTIONS(4887), - [anon_sym_crossinline] = ACTIONS(4887), - [anon_sym_expect] = ACTIONS(4887), - [anon_sym_actual] = ACTIONS(4887), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4889), - [sym_safe_nav] = ACTIONS(4889), - [sym_multiline_comment] = ACTIONS(3), - }, - [3454] = { - [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_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), - [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), - }, - [3455] = { - [sym__alpha_identifier] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(3029), - [anon_sym_set] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [sym_label] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3031), - [anon_sym_QMARK_COLON] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_as_QMARK] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(3031), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(3029), - [anon_sym_inner] = ACTIONS(3029), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(3029), - [anon_sym_actual] = ACTIONS(3029), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3031), - [sym_multiline_comment] = ACTIONS(3), - }, - [3456] = { - [sym__alpha_identifier] = ACTIONS(4750), - [anon_sym_AT] = ACTIONS(4752), - [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_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), - [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), - }, - [3457] = { - [sym__alpha_identifier] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_fun] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_super] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [sym_label] = ACTIONS(3082), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3084), - [anon_sym_QMARK_COLON] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_as_QMARK] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_BANG_BANG] = ACTIONS(3084), - [anon_sym_data] = ACTIONS(3082), - [anon_sym_inner] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(3082), - [anon_sym_actual] = ACTIONS(3082), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3084), - [anon_sym_continue_AT] = ACTIONS(3084), - [anon_sym_break_AT] = ACTIONS(3084), - [sym_real_literal] = ACTIONS(3084), - [sym_integer_literal] = ACTIONS(3082), - [sym_hex_literal] = ACTIONS(3084), - [sym_bin_literal] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3084), - [sym__backtick_identifier] = ACTIONS(3084), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3084), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3084), }, [3458] = { - [sym_class_body] = STATE(3796), - [sym_type_constraints] = STATE(3661), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3473), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6281), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), }, [3459] = { - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [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(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [sym_type_constraints] = STATE(3482), + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), }, [3460] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6611), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__alpha_identifier] = ACTIONS(4967), + [anon_sym_AT] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_RBRACK] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_get] = ACTIONS(4967), + [anon_sym_set] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4969), + [sym_label] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_while] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_QMARK_COLON] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_else] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_PLUS_EQ] = ACTIONS(4969), + [anon_sym_DASH_EQ] = ACTIONS(4969), + [anon_sym_STAR_EQ] = ACTIONS(4969), + [anon_sym_SLASH_EQ] = ACTIONS(4969), + [anon_sym_PERCENT_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_BANGin] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_BANGis] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_as_QMARK] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_BANG_BANG] = ACTIONS(4969), + [anon_sym_suspend] = ACTIONS(4967), + [anon_sym_sealed] = ACTIONS(4967), + [anon_sym_annotation] = ACTIONS(4967), + [anon_sym_data] = ACTIONS(4967), + [anon_sym_inner] = ACTIONS(4967), + [anon_sym_override] = ACTIONS(4967), + [anon_sym_lateinit] = ACTIONS(4967), + [anon_sym_public] = ACTIONS(4967), + [anon_sym_private] = ACTIONS(4967), + [anon_sym_internal] = ACTIONS(4967), + [anon_sym_protected] = ACTIONS(4967), + [anon_sym_tailrec] = ACTIONS(4967), + [anon_sym_operator] = ACTIONS(4967), + [anon_sym_infix] = ACTIONS(4967), + [anon_sym_inline] = ACTIONS(4967), + [anon_sym_external] = ACTIONS(4967), + [sym_property_modifier] = ACTIONS(4967), + [anon_sym_abstract] = ACTIONS(4967), + [anon_sym_final] = ACTIONS(4967), + [anon_sym_open] = ACTIONS(4967), + [anon_sym_vararg] = ACTIONS(4967), + [anon_sym_noinline] = ACTIONS(4967), + [anon_sym_crossinline] = ACTIONS(4967), + [anon_sym_expect] = ACTIONS(4967), + [anon_sym_actual] = ACTIONS(4967), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4969), + [sym_safe_nav] = ACTIONS(4969), + [sym_multiline_comment] = ACTIONS(3), }, [3461] = { - [sym__alpha_identifier] = ACTIONS(4814), - [anon_sym_AT] = ACTIONS(4816), - [anon_sym_LBRACK] = ACTIONS(4816), - [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_DOT] = 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_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), - [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), + [sym__alpha_identifier] = ACTIONS(4464), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_object] = ACTIONS(4464), + [anon_sym_fun] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_get] = ACTIONS(4464), + [anon_sym_set] = ACTIONS(4464), + [anon_sym_this] = ACTIONS(4464), + [anon_sym_super] = ACTIONS(4464), + [sym__quest] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4464), + [anon_sym_when] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_BANGin] = ACTIONS(4466), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_BANGis] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4464), + [anon_sym_sealed] = ACTIONS(4464), + [anon_sym_annotation] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4464), + [anon_sym_inner] = ACTIONS(4464), + [anon_sym_override] = ACTIONS(4464), + [anon_sym_lateinit] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_internal] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_tailrec] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_infix] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym_external] = ACTIONS(4464), + [sym_property_modifier] = ACTIONS(4464), + [anon_sym_abstract] = ACTIONS(4464), + [anon_sym_final] = ACTIONS(4464), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_vararg] = ACTIONS(4464), + [anon_sym_noinline] = ACTIONS(4464), + [anon_sym_crossinline] = ACTIONS(4464), + [anon_sym_expect] = ACTIONS(4464), + [anon_sym_actual] = ACTIONS(4464), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4466), + [anon_sym_continue_AT] = ACTIONS(4466), + [anon_sym_break_AT] = ACTIONS(4466), + [sym_real_literal] = ACTIONS(4466), + [sym_integer_literal] = ACTIONS(4464), + [sym_hex_literal] = ACTIONS(4466), + [sym_bin_literal] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4464), + [anon_sym_false] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4466), + [sym__backtick_identifier] = ACTIONS(4466), + [sym__automatic_semicolon] = ACTIONS(4466), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4466), }, [3462] = { - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [3463] = { - [sym_class_body] = STATE(3743), - [sym_type_constraints] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6615), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - }, - [3464] = { - [sym__alpha_identifier] = ACTIONS(4822), - [anon_sym_AT] = ACTIONS(4824), - [anon_sym_LBRACK] = ACTIONS(4824), - [anon_sym_RBRACK] = ACTIONS(4824), - [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_DOT] = 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_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__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [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_DOT] = 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_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(4824), - [sym_safe_nav] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(5099), + [sym_safe_nav] = ACTIONS(5099), [sym_multiline_comment] = ACTIONS(3), }, - [3465] = { - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), + [3463] = { + [sym__alpha_identifier] = ACTIONS(4913), + [anon_sym_AT] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_as] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_where] = ACTIONS(4913), + [anon_sym_object] = ACTIONS(4913), + [anon_sym_fun] = ACTIONS(4913), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), + [anon_sym_this] = ACTIONS(4913), + [anon_sym_super] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [sym_label] = ACTIONS(4913), + [anon_sym_in] = ACTIONS(4913), + [anon_sym_DOT_DOT] = ACTIONS(4915), + [anon_sym_QMARK_COLON] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(4913), + [anon_sym_if] = ACTIONS(4913), + [anon_sym_else] = ACTIONS(4913), + [anon_sym_when] = ACTIONS(4913), + [anon_sym_try] = ACTIONS(4913), + [anon_sym_throw] = ACTIONS(4913), + [anon_sym_return] = ACTIONS(4913), + [anon_sym_continue] = ACTIONS(4913), + [anon_sym_break] = ACTIONS(4913), + [anon_sym_COLON_COLON] = ACTIONS(4915), + [anon_sym_PLUS_EQ] = ACTIONS(4915), + [anon_sym_DASH_EQ] = ACTIONS(4915), + [anon_sym_STAR_EQ] = ACTIONS(4915), + [anon_sym_SLASH_EQ] = ACTIONS(4915), + [anon_sym_PERCENT_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), + [anon_sym_EQ_EQ] = ACTIONS(4913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4915), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_BANGin] = ACTIONS(4915), + [anon_sym_is] = ACTIONS(4913), + [anon_sym_BANGis] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4913), + [anon_sym_as_QMARK] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_BANG_BANG] = ACTIONS(4915), + [anon_sym_data] = ACTIONS(4913), + [anon_sym_inner] = ACTIONS(4913), + [anon_sym_expect] = ACTIONS(4913), + [anon_sym_actual] = ACTIONS(4913), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [anon_sym_return_AT] = ACTIONS(4915), + [anon_sym_continue_AT] = ACTIONS(4915), + [anon_sym_break_AT] = ACTIONS(4915), + [sym_real_literal] = ACTIONS(4915), + [sym_integer_literal] = ACTIONS(4913), + [sym_hex_literal] = ACTIONS(4915), + [sym_bin_literal] = ACTIONS(4915), + [anon_sym_true] = ACTIONS(4913), + [anon_sym_false] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4915), + [sym__backtick_identifier] = ACTIONS(4915), + [sym__automatic_semicolon] = ACTIONS(4915), + [sym_safe_nav] = ACTIONS(4915), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), + [sym__string_start] = ACTIONS(4915), }, - [3466] = { - [sym__alpha_identifier] = ACTIONS(4513), - [anon_sym_AT] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_COMMA] = ACTIONS(4515), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_object] = ACTIONS(4513), - [anon_sym_fun] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_SEMI] = ACTIONS(4515), - [anon_sym_get] = ACTIONS(4513), - [anon_sym_set] = ACTIONS(4513), - [anon_sym_this] = ACTIONS(4513), - [anon_sym_super] = ACTIONS(4513), - [sym__quest] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [sym_label] = ACTIONS(4513), - [anon_sym_in] = ACTIONS(4513), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_if] = ACTIONS(4513), - [anon_sym_else] = ACTIONS(4513), - [anon_sym_when] = ACTIONS(4513), - [anon_sym_try] = ACTIONS(4513), - [anon_sym_throw] = ACTIONS(4513), - [anon_sym_return] = ACTIONS(4513), - [anon_sym_continue] = ACTIONS(4513), - [anon_sym_break] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(4515), - [anon_sym_BANGin] = ACTIONS(4515), - [anon_sym_is] = ACTIONS(4513), - [anon_sym_BANGis] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_suspend] = ACTIONS(4513), - [anon_sym_sealed] = ACTIONS(4513), - [anon_sym_annotation] = ACTIONS(4513), - [anon_sym_data] = ACTIONS(4513), - [anon_sym_inner] = ACTIONS(4513), - [anon_sym_override] = ACTIONS(4513), - [anon_sym_lateinit] = ACTIONS(4513), - [anon_sym_public] = ACTIONS(4513), - [anon_sym_private] = ACTIONS(4513), - [anon_sym_internal] = ACTIONS(4513), - [anon_sym_protected] = ACTIONS(4513), - [anon_sym_tailrec] = ACTIONS(4513), - [anon_sym_operator] = ACTIONS(4513), - [anon_sym_infix] = ACTIONS(4513), - [anon_sym_inline] = ACTIONS(4513), - [anon_sym_external] = ACTIONS(4513), - [sym_property_modifier] = ACTIONS(4513), - [anon_sym_abstract] = ACTIONS(4513), - [anon_sym_final] = ACTIONS(4513), - [anon_sym_open] = ACTIONS(4513), - [anon_sym_vararg] = ACTIONS(4513), - [anon_sym_noinline] = ACTIONS(4513), - [anon_sym_crossinline] = ACTIONS(4513), - [anon_sym_expect] = ACTIONS(4513), - [anon_sym_actual] = ACTIONS(4513), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4515), - [anon_sym_continue_AT] = ACTIONS(4515), - [anon_sym_break_AT] = ACTIONS(4515), - [sym_real_literal] = ACTIONS(4515), - [sym_integer_literal] = ACTIONS(4513), - [sym_hex_literal] = ACTIONS(4515), - [sym_bin_literal] = ACTIONS(4515), - [anon_sym_true] = ACTIONS(4513), - [anon_sym_false] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4515), - [sym__backtick_identifier] = ACTIONS(4515), - [sym__automatic_semicolon] = ACTIONS(4515), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4515), + [3464] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6632), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [3467] = { - [sym_class_body] = STATE(3786), - [sym_type_constraints] = STATE(3631), + [3465] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [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_DOT] = 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_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), + }, + [3466] = { [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(5550), [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(3200), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(3196), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), [anon_sym_set] = ACTIONS(3196), [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_DASH_GT] = ACTIONS(3200), [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), @@ -380327,1321 +380323,833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, + [3467] = { + [sym__alpha_identifier] = ACTIONS(4873), + [anon_sym_AT] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_where] = ACTIONS(4873), + [anon_sym_object] = ACTIONS(4873), + [anon_sym_fun] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_get] = ACTIONS(4873), + [anon_sym_set] = ACTIONS(4873), + [anon_sym_this] = ACTIONS(4873), + [anon_sym_super] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [sym_label] = ACTIONS(4873), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_QMARK_COLON] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_null] = ACTIONS(4873), + [anon_sym_if] = ACTIONS(4873), + [anon_sym_else] = ACTIONS(4873), + [anon_sym_when] = ACTIONS(4873), + [anon_sym_try] = ACTIONS(4873), + [anon_sym_throw] = ACTIONS(4873), + [anon_sym_return] = ACTIONS(4873), + [anon_sym_continue] = ACTIONS(4873), + [anon_sym_break] = ACTIONS(4873), + [anon_sym_COLON_COLON] = ACTIONS(4875), + [anon_sym_PLUS_EQ] = ACTIONS(4875), + [anon_sym_DASH_EQ] = ACTIONS(4875), + [anon_sym_STAR_EQ] = ACTIONS(4875), + [anon_sym_SLASH_EQ] = ACTIONS(4875), + [anon_sym_PERCENT_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_BANGin] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4873), + [anon_sym_BANGis] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_as_QMARK] = ACTIONS(4875), + [anon_sym_PLUS_PLUS] = ACTIONS(4875), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_BANG_BANG] = ACTIONS(4875), + [anon_sym_data] = ACTIONS(4873), + [anon_sym_inner] = ACTIONS(4873), + [anon_sym_expect] = ACTIONS(4873), + [anon_sym_actual] = ACTIONS(4873), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4875), + [anon_sym_continue_AT] = ACTIONS(4875), + [anon_sym_break_AT] = ACTIONS(4875), + [sym_real_literal] = ACTIONS(4875), + [sym_integer_literal] = ACTIONS(4873), + [sym_hex_literal] = ACTIONS(4875), + [sym_bin_literal] = ACTIONS(4875), + [anon_sym_true] = ACTIONS(4873), + [anon_sym_false] = ACTIONS(4873), + [anon_sym_SQUOTE] = ACTIONS(4875), + [sym__backtick_identifier] = ACTIONS(4875), + [sym__automatic_semicolon] = ACTIONS(4875), + [sym_safe_nav] = ACTIONS(4875), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4875), + }, [3468] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_DASH_GT] = ACTIONS(5023), - [sym_label] = ACTIONS(5023), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_while] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_suspend] = ACTIONS(5021), - [anon_sym_sealed] = ACTIONS(5021), - [anon_sym_annotation] = ACTIONS(5021), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_override] = ACTIONS(5021), - [anon_sym_lateinit] = ACTIONS(5021), - [anon_sym_public] = ACTIONS(5021), - [anon_sym_private] = ACTIONS(5021), - [anon_sym_internal] = ACTIONS(5021), - [anon_sym_protected] = ACTIONS(5021), - [anon_sym_tailrec] = ACTIONS(5021), - [anon_sym_operator] = ACTIONS(5021), - [anon_sym_infix] = ACTIONS(5021), - [anon_sym_inline] = ACTIONS(5021), - [anon_sym_external] = ACTIONS(5021), - [sym_property_modifier] = ACTIONS(5021), - [anon_sym_abstract] = ACTIONS(5021), - [anon_sym_final] = ACTIONS(5021), - [anon_sym_open] = ACTIONS(5021), - [anon_sym_vararg] = ACTIONS(5021), - [anon_sym_noinline] = ACTIONS(5021), - [anon_sym_crossinline] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [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_DOT] = 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_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), }, [3469] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(6617), - [anon_sym_COMMA] = ACTIONS(4286), - [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_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4486), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_EQ] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_by] = ACTIONS(4486), + [anon_sym_where] = ACTIONS(4486), + [anon_sym_object] = ACTIONS(4486), + [anon_sym_fun] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_get] = ACTIONS(4486), + [anon_sym_set] = ACTIONS(4486), + [anon_sym_this] = ACTIONS(4486), + [anon_sym_super] = ACTIONS(4486), + [sym__quest] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4488), + [sym_label] = ACTIONS(4486), + [anon_sym_in] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_when] = ACTIONS(4486), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_throw] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_COLON_COLON] = ACTIONS(4488), + [anon_sym_BANGin] = ACTIONS(4488), + [anon_sym_is] = ACTIONS(4486), + [anon_sym_BANGis] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_suspend] = ACTIONS(4486), + [anon_sym_sealed] = ACTIONS(4486), + [anon_sym_annotation] = ACTIONS(4486), + [anon_sym_data] = ACTIONS(4486), + [anon_sym_inner] = ACTIONS(4486), + [anon_sym_override] = ACTIONS(4486), + [anon_sym_lateinit] = ACTIONS(4486), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_private] = ACTIONS(4486), + [anon_sym_internal] = ACTIONS(4486), + [anon_sym_protected] = ACTIONS(4486), + [anon_sym_tailrec] = ACTIONS(4486), + [anon_sym_operator] = ACTIONS(4486), + [anon_sym_infix] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym_external] = ACTIONS(4486), + [sym_property_modifier] = ACTIONS(4486), + [anon_sym_abstract] = ACTIONS(4486), + [anon_sym_final] = ACTIONS(4486), + [anon_sym_open] = ACTIONS(4486), + [anon_sym_vararg] = ACTIONS(4486), + [anon_sym_noinline] = ACTIONS(4486), + [anon_sym_crossinline] = ACTIONS(4486), + [anon_sym_expect] = ACTIONS(4486), + [anon_sym_actual] = ACTIONS(4486), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4488), + [anon_sym_continue_AT] = ACTIONS(4488), + [anon_sym_break_AT] = ACTIONS(4488), + [sym_real_literal] = ACTIONS(4488), + [sym_integer_literal] = ACTIONS(4486), + [sym_hex_literal] = ACTIONS(4488), + [sym_bin_literal] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4488), + [sym__backtick_identifier] = ACTIONS(4488), + [sym__automatic_semicolon] = ACTIONS(4488), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4488), }, [3470] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_where] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_DASH_GT] = ACTIONS(4286), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_while] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym_safe_nav] = ACTIONS(4286), + [sym_type_constraints] = STATE(3481), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [3471] = { - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [sym__quest] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [sym__quest] = ACTIONS(4225), + [anon_sym_STAR] = ACTIONS(4225), + [sym_label] = ACTIONS(4223), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), }, [3472] = { - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), + [sym__alpha_identifier] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_DASH_GT] = ACTIONS(1594), + [sym_label] = ACTIONS(1594), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1594), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), + [sym_multiline_comment] = ACTIONS(3), }, [3473] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_RPAREN] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_DASH_GT] = ACTIONS(4141), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [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(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4141), + [sym__alpha_identifier] = ACTIONS(4921), + [anon_sym_AT] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_as] = ACTIONS(4921), + [anon_sym_EQ] = ACTIONS(4921), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_where] = ACTIONS(4921), + [anon_sym_object] = ACTIONS(4921), + [anon_sym_fun] = ACTIONS(4921), + [anon_sym_DOT] = ACTIONS(4921), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_get] = ACTIONS(4921), + [anon_sym_set] = ACTIONS(4921), + [anon_sym_this] = ACTIONS(4921), + [anon_sym_super] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [sym_label] = ACTIONS(4921), + [anon_sym_in] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4923), + [anon_sym_QMARK_COLON] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [anon_sym_null] = ACTIONS(4921), + [anon_sym_if] = ACTIONS(4921), + [anon_sym_else] = ACTIONS(4921), + [anon_sym_when] = ACTIONS(4921), + [anon_sym_try] = ACTIONS(4921), + [anon_sym_throw] = ACTIONS(4921), + [anon_sym_return] = ACTIONS(4921), + [anon_sym_continue] = ACTIONS(4921), + [anon_sym_break] = ACTIONS(4921), + [anon_sym_COLON_COLON] = ACTIONS(4923), + [anon_sym_PLUS_EQ] = ACTIONS(4923), + [anon_sym_DASH_EQ] = ACTIONS(4923), + [anon_sym_STAR_EQ] = ACTIONS(4923), + [anon_sym_SLASH_EQ] = ACTIONS(4923), + [anon_sym_PERCENT_EQ] = ACTIONS(4923), + [anon_sym_BANG_EQ] = ACTIONS(4921), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4923), + [anon_sym_EQ_EQ] = ACTIONS(4921), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4923), + [anon_sym_LT_EQ] = ACTIONS(4923), + [anon_sym_GT_EQ] = ACTIONS(4923), + [anon_sym_BANGin] = ACTIONS(4923), + [anon_sym_is] = ACTIONS(4921), + [anon_sym_BANGis] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_as_QMARK] = ACTIONS(4923), + [anon_sym_PLUS_PLUS] = ACTIONS(4923), + [anon_sym_DASH_DASH] = ACTIONS(4923), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_BANG_BANG] = ACTIONS(4923), + [anon_sym_data] = ACTIONS(4921), + [anon_sym_inner] = ACTIONS(4921), + [anon_sym_expect] = ACTIONS(4921), + [anon_sym_actual] = ACTIONS(4921), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4923), + [anon_sym_continue_AT] = ACTIONS(4923), + [anon_sym_break_AT] = ACTIONS(4923), + [sym_real_literal] = ACTIONS(4923), + [sym_integer_literal] = ACTIONS(4921), + [sym_hex_literal] = ACTIONS(4923), + [sym_bin_literal] = ACTIONS(4923), + [anon_sym_true] = ACTIONS(4921), + [anon_sym_false] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4923), + [sym__backtick_identifier] = ACTIONS(4923), + [sym__automatic_semicolon] = ACTIONS(4923), + [sym_safe_nav] = ACTIONS(4923), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4923), }, [3474] = { - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym__alpha_identifier] = ACTIONS(4464), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_as] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4464), + [anon_sym_GT] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_get] = ACTIONS(4464), + [anon_sym_set] = ACTIONS(4464), + [sym__quest] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4466), + [anon_sym_in] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_QMARK_COLON] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_else] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_PLUS_EQ] = ACTIONS(4466), + [anon_sym_DASH_EQ] = ACTIONS(4466), + [anon_sym_STAR_EQ] = ACTIONS(4466), + [anon_sym_SLASH_EQ] = ACTIONS(4466), + [anon_sym_PERCENT_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4466), + [anon_sym_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4466), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_BANGin] = ACTIONS(4466), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_BANGis] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_SLASH] = ACTIONS(4464), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_BANG_BANG] = ACTIONS(4466), + [anon_sym_suspend] = ACTIONS(4464), + [anon_sym_sealed] = ACTIONS(4464), + [anon_sym_annotation] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4464), + [anon_sym_inner] = ACTIONS(4464), + [anon_sym_override] = ACTIONS(4464), + [anon_sym_lateinit] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_internal] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_tailrec] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_infix] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym_external] = ACTIONS(4464), + [sym_property_modifier] = ACTIONS(4464), + [anon_sym_abstract] = ACTIONS(4464), + [anon_sym_final] = ACTIONS(4464), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_vararg] = ACTIONS(4464), + [anon_sym_noinline] = ACTIONS(4464), + [anon_sym_crossinline] = ACTIONS(4464), + [anon_sym_expect] = ACTIONS(4464), + [anon_sym_actual] = ACTIONS(4464), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4466), + [sym__automatic_semicolon] = ACTIONS(4466), + [sym_safe_nav] = ACTIONS(4466), [sym_multiline_comment] = ACTIONS(3), }, [3475] = { - [sym_type_constraints] = STATE(3861), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6621), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_RBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_DASH_GT] = ACTIONS(4043), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_while] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), + [sym_type_constraints] = STATE(3888), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6636), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, [3476] = { - [sym_class_body] = STATE(3751), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6625), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [3477] = { - [sym_class_body] = STATE(3675), - [sym_type_constraints] = STATE(3546), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4406), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - }, - [3478] = { - [sym_type_constraints] = STATE(3671), - [sym_enum_class_body] = STATE(3677), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - }, - [3479] = { - [sym__alpha_identifier] = ACTIONS(4513), - [anon_sym_AT] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_as] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_COMMA] = ACTIONS(4515), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_SEMI] = ACTIONS(4515), - [anon_sym_get] = ACTIONS(4513), - [anon_sym_set] = ACTIONS(4513), - [sym__quest] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [sym_label] = ACTIONS(4515), - [anon_sym_in] = ACTIONS(4513), - [anon_sym_DOT_DOT] = ACTIONS(4515), - [anon_sym_QMARK_COLON] = ACTIONS(4515), - [anon_sym_AMP_AMP] = ACTIONS(4515), - [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_else] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(4515), - [anon_sym_PLUS_EQ] = ACTIONS(4515), - [anon_sym_DASH_EQ] = ACTIONS(4515), - [anon_sym_STAR_EQ] = ACTIONS(4515), - [anon_sym_SLASH_EQ] = ACTIONS(4515), - [anon_sym_PERCENT_EQ] = ACTIONS(4515), - [anon_sym_BANG_EQ] = ACTIONS(4513), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4515), - [anon_sym_EQ_EQ] = ACTIONS(4513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4515), - [anon_sym_LT_EQ] = ACTIONS(4515), - [anon_sym_GT_EQ] = ACTIONS(4515), - [anon_sym_BANGin] = ACTIONS(4515), - [anon_sym_is] = ACTIONS(4513), - [anon_sym_BANGis] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_as_QMARK] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_BANG_BANG] = ACTIONS(4515), - [anon_sym_suspend] = ACTIONS(4513), - [anon_sym_sealed] = ACTIONS(4513), - [anon_sym_annotation] = ACTIONS(4513), - [anon_sym_data] = ACTIONS(4513), - [anon_sym_inner] = ACTIONS(4513), - [anon_sym_override] = ACTIONS(4513), - [anon_sym_lateinit] = ACTIONS(4513), - [anon_sym_public] = ACTIONS(4513), - [anon_sym_private] = ACTIONS(4513), - [anon_sym_internal] = ACTIONS(4513), - [anon_sym_protected] = ACTIONS(4513), - [anon_sym_tailrec] = ACTIONS(4513), - [anon_sym_operator] = ACTIONS(4513), - [anon_sym_infix] = ACTIONS(4513), - [anon_sym_inline] = ACTIONS(4513), - [anon_sym_external] = ACTIONS(4513), - [sym_property_modifier] = ACTIONS(4513), - [anon_sym_abstract] = ACTIONS(4513), - [anon_sym_final] = ACTIONS(4513), - [anon_sym_open] = ACTIONS(4513), - [anon_sym_vararg] = ACTIONS(4513), - [anon_sym_noinline] = ACTIONS(4513), - [anon_sym_crossinline] = ACTIONS(4513), - [anon_sym_expect] = ACTIONS(4513), - [anon_sym_actual] = ACTIONS(4513), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4515), - [sym__automatic_semicolon] = ACTIONS(4515), - [sym_safe_nav] = ACTIONS(4515), - [sym_multiline_comment] = ACTIONS(3), - }, - [3480] = { - [sym_class_body] = STATE(3677), - [sym_type_constraints] = STATE(3666), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - }, - [3481] = { - [sym_class_body] = STATE(3813), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6627), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - }, - [3482] = { - [sym_type_constraints] = STATE(3664), - [sym_enum_class_body] = STATE(3727), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5413), - [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(5364), - [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_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), - }, - [3483] = { - [sym_function_body] = STATE(3745), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - }, - [3484] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3738), [sym__alpha_identifier] = ACTIONS(4424), [anon_sym_AT] = ACTIONS(4426), [anon_sym_LBRACK] = ACTIONS(4426), [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), + [anon_sym_EQ] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4426), [anon_sym_RBRACE] = ACTIONS(4426), [anon_sym_LPAREN] = ACTIONS(4426), [anon_sym_COMMA] = ACTIONS(4426), @@ -381709,836 +381217,2377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4424), [anon_sym_actual] = ACTIONS(4424), [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6640), + [anon_sym_L] = ACTIONS(6642), [sym__backtick_identifier] = ACTIONS(4426), [sym__automatic_semicolon] = ACTIONS(4426), [sym_safe_nav] = ACTIONS(4426), [sym_multiline_comment] = ACTIONS(3), }, + [3478] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6644), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [3479] = { + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3480] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6648), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [3481] = { + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + }, + [3482] = { + [sym_function_body] = STATE(3700), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + }, + [3483] = { + [sym_function_body] = STATE(3171), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6652), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3484] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_catch] = ACTIONS(4494), + [anon_sym_finally] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + }, [3485] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6629), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [sym_function_body] = STATE(3774), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, [3486] = { - [sym_type_constraints] = STATE(3629), - [sym_enum_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = 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_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_function_body] = STATE(3902), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, [3487] = { - [sym_function_body] = STATE(3365), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6631), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_class_body] = STATE(3711), + [sym_type_constraints] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, [3488] = { - [sym_type_constraints] = STATE(3657), - [sym_enum_class_body] = STATE(3737), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_catch] = ACTIONS(4502), + [anon_sym_finally] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, [3489] = { - [sym_class_body] = STATE(3737), - [sym_type_constraints] = STATE(3607), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_constructor] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_COMMA] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3866), + [sym_label] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_safe_nav] = ACTIONS(3871), [sym_multiline_comment] = ACTIONS(3), }, [3490] = { - [sym_class_body] = STATE(3833), - [sym_type_constraints] = STATE(3654), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = 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_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_class_body] = STATE(3851), + [sym_type_constraints] = STATE(3597), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), [sym_multiline_comment] = ACTIONS(3), }, [3491] = { - [sym_class_body] = STATE(3682), - [sym_type_constraints] = STATE(3636), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4402), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), + [sym_type_constraints] = STATE(3606), + [sym_enum_class_body] = STATE(3827), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), [sym_multiline_comment] = ACTIONS(3), }, [3492] = { - [sym__alpha_identifier] = ACTIONS(4495), - [anon_sym_AT] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_as] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_COMMA] = ACTIONS(4497), - [anon_sym_LT] = ACTIONS(4495), - [anon_sym_GT] = ACTIONS(4495), - [anon_sym_where] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_get] = ACTIONS(4495), - [anon_sym_set] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4497), - [anon_sym_in] = ACTIONS(4495), - [anon_sym_DOT_DOT] = ACTIONS(4497), - [anon_sym_QMARK_COLON] = ACTIONS(4497), - [anon_sym_AMP_AMP] = ACTIONS(4497), - [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_else] = ACTIONS(4495), - [anon_sym_catch] = ACTIONS(4495), - [anon_sym_finally] = 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_override] = ACTIONS(4495), - [anon_sym_lateinit] = ACTIONS(4495), - [anon_sym_public] = ACTIONS(4495), - [anon_sym_private] = ACTIONS(4495), - [anon_sym_internal] = ACTIONS(4495), - [anon_sym_protected] = ACTIONS(4495), - [anon_sym_tailrec] = ACTIONS(4495), - [anon_sym_operator] = ACTIONS(4495), - [anon_sym_infix] = ACTIONS(4495), - [anon_sym_inline] = ACTIONS(4495), - [anon_sym_external] = ACTIONS(4495), - [sym_property_modifier] = ACTIONS(4495), - [anon_sym_abstract] = ACTIONS(4495), - [anon_sym_final] = ACTIONS(4495), - [anon_sym_open] = ACTIONS(4495), - [anon_sym_vararg] = ACTIONS(4495), - [anon_sym_noinline] = ACTIONS(4495), - [anon_sym_crossinline] = ACTIONS(4495), - [anon_sym_expect] = ACTIONS(4495), - [anon_sym_actual] = ACTIONS(4495), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4497), - [sym__automatic_semicolon] = ACTIONS(4497), - [sym_safe_nav] = ACTIONS(4497), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [3493] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_catch] = ACTIONS(4517), - [anon_sym_finally] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), + [sym_class_body] = STATE(3827), + [sym_type_constraints] = STATE(3628), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), [sym_multiline_comment] = ACTIONS(3), }, [3494] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_COLON] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4394), - [anon_sym_constructor] = ACTIONS(4394), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_COMMA] = ACTIONS(4396), - [anon_sym_LT] = ACTIONS(4394), - [anon_sym_GT] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4394), - [sym_label] = ACTIONS(4396), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_QMARK_COLON] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_PLUS_EQ] = ACTIONS(4396), - [anon_sym_DASH_EQ] = ACTIONS(4396), - [anon_sym_STAR_EQ] = ACTIONS(4396), - [anon_sym_SLASH_EQ] = ACTIONS(4396), - [anon_sym_PERCENT_EQ] = ACTIONS(4396), - [anon_sym_BANG_EQ] = ACTIONS(4394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), - [anon_sym_EQ_EQ] = ACTIONS(4394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), - [anon_sym_LT_EQ] = ACTIONS(4396), - [anon_sym_GT_EQ] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_SLASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_as_QMARK] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG_BANG] = ACTIONS(4396), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_override] = ACTIONS(4394), - [anon_sym_lateinit] = ACTIONS(4394), - [anon_sym_public] = ACTIONS(4394), - [anon_sym_private] = ACTIONS(4394), - [anon_sym_internal] = ACTIONS(4394), - [anon_sym_protected] = ACTIONS(4394), - [anon_sym_tailrec] = ACTIONS(4394), - [anon_sym_operator] = ACTIONS(4394), - [anon_sym_infix] = ACTIONS(4394), - [anon_sym_inline] = ACTIONS(4394), - [anon_sym_external] = ACTIONS(4394), - [sym_property_modifier] = ACTIONS(4394), - [anon_sym_abstract] = ACTIONS(4394), - [anon_sym_final] = ACTIONS(4394), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_vararg] = ACTIONS(4394), - [anon_sym_noinline] = ACTIONS(4394), - [anon_sym_crossinline] = ACTIONS(4394), - [anon_sym_expect] = ACTIONS(4394), - [anon_sym_actual] = ACTIONS(4394), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4396), - [sym__automatic_semicolon] = ACTIONS(4396), - [sym_safe_nav] = ACTIONS(4396), + [sym_type_constraints] = STATE(3639), + [sym_enum_class_body] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, [3495] = { - [sym_type_constraints] = STATE(3552), - [sym_enum_class_body] = STATE(3687), + [sym__alpha_identifier] = ACTIONS(4486), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_as] = ACTIONS(4486), + [anon_sym_EQ] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_COMMA] = ACTIONS(4488), + [anon_sym_by] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_where] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_get] = ACTIONS(4486), + [anon_sym_set] = ACTIONS(4486), + [sym__quest] = ACTIONS(4486), + [anon_sym_STAR] = ACTIONS(4486), + [sym_label] = ACTIONS(4488), + [anon_sym_in] = ACTIONS(4486), + [anon_sym_DOT_DOT] = ACTIONS(4488), + [anon_sym_QMARK_COLON] = ACTIONS(4488), + [anon_sym_AMP_AMP] = ACTIONS(4488), + [anon_sym_PIPE_PIPE] = ACTIONS(4488), + [anon_sym_else] = ACTIONS(4486), + [anon_sym_COLON_COLON] = ACTIONS(4488), + [anon_sym_PLUS_EQ] = ACTIONS(4488), + [anon_sym_DASH_EQ] = ACTIONS(4488), + [anon_sym_STAR_EQ] = ACTIONS(4488), + [anon_sym_SLASH_EQ] = ACTIONS(4488), + [anon_sym_PERCENT_EQ] = ACTIONS(4488), + [anon_sym_BANG_EQ] = ACTIONS(4486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4488), + [anon_sym_EQ_EQ] = ACTIONS(4486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4488), + [anon_sym_LT_EQ] = ACTIONS(4488), + [anon_sym_GT_EQ] = ACTIONS(4488), + [anon_sym_BANGin] = ACTIONS(4488), + [anon_sym_is] = ACTIONS(4486), + [anon_sym_BANGis] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_SLASH] = ACTIONS(4486), + [anon_sym_PERCENT] = ACTIONS(4486), + [anon_sym_as_QMARK] = ACTIONS(4488), + [anon_sym_PLUS_PLUS] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4488), + [anon_sym_BANG_BANG] = ACTIONS(4488), + [anon_sym_suspend] = ACTIONS(4486), + [anon_sym_sealed] = ACTIONS(4486), + [anon_sym_annotation] = ACTIONS(4486), + [anon_sym_data] = ACTIONS(4486), + [anon_sym_inner] = ACTIONS(4486), + [anon_sym_override] = ACTIONS(4486), + [anon_sym_lateinit] = ACTIONS(4486), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_private] = ACTIONS(4486), + [anon_sym_internal] = ACTIONS(4486), + [anon_sym_protected] = ACTIONS(4486), + [anon_sym_tailrec] = ACTIONS(4486), + [anon_sym_operator] = ACTIONS(4486), + [anon_sym_infix] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym_external] = ACTIONS(4486), + [sym_property_modifier] = ACTIONS(4486), + [anon_sym_abstract] = ACTIONS(4486), + [anon_sym_final] = ACTIONS(4486), + [anon_sym_open] = ACTIONS(4486), + [anon_sym_vararg] = ACTIONS(4486), + [anon_sym_noinline] = ACTIONS(4486), + [anon_sym_crossinline] = ACTIONS(4486), + [anon_sym_expect] = ACTIONS(4486), + [anon_sym_actual] = ACTIONS(4486), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4488), + [sym__automatic_semicolon] = ACTIONS(4488), + [sym_safe_nav] = ACTIONS(4488), + [sym_multiline_comment] = ACTIONS(3), + }, + [3496] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3034), + [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(6654), + [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), + [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_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), + }, + [3497] = { + [sym__alpha_identifier] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(4418), + [anon_sym_constructor] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4420), + [anon_sym_LT] = ACTIONS(4418), + [anon_sym_GT] = ACTIONS(4418), + [anon_sym_where] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_SEMI] = ACTIONS(4420), + [anon_sym_get] = ACTIONS(4418), + [anon_sym_set] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4420), + [anon_sym_in] = ACTIONS(4418), + [anon_sym_DOT_DOT] = ACTIONS(4420), + [anon_sym_QMARK_COLON] = ACTIONS(4420), + [anon_sym_AMP_AMP] = ACTIONS(4420), + [anon_sym_PIPE_PIPE] = ACTIONS(4420), + [anon_sym_else] = ACTIONS(4418), + [anon_sym_COLON_COLON] = ACTIONS(4420), + [anon_sym_PLUS_EQ] = ACTIONS(4420), + [anon_sym_DASH_EQ] = ACTIONS(4420), + [anon_sym_STAR_EQ] = ACTIONS(4420), + [anon_sym_SLASH_EQ] = ACTIONS(4420), + [anon_sym_PERCENT_EQ] = ACTIONS(4420), + [anon_sym_BANG_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4420), + [anon_sym_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4420), + [anon_sym_LT_EQ] = ACTIONS(4420), + [anon_sym_GT_EQ] = ACTIONS(4420), + [anon_sym_BANGin] = ACTIONS(4420), + [anon_sym_is] = ACTIONS(4418), + [anon_sym_BANGis] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_SLASH] = ACTIONS(4418), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4420), + [anon_sym_PLUS_PLUS] = ACTIONS(4420), + [anon_sym_DASH_DASH] = ACTIONS(4420), + [anon_sym_BANG_BANG] = ACTIONS(4420), + [anon_sym_suspend] = ACTIONS(4418), + [anon_sym_sealed] = ACTIONS(4418), + [anon_sym_annotation] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4418), + [anon_sym_inner] = ACTIONS(4418), + [anon_sym_override] = ACTIONS(4418), + [anon_sym_lateinit] = ACTIONS(4418), + [anon_sym_public] = ACTIONS(4418), + [anon_sym_private] = ACTIONS(4418), + [anon_sym_internal] = ACTIONS(4418), + [anon_sym_protected] = ACTIONS(4418), + [anon_sym_tailrec] = ACTIONS(4418), + [anon_sym_operator] = ACTIONS(4418), + [anon_sym_infix] = ACTIONS(4418), + [anon_sym_inline] = ACTIONS(4418), + [anon_sym_external] = ACTIONS(4418), + [sym_property_modifier] = ACTIONS(4418), + [anon_sym_abstract] = ACTIONS(4418), + [anon_sym_final] = ACTIONS(4418), + [anon_sym_open] = ACTIONS(4418), + [anon_sym_vararg] = ACTIONS(4418), + [anon_sym_noinline] = ACTIONS(4418), + [anon_sym_crossinline] = ACTIONS(4418), + [anon_sym_expect] = ACTIONS(4418), + [anon_sym_actual] = ACTIONS(4418), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4420), + [sym__automatic_semicolon] = ACTIONS(4420), + [sym_safe_nav] = ACTIONS(4420), + [sym_multiline_comment] = ACTIONS(3), + }, + [3498] = { + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [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_DOT] = 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_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), + }, + [3499] = { + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_where] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [sym__quest] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [sym_label] = ACTIONS(4225), + [anon_sym_in] = ACTIONS(4223), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_QMARK_COLON] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_else] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4225), + [anon_sym_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_BANGin] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4223), + [anon_sym_BANGis] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_as_QMARK] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4225), + [sym__automatic_semicolon] = ACTIONS(4225), + [sym_safe_nav] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + }, + [3500] = { + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + }, + [3501] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3496), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(6654), + [anon_sym_RPAREN] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_while] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4648), + [anon_sym_DASH_EQ] = ACTIONS(4648), + [anon_sym_STAR_EQ] = ACTIONS(4648), + [anon_sym_SLASH_EQ] = ACTIONS(4648), + [anon_sym_PERCENT_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4646), + [anon_sym_sealed] = ACTIONS(4646), + [anon_sym_annotation] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_lateinit] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_protected] = ACTIONS(4646), + [anon_sym_tailrec] = ACTIONS(4646), + [anon_sym_operator] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_inline] = ACTIONS(4646), + [anon_sym_external] = ACTIONS(4646), + [sym_property_modifier] = ACTIONS(4646), + [anon_sym_abstract] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_vararg] = ACTIONS(4646), + [anon_sym_noinline] = ACTIONS(4646), + [anon_sym_crossinline] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), + [sym_multiline_comment] = ACTIONS(3), + }, + [3502] = { + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3503] = { + [sym_class_body] = STATE(3872), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + }, + [3504] = { + [sym__alpha_identifier] = ACTIONS(4460), + [anon_sym_AT] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_COMMA] = ACTIONS(4462), + [anon_sym_LT] = ACTIONS(4460), + [anon_sym_GT] = ACTIONS(4460), + [anon_sym_where] = ACTIONS(4460), + [anon_sym_DOT] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym_get] = ACTIONS(4460), + [anon_sym_set] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4460), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4460), + [anon_sym_DOT_DOT] = ACTIONS(4462), + [anon_sym_QMARK_COLON] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_PIPE_PIPE] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4460), + [anon_sym_catch] = ACTIONS(4460), + [anon_sym_finally] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_PLUS_EQ] = ACTIONS(4462), + [anon_sym_DASH_EQ] = ACTIONS(4462), + [anon_sym_STAR_EQ] = ACTIONS(4462), + [anon_sym_SLASH_EQ] = ACTIONS(4462), + [anon_sym_PERCENT_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ] = ACTIONS(4460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ] = ACTIONS(4460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4462), + [anon_sym_LT_EQ] = ACTIONS(4462), + [anon_sym_GT_EQ] = ACTIONS(4462), + [anon_sym_BANGin] = ACTIONS(4462), + [anon_sym_is] = ACTIONS(4460), + [anon_sym_BANGis] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_SLASH] = ACTIONS(4460), + [anon_sym_PERCENT] = ACTIONS(4460), + [anon_sym_as_QMARK] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4462), + [anon_sym_suspend] = ACTIONS(4460), + [anon_sym_sealed] = ACTIONS(4460), + [anon_sym_annotation] = ACTIONS(4460), + [anon_sym_data] = ACTIONS(4460), + [anon_sym_inner] = ACTIONS(4460), + [anon_sym_override] = ACTIONS(4460), + [anon_sym_lateinit] = ACTIONS(4460), + [anon_sym_public] = ACTIONS(4460), + [anon_sym_private] = ACTIONS(4460), + [anon_sym_internal] = ACTIONS(4460), + [anon_sym_protected] = ACTIONS(4460), + [anon_sym_tailrec] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_infix] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym_external] = ACTIONS(4460), + [sym_property_modifier] = ACTIONS(4460), + [anon_sym_abstract] = ACTIONS(4460), + [anon_sym_final] = ACTIONS(4460), + [anon_sym_open] = ACTIONS(4460), + [anon_sym_vararg] = ACTIONS(4460), + [anon_sym_noinline] = ACTIONS(4460), + [anon_sym_crossinline] = ACTIONS(4460), + [anon_sym_expect] = ACTIONS(4460), + [anon_sym_actual] = ACTIONS(4460), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4462), + [sym__automatic_semicolon] = ACTIONS(4462), + [sym_safe_nav] = ACTIONS(4462), + [sym_multiline_comment] = ACTIONS(3), + }, + [3505] = { + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6658), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3506] = { + [sym_function_body] = STATE(3246), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6660), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + }, + [3507] = { + [sym_class_body] = STATE(3740), [sym__alpha_identifier] = ACTIONS(4390), [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(6662), [anon_sym_LBRACK] = ACTIONS(4392), [anon_sym_as] = ACTIONS(4390), [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(5413), + [anon_sym_LBRACE] = ACTIONS(5439), [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_LPAREN] = ACTIONS(4392), [anon_sym_COMMA] = ACTIONS(4392), [anon_sym_LT] = ACTIONS(4390), [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(4390), [anon_sym_DOT] = ACTIONS(4390), [anon_sym_SEMI] = ACTIONS(4392), [anon_sym_get] = ACTIONS(4390), @@ -382605,1965 +383654,2127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), }, - [3496] = { - [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_catch] = ACTIONS(4505), - [anon_sym_finally] = 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_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), + [3508] = { + [sym_class_body] = STATE(3887), + [sym_type_constraints] = STATE(3557), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(5439), + [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(5443), + [anon_sym_DOT] = 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_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_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), }, - [3497] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_catch] = ACTIONS(4509), - [anon_sym_finally] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), + [3509] = { + [sym_class_body] = STATE(3794), + [sym_type_constraints] = STATE(3666), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6664), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, - [3498] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_constructor] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [sym_label] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_safe_nav] = ACTIONS(3948), + [3510] = { + [sym_type_constraints] = STATE(3554), + [sym_enum_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [3499] = { - [sym__alpha_identifier] = ACTIONS(4475), - [anon_sym_AT] = ACTIONS(4477), - [anon_sym_LBRACK] = ACTIONS(4477), - [anon_sym_as] = ACTIONS(4475), - [anon_sym_EQ] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym_COMMA] = ACTIONS(4477), - [anon_sym_LT] = ACTIONS(4475), - [anon_sym_GT] = ACTIONS(4475), - [anon_sym_where] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_SEMI] = ACTIONS(4477), - [anon_sym_get] = ACTIONS(4475), - [anon_sym_set] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [sym_label] = ACTIONS(4477), - [anon_sym_in] = ACTIONS(4475), - [anon_sym_DOT_DOT] = ACTIONS(4477), - [anon_sym_QMARK_COLON] = ACTIONS(4477), - [anon_sym_AMP_AMP] = ACTIONS(4477), - [anon_sym_PIPE_PIPE] = ACTIONS(4477), - [anon_sym_else] = ACTIONS(4475), - [anon_sym_COLON_COLON] = ACTIONS(4477), - [anon_sym_PLUS_EQ] = ACTIONS(4477), - [anon_sym_DASH_EQ] = ACTIONS(4477), - [anon_sym_STAR_EQ] = ACTIONS(4477), - [anon_sym_SLASH_EQ] = ACTIONS(4477), - [anon_sym_PERCENT_EQ] = ACTIONS(4477), - [anon_sym_BANG_EQ] = ACTIONS(4475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4477), - [anon_sym_EQ_EQ] = ACTIONS(4475), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4477), - [anon_sym_LT_EQ] = ACTIONS(4477), - [anon_sym_GT_EQ] = ACTIONS(4477), - [anon_sym_BANGin] = ACTIONS(4477), - [anon_sym_is] = ACTIONS(4475), - [anon_sym_BANGis] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_SLASH] = ACTIONS(4475), - [anon_sym_PERCENT] = ACTIONS(4475), - [anon_sym_as_QMARK] = ACTIONS(4477), - [anon_sym_PLUS_PLUS] = ACTIONS(4477), - [anon_sym_DASH_DASH] = ACTIONS(4477), - [anon_sym_BANG_BANG] = ACTIONS(4477), - [anon_sym_suspend] = ACTIONS(4475), - [anon_sym_sealed] = ACTIONS(4475), - [anon_sym_annotation] = ACTIONS(4475), - [anon_sym_data] = ACTIONS(4475), - [anon_sym_inner] = ACTIONS(4475), - [anon_sym_override] = ACTIONS(4475), - [anon_sym_lateinit] = ACTIONS(4475), - [anon_sym_public] = ACTIONS(4475), - [anon_sym_private] = ACTIONS(4475), - [anon_sym_internal] = ACTIONS(4475), - [anon_sym_protected] = ACTIONS(4475), - [anon_sym_tailrec] = ACTIONS(4475), - [anon_sym_operator] = ACTIONS(4475), - [anon_sym_infix] = ACTIONS(4475), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_external] = ACTIONS(4475), - [sym_property_modifier] = ACTIONS(4475), - [anon_sym_abstract] = ACTIONS(4475), - [anon_sym_final] = ACTIONS(4475), - [anon_sym_open] = ACTIONS(4475), - [anon_sym_vararg] = ACTIONS(4475), - [anon_sym_noinline] = ACTIONS(4475), - [anon_sym_crossinline] = ACTIONS(4475), - [anon_sym_expect] = ACTIONS(4475), - [anon_sym_actual] = ACTIONS(4475), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6633), - [anon_sym_L] = ACTIONS(6635), - [sym__backtick_identifier] = ACTIONS(4477), - [sym__automatic_semicolon] = ACTIONS(4477), - [sym_safe_nav] = ACTIONS(4477), + [3511] = { + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3500] = { - [sym_type_constraints] = STATE(3892), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6637), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [3512] = { + [aux_sym_type_constraints_repeat1] = STATE(3512), + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(6666), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [sym_label] = ACTIONS(4508), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), [sym_multiline_comment] = ACTIONS(3), }, - [3501] = { - [sym_value_arguments] = STATE(3821), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6639), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [3513] = { + [sym_type_constraints] = STATE(3649), + [sym_enum_class_body] = STATE(3741), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), }, - [3502] = { - [aux_sym_type_constraints_repeat1] = STATE(3525), - [sym__alpha_identifier] = ACTIONS(4440), - [anon_sym_AT] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_EQ] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4442), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym_COMMA] = ACTIONS(6641), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4440), - [anon_sym_GT] = ACTIONS(4440), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4440), - [anon_sym_SEMI] = ACTIONS(4442), - [anon_sym_get] = ACTIONS(4440), - [anon_sym_set] = ACTIONS(4440), - [anon_sym_STAR] = ACTIONS(4440), - [sym_label] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4442), - [anon_sym_QMARK_COLON] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4442), - [anon_sym_PIPE_PIPE] = ACTIONS(4442), - [anon_sym_else] = ACTIONS(4440), - [anon_sym_COLON_COLON] = ACTIONS(4442), - [anon_sym_PLUS_EQ] = ACTIONS(4442), - [anon_sym_DASH_EQ] = ACTIONS(4442), - [anon_sym_STAR_EQ] = ACTIONS(4442), - [anon_sym_SLASH_EQ] = ACTIONS(4442), - [anon_sym_PERCENT_EQ] = ACTIONS(4442), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4442), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4442), - [anon_sym_LT_EQ] = ACTIONS(4442), - [anon_sym_GT_EQ] = ACTIONS(4442), - [anon_sym_BANGin] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_BANGis] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4440), - [anon_sym_DASH] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4440), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_as_QMARK] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4442), - [anon_sym_DASH_DASH] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4442), - [anon_sym_suspend] = ACTIONS(4440), - [anon_sym_sealed] = ACTIONS(4440), - [anon_sym_annotation] = ACTIONS(4440), - [anon_sym_data] = ACTIONS(4440), - [anon_sym_inner] = ACTIONS(4440), - [anon_sym_override] = ACTIONS(4440), - [anon_sym_lateinit] = ACTIONS(4440), - [anon_sym_public] = ACTIONS(4440), - [anon_sym_private] = ACTIONS(4440), - [anon_sym_internal] = ACTIONS(4440), - [anon_sym_protected] = ACTIONS(4440), - [anon_sym_tailrec] = ACTIONS(4440), - [anon_sym_operator] = ACTIONS(4440), - [anon_sym_infix] = ACTIONS(4440), - [anon_sym_inline] = ACTIONS(4440), - [anon_sym_external] = ACTIONS(4440), - [sym_property_modifier] = ACTIONS(4440), - [anon_sym_abstract] = ACTIONS(4440), - [anon_sym_final] = ACTIONS(4440), - [anon_sym_open] = ACTIONS(4440), - [anon_sym_vararg] = ACTIONS(4440), - [anon_sym_noinline] = ACTIONS(4440), - [anon_sym_crossinline] = ACTIONS(4440), - [anon_sym_expect] = ACTIONS(4440), - [anon_sym_actual] = ACTIONS(4440), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4442), - [sym__automatic_semicolon] = ACTIONS(4442), - [sym_safe_nav] = ACTIONS(4442), + [3514] = { + [sym__alpha_identifier] = ACTIONS(4432), + [anon_sym_AT] = ACTIONS(4434), + [anon_sym_COLON] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4434), + [anon_sym_as] = ACTIONS(4432), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_constructor] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym_COMMA] = ACTIONS(4434), + [anon_sym_LT] = ACTIONS(4432), + [anon_sym_GT] = ACTIONS(4432), + [anon_sym_where] = ACTIONS(4432), + [anon_sym_DOT] = ACTIONS(4432), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym_get] = ACTIONS(4432), + [anon_sym_set] = ACTIONS(4432), + [anon_sym_STAR] = ACTIONS(4432), + [sym_label] = ACTIONS(4434), + [anon_sym_in] = ACTIONS(4432), + [anon_sym_DOT_DOT] = ACTIONS(4434), + [anon_sym_QMARK_COLON] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_PIPE_PIPE] = ACTIONS(4434), + [anon_sym_else] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_PLUS_EQ] = ACTIONS(4434), + [anon_sym_DASH_EQ] = ACTIONS(4434), + [anon_sym_STAR_EQ] = ACTIONS(4434), + [anon_sym_SLASH_EQ] = ACTIONS(4434), + [anon_sym_PERCENT_EQ] = ACTIONS(4434), + [anon_sym_BANG_EQ] = ACTIONS(4432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4434), + [anon_sym_EQ_EQ] = ACTIONS(4432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4434), + [anon_sym_LT_EQ] = ACTIONS(4434), + [anon_sym_GT_EQ] = ACTIONS(4434), + [anon_sym_BANGin] = ACTIONS(4434), + [anon_sym_is] = ACTIONS(4432), + [anon_sym_BANGis] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(4432), + [anon_sym_SLASH] = ACTIONS(4432), + [anon_sym_PERCENT] = ACTIONS(4432), + [anon_sym_as_QMARK] = ACTIONS(4434), + [anon_sym_PLUS_PLUS] = ACTIONS(4434), + [anon_sym_DASH_DASH] = ACTIONS(4434), + [anon_sym_BANG_BANG] = ACTIONS(4434), + [anon_sym_suspend] = ACTIONS(4432), + [anon_sym_sealed] = ACTIONS(4432), + [anon_sym_annotation] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4432), + [anon_sym_inner] = ACTIONS(4432), + [anon_sym_override] = ACTIONS(4432), + [anon_sym_lateinit] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_internal] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_tailrec] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_infix] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym_external] = ACTIONS(4432), + [sym_property_modifier] = ACTIONS(4432), + [anon_sym_abstract] = ACTIONS(4432), + [anon_sym_final] = ACTIONS(4432), + [anon_sym_open] = ACTIONS(4432), + [anon_sym_vararg] = ACTIONS(4432), + [anon_sym_noinline] = ACTIONS(4432), + [anon_sym_crossinline] = ACTIONS(4432), + [anon_sym_expect] = ACTIONS(4432), + [anon_sym_actual] = ACTIONS(4432), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4434), + [sym__automatic_semicolon] = ACTIONS(4434), + [sym_safe_nav] = ACTIONS(4434), [sym_multiline_comment] = ACTIONS(3), }, - [3503] = { - [sym_type_constraints] = STATE(3577), - [sym_enum_class_body] = STATE(3673), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), + [3515] = { + [aux_sym_type_constraints_repeat1] = STATE(3512), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4521), + [anon_sym_EQ] = ACTIONS(4521), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(6669), + [anon_sym_by] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4521), + [anon_sym_where] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_get] = ACTIONS(4521), + [anon_sym_set] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4521), + [sym_label] = ACTIONS(4523), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_QMARK_COLON] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4523), + [anon_sym_else] = ACTIONS(4521), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PLUS_EQ] = ACTIONS(4523), + [anon_sym_DASH_EQ] = ACTIONS(4523), + [anon_sym_STAR_EQ] = ACTIONS(4523), + [anon_sym_SLASH_EQ] = ACTIONS(4523), + [anon_sym_PERCENT_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_BANGin] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4521), + [anon_sym_BANGis] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4521), + [anon_sym_PERCENT] = ACTIONS(4521), + [anon_sym_as_QMARK] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_BANG_BANG] = ACTIONS(4523), + [anon_sym_suspend] = ACTIONS(4521), + [anon_sym_sealed] = ACTIONS(4521), + [anon_sym_annotation] = ACTIONS(4521), + [anon_sym_data] = ACTIONS(4521), + [anon_sym_inner] = ACTIONS(4521), + [anon_sym_override] = ACTIONS(4521), + [anon_sym_lateinit] = ACTIONS(4521), + [anon_sym_public] = ACTIONS(4521), + [anon_sym_private] = ACTIONS(4521), + [anon_sym_internal] = ACTIONS(4521), + [anon_sym_protected] = ACTIONS(4521), + [anon_sym_tailrec] = ACTIONS(4521), + [anon_sym_operator] = ACTIONS(4521), + [anon_sym_infix] = ACTIONS(4521), + [anon_sym_inline] = ACTIONS(4521), + [anon_sym_external] = ACTIONS(4521), + [sym_property_modifier] = ACTIONS(4521), + [anon_sym_abstract] = ACTIONS(4521), + [anon_sym_final] = ACTIONS(4521), + [anon_sym_open] = ACTIONS(4521), + [anon_sym_vararg] = ACTIONS(4521), + [anon_sym_noinline] = ACTIONS(4521), + [anon_sym_crossinline] = ACTIONS(4521), + [anon_sym_expect] = ACTIONS(4521), + [anon_sym_actual] = ACTIONS(4521), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4523), + [sym__automatic_semicolon] = ACTIONS(4523), + [sym_safe_nav] = ACTIONS(4523), [sym_multiline_comment] = ACTIONS(3), }, - [3504] = { - [sym__alpha_identifier] = ACTIONS(4489), - [anon_sym_AT] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_as] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_by] = ACTIONS(4489), - [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), - [sym__quest] = 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_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), + [3516] = { + [sym_value_arguments] = STATE(3753), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(6671), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = 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_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), }, - [3505] = { - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), + [3517] = { + [sym_type_constraints] = STATE(3791), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6673), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), }, - [3506] = { - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_as] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_COMMA] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_where] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [sym__quest] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4272), - [anon_sym_in] = ACTIONS(4270), - [anon_sym_DOT_DOT] = ACTIONS(4272), - [anon_sym_QMARK_COLON] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_else] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_BANG_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4272), - [anon_sym_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4272), - [anon_sym_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_EQ] = ACTIONS(4272), - [anon_sym_BANGin] = ACTIONS(4272), - [anon_sym_is] = ACTIONS(4270), - [anon_sym_BANGis] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4272), - [sym__automatic_semicolon] = ACTIONS(4272), - [sym_safe_nav] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), + [3518] = { + [sym_type_constraints] = STATE(3788), + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6677), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, - [3507] = { - [aux_sym_type_constraints_repeat1] = STATE(3507), - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [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(6643), - [anon_sym_by] = ACTIONS(4462), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4462), - [anon_sym_DOT] = 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_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), + [3519] = { + [sym_type_constraints] = STATE(3785), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, - [3508] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [3520] = { + [sym_class_body] = STATE(3794), + [sym_type_constraints] = STATE(3666), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, - [3509] = { - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [3521] = { + [sym_type_constraints] = STATE(3783), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6681), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [3522] = { + [sym_type_constraints] = STATE(3799), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3510] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(4458), - [anon_sym_constructor] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [sym_label] = ACTIONS(4460), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_QMARK_COLON] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_PLUS_EQ] = ACTIONS(4460), - [anon_sym_DASH_EQ] = ACTIONS(4460), - [anon_sym_STAR_EQ] = ACTIONS(4460), - [anon_sym_SLASH_EQ] = ACTIONS(4460), - [anon_sym_PERCENT_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4458), - [anon_sym_as_QMARK] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG_BANG] = ACTIONS(4460), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4460), - [sym__automatic_semicolon] = ACTIONS(4460), - [sym_safe_nav] = ACTIONS(4460), + [3523] = { + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6466), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4144), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_QMARK_COLON] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG_BANG] = ACTIONS(4144), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(4144), + [sym_safe_nav] = ACTIONS(4144), [sym_multiline_comment] = ACTIONS(3), }, - [3511] = { - [sym_type_constraints] = STATE(3884), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6646), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3524] = { + [sym_type_constraints] = STATE(3768), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [3525] = { + [sym_class_body] = STATE(3741), + [sym_type_constraints] = STATE(3656), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), }, - [3512] = { - [sym_function_body] = STATE(3193), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6648), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), + [3526] = { + [sym__alpha_identifier] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_as] = ACTIONS(4448), + [anon_sym_EQ] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_COMMA] = ACTIONS(4450), + [anon_sym_by] = ACTIONS(4448), + [anon_sym_LT] = ACTIONS(4448), + [anon_sym_GT] = ACTIONS(4448), + [anon_sym_where] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym_get] = ACTIONS(4448), + [anon_sym_set] = ACTIONS(4448), + [sym__quest] = ACTIONS(4448), + [anon_sym_STAR] = ACTIONS(4448), + [sym_label] = ACTIONS(4450), + [anon_sym_in] = ACTIONS(4448), + [anon_sym_DOT_DOT] = ACTIONS(4450), + [anon_sym_QMARK_COLON] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_PIPE_PIPE] = ACTIONS(4450), + [anon_sym_else] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_PLUS_EQ] = ACTIONS(4450), + [anon_sym_DASH_EQ] = ACTIONS(4450), + [anon_sym_STAR_EQ] = ACTIONS(4450), + [anon_sym_SLASH_EQ] = ACTIONS(4450), + [anon_sym_PERCENT_EQ] = ACTIONS(4450), + [anon_sym_BANG_EQ] = ACTIONS(4448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4450), + [anon_sym_EQ_EQ] = ACTIONS(4448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4450), + [anon_sym_LT_EQ] = ACTIONS(4450), + [anon_sym_GT_EQ] = ACTIONS(4450), + [anon_sym_BANGin] = ACTIONS(4450), + [anon_sym_is] = ACTIONS(4448), + [anon_sym_BANGis] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_SLASH] = ACTIONS(4448), + [anon_sym_PERCENT] = ACTIONS(4448), + [anon_sym_as_QMARK] = ACTIONS(4450), + [anon_sym_PLUS_PLUS] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4450), + [anon_sym_BANG_BANG] = ACTIONS(4450), + [anon_sym_suspend] = ACTIONS(4448), + [anon_sym_sealed] = ACTIONS(4448), + [anon_sym_annotation] = ACTIONS(4448), + [anon_sym_data] = ACTIONS(4448), + [anon_sym_inner] = ACTIONS(4448), + [anon_sym_override] = ACTIONS(4448), + [anon_sym_lateinit] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_internal] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_tailrec] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_infix] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym_external] = ACTIONS(4448), + [sym_property_modifier] = ACTIONS(4448), + [anon_sym_abstract] = ACTIONS(4448), + [anon_sym_final] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4448), + [anon_sym_vararg] = ACTIONS(4448), + [anon_sym_noinline] = ACTIONS(4448), + [anon_sym_crossinline] = ACTIONS(4448), + [anon_sym_expect] = ACTIONS(4448), + [anon_sym_actual] = ACTIONS(4448), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4450), + [sym__automatic_semicolon] = ACTIONS(4450), + [sym_safe_nav] = ACTIONS(4450), [sym_multiline_comment] = ACTIONS(3), }, - [3513] = { - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [3527] = { + [aux_sym_type_constraints_repeat1] = STATE(3515), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [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(6669), + [anon_sym_by] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_DOT] = 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_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), }, - [3514] = { - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [3528] = { + [sym_type_constraints] = STATE(3647), + [sym_enum_class_body] = STATE(3724), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), [sym_multiline_comment] = ACTIONS(3), }, - [3515] = { - [sym_function_body] = STATE(3730), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [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_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_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), + [3529] = { + [sym_class_body] = STATE(3776), + [sym_type_constraints] = STATE(3580), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3516] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3100), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(6650), - [anon_sym_RPAREN] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4662), - [sym_label] = ACTIONS(4664), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_while] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_PLUS_EQ] = ACTIONS(4664), - [anon_sym_DASH_EQ] = ACTIONS(4664), - [anon_sym_STAR_EQ] = ACTIONS(4664), - [anon_sym_SLASH_EQ] = ACTIONS(4664), - [anon_sym_PERCENT_EQ] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4662), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [3530] = { + [sym_type_constraints] = STATE(3882), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, - [3517] = { - [sym_type_constraints] = STATE(3894), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6652), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [3531] = { + [sym_type_constraints] = STATE(3554), + [sym_enum_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6687), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), }, - [3518] = { - [sym_type_constraints] = STATE(3886), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [3532] = { + [sym_class_body] = STATE(3711), + [sym_type_constraints] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6689), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), }, - [3519] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_as] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_by] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_where] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [sym__quest] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [sym_label] = ACTIONS(4471), - [anon_sym_in] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_QMARK_COLON] = ACTIONS(4471), - [anon_sym_AMP_AMP] = ACTIONS(4471), - [anon_sym_PIPE_PIPE] = ACTIONS(4471), - [anon_sym_else] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS_EQ] = ACTIONS(4471), - [anon_sym_DASH_EQ] = ACTIONS(4471), - [anon_sym_STAR_EQ] = ACTIONS(4471), - [anon_sym_SLASH_EQ] = ACTIONS(4471), - [anon_sym_PERCENT_EQ] = ACTIONS(4471), - [anon_sym_BANG_EQ] = ACTIONS(4469), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), - [anon_sym_EQ_EQ] = ACTIONS(4469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), - [anon_sym_LT_EQ] = ACTIONS(4471), - [anon_sym_GT_EQ] = ACTIONS(4471), - [anon_sym_BANGin] = ACTIONS(4471), - [anon_sym_is] = ACTIONS(4469), - [anon_sym_BANGis] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_as_QMARK] = ACTIONS(4471), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4471), - [sym__automatic_semicolon] = ACTIONS(4471), - [sym_safe_nav] = ACTIONS(4471), + [3533] = { + [sym_type_constraints] = STATE(3854), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6691), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [3520] = { - [sym_class_body] = STATE(3786), - [sym_type_constraints] = STATE(3631), + [3534] = { + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(5770), + [anon_sym_COLON] = ACTIONS(5739), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5447), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5443), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -384630,3718 +385841,2824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [3521] = { - [sym_type_constraints] = STATE(3883), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6658), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [3522] = { - [sym_type_constraints] = STATE(3827), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - }, - [3523] = { - [sym_type_constraints] = STATE(3871), - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6660), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [3524] = { - [sym_type_constraints] = STATE(3858), - [sym_function_body] = STATE(3285), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6662), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), - }, - [3525] = { - [aux_sym_type_constraints_repeat1] = STATE(3507), - [sym__alpha_identifier] = ACTIONS(4454), - [anon_sym_AT] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_EQ] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(6641), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_get] = ACTIONS(4454), - [anon_sym_set] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4454), - [sym_label] = ACTIONS(4456), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_QMARK_COLON] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [anon_sym_else] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_PLUS_EQ] = ACTIONS(4456), - [anon_sym_DASH_EQ] = ACTIONS(4456), - [anon_sym_STAR_EQ] = ACTIONS(4456), - [anon_sym_SLASH_EQ] = ACTIONS(4456), - [anon_sym_PERCENT_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4454), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4454), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_BANGin] = ACTIONS(4456), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_BANGis] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4454), - [anon_sym_as_QMARK] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_BANG_BANG] = ACTIONS(4456), - [anon_sym_suspend] = ACTIONS(4454), - [anon_sym_sealed] = ACTIONS(4454), - [anon_sym_annotation] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4454), - [anon_sym_inner] = ACTIONS(4454), - [anon_sym_override] = ACTIONS(4454), - [anon_sym_lateinit] = ACTIONS(4454), - [anon_sym_public] = ACTIONS(4454), - [anon_sym_private] = ACTIONS(4454), - [anon_sym_internal] = ACTIONS(4454), - [anon_sym_protected] = ACTIONS(4454), - [anon_sym_tailrec] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_infix] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym_external] = ACTIONS(4454), - [sym_property_modifier] = ACTIONS(4454), - [anon_sym_abstract] = ACTIONS(4454), - [anon_sym_final] = ACTIONS(4454), - [anon_sym_open] = ACTIONS(4454), - [anon_sym_vararg] = ACTIONS(4454), - [anon_sym_noinline] = ACTIONS(4454), - [anon_sym_crossinline] = ACTIONS(4454), - [anon_sym_expect] = ACTIONS(4454), - [anon_sym_actual] = ACTIONS(4454), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4456), - [sym__automatic_semicolon] = ACTIONS(4456), - [sym_safe_nav] = ACTIONS(4456), - [sym_multiline_comment] = ACTIONS(3), - }, - [3526] = { - [sym_class_body] = STATE(3743), - [sym_type_constraints] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6664), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - }, - [3527] = { - [sym_type_constraints] = STATE(3830), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - }, - [3528] = { - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [3529] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6666), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3530] = { - [sym_class_body] = STATE(3796), - [sym_type_constraints] = STATE(3661), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [3531] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6670), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3532] = { - [sym_type_constraints] = STATE(3834), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3533] = { - [sym_type_constraints] = STATE(3835), - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [3534] = { - [sym_type_constraints] = STATE(3629), - [sym_enum_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6674), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = 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_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), - }, [3535] = { - [sym_class_body] = STATE(3743), - [sym_type_constraints] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [3536] = { - [sym_type_constraints] = STATE(3839), - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [sym_type_constraints] = STATE(3838), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [3537] = { - [sym_class_body] = STATE(3833), - [sym_type_constraints] = STATE(3654), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6676), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = 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_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_type_constraints] = STATE(3797), + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, [3538] = { - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5699), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym_type_constraints] = STATE(3639), + [sym_enum_class_body] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6693), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, [3539] = { - [sym_type_constraints] = STATE(3664), - [sym_enum_class_body] = STATE(3727), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6678), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym_LT] = ACTIONS(4229), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(5364), - [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_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_type_constraints] = STATE(3675), + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6695), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, [3540] = { - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_COMMA] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4107), - [sym_label] = ACTIONS(4109), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_QMARK_COLON] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_PIPE_PIPE] = ACTIONS(4109), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_PLUS_EQ] = ACTIONS(4109), - [anon_sym_DASH_EQ] = ACTIONS(4109), - [anon_sym_STAR_EQ] = ACTIONS(4109), - [anon_sym_SLASH_EQ] = ACTIONS(4109), - [anon_sym_PERCENT_EQ] = ACTIONS(4109), - [anon_sym_BANG_EQ] = ACTIONS(4107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4109), - [anon_sym_EQ_EQ] = ACTIONS(4107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4109), - [anon_sym_LT_EQ] = ACTIONS(4109), - [anon_sym_GT_EQ] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_PERCENT] = ACTIONS(4107), - [anon_sym_as_QMARK] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG_BANG] = ACTIONS(4109), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4109), - [sym__automatic_semicolon] = ACTIONS(4109), - [sym_safe_nav] = ACTIONS(4109), + [sym_type_constraints] = STATE(3702), + [sym_function_body] = STATE(3260), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6697), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_RBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_RPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [anon_sym_DASH_GT] = ACTIONS(4081), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), [sym_multiline_comment] = ACTIONS(3), }, [3541] = { - [sym_type_constraints] = STATE(3881), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6680), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym_type_constraints] = STATE(3817), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [3542] = { - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [sym_class_body] = STATE(3825), + [sym_type_constraints] = STATE(3604), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, [3543] = { - [sym_type_constraints] = STATE(3868), - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6682), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_DASH_GT] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - }, - [3544] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3516), - [sym__alpha_identifier] = ACTIONS(4656), - [anon_sym_AT] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4656), - [anon_sym_EQ] = ACTIONS(4656), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(6650), - [anon_sym_RPAREN] = ACTIONS(4658), - [anon_sym_LT] = ACTIONS(4656), - [anon_sym_GT] = ACTIONS(4656), - [anon_sym_where] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(4658), - [anon_sym_get] = ACTIONS(4656), - [anon_sym_set] = ACTIONS(4656), - [anon_sym_STAR] = ACTIONS(4656), - [sym_label] = ACTIONS(4658), - [anon_sym_in] = ACTIONS(4656), - [anon_sym_while] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4658), - [anon_sym_QMARK_COLON] = ACTIONS(4658), - [anon_sym_AMP_AMP] = ACTIONS(4658), - [anon_sym_PIPE_PIPE] = ACTIONS(4658), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_COLON_COLON] = ACTIONS(4658), - [anon_sym_PLUS_EQ] = ACTIONS(4658), - [anon_sym_DASH_EQ] = ACTIONS(4658), - [anon_sym_STAR_EQ] = ACTIONS(4658), - [anon_sym_SLASH_EQ] = ACTIONS(4658), - [anon_sym_PERCENT_EQ] = ACTIONS(4658), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4658), - [anon_sym_LT_EQ] = ACTIONS(4658), - [anon_sym_GT_EQ] = ACTIONS(4658), - [anon_sym_BANGin] = ACTIONS(4658), - [anon_sym_is] = ACTIONS(4656), - [anon_sym_BANGis] = ACTIONS(4658), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_SLASH] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(4656), - [anon_sym_as_QMARK] = ACTIONS(4658), - [anon_sym_PLUS_PLUS] = ACTIONS(4658), - [anon_sym_DASH_DASH] = ACTIONS(4658), - [anon_sym_BANG_BANG] = ACTIONS(4658), - [anon_sym_suspend] = ACTIONS(4656), - [anon_sym_sealed] = ACTIONS(4656), - [anon_sym_annotation] = ACTIONS(4656), - [anon_sym_data] = ACTIONS(4656), - [anon_sym_inner] = ACTIONS(4656), - [anon_sym_override] = ACTIONS(4656), - [anon_sym_lateinit] = ACTIONS(4656), - [anon_sym_public] = ACTIONS(4656), - [anon_sym_private] = ACTIONS(4656), - [anon_sym_internal] = ACTIONS(4656), - [anon_sym_protected] = ACTIONS(4656), - [anon_sym_tailrec] = ACTIONS(4656), - [anon_sym_operator] = ACTIONS(4656), - [anon_sym_infix] = ACTIONS(4656), - [anon_sym_inline] = ACTIONS(4656), - [anon_sym_external] = ACTIONS(4656), - [sym_property_modifier] = ACTIONS(4656), - [anon_sym_abstract] = ACTIONS(4656), - [anon_sym_final] = ACTIONS(4656), - [anon_sym_open] = ACTIONS(4656), - [anon_sym_vararg] = ACTIONS(4656), - [anon_sym_noinline] = ACTIONS(4656), - [anon_sym_crossinline] = ACTIONS(4656), - [anon_sym_expect] = ACTIONS(4656), - [anon_sym_actual] = ACTIONS(4656), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4658), - [sym_safe_nav] = ACTIONS(4658), - [sym_multiline_comment] = ACTIONS(3), - }, - [3545] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(6684), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), - }, - [3546] = { - [sym_class_body] = STATE(3735), - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_as] = ACTIONS(4593), - [anon_sym_EQ] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_get] = ACTIONS(4593), - [anon_sym_set] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [sym_label] = ACTIONS(4595), - [anon_sym_in] = ACTIONS(4593), - [anon_sym_DOT_DOT] = ACTIONS(4595), - [anon_sym_QMARK_COLON] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4595), - [anon_sym_PIPE_PIPE] = ACTIONS(4595), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_PLUS_EQ] = ACTIONS(4595), - [anon_sym_DASH_EQ] = ACTIONS(4595), - [anon_sym_STAR_EQ] = ACTIONS(4595), - [anon_sym_SLASH_EQ] = ACTIONS(4595), - [anon_sym_PERCENT_EQ] = ACTIONS(4595), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4595), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4595), - [anon_sym_LT_EQ] = ACTIONS(4595), - [anon_sym_GT_EQ] = ACTIONS(4595), - [anon_sym_BANGin] = ACTIONS(4595), - [anon_sym_is] = ACTIONS(4593), - [anon_sym_BANGis] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_PERCENT] = ACTIONS(4593), - [anon_sym_as_QMARK] = ACTIONS(4595), - [anon_sym_PLUS_PLUS] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_BANG_BANG] = ACTIONS(4595), - [anon_sym_suspend] = ACTIONS(4593), - [anon_sym_sealed] = ACTIONS(4593), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_data] = ACTIONS(4593), - [anon_sym_inner] = ACTIONS(4593), - [anon_sym_override] = ACTIONS(4593), - [anon_sym_lateinit] = ACTIONS(4593), - [anon_sym_public] = ACTIONS(4593), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_internal] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_tailrec] = ACTIONS(4593), - [anon_sym_operator] = ACTIONS(4593), - [anon_sym_infix] = ACTIONS(4593), - [anon_sym_inline] = ACTIONS(4593), - [anon_sym_external] = ACTIONS(4593), - [sym_property_modifier] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_final] = ACTIONS(4593), - [anon_sym_open] = ACTIONS(4593), - [anon_sym_vararg] = ACTIONS(4593), - [anon_sym_noinline] = ACTIONS(4593), - [anon_sym_crossinline] = ACTIONS(4593), - [anon_sym_expect] = ACTIONS(4593), - [anon_sym_actual] = ACTIONS(4593), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4595), - [sym__automatic_semicolon] = ACTIONS(4595), - [sym_safe_nav] = ACTIONS(4595), - [sym_multiline_comment] = ACTIONS(3), - }, - [3547] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6688), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [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(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [3548] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6692), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_RBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_DASH_GT] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - }, - [3549] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(6694), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_as_QMARK] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4141), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [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), - }, - [3550] = { - [sym_function_body] = STATE(3365), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6698), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_RBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_DASH_GT] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3551] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_as] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(4648), - [anon_sym_LBRACE] = ACTIONS(4650), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4650), - [anon_sym_COMMA] = ACTIONS(4650), - [anon_sym_LT] = ACTIONS(4648), - [anon_sym_GT] = ACTIONS(4648), - [anon_sym_where] = ACTIONS(4648), - [anon_sym_DOT] = ACTIONS(4648), - [anon_sym_SEMI] = ACTIONS(4650), - [anon_sym_get] = ACTIONS(4648), - [anon_sym_set] = ACTIONS(4648), - [anon_sym_STAR] = ACTIONS(4648), - [sym_label] = ACTIONS(4650), - [anon_sym_in] = ACTIONS(4648), - [anon_sym_DOT_DOT] = ACTIONS(4650), - [anon_sym_QMARK_COLON] = ACTIONS(4650), - [anon_sym_AMP_AMP] = ACTIONS(4650), - [anon_sym_PIPE_PIPE] = ACTIONS(4650), - [anon_sym_else] = ACTIONS(4648), - [anon_sym_COLON_COLON] = ACTIONS(4650), - [anon_sym_PLUS_EQ] = ACTIONS(4650), - [anon_sym_DASH_EQ] = ACTIONS(4650), - [anon_sym_STAR_EQ] = ACTIONS(4650), - [anon_sym_SLASH_EQ] = ACTIONS(4650), - [anon_sym_PERCENT_EQ] = ACTIONS(4650), - [anon_sym_BANG_EQ] = ACTIONS(4648), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), - [anon_sym_EQ_EQ] = ACTIONS(4648), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), - [anon_sym_LT_EQ] = ACTIONS(4650), - [anon_sym_GT_EQ] = ACTIONS(4650), - [anon_sym_BANGin] = ACTIONS(4650), - [anon_sym_is] = ACTIONS(4648), - [anon_sym_BANGis] = ACTIONS(4650), - [anon_sym_PLUS] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_as_QMARK] = ACTIONS(4650), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_BANG_BANG] = ACTIONS(4650), - [anon_sym_suspend] = ACTIONS(4648), - [anon_sym_sealed] = ACTIONS(4648), - [anon_sym_annotation] = ACTIONS(4648), - [anon_sym_data] = ACTIONS(4648), - [anon_sym_inner] = ACTIONS(4648), - [anon_sym_override] = ACTIONS(4648), - [anon_sym_lateinit] = ACTIONS(4648), - [anon_sym_public] = ACTIONS(4648), - [anon_sym_private] = ACTIONS(4648), - [anon_sym_internal] = ACTIONS(4648), - [anon_sym_protected] = ACTIONS(4648), - [anon_sym_tailrec] = ACTIONS(4648), - [anon_sym_operator] = ACTIONS(4648), - [anon_sym_infix] = ACTIONS(4648), - [anon_sym_inline] = ACTIONS(4648), - [anon_sym_external] = ACTIONS(4648), - [sym_property_modifier] = ACTIONS(4648), - [anon_sym_abstract] = ACTIONS(4648), - [anon_sym_final] = ACTIONS(4648), - [anon_sym_open] = ACTIONS(4648), - [anon_sym_vararg] = ACTIONS(4648), - [anon_sym_noinline] = ACTIONS(4648), - [anon_sym_crossinline] = ACTIONS(4648), - [anon_sym_expect] = ACTIONS(4648), - [anon_sym_actual] = ACTIONS(4648), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4650), - [sym__automatic_semicolon] = ACTIONS(4650), - [sym_safe_nav] = ACTIONS(4650), - [sym_multiline_comment] = ACTIONS(3), - }, - [3552] = { - [sym_enum_class_body] = STATE(3713), - [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(5413), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [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_override] = ACTIONS(4670), - [anon_sym_lateinit] = ACTIONS(4670), - [anon_sym_public] = ACTIONS(4670), - [anon_sym_private] = ACTIONS(4670), - [anon_sym_internal] = ACTIONS(4670), - [anon_sym_protected] = ACTIONS(4670), - [anon_sym_tailrec] = ACTIONS(4670), - [anon_sym_operator] = ACTIONS(4670), - [anon_sym_infix] = ACTIONS(4670), - [anon_sym_inline] = ACTIONS(4670), - [anon_sym_external] = ACTIONS(4670), - [sym_property_modifier] = ACTIONS(4670), - [anon_sym_abstract] = ACTIONS(4670), - [anon_sym_final] = ACTIONS(4670), - [anon_sym_open] = ACTIONS(4670), - [anon_sym_vararg] = ACTIONS(4670), - [anon_sym_noinline] = ACTIONS(4670), - [anon_sym_crossinline] = ACTIONS(4670), - [anon_sym_expect] = ACTIONS(4670), - [anon_sym_actual] = ACTIONS(4670), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4672), - [sym__automatic_semicolon] = ACTIONS(4672), - [sym_safe_nav] = ACTIONS(4672), + [sym_type_constraints] = STATE(3815), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, - [3553] = { - [sym_class_body] = STATE(3682), - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4402), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), + [3544] = { + [sym_type_constraints] = STATE(3663), + [sym_enum_class_body] = STATE(3714), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4500), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), [sym_multiline_comment] = ACTIONS(3), }, - [3554] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3545] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3082), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3555] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3022), + [3546] = { + [sym_class_body] = STATE(3825), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [3547] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3017), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3556] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3011), + [3548] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3024), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3557] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(2992), + [3549] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3047), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3558] = { - [sym__alpha_identifier] = ACTIONS(4638), - [anon_sym_AT] = ACTIONS(4640), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_as] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_COMMA] = ACTIONS(4640), - [anon_sym_LT] = ACTIONS(4638), - [anon_sym_GT] = ACTIONS(4638), - [anon_sym_where] = ACTIONS(4638), - [anon_sym_DOT] = ACTIONS(4638), - [anon_sym_SEMI] = ACTIONS(4640), - [anon_sym_get] = ACTIONS(4638), - [anon_sym_set] = ACTIONS(4638), - [anon_sym_STAR] = ACTIONS(4638), - [sym_label] = ACTIONS(4640), - [anon_sym_in] = ACTIONS(4638), - [anon_sym_DOT_DOT] = ACTIONS(4640), - [anon_sym_QMARK_COLON] = ACTIONS(4640), - [anon_sym_AMP_AMP] = ACTIONS(4640), - [anon_sym_PIPE_PIPE] = ACTIONS(4640), - [anon_sym_else] = ACTIONS(4638), - [anon_sym_COLON_COLON] = ACTIONS(4640), - [anon_sym_PLUS_EQ] = ACTIONS(4640), - [anon_sym_DASH_EQ] = ACTIONS(4640), - [anon_sym_STAR_EQ] = ACTIONS(4640), - [anon_sym_SLASH_EQ] = ACTIONS(4640), - [anon_sym_PERCENT_EQ] = ACTIONS(4640), - [anon_sym_BANG_EQ] = ACTIONS(4638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4640), - [anon_sym_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4640), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_BANGin] = ACTIONS(4640), - [anon_sym_is] = ACTIONS(4638), - [anon_sym_BANGis] = ACTIONS(4640), - [anon_sym_PLUS] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_SLASH] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4638), - [anon_sym_as_QMARK] = ACTIONS(4640), - [anon_sym_PLUS_PLUS] = ACTIONS(4640), - [anon_sym_DASH_DASH] = ACTIONS(4640), - [anon_sym_BANG_BANG] = ACTIONS(4640), - [anon_sym_suspend] = ACTIONS(4638), - [anon_sym_sealed] = ACTIONS(4638), - [anon_sym_annotation] = ACTIONS(4638), - [anon_sym_data] = ACTIONS(4638), - [anon_sym_inner] = ACTIONS(4638), - [anon_sym_override] = ACTIONS(4638), - [anon_sym_lateinit] = ACTIONS(4638), - [anon_sym_public] = ACTIONS(4638), - [anon_sym_private] = ACTIONS(4638), - [anon_sym_internal] = ACTIONS(4638), - [anon_sym_protected] = ACTIONS(4638), - [anon_sym_tailrec] = ACTIONS(4638), - [anon_sym_operator] = ACTIONS(4638), - [anon_sym_infix] = ACTIONS(4638), - [anon_sym_inline] = ACTIONS(4638), - [anon_sym_external] = ACTIONS(4638), - [sym_property_modifier] = ACTIONS(4638), - [anon_sym_abstract] = ACTIONS(4638), - [anon_sym_final] = ACTIONS(4638), - [anon_sym_open] = ACTIONS(4638), - [anon_sym_vararg] = ACTIONS(4638), - [anon_sym_noinline] = ACTIONS(4638), - [anon_sym_crossinline] = ACTIONS(4638), - [anon_sym_expect] = ACTIONS(4638), - [anon_sym_actual] = ACTIONS(4638), - [sym_line_comment] = ACTIONS(3), - [anon_sym_L] = ACTIONS(6724), - [sym__backtick_identifier] = ACTIONS(4640), - [sym__automatic_semicolon] = ACTIONS(4640), - [sym_safe_nav] = ACTIONS(4640), + [3550] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3559] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3551] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(2984), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3560] = { - [sym__alpha_identifier] = ACTIONS(4694), - [anon_sym_AT] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [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_by] = ACTIONS(4694), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4694), - [anon_sym_DOT] = 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_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), + [3552] = { + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6363), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_object] = ACTIONS(4142), + [anon_sym_fun] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_this] = ACTIONS(4142), + [anon_sym_super] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4142), + [anon_sym_when] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_BANGin] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4142), + [anon_sym_BANGis] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_override] = ACTIONS(4142), + [anon_sym_lateinit] = ACTIONS(4142), + [anon_sym_public] = ACTIONS(4142), + [anon_sym_private] = ACTIONS(4142), + [anon_sym_internal] = ACTIONS(4142), + [anon_sym_protected] = ACTIONS(4142), + [anon_sym_tailrec] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_infix] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym_external] = ACTIONS(4142), + [sym_property_modifier] = ACTIONS(4142), + [anon_sym_abstract] = ACTIONS(4142), + [anon_sym_final] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4142), + [anon_sym_vararg] = ACTIONS(4142), + [anon_sym_noinline] = ACTIONS(4142), + [anon_sym_crossinline] = ACTIONS(4142), + [anon_sym_expect] = ACTIONS(4142), + [anon_sym_actual] = ACTIONS(4142), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4696), - [sym__automatic_semicolon] = ACTIONS(4696), - [sym_safe_nav] = ACTIONS(4696), + [anon_sym_return_AT] = ACTIONS(4144), + [anon_sym_continue_AT] = ACTIONS(4144), + [anon_sym_break_AT] = ACTIONS(4144), + [sym_real_literal] = ACTIONS(4144), + [sym_integer_literal] = ACTIONS(4142), + [sym_hex_literal] = ACTIONS(4144), + [sym_bin_literal] = ACTIONS(4144), + [anon_sym_true] = ACTIONS(4142), + [anon_sym_false] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(4144), + [sym__automatic_semicolon] = ACTIONS(4144), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4144), + }, + [3553] = { + [sym__alpha_identifier] = ACTIONS(4605), + [anon_sym_AT] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4605), + [anon_sym_LBRACK] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4605), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_where] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4605), + [anon_sym_set] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4605), + [sym_label] = ACTIONS(4607), + [anon_sym_in] = ACTIONS(4605), + [anon_sym_DOT_DOT] = ACTIONS(4607), + [anon_sym_QMARK_COLON] = ACTIONS(4607), + [anon_sym_AMP_AMP] = ACTIONS(4607), + [anon_sym_PIPE_PIPE] = ACTIONS(4607), + [anon_sym_else] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(4607), + [anon_sym_PLUS_EQ] = ACTIONS(4607), + [anon_sym_DASH_EQ] = ACTIONS(4607), + [anon_sym_STAR_EQ] = ACTIONS(4607), + [anon_sym_SLASH_EQ] = ACTIONS(4607), + [anon_sym_PERCENT_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4607), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_BANGin] = ACTIONS(4607), + [anon_sym_is] = ACTIONS(4605), + [anon_sym_BANGis] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4605), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4605), + [anon_sym_PERCENT] = ACTIONS(4605), + [anon_sym_as_QMARK] = ACTIONS(4607), + [anon_sym_PLUS_PLUS] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4607), + [anon_sym_BANG_BANG] = ACTIONS(4607), + [anon_sym_suspend] = ACTIONS(4605), + [anon_sym_sealed] = ACTIONS(4605), + [anon_sym_annotation] = ACTIONS(4605), + [anon_sym_data] = ACTIONS(4605), + [anon_sym_inner] = ACTIONS(4605), + [anon_sym_override] = ACTIONS(4605), + [anon_sym_lateinit] = ACTIONS(4605), + [anon_sym_public] = ACTIONS(4605), + [anon_sym_private] = ACTIONS(4605), + [anon_sym_internal] = ACTIONS(4605), + [anon_sym_protected] = ACTIONS(4605), + [anon_sym_tailrec] = ACTIONS(4605), + [anon_sym_operator] = ACTIONS(4605), + [anon_sym_infix] = ACTIONS(4605), + [anon_sym_inline] = ACTIONS(4605), + [anon_sym_external] = ACTIONS(4605), + [sym_property_modifier] = ACTIONS(4605), + [anon_sym_abstract] = ACTIONS(4605), + [anon_sym_final] = ACTIONS(4605), + [anon_sym_open] = ACTIONS(4605), + [anon_sym_vararg] = ACTIONS(4605), + [anon_sym_noinline] = ACTIONS(4605), + [anon_sym_crossinline] = ACTIONS(4605), + [anon_sym_expect] = ACTIONS(4605), + [anon_sym_actual] = ACTIONS(4605), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4607), + [sym__automatic_semicolon] = ACTIONS(4607), + [sym_safe_nav] = ACTIONS(4607), + [sym_multiline_comment] = ACTIONS(3), + }, + [3554] = { + [sym_enum_class_body] = STATE(3827), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + }, + [3555] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6743), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [3556] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6747), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [3557] = { + [sym_class_body] = STATE(3851), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), + [sym_multiline_comment] = ACTIONS(3), + }, + [3558] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [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_by] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_DOT] = 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_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), + }, + [3559] = { + [aux_sym_type_constraints_repeat1] = STATE(3559), + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_EQ] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_object] = ACTIONS(4506), + [anon_sym_fun] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_this] = ACTIONS(4506), + [anon_sym_super] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4508), + [sym_label] = ACTIONS(4506), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_null] = ACTIONS(4506), + [anon_sym_if] = ACTIONS(4506), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_when] = ACTIONS(4506), + [anon_sym_try] = ACTIONS(4506), + [anon_sym_throw] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4506), + [anon_sym_continue] = ACTIONS(4506), + [anon_sym_break] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4508), + [anon_sym_continue_AT] = ACTIONS(4508), + [anon_sym_break_AT] = ACTIONS(4508), + [sym_real_literal] = ACTIONS(4508), + [sym_integer_literal] = ACTIONS(4506), + [sym_hex_literal] = ACTIONS(4508), + [sym_bin_literal] = ACTIONS(4508), + [anon_sym_true] = ACTIONS(4506), + [anon_sym_false] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4508), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4508), + }, + [3560] = { + [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_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), }, [3561] = { - [sym__alpha_identifier] = ACTIONS(4698), - [anon_sym_AT] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4700), - [anon_sym_as] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_RBRACE] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(4700), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_by] = ACTIONS(4698), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_where] = ACTIONS(4698), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_get] = ACTIONS(4698), - [anon_sym_set] = ACTIONS(4698), - [anon_sym_STAR] = ACTIONS(4698), - [sym_label] = ACTIONS(4700), - [anon_sym_in] = ACTIONS(4698), - [anon_sym_DOT_DOT] = ACTIONS(4700), - [anon_sym_QMARK_COLON] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_else] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4700), - [anon_sym_PLUS_EQ] = ACTIONS(4700), - [anon_sym_DASH_EQ] = ACTIONS(4700), - [anon_sym_STAR_EQ] = ACTIONS(4700), - [anon_sym_SLASH_EQ] = ACTIONS(4700), - [anon_sym_PERCENT_EQ] = ACTIONS(4700), - [anon_sym_BANG_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4700), - [anon_sym_is] = ACTIONS(4698), - [anon_sym_BANGis] = ACTIONS(4700), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_SLASH] = ACTIONS(4698), - [anon_sym_PERCENT] = ACTIONS(4698), - [anon_sym_as_QMARK] = ACTIONS(4700), - [anon_sym_PLUS_PLUS] = ACTIONS(4700), - [anon_sym_DASH_DASH] = ACTIONS(4700), - [anon_sym_BANG_BANG] = ACTIONS(4700), - [anon_sym_suspend] = ACTIONS(4698), - [anon_sym_sealed] = ACTIONS(4698), - [anon_sym_annotation] = ACTIONS(4698), - [anon_sym_data] = ACTIONS(4698), - [anon_sym_inner] = ACTIONS(4698), - [anon_sym_override] = ACTIONS(4698), - [anon_sym_lateinit] = ACTIONS(4698), - [anon_sym_public] = ACTIONS(4698), - [anon_sym_private] = ACTIONS(4698), - [anon_sym_internal] = ACTIONS(4698), - [anon_sym_protected] = ACTIONS(4698), - [anon_sym_tailrec] = ACTIONS(4698), - [anon_sym_operator] = ACTIONS(4698), - [anon_sym_infix] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_external] = ACTIONS(4698), - [sym_property_modifier] = ACTIONS(4698), - [anon_sym_abstract] = ACTIONS(4698), - [anon_sym_final] = ACTIONS(4698), - [anon_sym_open] = ACTIONS(4698), - [anon_sym_vararg] = ACTIONS(4698), - [anon_sym_noinline] = ACTIONS(4698), - [anon_sym_crossinline] = ACTIONS(4698), - [anon_sym_expect] = ACTIONS(4698), - [anon_sym_actual] = ACTIONS(4698), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4700), - [sym__automatic_semicolon] = ACTIONS(4700), - [sym_safe_nav] = ACTIONS(4700), + [sym__alpha_identifier] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [anon_sym_COLON] = ACTIONS(4702), + [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_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_override] = ACTIONS(4702), + [anon_sym_lateinit] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4702), + [anon_sym_tailrec] = ACTIONS(4702), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_external] = ACTIONS(4702), + [sym_property_modifier] = ACTIONS(4702), + [anon_sym_abstract] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_vararg] = ACTIONS(4702), + [anon_sym_noinline] = ACTIONS(4702), + [anon_sym_crossinline] = ACTIONS(4702), + [anon_sym_expect] = ACTIONS(4702), + [anon_sym_actual] = ACTIONS(4702), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4704), + [sym__automatic_semicolon] = ACTIONS(4704), + [sym_safe_nav] = ACTIONS(4704), [sym_multiline_comment] = ACTIONS(3), }, [3562] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(2988), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [3563] = { - [sym_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [3564] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3043), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [3565] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3002), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3004), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [3566] = { - [sym_function_body] = STATE(3418), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_RPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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_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_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_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4426), - [sym_safe_nav] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [3567] = { + [sym__alpha_identifier] = ACTIONS(4593), + [anon_sym_AT] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_by] = ACTIONS(4593), + [anon_sym_where] = ACTIONS(4593), + [anon_sym_object] = ACTIONS(4593), + [anon_sym_fun] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_get] = ACTIONS(4593), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_this] = ACTIONS(4593), + [anon_sym_super] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(4593), + [anon_sym_in] = ACTIONS(4593), + [anon_sym_null] = ACTIONS(4593), + [anon_sym_if] = ACTIONS(4593), + [anon_sym_else] = ACTIONS(4593), + [anon_sym_when] = ACTIONS(4593), + [anon_sym_try] = ACTIONS(4593), + [anon_sym_throw] = ACTIONS(4593), + [anon_sym_return] = ACTIONS(4593), + [anon_sym_continue] = ACTIONS(4593), + [anon_sym_break] = ACTIONS(4593), + [anon_sym_COLON_COLON] = ACTIONS(4595), + [anon_sym_BANGin] = ACTIONS(4595), + [anon_sym_is] = ACTIONS(4593), + [anon_sym_BANGis] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_PLUS_PLUS] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4593), + [anon_sym_suspend] = ACTIONS(4593), + [anon_sym_sealed] = ACTIONS(4593), + [anon_sym_annotation] = ACTIONS(4593), + [anon_sym_data] = ACTIONS(4593), + [anon_sym_inner] = ACTIONS(4593), + [anon_sym_override] = ACTIONS(4593), + [anon_sym_lateinit] = ACTIONS(4593), + [anon_sym_public] = ACTIONS(4593), + [anon_sym_private] = ACTIONS(4593), + [anon_sym_internal] = ACTIONS(4593), + [anon_sym_protected] = ACTIONS(4593), + [anon_sym_tailrec] = ACTIONS(4593), + [anon_sym_operator] = ACTIONS(4593), + [anon_sym_infix] = ACTIONS(4593), + [anon_sym_inline] = ACTIONS(4593), + [anon_sym_external] = ACTIONS(4593), + [sym_property_modifier] = ACTIONS(4593), + [anon_sym_abstract] = ACTIONS(4593), + [anon_sym_final] = ACTIONS(4593), + [anon_sym_open] = ACTIONS(4593), + [anon_sym_vararg] = ACTIONS(4593), + [anon_sym_noinline] = ACTIONS(4593), + [anon_sym_crossinline] = ACTIONS(4593), + [anon_sym_expect] = ACTIONS(4593), + [anon_sym_actual] = ACTIONS(4593), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4595), + [anon_sym_continue_AT] = ACTIONS(4595), + [anon_sym_break_AT] = ACTIONS(4595), + [sym_real_literal] = ACTIONS(4595), + [sym_integer_literal] = ACTIONS(4593), + [sym_hex_literal] = ACTIONS(4595), + [sym_bin_literal] = ACTIONS(4595), + [anon_sym_true] = ACTIONS(4593), + [anon_sym_false] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4595), + [sym__backtick_identifier] = ACTIONS(4595), + [sym__automatic_semicolon] = ACTIONS(4595), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4595), + }, + [3568] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [3569] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [3570] = { + [sym_class_body] = STATE(3861), [sym__alpha_identifier] = ACTIONS(4686), [anon_sym_AT] = ACTIONS(4688), - [anon_sym_COLON] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4688), [anon_sym_as] = ACTIONS(4686), [anon_sym_EQ] = ACTIONS(4686), - [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(5439), [anon_sym_RBRACE] = ACTIONS(4688), [anon_sym_LPAREN] = ACTIONS(4688), [anon_sym_COMMA] = ACTIONS(4688), @@ -388414,3297 +388731,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4688), [sym_multiline_comment] = ACTIONS(3), }, - [3568] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_RPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_while] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - }, - [3569] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3570] = { - [sym_enum_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), - }, [3571] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3074), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [3572] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [3573] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3616), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4662), - [sym_label] = ACTIONS(4664), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_PLUS_EQ] = ACTIONS(4664), - [anon_sym_DASH_EQ] = ACTIONS(4664), - [anon_sym_STAR_EQ] = ACTIONS(4664), - [anon_sym_SLASH_EQ] = ACTIONS(4664), - [anon_sym_PERCENT_EQ] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4662), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), - [sym_multiline_comment] = ACTIONS(3), - }, - [3574] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - }, - [3575] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6750), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [3576] = { - [sym_type_constraints] = STATE(3976), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6752), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [3577] = { - [sym_enum_class_body] = STATE(3687), - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [sym_label] = ACTIONS(4392), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_suspend] = ACTIONS(4390), - [anon_sym_sealed] = ACTIONS(4390), - [anon_sym_annotation] = ACTIONS(4390), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_override] = ACTIONS(4390), - [anon_sym_lateinit] = ACTIONS(4390), - [anon_sym_public] = ACTIONS(4390), - [anon_sym_private] = ACTIONS(4390), - [anon_sym_internal] = ACTIONS(4390), - [anon_sym_protected] = ACTIONS(4390), - [anon_sym_tailrec] = ACTIONS(4390), - [anon_sym_operator] = ACTIONS(4390), - [anon_sym_infix] = ACTIONS(4390), - [anon_sym_inline] = ACTIONS(4390), - [anon_sym_external] = ACTIONS(4390), - [sym_property_modifier] = ACTIONS(4390), - [anon_sym_abstract] = ACTIONS(4390), - [anon_sym_final] = ACTIONS(4390), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_vararg] = ACTIONS(4390), - [anon_sym_noinline] = ACTIONS(4390), - [anon_sym_crossinline] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4392), - [sym__automatic_semicolon] = ACTIONS(4392), - [sym_safe_nav] = ACTIONS(4392), - [sym_multiline_comment] = ACTIONS(3), - }, - [3578] = { - [sym_class_body] = STATE(3869), - [sym__alpha_identifier] = ACTIONS(4533), - [anon_sym_AT] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SEMI] = ACTIONS(4535), - [anon_sym_get] = ACTIONS(4533), - [anon_sym_set] = ACTIONS(4533), - [anon_sym_STAR] = ACTIONS(4533), - [sym_label] = ACTIONS(4535), - [anon_sym_in] = ACTIONS(4533), - [anon_sym_DOT_DOT] = ACTIONS(4535), - [anon_sym_QMARK_COLON] = ACTIONS(4535), - [anon_sym_AMP_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4535), - [anon_sym_else] = ACTIONS(4533), - [anon_sym_COLON_COLON] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ] = ACTIONS(4533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4535), - [anon_sym_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_EQ] = ACTIONS(4535), - [anon_sym_BANGin] = ACTIONS(4535), - [anon_sym_is] = ACTIONS(4533), - [anon_sym_BANGis] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4533), - [anon_sym_PERCENT] = ACTIONS(4533), - [anon_sym_as_QMARK] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_BANG_BANG] = ACTIONS(4535), - [anon_sym_suspend] = ACTIONS(4533), - [anon_sym_sealed] = ACTIONS(4533), - [anon_sym_annotation] = ACTIONS(4533), - [anon_sym_data] = ACTIONS(4533), - [anon_sym_inner] = ACTIONS(4533), - [anon_sym_override] = ACTIONS(4533), - [anon_sym_lateinit] = ACTIONS(4533), - [anon_sym_public] = ACTIONS(4533), - [anon_sym_private] = ACTIONS(4533), - [anon_sym_internal] = ACTIONS(4533), - [anon_sym_protected] = ACTIONS(4533), - [anon_sym_tailrec] = ACTIONS(4533), - [anon_sym_operator] = ACTIONS(4533), - [anon_sym_infix] = ACTIONS(4533), - [anon_sym_inline] = ACTIONS(4533), - [anon_sym_external] = ACTIONS(4533), - [sym_property_modifier] = ACTIONS(4533), - [anon_sym_abstract] = ACTIONS(4533), - [anon_sym_final] = ACTIONS(4533), - [anon_sym_open] = ACTIONS(4533), - [anon_sym_vararg] = ACTIONS(4533), - [anon_sym_noinline] = ACTIONS(4533), - [anon_sym_crossinline] = ACTIONS(4533), - [anon_sym_expect] = ACTIONS(4533), - [anon_sym_actual] = ACTIONS(4533), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4535), - [sym__automatic_semicolon] = ACTIONS(4535), - [sym_safe_nav] = ACTIONS(4535), - [sym_multiline_comment] = ACTIONS(3), - }, - [3579] = { - [sym_function_body] = STATE(3205), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6756), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [3580] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(6758), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), - }, - [3581] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(6760), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), - }, - [3582] = { - [sym_type_constraints] = STATE(3970), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [3583] = { - [sym_type_constraints] = STATE(3984), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [3584] = { - [sym_function_body] = STATE(3193), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6766), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_DASH_GT] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - }, - [3585] = { - [ts_builtin_sym_end] = ACTIONS(6768), - [sym__alpha_identifier] = ACTIONS(6770), - [anon_sym_AT] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(6768), - [anon_sym_package] = ACTIONS(6770), - [anon_sym_import] = ACTIONS(6770), - [anon_sym_typealias] = ACTIONS(6770), - [anon_sym_class] = ACTIONS(6770), - [anon_sym_interface] = ACTIONS(6770), - [anon_sym_enum] = ACTIONS(6770), - [anon_sym_LBRACE] = ACTIONS(6768), - [anon_sym_LPAREN] = ACTIONS(6768), - [anon_sym_val] = ACTIONS(6770), - [anon_sym_var] = ACTIONS(6770), - [anon_sym_object] = ACTIONS(6770), - [anon_sym_fun] = ACTIONS(6770), - [anon_sym_get] = ACTIONS(6770), - [anon_sym_set] = ACTIONS(6770), - [anon_sym_this] = ACTIONS(6770), - [anon_sym_super] = ACTIONS(6770), - [anon_sym_STAR] = ACTIONS(6768), - [sym_label] = ACTIONS(6770), - [anon_sym_for] = ACTIONS(6770), - [anon_sym_while] = ACTIONS(6770), - [anon_sym_do] = ACTIONS(6770), - [anon_sym_null] = ACTIONS(6770), - [anon_sym_if] = ACTIONS(6770), - [anon_sym_when] = ACTIONS(6770), - [anon_sym_try] = ACTIONS(6770), - [anon_sym_throw] = ACTIONS(6770), - [anon_sym_return] = ACTIONS(6770), - [anon_sym_continue] = ACTIONS(6770), - [anon_sym_break] = ACTIONS(6770), - [anon_sym_COLON_COLON] = ACTIONS(6768), - [anon_sym_PLUS] = ACTIONS(6770), - [anon_sym_DASH] = ACTIONS(6770), - [anon_sym_PLUS_PLUS] = ACTIONS(6768), - [anon_sym_DASH_DASH] = ACTIONS(6768), - [anon_sym_BANG] = ACTIONS(6768), - [anon_sym_suspend] = ACTIONS(6770), - [anon_sym_sealed] = ACTIONS(6770), - [anon_sym_annotation] = ACTIONS(6770), - [anon_sym_data] = ACTIONS(6770), - [anon_sym_inner] = ACTIONS(6770), - [anon_sym_override] = ACTIONS(6770), - [anon_sym_lateinit] = ACTIONS(6770), - [anon_sym_public] = ACTIONS(6770), - [anon_sym_private] = ACTIONS(6770), - [anon_sym_internal] = ACTIONS(6770), - [anon_sym_protected] = ACTIONS(6770), - [anon_sym_tailrec] = ACTIONS(6770), - [anon_sym_operator] = ACTIONS(6770), - [anon_sym_infix] = ACTIONS(6770), - [anon_sym_inline] = ACTIONS(6770), - [anon_sym_external] = ACTIONS(6770), - [sym_property_modifier] = ACTIONS(6770), - [anon_sym_abstract] = ACTIONS(6770), - [anon_sym_final] = ACTIONS(6770), - [anon_sym_open] = ACTIONS(6770), - [anon_sym_vararg] = ACTIONS(6770), - [anon_sym_noinline] = ACTIONS(6770), - [anon_sym_crossinline] = ACTIONS(6770), - [anon_sym_expect] = ACTIONS(6770), - [anon_sym_actual] = ACTIONS(6770), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6768), - [anon_sym_continue_AT] = ACTIONS(6768), - [anon_sym_break_AT] = ACTIONS(6768), - [sym_real_literal] = ACTIONS(6768), - [sym_integer_literal] = ACTIONS(6770), - [sym_hex_literal] = ACTIONS(6768), - [sym_bin_literal] = ACTIONS(6768), - [anon_sym_true] = ACTIONS(6770), - [anon_sym_false] = ACTIONS(6770), - [anon_sym_SQUOTE] = ACTIONS(6768), - [sym__backtick_identifier] = ACTIONS(6768), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6768), - }, - [3586] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3587] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6772), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4146), - [anon_sym_fun] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [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(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4146), - [anon_sym_inner] = ACTIONS(4146), - [anon_sym_expect] = ACTIONS(4146), - [anon_sym_actual] = ACTIONS(4146), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), - }, - [3588] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6774), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [3589] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(6776), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_typealias] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3943), - [anon_sym_interface] = ACTIONS(3943), - [anon_sym_enum] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3943), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3948), - [sym_label] = ACTIONS(3943), - [anon_sym_for] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_do] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3590] = { - [aux_sym_type_constraints_repeat1] = STATE(3650), - [sym__alpha_identifier] = ACTIONS(4454), - [anon_sym_AT] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_EQ] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(6778), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_object] = ACTIONS(4454), - [anon_sym_fun] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_get] = ACTIONS(4454), - [anon_sym_set] = ACTIONS(4454), - [anon_sym_this] = ACTIONS(4454), - [anon_sym_super] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [sym_label] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_null] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_else] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [anon_sym_try] = ACTIONS(4454), - [anon_sym_throw] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_BANGin] = ACTIONS(4456), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_BANGis] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_suspend] = ACTIONS(4454), - [anon_sym_sealed] = ACTIONS(4454), - [anon_sym_annotation] = ACTIONS(4454), - [anon_sym_data] = ACTIONS(4454), - [anon_sym_inner] = ACTIONS(4454), - [anon_sym_override] = ACTIONS(4454), - [anon_sym_lateinit] = ACTIONS(4454), - [anon_sym_public] = ACTIONS(4454), - [anon_sym_private] = ACTIONS(4454), - [anon_sym_internal] = ACTIONS(4454), - [anon_sym_protected] = ACTIONS(4454), - [anon_sym_tailrec] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_infix] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym_external] = ACTIONS(4454), - [sym_property_modifier] = ACTIONS(4454), - [anon_sym_abstract] = ACTIONS(4454), - [anon_sym_final] = ACTIONS(4454), - [anon_sym_open] = ACTIONS(4454), - [anon_sym_vararg] = ACTIONS(4454), - [anon_sym_noinline] = ACTIONS(4454), - [anon_sym_crossinline] = ACTIONS(4454), - [anon_sym_expect] = ACTIONS(4454), - [anon_sym_actual] = ACTIONS(4454), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4456), - [anon_sym_continue_AT] = ACTIONS(4456), - [anon_sym_break_AT] = ACTIONS(4456), - [sym_real_literal] = ACTIONS(4456), - [sym_integer_literal] = ACTIONS(4454), - [sym_hex_literal] = ACTIONS(4456), - [sym_bin_literal] = ACTIONS(4456), - [anon_sym_true] = ACTIONS(4454), - [anon_sym_false] = ACTIONS(4454), - [anon_sym_SQUOTE] = ACTIONS(4456), - [sym__backtick_identifier] = ACTIONS(4456), - [sym__automatic_semicolon] = ACTIONS(4456), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4456), - }, - [3591] = { - [sym_type_constraints] = STATE(3971), - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6780), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [3592] = { - [sym_type_constraints] = STATE(3966), - [sym_function_body] = STATE(3285), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6782), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4041), - [anon_sym_fun] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_this] = ACTIONS(4041), - [anon_sym_super] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4041), - [anon_sym_if] = ACTIONS(4041), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [anon_sym_try] = ACTIONS(4041), - [anon_sym_throw] = ACTIONS(4041), - [anon_sym_return] = ACTIONS(4041), - [anon_sym_continue] = ACTIONS(4041), - [anon_sym_break] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4043), - [anon_sym_continue_AT] = ACTIONS(4043), - [anon_sym_break_AT] = ACTIONS(4043), - [sym_real_literal] = ACTIONS(4043), - [sym_integer_literal] = ACTIONS(4041), - [sym_hex_literal] = ACTIONS(4043), - [sym_bin_literal] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_SQUOTE] = ACTIONS(4043), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4043), - }, - [3593] = { - [sym_type_arguments] = STATE(3923), - [sym__alpha_identifier] = ACTIONS(4113), - [anon_sym_AT] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_typealias] = ACTIONS(4113), - [anon_sym_class] = ACTIONS(4113), - [anon_sym_interface] = ACTIONS(4113), - [anon_sym_enum] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_val] = ACTIONS(4113), - [anon_sym_var] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(6784), - [anon_sym_object] = ACTIONS(4113), - [anon_sym_fun] = ACTIONS(4113), - [anon_sym_DOT] = ACTIONS(4113), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [anon_sym_this] = ACTIONS(4113), - [anon_sym_super] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4190), - [sym_label] = ACTIONS(4113), - [anon_sym_for] = ACTIONS(4113), - [anon_sym_while] = ACTIONS(4113), - [anon_sym_do] = ACTIONS(4113), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_if] = ACTIONS(4113), - [anon_sym_when] = ACTIONS(4113), - [anon_sym_try] = ACTIONS(4113), - [anon_sym_throw] = ACTIONS(4113), - [anon_sym_return] = ACTIONS(4113), - [anon_sym_continue] = ACTIONS(4113), - [anon_sym_break] = ACTIONS(4113), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_suspend] = ACTIONS(4113), - [anon_sym_sealed] = ACTIONS(4113), - [anon_sym_annotation] = ACTIONS(4113), - [anon_sym_data] = ACTIONS(4113), - [anon_sym_inner] = ACTIONS(4113), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_lateinit] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4113), - [anon_sym_private] = ACTIONS(4113), - [anon_sym_internal] = ACTIONS(4113), - [anon_sym_protected] = ACTIONS(4113), - [anon_sym_tailrec] = ACTIONS(4113), - [anon_sym_operator] = ACTIONS(4113), - [anon_sym_infix] = ACTIONS(4113), - [anon_sym_inline] = ACTIONS(4113), - [anon_sym_external] = ACTIONS(4113), - [sym_property_modifier] = ACTIONS(4113), - [anon_sym_abstract] = ACTIONS(4113), - [anon_sym_final] = ACTIONS(4113), - [anon_sym_open] = ACTIONS(4113), - [anon_sym_vararg] = ACTIONS(4113), - [anon_sym_noinline] = ACTIONS(4113), - [anon_sym_crossinline] = ACTIONS(4113), - [anon_sym_expect] = ACTIONS(4113), - [anon_sym_actual] = ACTIONS(4113), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4190), - [anon_sym_continue_AT] = ACTIONS(4190), - [anon_sym_break_AT] = ACTIONS(4190), - [sym_real_literal] = ACTIONS(4190), - [sym_integer_literal] = ACTIONS(4113), - [sym_hex_literal] = ACTIONS(4190), - [sym_bin_literal] = ACTIONS(4190), - [anon_sym_true] = ACTIONS(4113), - [anon_sym_false] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4190), - [sym__backtick_identifier] = ACTIONS(4190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4190), - }, - [3594] = { - [ts_builtin_sym_end] = ACTIONS(6786), - [sym__alpha_identifier] = ACTIONS(6788), - [anon_sym_AT] = ACTIONS(6786), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_package] = ACTIONS(6788), - [anon_sym_import] = ACTIONS(6788), - [anon_sym_typealias] = ACTIONS(6788), - [anon_sym_class] = ACTIONS(6788), - [anon_sym_interface] = ACTIONS(6788), - [anon_sym_enum] = ACTIONS(6788), - [anon_sym_LBRACE] = ACTIONS(6786), - [anon_sym_LPAREN] = ACTIONS(6786), - [anon_sym_val] = ACTIONS(6788), - [anon_sym_var] = ACTIONS(6788), - [anon_sym_object] = ACTIONS(6788), - [anon_sym_fun] = ACTIONS(6788), - [anon_sym_get] = ACTIONS(6788), - [anon_sym_set] = ACTIONS(6788), - [anon_sym_this] = ACTIONS(6788), - [anon_sym_super] = ACTIONS(6788), - [anon_sym_STAR] = ACTIONS(6786), - [sym_label] = ACTIONS(6788), - [anon_sym_for] = ACTIONS(6788), - [anon_sym_while] = ACTIONS(6788), - [anon_sym_do] = ACTIONS(6788), - [anon_sym_null] = ACTIONS(6788), - [anon_sym_if] = ACTIONS(6788), - [anon_sym_when] = ACTIONS(6788), - [anon_sym_try] = ACTIONS(6788), - [anon_sym_throw] = ACTIONS(6788), - [anon_sym_return] = ACTIONS(6788), - [anon_sym_continue] = ACTIONS(6788), - [anon_sym_break] = ACTIONS(6788), - [anon_sym_COLON_COLON] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6786), - [anon_sym_DASH_DASH] = ACTIONS(6786), - [anon_sym_BANG] = ACTIONS(6786), - [anon_sym_suspend] = ACTIONS(6788), - [anon_sym_sealed] = ACTIONS(6788), - [anon_sym_annotation] = ACTIONS(6788), - [anon_sym_data] = ACTIONS(6788), - [anon_sym_inner] = ACTIONS(6788), - [anon_sym_override] = ACTIONS(6788), - [anon_sym_lateinit] = ACTIONS(6788), - [anon_sym_public] = ACTIONS(6788), - [anon_sym_private] = ACTIONS(6788), - [anon_sym_internal] = ACTIONS(6788), - [anon_sym_protected] = ACTIONS(6788), - [anon_sym_tailrec] = ACTIONS(6788), - [anon_sym_operator] = ACTIONS(6788), - [anon_sym_infix] = ACTIONS(6788), - [anon_sym_inline] = ACTIONS(6788), - [anon_sym_external] = ACTIONS(6788), - [sym_property_modifier] = ACTIONS(6788), - [anon_sym_abstract] = ACTIONS(6788), - [anon_sym_final] = ACTIONS(6788), - [anon_sym_open] = ACTIONS(6788), - [anon_sym_vararg] = ACTIONS(6788), - [anon_sym_noinline] = ACTIONS(6788), - [anon_sym_crossinline] = ACTIONS(6788), - [anon_sym_expect] = ACTIONS(6788), - [anon_sym_actual] = ACTIONS(6788), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6786), - [anon_sym_continue_AT] = ACTIONS(6786), - [anon_sym_break_AT] = ACTIONS(6786), - [sym_real_literal] = ACTIONS(6786), - [sym_integer_literal] = ACTIONS(6788), - [sym_hex_literal] = ACTIONS(6786), - [sym_bin_literal] = ACTIONS(6786), - [anon_sym_true] = ACTIONS(6788), - [anon_sym_false] = ACTIONS(6788), - [anon_sym_SQUOTE] = ACTIONS(6786), - [sym__backtick_identifier] = ACTIONS(6786), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6786), - }, - [3595] = { - [sym_type_constraints] = STATE(3876), - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [3596] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3597] = { - [sym_type_constraints] = STATE(3889), - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [3598] = { - [sym_type_constraints] = STATE(3897), - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_RBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - }, - [3599] = { - [sym_type_constraints] = STATE(3894), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [3600] = { - [sym_type_constraints] = STATE(3895), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_RBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [3601] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(6688), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [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(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [3602] = { - [sym_type_constraints] = STATE(3892), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3603] = { - [sym_type_constraints] = STATE(3886), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [3604] = { - [sym_type_constraints] = STATE(3884), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - }, - [3605] = { - [sym_type_constraints] = STATE(3883), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [3606] = { - [sym_type_constraints] = STATE(3881), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - }, - [3607] = { - [sym_class_body] = STATE(3803), - [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(5358), - [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_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__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_by] = ACTIONS(6671), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = 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_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(4654), - [sym__automatic_semicolon] = ACTIONS(4654), - [sym_safe_nav] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), [sym_multiline_comment] = ACTIONS(3), }, - [3608] = { - [sym__alpha_identifier] = ACTIONS(4619), - [anon_sym_AT] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4621), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_COMMA] = ACTIONS(4621), - [anon_sym_by] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [anon_sym_get] = ACTIONS(4619), - [anon_sym_set] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [sym_label] = ACTIONS(4621), - [anon_sym_in] = ACTIONS(4619), - [anon_sym_DOT_DOT] = ACTIONS(4621), - [anon_sym_QMARK_COLON] = ACTIONS(4621), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE_PIPE] = ACTIONS(4621), - [anon_sym_else] = ACTIONS(4619), - [anon_sym_COLON_COLON] = ACTIONS(4621), - [anon_sym_PLUS_EQ] = ACTIONS(4621), - [anon_sym_DASH_EQ] = ACTIONS(4621), - [anon_sym_STAR_EQ] = ACTIONS(4621), - [anon_sym_SLASH_EQ] = ACTIONS(4621), - [anon_sym_PERCENT_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), - [anon_sym_LT_EQ] = ACTIONS(4621), - [anon_sym_GT_EQ] = ACTIONS(4621), - [anon_sym_BANGin] = ACTIONS(4621), - [anon_sym_is] = ACTIONS(4619), - [anon_sym_BANGis] = ACTIONS(4621), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_PERCENT] = ACTIONS(4619), - [anon_sym_as_QMARK] = ACTIONS(4621), - [anon_sym_PLUS_PLUS] = ACTIONS(4621), - [anon_sym_DASH_DASH] = ACTIONS(4621), - [anon_sym_BANG_BANG] = ACTIONS(4621), - [anon_sym_suspend] = ACTIONS(4619), - [anon_sym_sealed] = ACTIONS(4619), - [anon_sym_annotation] = ACTIONS(4619), - [anon_sym_data] = ACTIONS(4619), - [anon_sym_inner] = ACTIONS(4619), - [anon_sym_override] = ACTIONS(4619), - [anon_sym_lateinit] = ACTIONS(4619), - [anon_sym_public] = ACTIONS(4619), - [anon_sym_private] = ACTIONS(4619), - [anon_sym_internal] = ACTIONS(4619), - [anon_sym_protected] = ACTIONS(4619), - [anon_sym_tailrec] = ACTIONS(4619), - [anon_sym_operator] = ACTIONS(4619), - [anon_sym_infix] = ACTIONS(4619), - [anon_sym_inline] = ACTIONS(4619), - [anon_sym_external] = ACTIONS(4619), - [sym_property_modifier] = ACTIONS(4619), - [anon_sym_abstract] = ACTIONS(4619), - [anon_sym_final] = ACTIONS(4619), - [anon_sym_open] = ACTIONS(4619), - [anon_sym_vararg] = ACTIONS(4619), - [anon_sym_noinline] = ACTIONS(4619), - [anon_sym_crossinline] = ACTIONS(4619), - [anon_sym_expect] = ACTIONS(4619), - [anon_sym_actual] = ACTIONS(4619), + [3573] = { + [sym_type_constraints] = STATE(3888), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3574] = { + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4621), - [sym__automatic_semicolon] = ACTIONS(4621), - [sym_safe_nav] = ACTIONS(4621), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [3609] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3616), + [3575] = { + [sym_class_body] = STATE(3800), [sym__alpha_identifier] = ACTIONS(4662), [anon_sym_AT] = ACTIONS(4664), [anon_sym_LBRACK] = ACTIONS(4664), [anon_sym_as] = ACTIONS(4662), [anon_sym_EQ] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(5439), [anon_sym_RBRACE] = ACTIONS(4664), [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(6790), + [anon_sym_COMMA] = ACTIONS(4664), [anon_sym_LT] = ACTIONS(4662), [anon_sym_GT] = ACTIONS(4662), [anon_sym_where] = ACTIONS(4662), @@ -391774,257 +389131,1057 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4664), [sym_multiline_comment] = ACTIONS(3), }, - [3610] = { - [sym__alpha_identifier] = ACTIONS(4611), - [anon_sym_AT] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4611), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_where] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_get] = ACTIONS(4611), - [anon_sym_set] = ACTIONS(4611), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4611), - [anon_sym_DOT_DOT] = ACTIONS(4613), - [anon_sym_QMARK_COLON] = ACTIONS(4613), - [anon_sym_AMP_AMP] = ACTIONS(4613), - [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_else] = ACTIONS(4611), - [anon_sym_COLON_COLON] = ACTIONS(4613), - [anon_sym_PLUS_EQ] = ACTIONS(4613), - [anon_sym_DASH_EQ] = ACTIONS(4613), - [anon_sym_STAR_EQ] = ACTIONS(4613), - [anon_sym_SLASH_EQ] = ACTIONS(4613), - [anon_sym_PERCENT_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4613), - [anon_sym_LT_EQ] = ACTIONS(4613), - [anon_sym_GT_EQ] = ACTIONS(4613), - [anon_sym_BANGin] = ACTIONS(4613), - [anon_sym_is] = ACTIONS(4611), - [anon_sym_BANGis] = ACTIONS(4613), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4611), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_as_QMARK] = ACTIONS(4613), - [anon_sym_PLUS_PLUS] = ACTIONS(4613), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_BANG_BANG] = ACTIONS(4613), - [anon_sym_suspend] = ACTIONS(4611), - [anon_sym_sealed] = ACTIONS(4611), - [anon_sym_annotation] = ACTIONS(4611), - [anon_sym_data] = ACTIONS(4611), - [anon_sym_inner] = ACTIONS(4611), - [anon_sym_override] = ACTIONS(4611), - [anon_sym_lateinit] = ACTIONS(4611), - [anon_sym_public] = ACTIONS(4611), - [anon_sym_private] = ACTIONS(4611), - [anon_sym_internal] = ACTIONS(4611), - [anon_sym_protected] = ACTIONS(4611), - [anon_sym_tailrec] = ACTIONS(4611), - [anon_sym_operator] = ACTIONS(4611), - [anon_sym_infix] = ACTIONS(4611), - [anon_sym_inline] = ACTIONS(4611), - [anon_sym_external] = ACTIONS(4611), - [sym_property_modifier] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4611), - [anon_sym_final] = ACTIONS(4611), - [anon_sym_open] = ACTIONS(4611), - [anon_sym_vararg] = ACTIONS(4611), - [anon_sym_noinline] = ACTIONS(4611), - [anon_sym_crossinline] = ACTIONS(4611), - [anon_sym_expect] = ACTIONS(4611), - [anon_sym_actual] = ACTIONS(4611), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4613), - [sym__automatic_semicolon] = ACTIONS(4613), - [sym_safe_nav] = ACTIONS(4613), + [3576] = { + [sym_class_body] = STATE(3776), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3611] = { - [sym_class_body] = STATE(3272), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_RPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_while] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [3577] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [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_by] = ACTIONS(4581), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4581), + [anon_sym_where] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_get] = ACTIONS(4581), + [anon_sym_set] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4581), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_QMARK_COLON] = ACTIONS(4583), + [anon_sym_AMP_AMP] = ACTIONS(4583), + [anon_sym_PIPE_PIPE] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4581), + [anon_sym_COLON_COLON] = ACTIONS(4583), + [anon_sym_PLUS_EQ] = ACTIONS(4583), + [anon_sym_DASH_EQ] = ACTIONS(4583), + [anon_sym_STAR_EQ] = ACTIONS(4583), + [anon_sym_SLASH_EQ] = ACTIONS(4583), + [anon_sym_PERCENT_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ] = ACTIONS(4581), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ] = ACTIONS(4581), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4583), + [anon_sym_LT_EQ] = ACTIONS(4583), + [anon_sym_GT_EQ] = ACTIONS(4583), + [anon_sym_BANGin] = ACTIONS(4583), + [anon_sym_is] = ACTIONS(4581), + [anon_sym_BANGis] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_as_QMARK] = ACTIONS(4583), + [anon_sym_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4583), + [anon_sym_suspend] = ACTIONS(4581), + [anon_sym_sealed] = ACTIONS(4581), + [anon_sym_annotation] = ACTIONS(4581), + [anon_sym_data] = ACTIONS(4581), + [anon_sym_inner] = ACTIONS(4581), + [anon_sym_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4583), + [sym__automatic_semicolon] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), [sym_multiline_comment] = ACTIONS(3), }, - [3612] = { - [sym_function_body] = STATE(3332), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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_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_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_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), + [3578] = { + [sym_class_body] = STATE(3827), + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), [sym_multiline_comment] = ACTIONS(3), }, - [3613] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3609), + [3579] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(6754), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [3580] = { + [sym_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [3581] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(6758), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [3582] = { + [ts_builtin_sym_end] = ACTIONS(6762), + [sym__alpha_identifier] = ACTIONS(6764), + [anon_sym_AT] = ACTIONS(6762), + [anon_sym_LBRACK] = ACTIONS(6762), + [anon_sym_package] = ACTIONS(6764), + [anon_sym_import] = ACTIONS(6764), + [anon_sym_typealias] = ACTIONS(6764), + [anon_sym_class] = ACTIONS(6764), + [anon_sym_interface] = ACTIONS(6764), + [anon_sym_enum] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6762), + [anon_sym_LPAREN] = ACTIONS(6762), + [anon_sym_val] = ACTIONS(6764), + [anon_sym_var] = ACTIONS(6764), + [anon_sym_object] = ACTIONS(6764), + [anon_sym_fun] = ACTIONS(6764), + [anon_sym_get] = ACTIONS(6764), + [anon_sym_set] = ACTIONS(6764), + [anon_sym_this] = ACTIONS(6764), + [anon_sym_super] = ACTIONS(6764), + [anon_sym_STAR] = ACTIONS(6762), + [sym_label] = ACTIONS(6764), + [anon_sym_for] = ACTIONS(6764), + [anon_sym_while] = ACTIONS(6764), + [anon_sym_do] = ACTIONS(6764), + [anon_sym_null] = ACTIONS(6764), + [anon_sym_if] = ACTIONS(6764), + [anon_sym_when] = ACTIONS(6764), + [anon_sym_try] = ACTIONS(6764), + [anon_sym_throw] = ACTIONS(6764), + [anon_sym_return] = ACTIONS(6764), + [anon_sym_continue] = ACTIONS(6764), + [anon_sym_break] = ACTIONS(6764), + [anon_sym_COLON_COLON] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6762), + [anon_sym_BANG] = ACTIONS(6762), + [anon_sym_suspend] = ACTIONS(6764), + [anon_sym_sealed] = ACTIONS(6764), + [anon_sym_annotation] = ACTIONS(6764), + [anon_sym_data] = ACTIONS(6764), + [anon_sym_inner] = ACTIONS(6764), + [anon_sym_override] = ACTIONS(6764), + [anon_sym_lateinit] = ACTIONS(6764), + [anon_sym_public] = ACTIONS(6764), + [anon_sym_private] = ACTIONS(6764), + [anon_sym_internal] = ACTIONS(6764), + [anon_sym_protected] = ACTIONS(6764), + [anon_sym_tailrec] = ACTIONS(6764), + [anon_sym_operator] = ACTIONS(6764), + [anon_sym_infix] = ACTIONS(6764), + [anon_sym_inline] = ACTIONS(6764), + [anon_sym_external] = ACTIONS(6764), + [sym_property_modifier] = ACTIONS(6764), + [anon_sym_abstract] = ACTIONS(6764), + [anon_sym_final] = ACTIONS(6764), + [anon_sym_open] = ACTIONS(6764), + [anon_sym_vararg] = ACTIONS(6764), + [anon_sym_noinline] = ACTIONS(6764), + [anon_sym_crossinline] = ACTIONS(6764), + [anon_sym_expect] = ACTIONS(6764), + [anon_sym_actual] = ACTIONS(6764), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6762), + [anon_sym_continue_AT] = ACTIONS(6762), + [anon_sym_break_AT] = ACTIONS(6762), + [sym_real_literal] = ACTIONS(6762), + [sym_integer_literal] = ACTIONS(6764), + [sym_hex_literal] = ACTIONS(6762), + [sym_bin_literal] = ACTIONS(6762), + [anon_sym_true] = ACTIONS(6764), + [anon_sym_false] = ACTIONS(6764), + [anon_sym_SQUOTE] = ACTIONS(6762), + [sym__backtick_identifier] = ACTIONS(6762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6762), + }, + [3583] = { + [sym__alpha_identifier] = ACTIONS(4627), + [anon_sym_AT] = ACTIONS(4629), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_as] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4629), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [anon_sym_COMMA] = ACTIONS(4629), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_where] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(4627), + [anon_sym_set] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [sym_label] = ACTIONS(4629), + [anon_sym_in] = ACTIONS(4627), + [anon_sym_DOT_DOT] = ACTIONS(4629), + [anon_sym_QMARK_COLON] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [anon_sym_else] = ACTIONS(4627), + [anon_sym_COLON_COLON] = ACTIONS(4629), + [anon_sym_PLUS_EQ] = ACTIONS(4629), + [anon_sym_DASH_EQ] = ACTIONS(4629), + [anon_sym_STAR_EQ] = ACTIONS(4629), + [anon_sym_SLASH_EQ] = ACTIONS(4629), + [anon_sym_PERCENT_EQ] = ACTIONS(4629), + [anon_sym_BANG_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4629), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4629), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_BANGin] = ACTIONS(4629), + [anon_sym_is] = ACTIONS(4627), + [anon_sym_BANGis] = ACTIONS(4629), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_as_QMARK] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4629), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_BANG_BANG] = ACTIONS(4629), + [anon_sym_suspend] = ACTIONS(4627), + [anon_sym_sealed] = ACTIONS(4627), + [anon_sym_annotation] = ACTIONS(4627), + [anon_sym_data] = ACTIONS(4627), + [anon_sym_inner] = ACTIONS(4627), + [anon_sym_override] = ACTIONS(4627), + [anon_sym_lateinit] = ACTIONS(4627), + [anon_sym_public] = ACTIONS(4627), + [anon_sym_private] = ACTIONS(4627), + [anon_sym_internal] = ACTIONS(4627), + [anon_sym_protected] = ACTIONS(4627), + [anon_sym_tailrec] = ACTIONS(4627), + [anon_sym_operator] = ACTIONS(4627), + [anon_sym_infix] = ACTIONS(4627), + [anon_sym_inline] = ACTIONS(4627), + [anon_sym_external] = ACTIONS(4627), + [sym_property_modifier] = ACTIONS(4627), + [anon_sym_abstract] = ACTIONS(4627), + [anon_sym_final] = ACTIONS(4627), + [anon_sym_open] = ACTIONS(4627), + [anon_sym_vararg] = ACTIONS(4627), + [anon_sym_noinline] = ACTIONS(4627), + [anon_sym_crossinline] = ACTIONS(4627), + [anon_sym_expect] = ACTIONS(4627), + [anon_sym_actual] = ACTIONS(4627), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4629), + [sym__automatic_semicolon] = ACTIONS(4629), + [sym_safe_nav] = ACTIONS(4629), + [sym_multiline_comment] = ACTIONS(3), + }, + [3584] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [3585] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_by] = 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(4583), + [sym_label] = ACTIONS(4581), + [anon_sym_in] = ACTIONS(4581), + [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_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_PLUS_PLUS] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4581), + [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_override] = ACTIONS(4581), + [anon_sym_lateinit] = ACTIONS(4581), + [anon_sym_public] = ACTIONS(4581), + [anon_sym_private] = ACTIONS(4581), + [anon_sym_internal] = ACTIONS(4581), + [anon_sym_protected] = ACTIONS(4581), + [anon_sym_tailrec] = ACTIONS(4581), + [anon_sym_operator] = ACTIONS(4581), + [anon_sym_infix] = ACTIONS(4581), + [anon_sym_inline] = ACTIONS(4581), + [anon_sym_external] = ACTIONS(4581), + [sym_property_modifier] = ACTIONS(4581), + [anon_sym_abstract] = ACTIONS(4581), + [anon_sym_final] = ACTIONS(4581), + [anon_sym_open] = ACTIONS(4581), + [anon_sym_vararg] = ACTIONS(4581), + [anon_sym_noinline] = ACTIONS(4581), + [anon_sym_crossinline] = ACTIONS(4581), + [anon_sym_expect] = ACTIONS(4581), + [anon_sym_actual] = ACTIONS(4581), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4583), + [anon_sym_continue_AT] = ACTIONS(4583), + [anon_sym_break_AT] = ACTIONS(4583), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4583), + }, + [3586] = { + [sym_type_constraints] = STATE(3854), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + }, + [3587] = { + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3588] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [3589] = { [sym__alpha_identifier] = ACTIONS(4656), [anon_sym_AT] = ACTIONS(4658), + [anon_sym_COLON] = ACTIONS(4656), [anon_sym_LBRACK] = ACTIONS(4658), [anon_sym_as] = ACTIONS(4656), [anon_sym_EQ] = ACTIONS(4656), [anon_sym_LBRACE] = ACTIONS(4658), [anon_sym_RBRACE] = ACTIONS(4658), [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(6790), + [anon_sym_COMMA] = ACTIONS(4658), [anon_sym_LT] = ACTIONS(4656), [anon_sym_GT] = ACTIONS(4656), [anon_sym_where] = ACTIONS(4656), @@ -392094,3454 +390251,894 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4658), [sym_multiline_comment] = ACTIONS(3), }, - [3614] = { - [sym_class_body] = STATE(3337), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6794), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_RPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_while] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - }, - [3615] = { - [sym__alpha_identifier] = ACTIONS(4615), - [anon_sym_AT] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_as] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4617), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_LT] = ACTIONS(4615), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_where] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [anon_sym_get] = ACTIONS(4615), - [anon_sym_set] = ACTIONS(4615), - [anon_sym_STAR] = ACTIONS(4615), - [sym_label] = ACTIONS(4617), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_DOT_DOT] = ACTIONS(4617), - [anon_sym_QMARK_COLON] = ACTIONS(4617), - [anon_sym_AMP_AMP] = ACTIONS(4617), - [anon_sym_PIPE_PIPE] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(4615), - [anon_sym_COLON_COLON] = ACTIONS(4617), - [anon_sym_PLUS_EQ] = ACTIONS(4617), - [anon_sym_DASH_EQ] = ACTIONS(4617), - [anon_sym_STAR_EQ] = ACTIONS(4617), - [anon_sym_SLASH_EQ] = ACTIONS(4617), - [anon_sym_PERCENT_EQ] = ACTIONS(4617), - [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(4617), - [anon_sym_GT_EQ] = ACTIONS(4617), - [anon_sym_BANGin] = ACTIONS(4617), - [anon_sym_is] = ACTIONS(4615), - [anon_sym_BANGis] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4615), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_as_QMARK] = ACTIONS(4617), - [anon_sym_PLUS_PLUS] = ACTIONS(4617), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_BANG_BANG] = ACTIONS(4617), - [anon_sym_suspend] = ACTIONS(4615), - [anon_sym_sealed] = ACTIONS(4615), - [anon_sym_annotation] = ACTIONS(4615), - [anon_sym_data] = ACTIONS(4615), - [anon_sym_inner] = ACTIONS(4615), - [anon_sym_override] = ACTIONS(4615), - [anon_sym_lateinit] = ACTIONS(4615), - [anon_sym_public] = ACTIONS(4615), - [anon_sym_private] = ACTIONS(4615), - [anon_sym_internal] = ACTIONS(4615), - [anon_sym_protected] = ACTIONS(4615), - [anon_sym_tailrec] = ACTIONS(4615), - [anon_sym_operator] = ACTIONS(4615), - [anon_sym_infix] = ACTIONS(4615), - [anon_sym_inline] = ACTIONS(4615), - [anon_sym_external] = ACTIONS(4615), - [sym_property_modifier] = ACTIONS(4615), - [anon_sym_abstract] = ACTIONS(4615), - [anon_sym_final] = ACTIONS(4615), - [anon_sym_open] = ACTIONS(4615), - [anon_sym_vararg] = ACTIONS(4615), - [anon_sym_noinline] = ACTIONS(4615), - [anon_sym_crossinline] = ACTIONS(4615), - [anon_sym_expect] = ACTIONS(4615), - [anon_sym_actual] = ACTIONS(4615), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4617), - [sym__automatic_semicolon] = ACTIONS(4617), - [sym_safe_nav] = ACTIONS(4617), - [sym_multiline_comment] = ACTIONS(3), - }, - [3616] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3616), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [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(6796), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_DOT] = 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_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), - }, - [3617] = { - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - }, - [3618] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4244), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_null] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4242), - [anon_sym_try] = ACTIONS(4242), - [anon_sym_throw] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4244), - [anon_sym_continue_AT] = ACTIONS(4244), - [anon_sym_break_AT] = ACTIONS(4244), - [sym_real_literal] = ACTIONS(4244), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4244), - [sym_bin_literal] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4244), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4244), - }, - [3619] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [3620] = { - [sym_enum_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [3621] = { - [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_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_object] = ACTIONS(4790), - [anon_sym_fun] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(6799), - [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(6801), - [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_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), - [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), - }, - [3622] = { - [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_LT] = ACTIONS(4790), - [anon_sym_GT] = 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(6801), - [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_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), - [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), - }, - [3623] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3624] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3625] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3626] = { - [sym__alpha_identifier] = ACTIONS(4666), - [anon_sym_AT] = ACTIONS(4668), - [anon_sym_COLON] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4666), - [anon_sym_EQ] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4668), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_LPAREN] = ACTIONS(4668), - [anon_sym_COMMA] = ACTIONS(4668), - [anon_sym_LT] = ACTIONS(4666), - [anon_sym_GT] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_SEMI] = ACTIONS(4668), - [anon_sym_get] = ACTIONS(4666), - [anon_sym_set] = ACTIONS(4666), - [anon_sym_STAR] = ACTIONS(4666), - [sym_label] = ACTIONS(4668), - [anon_sym_in] = ACTIONS(4666), - [anon_sym_DOT_DOT] = ACTIONS(4668), - [anon_sym_QMARK_COLON] = ACTIONS(4668), - [anon_sym_AMP_AMP] = ACTIONS(4668), - [anon_sym_PIPE_PIPE] = ACTIONS(4668), - [anon_sym_else] = ACTIONS(4666), - [anon_sym_COLON_COLON] = ACTIONS(4668), - [anon_sym_PLUS_EQ] = ACTIONS(4668), - [anon_sym_DASH_EQ] = ACTIONS(4668), - [anon_sym_STAR_EQ] = ACTIONS(4668), - [anon_sym_SLASH_EQ] = ACTIONS(4668), - [anon_sym_PERCENT_EQ] = ACTIONS(4668), - [anon_sym_BANG_EQ] = ACTIONS(4666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4668), - [anon_sym_EQ_EQ] = ACTIONS(4666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4668), - [anon_sym_LT_EQ] = ACTIONS(4668), - [anon_sym_GT_EQ] = ACTIONS(4668), - [anon_sym_BANGin] = ACTIONS(4668), - [anon_sym_is] = ACTIONS(4666), - [anon_sym_BANGis] = ACTIONS(4668), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_SLASH] = ACTIONS(4666), - [anon_sym_PERCENT] = ACTIONS(4666), - [anon_sym_as_QMARK] = ACTIONS(4668), - [anon_sym_PLUS_PLUS] = ACTIONS(4668), - [anon_sym_DASH_DASH] = ACTIONS(4668), - [anon_sym_BANG_BANG] = ACTIONS(4668), - [anon_sym_suspend] = ACTIONS(4666), - [anon_sym_sealed] = ACTIONS(4666), - [anon_sym_annotation] = ACTIONS(4666), - [anon_sym_data] = ACTIONS(4666), - [anon_sym_inner] = ACTIONS(4666), - [anon_sym_override] = ACTIONS(4666), - [anon_sym_lateinit] = ACTIONS(4666), - [anon_sym_public] = ACTIONS(4666), - [anon_sym_private] = ACTIONS(4666), - [anon_sym_internal] = ACTIONS(4666), - [anon_sym_protected] = ACTIONS(4666), - [anon_sym_tailrec] = ACTIONS(4666), - [anon_sym_operator] = ACTIONS(4666), - [anon_sym_infix] = ACTIONS(4666), - [anon_sym_inline] = ACTIONS(4666), - [anon_sym_external] = ACTIONS(4666), - [sym_property_modifier] = ACTIONS(4666), - [anon_sym_abstract] = ACTIONS(4666), - [anon_sym_final] = ACTIONS(4666), - [anon_sym_open] = ACTIONS(4666), - [anon_sym_vararg] = ACTIONS(4666), - [anon_sym_noinline] = ACTIONS(4666), - [anon_sym_crossinline] = ACTIONS(4666), - [anon_sym_expect] = ACTIONS(4666), - [anon_sym_actual] = ACTIONS(4666), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4668), - [sym__automatic_semicolon] = ACTIONS(4668), - [sym_safe_nav] = ACTIONS(4668), - [sym_multiline_comment] = ACTIONS(3), - }, - [3627] = { - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3628] = { - [sym__alpha_identifier] = ACTIONS(4644), - [anon_sym_AT] = ACTIONS(4646), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_EQ] = ACTIONS(4646), - [anon_sym_LBRACE] = ACTIONS(4646), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_COMMA] = ACTIONS(4646), - [anon_sym_by] = ACTIONS(4644), - [anon_sym_where] = ACTIONS(4644), - [anon_sym_object] = ACTIONS(4644), - [anon_sym_fun] = 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(4646), - [sym_label] = ACTIONS(4644), - [anon_sym_in] = ACTIONS(4644), - [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_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_PLUS_PLUS] = ACTIONS(4646), - [anon_sym_DASH_DASH] = ACTIONS(4646), - [anon_sym_BANG] = ACTIONS(4644), - [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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4646), - }, - [3629] = { - [sym_enum_class_body] = STATE(3677), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), - [sym_multiline_comment] = ACTIONS(3), - }, - [3630] = { - [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_by] = ACTIONS(4644), - [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_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), - }, - [3631] = { - [sym_class_body] = STATE(3743), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - }, - [3632] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6803), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3633] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6807), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3634] = { - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - }, - [3635] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6684), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), - }, - [3636] = { - [sym_class_body] = STATE(3675), - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4406), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), - }, - [3637] = { - [sym_function_body] = STATE(3679), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6811), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - }, - [3638] = { - [sym_function_body] = STATE(3364), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6813), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), - }, - [3639] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6815), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), + [3590] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(6766), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, - [3640] = { - [aux_sym_type_constraints_repeat1] = STATE(3590), - [sym__alpha_identifier] = ACTIONS(4440), - [anon_sym_AT] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4442), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym_COMMA] = ACTIONS(6778), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_object] = ACTIONS(4440), - [anon_sym_fun] = ACTIONS(4440), - [anon_sym_SEMI] = ACTIONS(4442), - [anon_sym_get] = ACTIONS(4440), - [anon_sym_set] = ACTIONS(4440), - [anon_sym_this] = ACTIONS(4440), - [anon_sym_super] = ACTIONS(4440), - [anon_sym_STAR] = ACTIONS(4442), + [3591] = { + [sym_function_body] = STATE(3254), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), [sym_label] = ACTIONS(4440), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_null] = ACTIONS(4440), - [anon_sym_if] = ACTIONS(4440), - [anon_sym_else] = ACTIONS(4440), - [anon_sym_when] = ACTIONS(4440), - [anon_sym_try] = ACTIONS(4440), - [anon_sym_throw] = ACTIONS(4440), - [anon_sym_return] = ACTIONS(4440), - [anon_sym_continue] = ACTIONS(4440), - [anon_sym_break] = ACTIONS(4440), - [anon_sym_COLON_COLON] = ACTIONS(4442), - [anon_sym_BANGin] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_BANGis] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4440), - [anon_sym_DASH] = ACTIONS(4440), - [anon_sym_PLUS_PLUS] = ACTIONS(4442), - [anon_sym_DASH_DASH] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4440), - [anon_sym_suspend] = ACTIONS(4440), - [anon_sym_sealed] = ACTIONS(4440), - [anon_sym_annotation] = ACTIONS(4440), - [anon_sym_data] = ACTIONS(4440), - [anon_sym_inner] = ACTIONS(4440), - [anon_sym_override] = ACTIONS(4440), - [anon_sym_lateinit] = ACTIONS(4440), - [anon_sym_public] = ACTIONS(4440), - [anon_sym_private] = ACTIONS(4440), - [anon_sym_internal] = ACTIONS(4440), - [anon_sym_protected] = ACTIONS(4440), - [anon_sym_tailrec] = ACTIONS(4440), - [anon_sym_operator] = ACTIONS(4440), - [anon_sym_infix] = ACTIONS(4440), - [anon_sym_inline] = ACTIONS(4440), - [anon_sym_external] = ACTIONS(4440), - [sym_property_modifier] = ACTIONS(4440), - [anon_sym_abstract] = ACTIONS(4440), - [anon_sym_final] = ACTIONS(4440), - [anon_sym_open] = ACTIONS(4440), - [anon_sym_vararg] = ACTIONS(4440), - [anon_sym_noinline] = ACTIONS(4440), - [anon_sym_crossinline] = ACTIONS(4440), - [anon_sym_expect] = ACTIONS(4440), - [anon_sym_actual] = ACTIONS(4440), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4442), - [anon_sym_continue_AT] = ACTIONS(4442), - [anon_sym_break_AT] = ACTIONS(4442), - [sym_real_literal] = ACTIONS(4442), - [sym_integer_literal] = ACTIONS(4440), - [sym_hex_literal] = ACTIONS(4442), - [sym_bin_literal] = ACTIONS(4442), - [anon_sym_true] = ACTIONS(4440), - [anon_sym_false] = ACTIONS(4440), - [anon_sym_SQUOTE] = ACTIONS(4442), - [sym__backtick_identifier] = ACTIONS(4442), - [sym__automatic_semicolon] = ACTIONS(4442), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4442), - }, - [3641] = { - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - }, - [3642] = { - [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_override] = ACTIONS(4585), - [anon_sym_lateinit] = ACTIONS(4585), - [anon_sym_public] = ACTIONS(4585), - [anon_sym_private] = ACTIONS(4585), - [anon_sym_internal] = ACTIONS(4585), - [anon_sym_protected] = ACTIONS(4585), - [anon_sym_tailrec] = ACTIONS(4585), - [anon_sym_operator] = ACTIONS(4585), - [anon_sym_infix] = ACTIONS(4585), - [anon_sym_inline] = ACTIONS(4585), - [anon_sym_external] = ACTIONS(4585), - [sym_property_modifier] = ACTIONS(4585), - [anon_sym_abstract] = ACTIONS(4585), - [anon_sym_final] = ACTIONS(4585), - [anon_sym_open] = ACTIONS(4585), - [anon_sym_vararg] = ACTIONS(4585), - [anon_sym_noinline] = ACTIONS(4585), - [anon_sym_crossinline] = ACTIONS(4585), - [anon_sym_expect] = ACTIONS(4585), - [anon_sym_actual] = ACTIONS(4585), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4587), - [sym__automatic_semicolon] = ACTIONS(4587), - [sym_safe_nav] = ACTIONS(4587), - [sym_multiline_comment] = ACTIONS(3), - }, - [3643] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3644] = { - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - }, - [3645] = { - [sym_function_body] = STATE(3794), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6817), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4324), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, - [3646] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4531), - [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_DOT] = 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_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), + [3592] = { + [sym__alpha_identifier] = ACTIONS(4708), + [anon_sym_AT] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_where] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(4708), + [anon_sym_set] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4708), + [anon_sym_DOT_DOT] = ACTIONS(4710), + [anon_sym_QMARK_COLON] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4708), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_STAR_EQ] = ACTIONS(4710), + [anon_sym_SLASH_EQ] = ACTIONS(4710), + [anon_sym_PERCENT_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_BANGin] = ACTIONS(4710), + [anon_sym_is] = ACTIONS(4708), + [anon_sym_BANGis] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4708), + [anon_sym_DASH] = ACTIONS(4708), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_PERCENT] = ACTIONS(4708), + [anon_sym_as_QMARK] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4710), + [anon_sym_suspend] = ACTIONS(4708), + [anon_sym_sealed] = ACTIONS(4708), + [anon_sym_annotation] = ACTIONS(4708), + [anon_sym_data] = ACTIONS(4708), + [anon_sym_inner] = ACTIONS(4708), + [anon_sym_override] = ACTIONS(4708), + [anon_sym_lateinit] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(4708), + [anon_sym_internal] = ACTIONS(4708), + [anon_sym_protected] = ACTIONS(4708), + [anon_sym_tailrec] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(4708), + [anon_sym_infix] = ACTIONS(4708), + [anon_sym_inline] = ACTIONS(4708), + [anon_sym_external] = ACTIONS(4708), + [sym_property_modifier] = ACTIONS(4708), + [anon_sym_abstract] = ACTIONS(4708), + [anon_sym_final] = ACTIONS(4708), + [anon_sym_open] = ACTIONS(4708), + [anon_sym_vararg] = ACTIONS(4708), + [anon_sym_noinline] = ACTIONS(4708), + [anon_sym_crossinline] = ACTIONS(4708), + [anon_sym_expect] = ACTIONS(4708), + [anon_sym_actual] = ACTIONS(4708), + [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(6768), + [sym__backtick_identifier] = ACTIONS(4710), + [sym__automatic_semicolon] = ACTIONS(4710), + [sym_safe_nav] = ACTIONS(4710), [sym_multiline_comment] = ACTIONS(3), }, - [3647] = { - [ts_builtin_sym_end] = ACTIONS(6819), - [sym__alpha_identifier] = ACTIONS(6821), - [anon_sym_AT] = ACTIONS(6819), - [anon_sym_LBRACK] = ACTIONS(6819), - [anon_sym_package] = ACTIONS(6821), - [anon_sym_import] = ACTIONS(6821), - [anon_sym_typealias] = ACTIONS(6821), - [anon_sym_class] = ACTIONS(6821), - [anon_sym_interface] = ACTIONS(6821), - [anon_sym_enum] = ACTIONS(6821), - [anon_sym_LBRACE] = ACTIONS(6819), - [anon_sym_LPAREN] = ACTIONS(6819), - [anon_sym_val] = ACTIONS(6821), - [anon_sym_var] = ACTIONS(6821), - [anon_sym_object] = ACTIONS(6821), - [anon_sym_fun] = ACTIONS(6821), - [anon_sym_get] = ACTIONS(6821), - [anon_sym_set] = ACTIONS(6821), - [anon_sym_this] = ACTIONS(6821), - [anon_sym_super] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6819), - [sym_label] = ACTIONS(6821), - [anon_sym_for] = ACTIONS(6821), - [anon_sym_while] = ACTIONS(6821), - [anon_sym_do] = ACTIONS(6821), - [anon_sym_null] = ACTIONS(6821), - [anon_sym_if] = ACTIONS(6821), - [anon_sym_when] = ACTIONS(6821), - [anon_sym_try] = ACTIONS(6821), - [anon_sym_throw] = ACTIONS(6821), - [anon_sym_return] = ACTIONS(6821), - [anon_sym_continue] = ACTIONS(6821), - [anon_sym_break] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(6819), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS_PLUS] = ACTIONS(6819), - [anon_sym_DASH_DASH] = ACTIONS(6819), - [anon_sym_BANG] = ACTIONS(6819), - [anon_sym_suspend] = ACTIONS(6821), - [anon_sym_sealed] = ACTIONS(6821), - [anon_sym_annotation] = ACTIONS(6821), - [anon_sym_data] = ACTIONS(6821), - [anon_sym_inner] = ACTIONS(6821), - [anon_sym_override] = ACTIONS(6821), - [anon_sym_lateinit] = ACTIONS(6821), - [anon_sym_public] = ACTIONS(6821), - [anon_sym_private] = ACTIONS(6821), - [anon_sym_internal] = ACTIONS(6821), - [anon_sym_protected] = ACTIONS(6821), - [anon_sym_tailrec] = ACTIONS(6821), - [anon_sym_operator] = ACTIONS(6821), - [anon_sym_infix] = ACTIONS(6821), - [anon_sym_inline] = ACTIONS(6821), - [anon_sym_external] = ACTIONS(6821), - [sym_property_modifier] = ACTIONS(6821), - [anon_sym_abstract] = ACTIONS(6821), - [anon_sym_final] = ACTIONS(6821), - [anon_sym_open] = ACTIONS(6821), - [anon_sym_vararg] = ACTIONS(6821), - [anon_sym_noinline] = ACTIONS(6821), - [anon_sym_crossinline] = ACTIONS(6821), - [anon_sym_expect] = ACTIONS(6821), - [anon_sym_actual] = ACTIONS(6821), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6819), - [anon_sym_continue_AT] = ACTIONS(6819), - [anon_sym_break_AT] = ACTIONS(6819), - [sym_real_literal] = ACTIONS(6819), - [sym_integer_literal] = ACTIONS(6821), - [sym_hex_literal] = ACTIONS(6819), - [sym_bin_literal] = ACTIONS(6819), - [anon_sym_true] = ACTIONS(6821), - [anon_sym_false] = ACTIONS(6821), - [anon_sym_SQUOTE] = ACTIONS(6819), - [sym__backtick_identifier] = ACTIONS(6819), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6819), - }, - [3648] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(6716), + [3593] = { + [sym_function_body] = STATE(3256), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, - [3649] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4242), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4244), - [anon_sym_QMARK_COLON] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4244), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4244), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_BANGin] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_BANG_BANG] = ACTIONS(4244), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_override] = ACTIONS(4242), - [anon_sym_lateinit] = ACTIONS(4242), - [anon_sym_public] = ACTIONS(4242), - [anon_sym_private] = ACTIONS(4242), - [anon_sym_internal] = ACTIONS(4242), - [anon_sym_protected] = ACTIONS(4242), - [anon_sym_tailrec] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(4242), - [anon_sym_infix] = ACTIONS(4242), - [anon_sym_inline] = ACTIONS(4242), - [anon_sym_external] = ACTIONS(4242), - [sym_property_modifier] = ACTIONS(4242), - [anon_sym_abstract] = ACTIONS(4242), - [anon_sym_final] = ACTIONS(4242), - [anon_sym_open] = ACTIONS(4242), - [anon_sym_vararg] = ACTIONS(4242), - [anon_sym_noinline] = ACTIONS(4242), - [anon_sym_crossinline] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4244), - [sym__automatic_semicolon] = ACTIONS(4244), - [sym_safe_nav] = ACTIONS(4244), + [3594] = { + [sym_type_constraints] = STATE(3799), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3650] = { - [aux_sym_type_constraints_repeat1] = STATE(3650), - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_EQ] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_by] = 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_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_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_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4462), - [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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4464), - }, - [3651] = { - [sym__alpha_identifier] = ACTIONS(4619), - [anon_sym_AT] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4621), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_COMMA] = ACTIONS(4621), - [anon_sym_by] = ACTIONS(4619), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_object] = ACTIONS(4619), - [anon_sym_fun] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [anon_sym_get] = ACTIONS(4619), - [anon_sym_set] = ACTIONS(4619), - [anon_sym_this] = ACTIONS(4619), - [anon_sym_super] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4621), - [sym_label] = ACTIONS(4619), - [anon_sym_in] = ACTIONS(4619), - [anon_sym_null] = ACTIONS(4619), - [anon_sym_if] = ACTIONS(4619), - [anon_sym_else] = ACTIONS(4619), - [anon_sym_when] = ACTIONS(4619), - [anon_sym_try] = ACTIONS(4619), - [anon_sym_throw] = ACTIONS(4619), - [anon_sym_return] = ACTIONS(4619), - [anon_sym_continue] = ACTIONS(4619), - [anon_sym_break] = ACTIONS(4619), - [anon_sym_COLON_COLON] = ACTIONS(4621), - [anon_sym_BANGin] = ACTIONS(4621), - [anon_sym_is] = ACTIONS(4619), - [anon_sym_BANGis] = ACTIONS(4621), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_PLUS_PLUS] = ACTIONS(4621), - [anon_sym_DASH_DASH] = ACTIONS(4621), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_suspend] = ACTIONS(4619), - [anon_sym_sealed] = ACTIONS(4619), - [anon_sym_annotation] = ACTIONS(4619), - [anon_sym_data] = ACTIONS(4619), - [anon_sym_inner] = ACTIONS(4619), - [anon_sym_override] = ACTIONS(4619), - [anon_sym_lateinit] = ACTIONS(4619), - [anon_sym_public] = ACTIONS(4619), - [anon_sym_private] = ACTIONS(4619), - [anon_sym_internal] = ACTIONS(4619), - [anon_sym_protected] = ACTIONS(4619), - [anon_sym_tailrec] = ACTIONS(4619), - [anon_sym_operator] = ACTIONS(4619), - [anon_sym_infix] = ACTIONS(4619), - [anon_sym_inline] = ACTIONS(4619), - [anon_sym_external] = ACTIONS(4619), - [sym_property_modifier] = ACTIONS(4619), - [anon_sym_abstract] = ACTIONS(4619), - [anon_sym_final] = ACTIONS(4619), - [anon_sym_open] = ACTIONS(4619), - [anon_sym_vararg] = ACTIONS(4619), - [anon_sym_noinline] = ACTIONS(4619), - [anon_sym_crossinline] = ACTIONS(4619), - [anon_sym_expect] = ACTIONS(4619), - [anon_sym_actual] = ACTIONS(4619), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4621), - [anon_sym_continue_AT] = ACTIONS(4621), - [anon_sym_break_AT] = ACTIONS(4621), - [sym_real_literal] = ACTIONS(4621), - [sym_integer_literal] = ACTIONS(4619), - [sym_hex_literal] = ACTIONS(4621), - [sym_bin_literal] = ACTIONS(4621), - [anon_sym_true] = ACTIONS(4619), - [anon_sym_false] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4621), - [sym__backtick_identifier] = ACTIONS(4621), - [sym__automatic_semicolon] = ACTIONS(4621), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4621), + [3595] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(6770), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(6766), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, - [3652] = { - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [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(4462), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4462), - [anon_sym_DOT] = 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_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), + [3596] = { + [sym_function_body] = STATE(3362), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), }, - [3653] = { - [sym__alpha_identifier] = ACTIONS(4521), - [anon_sym_AT] = ACTIONS(4523), - [anon_sym_COLON] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_as] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(4521), - [anon_sym_LBRACE] = ACTIONS(4523), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_COMMA] = ACTIONS(4523), - [anon_sym_LT] = ACTIONS(4521), - [anon_sym_GT] = ACTIONS(4521), - [anon_sym_where] = ACTIONS(4521), - [anon_sym_DOT] = ACTIONS(4521), - [anon_sym_SEMI] = ACTIONS(4523), - [anon_sym_get] = ACTIONS(4521), - [anon_sym_set] = ACTIONS(4521), - [anon_sym_STAR] = ACTIONS(4521), - [sym_label] = ACTIONS(4523), - [anon_sym_in] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_QMARK_COLON] = ACTIONS(4523), - [anon_sym_AMP_AMP] = ACTIONS(4523), - [anon_sym_PIPE_PIPE] = ACTIONS(4523), - [anon_sym_else] = ACTIONS(4521), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(4523), - [anon_sym_DASH_EQ] = ACTIONS(4523), - [anon_sym_STAR_EQ] = ACTIONS(4523), - [anon_sym_SLASH_EQ] = ACTIONS(4523), - [anon_sym_PERCENT_EQ] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(4521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), - [anon_sym_EQ_EQ] = ACTIONS(4521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), - [anon_sym_LT_EQ] = ACTIONS(4523), - [anon_sym_GT_EQ] = ACTIONS(4523), - [anon_sym_BANGin] = ACTIONS(4523), - [anon_sym_is] = ACTIONS(4521), - [anon_sym_BANGis] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4521), - [anon_sym_DASH] = ACTIONS(4521), - [anon_sym_SLASH] = ACTIONS(4521), - [anon_sym_PERCENT] = ACTIONS(4521), - [anon_sym_as_QMARK] = ACTIONS(4523), - [anon_sym_PLUS_PLUS] = ACTIONS(4523), - [anon_sym_DASH_DASH] = ACTIONS(4523), - [anon_sym_BANG_BANG] = ACTIONS(4523), - [anon_sym_suspend] = ACTIONS(4521), - [anon_sym_sealed] = ACTIONS(4521), - [anon_sym_annotation] = ACTIONS(4521), - [anon_sym_data] = ACTIONS(4521), - [anon_sym_inner] = ACTIONS(4521), - [anon_sym_override] = ACTIONS(4521), - [anon_sym_lateinit] = ACTIONS(4521), - [anon_sym_public] = ACTIONS(4521), - [anon_sym_private] = ACTIONS(4521), - [anon_sym_internal] = ACTIONS(4521), - [anon_sym_protected] = ACTIONS(4521), - [anon_sym_tailrec] = ACTIONS(4521), - [anon_sym_operator] = ACTIONS(4521), - [anon_sym_infix] = ACTIONS(4521), - [anon_sym_inline] = ACTIONS(4521), - [anon_sym_external] = ACTIONS(4521), - [sym_property_modifier] = ACTIONS(4521), - [anon_sym_abstract] = ACTIONS(4521), - [anon_sym_final] = ACTIONS(4521), - [anon_sym_open] = ACTIONS(4521), - [anon_sym_vararg] = ACTIONS(4521), - [anon_sym_noinline] = ACTIONS(4521), - [anon_sym_crossinline] = ACTIONS(4521), - [anon_sym_expect] = ACTIONS(4521), - [anon_sym_actual] = ACTIONS(4521), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4523), - [sym__automatic_semicolon] = ACTIONS(4523), - [sym_safe_nav] = ACTIONS(4523), + [3597] = { + [sym_class_body] = STATE(3821), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_suspend] = ACTIONS(4642), + [anon_sym_sealed] = ACTIONS(4642), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_lateinit] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_tailrec] = ACTIONS(4642), + [anon_sym_operator] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_inline] = ACTIONS(4642), + [anon_sym_external] = ACTIONS(4642), + [sym_property_modifier] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_vararg] = ACTIONS(4642), + [anon_sym_noinline] = ACTIONS(4642), + [anon_sym_crossinline] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4644), + [sym__automatic_semicolon] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), [sym_multiline_comment] = ACTIONS(3), }, - [3654] = { - [sym_class_body] = STATE(3677), - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), + [3598] = { + [sym__alpha_identifier] = ACTIONS(4668), + [anon_sym_AT] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_by] = ACTIONS(4668), + [anon_sym_LT] = ACTIONS(4668), + [anon_sym_GT] = ACTIONS(4668), + [anon_sym_where] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(4668), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4668), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4668), + [anon_sym_DOT_DOT] = ACTIONS(4670), + [anon_sym_QMARK_COLON] = ACTIONS(4670), + [anon_sym_AMP_AMP] = ACTIONS(4670), + [anon_sym_PIPE_PIPE] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_COLON_COLON] = ACTIONS(4670), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_PERCENT_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4668), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ] = ACTIONS(4668), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4670), + [anon_sym_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_BANGin] = ACTIONS(4670), + [anon_sym_is] = ACTIONS(4668), + [anon_sym_BANGis] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_SLASH] = ACTIONS(4668), + [anon_sym_PERCENT] = ACTIONS(4668), + [anon_sym_as_QMARK] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4670), + [anon_sym_suspend] = ACTIONS(4668), + [anon_sym_sealed] = ACTIONS(4668), + [anon_sym_annotation] = ACTIONS(4668), + [anon_sym_data] = ACTIONS(4668), + [anon_sym_inner] = ACTIONS(4668), + [anon_sym_override] = ACTIONS(4668), + [anon_sym_lateinit] = ACTIONS(4668), + [anon_sym_public] = ACTIONS(4668), + [anon_sym_private] = ACTIONS(4668), + [anon_sym_internal] = ACTIONS(4668), + [anon_sym_protected] = ACTIONS(4668), + [anon_sym_tailrec] = ACTIONS(4668), + [anon_sym_operator] = ACTIONS(4668), + [anon_sym_infix] = ACTIONS(4668), + [anon_sym_inline] = ACTIONS(4668), + [anon_sym_external] = ACTIONS(4668), + [sym_property_modifier] = ACTIONS(4668), + [anon_sym_abstract] = ACTIONS(4668), + [anon_sym_final] = ACTIONS(4668), + [anon_sym_open] = ACTIONS(4668), + [anon_sym_vararg] = ACTIONS(4668), + [anon_sym_noinline] = ACTIONS(4668), + [anon_sym_crossinline] = ACTIONS(4668), + [anon_sym_expect] = ACTIONS(4668), + [anon_sym_actual] = ACTIONS(4668), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4670), + [sym__automatic_semicolon] = ACTIONS(4670), + [sym_safe_nav] = ACTIONS(4670), [sym_multiline_comment] = ACTIONS(3), }, - [3655] = { - [sym__alpha_identifier] = ACTIONS(4634), - [anon_sym_AT] = ACTIONS(4636), - [anon_sym_LBRACK] = ACTIONS(4636), - [anon_sym_as] = ACTIONS(4634), - [anon_sym_EQ] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4636), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4636), - [anon_sym_COMMA] = ACTIONS(4636), - [anon_sym_by] = ACTIONS(4634), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_where] = ACTIONS(4634), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_SEMI] = ACTIONS(4636), - [anon_sym_get] = ACTIONS(4634), - [anon_sym_set] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4634), - [sym_label] = ACTIONS(4636), - [anon_sym_in] = ACTIONS(4634), - [anon_sym_DOT_DOT] = ACTIONS(4636), - [anon_sym_QMARK_COLON] = ACTIONS(4636), - [anon_sym_AMP_AMP] = ACTIONS(4636), - [anon_sym_PIPE_PIPE] = ACTIONS(4636), - [anon_sym_else] = ACTIONS(4634), - [anon_sym_COLON_COLON] = ACTIONS(4636), - [anon_sym_PLUS_EQ] = ACTIONS(4636), - [anon_sym_DASH_EQ] = ACTIONS(4636), - [anon_sym_STAR_EQ] = ACTIONS(4636), - [anon_sym_SLASH_EQ] = ACTIONS(4636), - [anon_sym_PERCENT_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ] = ACTIONS(4634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4636), - [anon_sym_LT_EQ] = ACTIONS(4636), - [anon_sym_GT_EQ] = ACTIONS(4636), - [anon_sym_BANGin] = ACTIONS(4636), - [anon_sym_is] = ACTIONS(4634), - [anon_sym_BANGis] = ACTIONS(4636), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_SLASH] = ACTIONS(4634), - [anon_sym_PERCENT] = ACTIONS(4634), - [anon_sym_as_QMARK] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_BANG_BANG] = ACTIONS(4636), - [anon_sym_suspend] = ACTIONS(4634), - [anon_sym_sealed] = ACTIONS(4634), - [anon_sym_annotation] = ACTIONS(4634), - [anon_sym_data] = ACTIONS(4634), - [anon_sym_inner] = ACTIONS(4634), - [anon_sym_override] = ACTIONS(4634), - [anon_sym_lateinit] = ACTIONS(4634), - [anon_sym_public] = ACTIONS(4634), - [anon_sym_private] = ACTIONS(4634), - [anon_sym_internal] = ACTIONS(4634), - [anon_sym_protected] = ACTIONS(4634), - [anon_sym_tailrec] = ACTIONS(4634), - [anon_sym_operator] = ACTIONS(4634), - [anon_sym_infix] = ACTIONS(4634), - [anon_sym_inline] = ACTIONS(4634), - [anon_sym_external] = ACTIONS(4634), - [sym_property_modifier] = ACTIONS(4634), - [anon_sym_abstract] = ACTIONS(4634), - [anon_sym_final] = ACTIONS(4634), - [anon_sym_open] = ACTIONS(4634), - [anon_sym_vararg] = ACTIONS(4634), - [anon_sym_noinline] = ACTIONS(4634), - [anon_sym_crossinline] = ACTIONS(4634), - [anon_sym_expect] = ACTIONS(4634), - [anon_sym_actual] = ACTIONS(4634), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4636), - [sym__automatic_semicolon] = ACTIONS(4636), - [sym_safe_nav] = ACTIONS(4636), - [sym_multiline_comment] = ACTIONS(3), + [3599] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), }, - [3656] = { - [sym_enum_class_body] = STATE(3727), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5413), - [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_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), + [3600] = { + [sym_enum_class_body] = STATE(3776), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3657] = { - [sym_enum_class_body] = STATE(3803), + [3601] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3654), [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(5413), + [anon_sym_LBRACE] = ACTIONS(4654), [anon_sym_RBRACE] = ACTIONS(4654), [anon_sym_LPAREN] = ACTIONS(4654), [anon_sym_COMMA] = ACTIONS(4654), @@ -395614,10 +391211,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, - [3658] = { + [3602] = { + [sym_function_body] = STATE(3439), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [3603] = { + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_as] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(4508), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_LT] = ACTIONS(4506), + [anon_sym_GT] = ACTIONS(4506), + [anon_sym_where] = ACTIONS(4506), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4506), + [sym_label] = ACTIONS(4508), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_DOT_DOT] = ACTIONS(4508), + [anon_sym_QMARK_COLON] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_PLUS_EQ] = ACTIONS(4508), + [anon_sym_DASH_EQ] = ACTIONS(4508), + [anon_sym_STAR_EQ] = ACTIONS(4508), + [anon_sym_SLASH_EQ] = ACTIONS(4508), + [anon_sym_PERCENT_EQ] = ACTIONS(4508), + [anon_sym_BANG_EQ] = ACTIONS(4506), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4508), + [anon_sym_EQ_EQ] = ACTIONS(4506), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4508), + [anon_sym_LT_EQ] = ACTIONS(4508), + [anon_sym_GT_EQ] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_SLASH] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_as_QMARK] = ACTIONS(4508), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG_BANG] = ACTIONS(4508), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_safe_nav] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + }, + [3604] = { + [sym_class_body] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + }, + [3605] = { [sym__alpha_identifier] = ACTIONS(4589), [anon_sym_AT] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4589), [anon_sym_LBRACK] = ACTIONS(4591), [anon_sym_as] = ACTIONS(4589), [anon_sym_EQ] = ACTIONS(4589), @@ -395625,6 +391461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4591), [anon_sym_LPAREN] = ACTIONS(4591), [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_by] = ACTIONS(4589), [anon_sym_LT] = ACTIONS(4589), [anon_sym_GT] = ACTIONS(4589), [anon_sym_where] = ACTIONS(4589), @@ -395694,489 +391531,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4591), [sym_multiline_comment] = ACTIONS(3), }, - [3659] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6639), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [3606] = { + [sym_enum_class_body] = STATE(3741), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), }, - [3660] = { - [sym_class_body] = STATE(3786), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), + [3607] = { + [aux_sym_type_constraints_repeat1] = STATE(3661), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_by] = 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(4517), + [sym_label] = ACTIONS(4515), + [anon_sym_in] = ACTIONS(4515), + [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_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_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4515), + [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_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), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4517), + }, + [3608] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [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_by] = ACTIONS(4585), + [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_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(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(4587), + [sym__automatic_semicolon] = ACTIONS(4587), + [sym_safe_nav] = ACTIONS(4587), [sym_multiline_comment] = ACTIONS(3), }, - [3661] = { - [sym_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), + [3609] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3665), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(6780), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_PLUS_EQ] = ACTIONS(4648), + [anon_sym_DASH_EQ] = ACTIONS(4648), + [anon_sym_STAR_EQ] = ACTIONS(4648), + [anon_sym_SLASH_EQ] = ACTIONS(4648), + [anon_sym_PERCENT_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4646), + [anon_sym_sealed] = ACTIONS(4646), + [anon_sym_annotation] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_lateinit] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_protected] = ACTIONS(4646), + [anon_sym_tailrec] = ACTIONS(4646), + [anon_sym_operator] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_inline] = ACTIONS(4646), + [anon_sym_external] = ACTIONS(4646), + [sym_property_modifier] = ACTIONS(4646), + [anon_sym_abstract] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_vararg] = ACTIONS(4646), + [anon_sym_noinline] = ACTIONS(4646), + [anon_sym_crossinline] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4648), + [sym__automatic_semicolon] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), [sym_multiline_comment] = ACTIONS(3), }, - [3662] = { - [sym__alpha_identifier] = ACTIONS(4597), - [anon_sym_AT] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_as] = ACTIONS(4597), - [anon_sym_EQ] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_RBRACE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4597), - [anon_sym_where] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_get] = ACTIONS(4597), - [anon_sym_set] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4597), - [sym_label] = ACTIONS(4599), - [anon_sym_in] = ACTIONS(4597), - [anon_sym_DOT_DOT] = ACTIONS(4599), - [anon_sym_QMARK_COLON] = ACTIONS(4599), - [anon_sym_AMP_AMP] = ACTIONS(4599), - [anon_sym_PIPE_PIPE] = ACTIONS(4599), - [anon_sym_else] = ACTIONS(4597), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym_PLUS_EQ] = ACTIONS(4599), - [anon_sym_DASH_EQ] = ACTIONS(4599), - [anon_sym_STAR_EQ] = ACTIONS(4599), - [anon_sym_SLASH_EQ] = ACTIONS(4599), - [anon_sym_PERCENT_EQ] = ACTIONS(4599), - [anon_sym_BANG_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4599), - [anon_sym_EQ_EQ] = ACTIONS(4597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4599), - [anon_sym_LT_EQ] = ACTIONS(4599), - [anon_sym_GT_EQ] = ACTIONS(4599), - [anon_sym_BANGin] = ACTIONS(4599), - [anon_sym_is] = ACTIONS(4597), - [anon_sym_BANGis] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4597), - [anon_sym_PERCENT] = ACTIONS(4597), - [anon_sym_as_QMARK] = ACTIONS(4599), - [anon_sym_PLUS_PLUS] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4599), - [anon_sym_BANG_BANG] = ACTIONS(4599), - [anon_sym_suspend] = ACTIONS(4597), - [anon_sym_sealed] = ACTIONS(4597), - [anon_sym_annotation] = ACTIONS(4597), - [anon_sym_data] = ACTIONS(4597), - [anon_sym_inner] = ACTIONS(4597), - [anon_sym_override] = ACTIONS(4597), - [anon_sym_lateinit] = ACTIONS(4597), - [anon_sym_public] = ACTIONS(4597), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_internal] = ACTIONS(4597), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_tailrec] = ACTIONS(4597), - [anon_sym_operator] = ACTIONS(4597), - [anon_sym_infix] = ACTIONS(4597), - [anon_sym_inline] = ACTIONS(4597), - [anon_sym_external] = ACTIONS(4597), - [sym_property_modifier] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_final] = ACTIONS(4597), - [anon_sym_open] = ACTIONS(4597), - [anon_sym_vararg] = ACTIONS(4597), - [anon_sym_noinline] = ACTIONS(4597), - [anon_sym_crossinline] = ACTIONS(4597), - [anon_sym_expect] = ACTIONS(4597), - [anon_sym_actual] = ACTIONS(4597), + [3610] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4700), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_suspend] = ACTIONS(4698), + [anon_sym_sealed] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_lateinit] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4698), + [anon_sym_tailrec] = ACTIONS(4698), + [anon_sym_operator] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_inline] = ACTIONS(4698), + [anon_sym_external] = ACTIONS(4698), + [sym_property_modifier] = ACTIONS(4698), + [anon_sym_abstract] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_vararg] = ACTIONS(4698), + [anon_sym_noinline] = ACTIONS(4698), + [anon_sym_crossinline] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4599), - [sym__automatic_semicolon] = ACTIONS(4599), - [sym_safe_nav] = ACTIONS(4599), + [sym__backtick_identifier] = ACTIONS(4700), + [sym__automatic_semicolon] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), [sym_multiline_comment] = ACTIONS(3), }, - [3663] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1817), - [sym__comparison_operator] = STATE(1832), - [sym__in_operator] = STATE(1833), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1834), - [sym__multiplicative_operator] = STATE(1835), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1836), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3611] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4684), + [sym__automatic_semicolon] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + }, + [3612] = { + [sym_type_constraints] = STATE(3780), + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + }, + [3613] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3086), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(6705), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6708), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6728), - [anon_sym_DOT_DOT] = ACTIONS(6712), - [anon_sym_QMARK_COLON] = ACTIONS(6714), - [anon_sym_AMP_AMP] = ACTIONS(6730), - [anon_sym_PIPE_PIPE] = ACTIONS(6732), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(6734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6736), - [anon_sym_EQ_EQ] = ACTIONS(6734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6736), - [anon_sym_LT_EQ] = ACTIONS(6738), - [anon_sym_GT_EQ] = ACTIONS(6738), - [anon_sym_BANGin] = ACTIONS(6740), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6708), - [anon_sym_PERCENT] = ACTIONS(6708), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_DOT_DOT] = ACTIONS(6715), + [anon_sym_QMARK_COLON] = ACTIONS(6717), + [anon_sym_AMP_AMP] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(6725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6727), + [anon_sym_EQ_EQ] = ACTIONS(6725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6727), + [anon_sym_LT_EQ] = ACTIONS(6729), + [anon_sym_GT_EQ] = ACTIONS(6729), + [anon_sym_BANGin] = ACTIONS(6731), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6737), + [anon_sym_DASH] = ACTIONS(6737), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3664] = { - [sym_enum_class_body] = STATE(3673), - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3665] = { + [3614] = { [sym__alpha_identifier] = ACTIONS(4601), [anon_sym_AT] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4601), [anon_sym_LBRACK] = ACTIONS(4603), [anon_sym_as] = ACTIONS(4601), [anon_sym_EQ] = ACTIONS(4601), @@ -396184,7 +392182,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4603), [anon_sym_LPAREN] = ACTIONS(4603), [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_by] = ACTIONS(4601), [anon_sym_LT] = ACTIONS(4601), [anon_sym_GT] = ACTIONS(4601), [anon_sym_where] = ACTIONS(4601), @@ -396254,725 +392251,887 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4603), [sym_multiline_comment] = ACTIONS(3), }, - [3666] = { - [sym_class_body] = STATE(3737), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), - [sym_multiline_comment] = ACTIONS(3), + [3615] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_by] = 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_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_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_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [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_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), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), }, - [3667] = { - [sym__alpha_identifier] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4109), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_EQ] = ACTIONS(4109), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4107), - [anon_sym_where] = ACTIONS(4107), - [anon_sym_object] = ACTIONS(4107), - [anon_sym_fun] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym_get] = ACTIONS(4107), - [anon_sym_set] = ACTIONS(4107), - [anon_sym_this] = ACTIONS(4107), - [anon_sym_super] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4109), - [sym_label] = ACTIONS(4107), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_null] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_else] = ACTIONS(4107), - [anon_sym_when] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_BANGin] = ACTIONS(4109), - [anon_sym_is] = ACTIONS(4107), - [anon_sym_BANGis] = ACTIONS(4109), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4107), - [anon_sym_suspend] = ACTIONS(4107), - [anon_sym_sealed] = ACTIONS(4107), - [anon_sym_annotation] = ACTIONS(4107), - [anon_sym_data] = ACTIONS(4107), - [anon_sym_inner] = ACTIONS(4107), - [anon_sym_override] = ACTIONS(4107), - [anon_sym_lateinit] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_internal] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_tailrec] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym_external] = ACTIONS(4107), - [sym_property_modifier] = ACTIONS(4107), - [anon_sym_abstract] = ACTIONS(4107), - [anon_sym_final] = ACTIONS(4107), - [anon_sym_open] = ACTIONS(4107), - [anon_sym_vararg] = ACTIONS(4107), - [anon_sym_noinline] = ACTIONS(4107), - [anon_sym_crossinline] = ACTIONS(4107), - [anon_sym_expect] = ACTIONS(4107), - [anon_sym_actual] = ACTIONS(4107), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4109), - [anon_sym_continue_AT] = ACTIONS(4109), - [anon_sym_break_AT] = ACTIONS(4109), - [sym_real_literal] = ACTIONS(4109), - [sym_integer_literal] = ACTIONS(4107), - [sym_hex_literal] = ACTIONS(4109), - [sym_bin_literal] = ACTIONS(4109), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [anon_sym_SQUOTE] = ACTIONS(4109), - [sym__backtick_identifier] = ACTIONS(4109), - [sym__automatic_semicolon] = ACTIONS(4109), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4109), + [3616] = { + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), }, - [3668] = { - [sym__alpha_identifier] = ACTIONS(4525), - [anon_sym_AT] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4527), - [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_by] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_where] = ACTIONS(4525), - [anon_sym_DOT] = 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_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), + [3617] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, - [3669] = { - [sym_enum_class_body] = STATE(3752), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [3618] = { + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [3670] = { - [sym_class_body] = STATE(3742), - [sym__alpha_identifier] = ACTIONS(4680), - [anon_sym_AT] = ACTIONS(4682), - [anon_sym_LBRACK] = ACTIONS(4682), - [anon_sym_as] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(4680), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_LPAREN] = ACTIONS(4682), - [anon_sym_COMMA] = ACTIONS(4682), - [anon_sym_LT] = ACTIONS(4680), - [anon_sym_GT] = ACTIONS(4680), - [anon_sym_where] = ACTIONS(4680), - [anon_sym_DOT] = 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_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), + [3619] = { + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3671] = { - [sym_enum_class_body] = STATE(3737), - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), + [3620] = { + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, - [3672] = { - [sym__alpha_identifier] = ACTIONS(4537), - [anon_sym_AT] = ACTIONS(4539), - [anon_sym_COLON] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4537), - [anon_sym_EQ] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_COMMA] = ACTIONS(4539), - [anon_sym_LT] = ACTIONS(4537), - [anon_sym_GT] = ACTIONS(4537), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4537), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_get] = ACTIONS(4537), - [anon_sym_set] = ACTIONS(4537), - [anon_sym_STAR] = ACTIONS(4537), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4537), - [anon_sym_DOT_DOT] = ACTIONS(4539), - [anon_sym_QMARK_COLON] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4539), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4537), - [anon_sym_COLON_COLON] = ACTIONS(4539), - [anon_sym_PLUS_EQ] = ACTIONS(4539), - [anon_sym_DASH_EQ] = ACTIONS(4539), - [anon_sym_STAR_EQ] = ACTIONS(4539), - [anon_sym_SLASH_EQ] = ACTIONS(4539), - [anon_sym_PERCENT_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4539), - [anon_sym_LT_EQ] = ACTIONS(4539), - [anon_sym_GT_EQ] = ACTIONS(4539), - [anon_sym_BANGin] = ACTIONS(4539), - [anon_sym_is] = ACTIONS(4537), - [anon_sym_BANGis] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_SLASH] = ACTIONS(4537), - [anon_sym_PERCENT] = ACTIONS(4537), - [anon_sym_as_QMARK] = ACTIONS(4539), - [anon_sym_PLUS_PLUS] = ACTIONS(4539), - [anon_sym_DASH_DASH] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4539), - [anon_sym_suspend] = ACTIONS(4537), - [anon_sym_sealed] = ACTIONS(4537), - [anon_sym_annotation] = ACTIONS(4537), - [anon_sym_data] = ACTIONS(4537), - [anon_sym_inner] = ACTIONS(4537), - [anon_sym_override] = ACTIONS(4537), - [anon_sym_lateinit] = ACTIONS(4537), - [anon_sym_public] = ACTIONS(4537), - [anon_sym_private] = ACTIONS(4537), - [anon_sym_internal] = ACTIONS(4537), - [anon_sym_protected] = ACTIONS(4537), - [anon_sym_tailrec] = ACTIONS(4537), - [anon_sym_operator] = ACTIONS(4537), - [anon_sym_infix] = ACTIONS(4537), - [anon_sym_inline] = ACTIONS(4537), - [anon_sym_external] = ACTIONS(4537), - [sym_property_modifier] = ACTIONS(4537), - [anon_sym_abstract] = ACTIONS(4537), - [anon_sym_final] = ACTIONS(4537), - [anon_sym_open] = ACTIONS(4537), - [anon_sym_vararg] = ACTIONS(4537), - [anon_sym_noinline] = ACTIONS(4537), - [anon_sym_crossinline] = ACTIONS(4537), - [anon_sym_expect] = ACTIONS(4537), - [anon_sym_actual] = ACTIONS(4537), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4539), - [sym__automatic_semicolon] = ACTIONS(4539), - [sym_safe_nav] = ACTIONS(4539), + [3621] = { + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, - [3673] = { - [sym__alpha_identifier] = ACTIONS(4390), - [anon_sym_AT] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(4392), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4390), - [anon_sym_GT] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_get] = ACTIONS(4390), - [anon_sym_set] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4390), - [sym_label] = ACTIONS(4392), - [anon_sym_in] = ACTIONS(4390), - [anon_sym_DOT_DOT] = ACTIONS(4392), - [anon_sym_QMARK_COLON] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_else] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_PLUS_EQ] = ACTIONS(4392), - [anon_sym_DASH_EQ] = ACTIONS(4392), - [anon_sym_STAR_EQ] = ACTIONS(4392), - [anon_sym_SLASH_EQ] = ACTIONS(4392), - [anon_sym_PERCENT_EQ] = ACTIONS(4392), - [anon_sym_BANG_EQ] = ACTIONS(4390), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), - [anon_sym_EQ_EQ] = ACTIONS(4390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), - [anon_sym_LT_EQ] = ACTIONS(4392), - [anon_sym_GT_EQ] = ACTIONS(4392), - [anon_sym_BANGin] = ACTIONS(4392), - [anon_sym_is] = ACTIONS(4390), - [anon_sym_BANGis] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_SLASH] = ACTIONS(4390), - [anon_sym_PERCENT] = ACTIONS(4390), - [anon_sym_as_QMARK] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_BANG_BANG] = ACTIONS(4392), - [anon_sym_suspend] = ACTIONS(4390), - [anon_sym_sealed] = ACTIONS(4390), - [anon_sym_annotation] = ACTIONS(4390), - [anon_sym_data] = ACTIONS(4390), - [anon_sym_inner] = ACTIONS(4390), - [anon_sym_override] = ACTIONS(4390), - [anon_sym_lateinit] = ACTIONS(4390), - [anon_sym_public] = ACTIONS(4390), - [anon_sym_private] = ACTIONS(4390), - [anon_sym_internal] = ACTIONS(4390), - [anon_sym_protected] = ACTIONS(4390), - [anon_sym_tailrec] = ACTIONS(4390), - [anon_sym_operator] = ACTIONS(4390), - [anon_sym_infix] = ACTIONS(4390), - [anon_sym_inline] = ACTIONS(4390), - [anon_sym_external] = ACTIONS(4390), - [sym_property_modifier] = ACTIONS(4390), - [anon_sym_abstract] = ACTIONS(4390), - [anon_sym_final] = ACTIONS(4390), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_vararg] = ACTIONS(4390), - [anon_sym_noinline] = ACTIONS(4390), - [anon_sym_crossinline] = ACTIONS(4390), - [anon_sym_expect] = ACTIONS(4390), - [anon_sym_actual] = ACTIONS(4390), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4392), - [sym__automatic_semicolon] = ACTIONS(4392), - [sym_safe_nav] = ACTIONS(4392), + [3622] = { + [sym_function_body] = STATE(3350), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, - [3674] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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_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), + [3623] = { + [sym_function_body] = STATE(3171), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6782), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), [sym_multiline_comment] = ACTIONS(3), }, - [3675] = { + [3624] = { + [sym_type_constraints] = STATE(3785), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [3625] = { + [sym_type_constraints] = STATE(3783), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [3626] = { [sym__alpha_identifier] = ACTIONS(4593), [anon_sym_AT] = ACTIONS(4595), [anon_sym_LBRACK] = ACTIONS(4595), @@ -396982,6 +393141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4595), [anon_sym_LPAREN] = ACTIONS(4595), [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_by] = ACTIONS(4593), [anon_sym_LT] = ACTIONS(4593), [anon_sym_GT] = ACTIONS(4593), [anon_sym_where] = ACTIONS(4593), @@ -397051,2788 +393211,4019 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4595), [sym_multiline_comment] = ACTIONS(3), }, - [3676] = { - [sym__alpha_identifier] = ACTIONS(4462), - [anon_sym_AT] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_EQ] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_by] = 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_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_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_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4462), - [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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4464), + [3627] = { + [sym_type_constraints] = STATE(3768), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, - [3677] = { - [sym__alpha_identifier] = ACTIONS(4340), - [anon_sym_AT] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_get] = ACTIONS(4340), - [anon_sym_set] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [sym_label] = ACTIONS(4342), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_QMARK_COLON] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [anon_sym_else] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(4342), - [anon_sym_PLUS_EQ] = ACTIONS(4342), - [anon_sym_DASH_EQ] = ACTIONS(4342), - [anon_sym_STAR_EQ] = ACTIONS(4342), - [anon_sym_SLASH_EQ] = ACTIONS(4342), - [anon_sym_PERCENT_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_BANGin] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_BANGis] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4340), - [anon_sym_as_QMARK] = ACTIONS(4342), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_BANG_BANG] = ACTIONS(4342), - [anon_sym_suspend] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_annotation] = ACTIONS(4340), - [anon_sym_data] = ACTIONS(4340), - [anon_sym_inner] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_lateinit] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_tailrec] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_infix] = ACTIONS(4340), - [anon_sym_inline] = ACTIONS(4340), - [anon_sym_external] = ACTIONS(4340), - [sym_property_modifier] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_final] = ACTIONS(4340), - [anon_sym_open] = ACTIONS(4340), - [anon_sym_vararg] = ACTIONS(4340), - [anon_sym_noinline] = ACTIONS(4340), - [anon_sym_crossinline] = ACTIONS(4340), - [anon_sym_expect] = ACTIONS(4340), - [anon_sym_actual] = ACTIONS(4340), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4342), - [sym__automatic_semicolon] = ACTIONS(4342), - [sym_safe_nav] = ACTIONS(4342), + [3628] = { + [sym_class_body] = STATE(3741), + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), }, - [3678] = { - [sym__alpha_identifier] = ACTIONS(4989), - [anon_sym_AT] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_where] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_get] = ACTIONS(4989), - [anon_sym_set] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4989), - [sym_label] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_QMARK_COLON] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_else] = ACTIONS(4989), - [anon_sym_COLON_COLON] = ACTIONS(4991), - [anon_sym_PLUS_EQ] = ACTIONS(4991), - [anon_sym_DASH_EQ] = ACTIONS(4991), - [anon_sym_STAR_EQ] = ACTIONS(4991), - [anon_sym_SLASH_EQ] = ACTIONS(4991), - [anon_sym_PERCENT_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_BANGin] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_BANGis] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_as_QMARK] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_BANG_BANG] = ACTIONS(4991), - [anon_sym_suspend] = ACTIONS(4989), - [anon_sym_sealed] = ACTIONS(4989), - [anon_sym_annotation] = ACTIONS(4989), - [anon_sym_data] = ACTIONS(4989), - [anon_sym_inner] = ACTIONS(4989), - [anon_sym_override] = ACTIONS(4989), - [anon_sym_lateinit] = ACTIONS(4989), - [anon_sym_public] = ACTIONS(4989), - [anon_sym_private] = ACTIONS(4989), - [anon_sym_internal] = ACTIONS(4989), - [anon_sym_protected] = ACTIONS(4989), - [anon_sym_tailrec] = ACTIONS(4989), - [anon_sym_operator] = ACTIONS(4989), - [anon_sym_infix] = ACTIONS(4989), - [anon_sym_inline] = ACTIONS(4989), - [anon_sym_external] = ACTIONS(4989), - [sym_property_modifier] = ACTIONS(4989), - [anon_sym_abstract] = ACTIONS(4989), - [anon_sym_final] = ACTIONS(4989), - [anon_sym_open] = ACTIONS(4989), - [anon_sym_vararg] = ACTIONS(4989), - [anon_sym_noinline] = ACTIONS(4989), - [anon_sym_crossinline] = ACTIONS(4989), - [anon_sym_expect] = ACTIONS(4989), - [anon_sym_actual] = ACTIONS(4989), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4991), - [sym__automatic_semicolon] = ACTIONS(4991), - [sym_safe_nav] = ACTIONS(4991), + [3629] = { + [sym_type_constraints] = STATE(3763), + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_RBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [anon_sym_DASH_GT] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, - [3679] = { - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), + [3630] = { + [sym_enum_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [3680] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(6826), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), + [3631] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6784), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [3681] = { - [sym__alpha_identifier] = ACTIONS(4525), - [anon_sym_AT] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_RBRACE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_by] = 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(4527), - [sym_label] = ACTIONS(4525), - [anon_sym_in] = ACTIONS(4525), - [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_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_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4525), - [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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4527), + [3632] = { + [ts_builtin_sym_end] = ACTIONS(6788), + [sym__alpha_identifier] = ACTIONS(6790), + [anon_sym_AT] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6788), + [anon_sym_package] = ACTIONS(6790), + [anon_sym_import] = ACTIONS(6790), + [anon_sym_typealias] = ACTIONS(6790), + [anon_sym_class] = ACTIONS(6790), + [anon_sym_interface] = ACTIONS(6790), + [anon_sym_enum] = ACTIONS(6790), + [anon_sym_LBRACE] = ACTIONS(6788), + [anon_sym_LPAREN] = ACTIONS(6788), + [anon_sym_val] = ACTIONS(6790), + [anon_sym_var] = ACTIONS(6790), + [anon_sym_object] = ACTIONS(6790), + [anon_sym_fun] = ACTIONS(6790), + [anon_sym_get] = ACTIONS(6790), + [anon_sym_set] = ACTIONS(6790), + [anon_sym_this] = ACTIONS(6790), + [anon_sym_super] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6788), + [sym_label] = ACTIONS(6790), + [anon_sym_for] = ACTIONS(6790), + [anon_sym_while] = ACTIONS(6790), + [anon_sym_do] = ACTIONS(6790), + [anon_sym_null] = ACTIONS(6790), + [anon_sym_if] = ACTIONS(6790), + [anon_sym_when] = ACTIONS(6790), + [anon_sym_try] = ACTIONS(6790), + [anon_sym_throw] = ACTIONS(6790), + [anon_sym_return] = ACTIONS(6790), + [anon_sym_continue] = ACTIONS(6790), + [anon_sym_break] = ACTIONS(6790), + [anon_sym_COLON_COLON] = ACTIONS(6788), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_BANG] = ACTIONS(6788), + [anon_sym_suspend] = ACTIONS(6790), + [anon_sym_sealed] = ACTIONS(6790), + [anon_sym_annotation] = ACTIONS(6790), + [anon_sym_data] = ACTIONS(6790), + [anon_sym_inner] = ACTIONS(6790), + [anon_sym_override] = ACTIONS(6790), + [anon_sym_lateinit] = ACTIONS(6790), + [anon_sym_public] = ACTIONS(6790), + [anon_sym_private] = ACTIONS(6790), + [anon_sym_internal] = ACTIONS(6790), + [anon_sym_protected] = ACTIONS(6790), + [anon_sym_tailrec] = ACTIONS(6790), + [anon_sym_operator] = ACTIONS(6790), + [anon_sym_infix] = ACTIONS(6790), + [anon_sym_inline] = ACTIONS(6790), + [anon_sym_external] = ACTIONS(6790), + [sym_property_modifier] = ACTIONS(6790), + [anon_sym_abstract] = ACTIONS(6790), + [anon_sym_final] = ACTIONS(6790), + [anon_sym_open] = ACTIONS(6790), + [anon_sym_vararg] = ACTIONS(6790), + [anon_sym_noinline] = ACTIONS(6790), + [anon_sym_crossinline] = ACTIONS(6790), + [anon_sym_expect] = ACTIONS(6790), + [anon_sym_actual] = ACTIONS(6790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6788), + [anon_sym_continue_AT] = ACTIONS(6788), + [anon_sym_break_AT] = ACTIONS(6788), + [sym_real_literal] = ACTIONS(6788), + [sym_integer_literal] = ACTIONS(6790), + [sym_hex_literal] = ACTIONS(6788), + [sym_bin_literal] = ACTIONS(6788), + [anon_sym_true] = ACTIONS(6790), + [anon_sym_false] = ACTIONS(6790), + [anon_sym_SQUOTE] = ACTIONS(6788), + [sym__backtick_identifier] = ACTIONS(6788), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6788), }, - [3682] = { - [sym__alpha_identifier] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_COMMA] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_where] = ACTIONS(4404), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_SEMI] = ACTIONS(4406), - [anon_sym_get] = ACTIONS(4404), - [anon_sym_set] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [sym_label] = ACTIONS(4406), - [anon_sym_in] = ACTIONS(4404), - [anon_sym_DOT_DOT] = ACTIONS(4406), - [anon_sym_QMARK_COLON] = ACTIONS(4406), - [anon_sym_AMP_AMP] = ACTIONS(4406), - [anon_sym_PIPE_PIPE] = ACTIONS(4406), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_COLON_COLON] = ACTIONS(4406), - [anon_sym_PLUS_EQ] = ACTIONS(4406), - [anon_sym_DASH_EQ] = ACTIONS(4406), - [anon_sym_STAR_EQ] = ACTIONS(4406), - [anon_sym_SLASH_EQ] = ACTIONS(4406), - [anon_sym_PERCENT_EQ] = ACTIONS(4406), - [anon_sym_BANG_EQ] = ACTIONS(4404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4406), - [anon_sym_EQ_EQ] = ACTIONS(4404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4406), - [anon_sym_LT_EQ] = ACTIONS(4406), - [anon_sym_GT_EQ] = ACTIONS(4406), - [anon_sym_BANGin] = ACTIONS(4406), - [anon_sym_is] = ACTIONS(4404), - [anon_sym_BANGis] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_SLASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_as_QMARK] = ACTIONS(4406), - [anon_sym_PLUS_PLUS] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_BANG_BANG] = ACTIONS(4406), - [anon_sym_suspend] = ACTIONS(4404), - [anon_sym_sealed] = ACTIONS(4404), - [anon_sym_annotation] = ACTIONS(4404), - [anon_sym_data] = ACTIONS(4404), - [anon_sym_inner] = ACTIONS(4404), - [anon_sym_override] = ACTIONS(4404), - [anon_sym_lateinit] = ACTIONS(4404), - [anon_sym_public] = ACTIONS(4404), - [anon_sym_private] = ACTIONS(4404), - [anon_sym_internal] = ACTIONS(4404), - [anon_sym_protected] = ACTIONS(4404), - [anon_sym_tailrec] = ACTIONS(4404), - [anon_sym_operator] = ACTIONS(4404), - [anon_sym_infix] = ACTIONS(4404), - [anon_sym_inline] = ACTIONS(4404), - [anon_sym_external] = ACTIONS(4404), - [sym_property_modifier] = ACTIONS(4404), - [anon_sym_abstract] = ACTIONS(4404), - [anon_sym_final] = ACTIONS(4404), - [anon_sym_open] = ACTIONS(4404), - [anon_sym_vararg] = ACTIONS(4404), - [anon_sym_noinline] = ACTIONS(4404), - [anon_sym_crossinline] = ACTIONS(4404), - [anon_sym_expect] = ACTIONS(4404), - [anon_sym_actual] = ACTIONS(4404), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4406), - [sym__automatic_semicolon] = ACTIONS(4406), - [sym_safe_nav] = ACTIONS(4406), - [sym_multiline_comment] = ACTIONS(3), + [3633] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6792), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [3683] = { - [sym__alpha_identifier] = ACTIONS(5093), - [anon_sym_AT] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5093), - [anon_sym_EQ] = ACTIONS(5093), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_where] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_get] = ACTIONS(5093), - [anon_sym_set] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [sym_label] = ACTIONS(5095), - [anon_sym_in] = ACTIONS(5093), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_QMARK_COLON] = ACTIONS(5095), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_else] = ACTIONS(5093), - [anon_sym_COLON_COLON] = ACTIONS(5095), - [anon_sym_PLUS_EQ] = ACTIONS(5095), - [anon_sym_DASH_EQ] = ACTIONS(5095), - [anon_sym_STAR_EQ] = ACTIONS(5095), - [anon_sym_SLASH_EQ] = ACTIONS(5095), - [anon_sym_PERCENT_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_BANGin] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5093), - [anon_sym_BANGis] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5093), - [anon_sym_as_QMARK] = ACTIONS(5095), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_BANG_BANG] = ACTIONS(5095), - [anon_sym_suspend] = ACTIONS(5093), - [anon_sym_sealed] = ACTIONS(5093), - [anon_sym_annotation] = ACTIONS(5093), - [anon_sym_data] = ACTIONS(5093), - [anon_sym_inner] = ACTIONS(5093), - [anon_sym_override] = ACTIONS(5093), - [anon_sym_lateinit] = ACTIONS(5093), - [anon_sym_public] = ACTIONS(5093), - [anon_sym_private] = ACTIONS(5093), - [anon_sym_internal] = ACTIONS(5093), - [anon_sym_protected] = ACTIONS(5093), - [anon_sym_tailrec] = ACTIONS(5093), - [anon_sym_operator] = ACTIONS(5093), - [anon_sym_infix] = ACTIONS(5093), - [anon_sym_inline] = ACTIONS(5093), - [anon_sym_external] = ACTIONS(5093), - [sym_property_modifier] = ACTIONS(5093), - [anon_sym_abstract] = ACTIONS(5093), - [anon_sym_final] = ACTIONS(5093), - [anon_sym_open] = ACTIONS(5093), - [anon_sym_vararg] = ACTIONS(5093), - [anon_sym_noinline] = ACTIONS(5093), - [anon_sym_crossinline] = ACTIONS(5093), - [anon_sym_expect] = ACTIONS(5093), - [anon_sym_actual] = ACTIONS(5093), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5095), - [sym__automatic_semicolon] = ACTIONS(5095), - [sym_safe_nav] = ACTIONS(5095), - [sym_multiline_comment] = ACTIONS(3), + [3634] = { + [sym_type_constraints] = STATE(3766), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), }, - [3684] = { - [sym__alpha_identifier] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [sym_label] = ACTIONS(3084), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(3084), - [anon_sym_QMARK_COLON] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_as_QMARK] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_BANG_BANG] = ACTIONS(3084), - [anon_sym_suspend] = ACTIONS(3082), - [anon_sym_sealed] = ACTIONS(3082), - [anon_sym_annotation] = ACTIONS(3082), - [anon_sym_data] = ACTIONS(3082), - [anon_sym_inner] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_lateinit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_internal] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_tailrec] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_infix] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_external] = ACTIONS(3082), - [sym_property_modifier] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_open] = ACTIONS(3082), - [anon_sym_vararg] = ACTIONS(3082), - [anon_sym_noinline] = ACTIONS(3082), - [anon_sym_crossinline] = ACTIONS(3082), - [anon_sym_expect] = ACTIONS(3082), - [anon_sym_actual] = ACTIONS(3082), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3084), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(3084), - [sym_multiline_comment] = ACTIONS(3), + [3635] = { + [sym_type_constraints] = STATE(3762), + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, - [3685] = { - [sym_class_body] = STATE(3472), - [sym_type_constraints] = STATE(3016), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), + [3636] = { + [sym__alpha_identifier] = ACTIONS(4597), + [anon_sym_AT] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4597), + [anon_sym_LBRACK] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_RBRACE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_where] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_get] = ACTIONS(4597), + [anon_sym_set] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4597), + [sym_label] = ACTIONS(4599), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4599), + [anon_sym_AMP_AMP] = ACTIONS(4599), + [anon_sym_PIPE_PIPE] = ACTIONS(4599), + [anon_sym_else] = ACTIONS(4597), + [anon_sym_COLON_COLON] = ACTIONS(4599), + [anon_sym_PLUS_EQ] = ACTIONS(4599), + [anon_sym_DASH_EQ] = ACTIONS(4599), + [anon_sym_STAR_EQ] = ACTIONS(4599), + [anon_sym_SLASH_EQ] = ACTIONS(4599), + [anon_sym_PERCENT_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4599), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_BANGin] = ACTIONS(4599), + [anon_sym_is] = ACTIONS(4597), + [anon_sym_BANGis] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4597), + [anon_sym_PERCENT] = ACTIONS(4597), + [anon_sym_as_QMARK] = ACTIONS(4599), + [anon_sym_PLUS_PLUS] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4599), + [anon_sym_BANG_BANG] = ACTIONS(4599), + [anon_sym_suspend] = ACTIONS(4597), + [anon_sym_sealed] = ACTIONS(4597), + [anon_sym_annotation] = ACTIONS(4597), + [anon_sym_data] = ACTIONS(4597), + [anon_sym_inner] = ACTIONS(4597), + [anon_sym_override] = ACTIONS(4597), + [anon_sym_lateinit] = ACTIONS(4597), + [anon_sym_public] = ACTIONS(4597), + [anon_sym_private] = ACTIONS(4597), + [anon_sym_internal] = ACTIONS(4597), + [anon_sym_protected] = ACTIONS(4597), + [anon_sym_tailrec] = ACTIONS(4597), + [anon_sym_operator] = ACTIONS(4597), + [anon_sym_infix] = ACTIONS(4597), + [anon_sym_inline] = ACTIONS(4597), + [anon_sym_external] = ACTIONS(4597), + [sym_property_modifier] = ACTIONS(4597), + [anon_sym_abstract] = ACTIONS(4597), + [anon_sym_final] = ACTIONS(4597), + [anon_sym_open] = ACTIONS(4597), + [anon_sym_vararg] = ACTIONS(4597), + [anon_sym_noinline] = ACTIONS(4597), + [anon_sym_crossinline] = ACTIONS(4597), + [anon_sym_expect] = ACTIONS(4597), + [anon_sym_actual] = ACTIONS(4597), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(4599), + [sym__automatic_semicolon] = ACTIONS(4599), + [sym_safe_nav] = ACTIONS(4599), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), }, - [3686] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_where] = ACTIONS(5071), - [anon_sym_DOT] = 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_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), + [3637] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(6796), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4861), }, - [3687] = { - [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_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_override] = ACTIONS(4670), - [anon_sym_lateinit] = ACTIONS(4670), - [anon_sym_public] = ACTIONS(4670), - [anon_sym_private] = ACTIONS(4670), - [anon_sym_internal] = ACTIONS(4670), - [anon_sym_protected] = ACTIONS(4670), - [anon_sym_tailrec] = ACTIONS(4670), - [anon_sym_operator] = ACTIONS(4670), - [anon_sym_infix] = ACTIONS(4670), - [anon_sym_inline] = ACTIONS(4670), - [anon_sym_external] = ACTIONS(4670), - [sym_property_modifier] = ACTIONS(4670), - [anon_sym_abstract] = ACTIONS(4670), - [anon_sym_final] = ACTIONS(4670), - [anon_sym_open] = ACTIONS(4670), - [anon_sym_vararg] = ACTIONS(4670), - [anon_sym_noinline] = ACTIONS(4670), - [anon_sym_crossinline] = ACTIONS(4670), - [anon_sym_expect] = ACTIONS(4670), - [anon_sym_actual] = ACTIONS(4670), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4672), - [sym__automatic_semicolon] = ACTIONS(4672), - [sym_safe_nav] = ACTIONS(4672), - [sym_multiline_comment] = ACTIONS(3), + [3638] = { + [sym_type_constraints] = STATE(4003), + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4079), + [anon_sym_fun] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_this] = ACTIONS(4079), + [anon_sym_super] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_null] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_when] = ACTIONS(4079), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_throw] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4081), + [anon_sym_continue_AT] = ACTIONS(4081), + [anon_sym_break_AT] = ACTIONS(4081), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [anon_sym_SQUOTE] = ACTIONS(4081), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4081), }, - [3688] = { - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3212), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_PLUS_EQ] = ACTIONS(3216), - [anon_sym_DASH_EQ] = ACTIONS(3216), - [anon_sym_STAR_EQ] = ACTIONS(3216), - [anon_sym_SLASH_EQ] = ACTIONS(3216), - [anon_sym_PERCENT_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [3639] = { + [sym_enum_class_body] = STATE(3724), + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), [sym_multiline_comment] = ACTIONS(3), }, - [3689] = { - [sym__alpha_identifier] = ACTIONS(5009), - [anon_sym_AT] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5009), - [anon_sym_set] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5009), - [sym_label] = ACTIONS(5011), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_QMARK_COLON] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(5011), - [anon_sym_PIPE_PIPE] = ACTIONS(5011), - [anon_sym_else] = ACTIONS(5009), - [anon_sym_COLON_COLON] = ACTIONS(5011), - [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(5009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), - [anon_sym_LT_EQ] = ACTIONS(5011), - [anon_sym_GT_EQ] = ACTIONS(5011), - [anon_sym_BANGin] = ACTIONS(5011), - [anon_sym_is] = ACTIONS(5009), - [anon_sym_BANGis] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_as_QMARK] = ACTIONS(5011), - [anon_sym_PLUS_PLUS] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_BANG_BANG] = ACTIONS(5011), - [anon_sym_suspend] = ACTIONS(5009), - [anon_sym_sealed] = ACTIONS(5009), - [anon_sym_annotation] = ACTIONS(5009), - [anon_sym_data] = ACTIONS(5009), - [anon_sym_inner] = ACTIONS(5009), - [anon_sym_override] = ACTIONS(5009), - [anon_sym_lateinit] = ACTIONS(5009), - [anon_sym_public] = ACTIONS(5009), - [anon_sym_private] = ACTIONS(5009), - [anon_sym_internal] = ACTIONS(5009), - [anon_sym_protected] = ACTIONS(5009), - [anon_sym_tailrec] = ACTIONS(5009), - [anon_sym_operator] = ACTIONS(5009), - [anon_sym_infix] = ACTIONS(5009), - [anon_sym_inline] = ACTIONS(5009), - [anon_sym_external] = ACTIONS(5009), - [sym_property_modifier] = ACTIONS(5009), - [anon_sym_abstract] = ACTIONS(5009), - [anon_sym_final] = ACTIONS(5009), - [anon_sym_open] = ACTIONS(5009), - [anon_sym_vararg] = ACTIONS(5009), - [anon_sym_noinline] = ACTIONS(5009), - [anon_sym_crossinline] = ACTIONS(5009), - [anon_sym_expect] = ACTIONS(5009), - [anon_sym_actual] = ACTIONS(5009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5011), - [sym__automatic_semicolon] = ACTIONS(5011), - [sym_safe_nav] = ACTIONS(5011), + [3640] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1822), + [sym__in_operator] = STATE(1823), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1826), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1830), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(6709), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(6709), + [anon_sym_PERCENT] = ACTIONS(6709), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3690] = { - [sym__alpha_identifier] = ACTIONS(4786), - [anon_sym_AT] = ACTIONS(4788), - [anon_sym_LBRACK] = ACTIONS(4788), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LBRACE] = ACTIONS(4788), - [anon_sym_RBRACE] = ACTIONS(4788), - [anon_sym_LPAREN] = ACTIONS(4788), - [anon_sym_COMMA] = ACTIONS(4788), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4788), - [anon_sym_get] = ACTIONS(4786), - [anon_sym_set] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4786), - [sym_label] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4788), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4788), - [anon_sym_PIPE_PIPE] = ACTIONS(4788), - [anon_sym_else] = ACTIONS(4786), - [anon_sym_COLON_COLON] = ACTIONS(4788), - [anon_sym_PLUS_EQ] = ACTIONS(4788), - [anon_sym_DASH_EQ] = ACTIONS(4788), - [anon_sym_STAR_EQ] = ACTIONS(4788), - [anon_sym_SLASH_EQ] = ACTIONS(4788), - [anon_sym_PERCENT_EQ] = ACTIONS(4788), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), - [anon_sym_LT_EQ] = ACTIONS(4788), - [anon_sym_GT_EQ] = ACTIONS(4788), - [anon_sym_BANGin] = ACTIONS(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_BANGis] = ACTIONS(4788), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_as_QMARK] = ACTIONS(4788), - [anon_sym_PLUS_PLUS] = ACTIONS(4788), - [anon_sym_DASH_DASH] = ACTIONS(4788), - [anon_sym_BANG_BANG] = ACTIONS(4788), - [anon_sym_suspend] = ACTIONS(4786), - [anon_sym_sealed] = ACTIONS(4786), - [anon_sym_annotation] = ACTIONS(4786), - [anon_sym_data] = ACTIONS(4786), - [anon_sym_inner] = ACTIONS(4786), - [anon_sym_override] = ACTIONS(4786), - [anon_sym_lateinit] = ACTIONS(4786), - [anon_sym_public] = ACTIONS(4786), - [anon_sym_private] = ACTIONS(4786), - [anon_sym_internal] = ACTIONS(4786), - [anon_sym_protected] = ACTIONS(4786), - [anon_sym_tailrec] = ACTIONS(4786), - [anon_sym_operator] = ACTIONS(4786), - [anon_sym_infix] = ACTIONS(4786), - [anon_sym_inline] = ACTIONS(4786), - [anon_sym_external] = ACTIONS(4786), - [sym_property_modifier] = ACTIONS(4786), - [anon_sym_abstract] = ACTIONS(4786), - [anon_sym_final] = ACTIONS(4786), - [anon_sym_open] = ACTIONS(4786), - [anon_sym_vararg] = ACTIONS(4786), - [anon_sym_noinline] = ACTIONS(4786), - [anon_sym_crossinline] = ACTIONS(4786), - [anon_sym_expect] = ACTIONS(4786), - [anon_sym_actual] = ACTIONS(4786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4788), - [sym__automatic_semicolon] = ACTIONS(4788), - [sym_safe_nav] = ACTIONS(4788), + [3641] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(6802), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), + }, + [3642] = { + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6804), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), [sym_multiline_comment] = ACTIONS(3), }, - [3691] = { - [sym_type_constraints] = STATE(3117), - [sym_enum_class_body] = STATE(3127), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6828), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5169), - [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(5173), - [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_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), + [3643] = { + [sym_function_body] = STATE(3715), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6806), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), [sym_multiline_comment] = ACTIONS(3), }, - [3692] = { - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(5950), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_DASH_GT] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [3644] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6808), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), + }, + [3645] = { + [sym_type_constraints] = STATE(3990), + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6810), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [3646] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6812), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), + }, + [3647] = { + [sym_enum_class_body] = STATE(3714), + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4500), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), [sym_multiline_comment] = ACTIONS(3), }, - [3693] = { - [sym__alpha_identifier] = ACTIONS(5021), - [anon_sym_AT] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_get] = ACTIONS(5021), - [anon_sym_set] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [sym_label] = ACTIONS(5023), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_QMARK_COLON] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_else] = ACTIONS(5021), - [anon_sym_COLON_COLON] = ACTIONS(5023), - [anon_sym_PLUS_EQ] = ACTIONS(5023), - [anon_sym_DASH_EQ] = ACTIONS(5023), - [anon_sym_STAR_EQ] = ACTIONS(5023), - [anon_sym_SLASH_EQ] = ACTIONS(5023), - [anon_sym_PERCENT_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_BANGin] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5021), - [anon_sym_BANGis] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_as_QMARK] = ACTIONS(5023), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_BANG_BANG] = ACTIONS(5023), - [anon_sym_suspend] = ACTIONS(5021), - [anon_sym_sealed] = ACTIONS(5021), - [anon_sym_annotation] = ACTIONS(5021), - [anon_sym_data] = ACTIONS(5021), - [anon_sym_inner] = ACTIONS(5021), - [anon_sym_override] = ACTIONS(5021), - [anon_sym_lateinit] = ACTIONS(5021), - [anon_sym_public] = ACTIONS(5021), - [anon_sym_private] = ACTIONS(5021), - [anon_sym_internal] = ACTIONS(5021), - [anon_sym_protected] = ACTIONS(5021), - [anon_sym_tailrec] = ACTIONS(5021), - [anon_sym_operator] = ACTIONS(5021), - [anon_sym_infix] = ACTIONS(5021), - [anon_sym_inline] = ACTIONS(5021), - [anon_sym_external] = ACTIONS(5021), - [sym_property_modifier] = ACTIONS(5021), - [anon_sym_abstract] = ACTIONS(5021), - [anon_sym_final] = ACTIONS(5021), - [anon_sym_open] = ACTIONS(5021), - [anon_sym_vararg] = ACTIONS(5021), - [anon_sym_noinline] = ACTIONS(5021), - [anon_sym_crossinline] = ACTIONS(5021), - [anon_sym_expect] = ACTIONS(5021), - [anon_sym_actual] = ACTIONS(5021), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5023), - [sym__automatic_semicolon] = ACTIONS(5023), - [sym_safe_nav] = ACTIONS(5023), + [3648] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(6814), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_typealias] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3866), + [anon_sym_interface] = ACTIONS(3866), + [anon_sym_enum] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3866), + [anon_sym_var] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3871), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3871), + [sym_label] = ACTIONS(3866), + [anon_sym_for] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_do] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [3649] = { + [sym_enum_class_body] = STATE(3720), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), [sym_multiline_comment] = ACTIONS(3), }, - [3694] = { - [sym__alpha_identifier] = ACTIONS(5045), - [anon_sym_AT] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_where] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_get] = ACTIONS(5045), - [anon_sym_set] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5045), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_QMARK_COLON] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5045), - [anon_sym_COLON_COLON] = ACTIONS(5047), - [anon_sym_PLUS_EQ] = ACTIONS(5047), - [anon_sym_DASH_EQ] = ACTIONS(5047), - [anon_sym_STAR_EQ] = ACTIONS(5047), - [anon_sym_SLASH_EQ] = ACTIONS(5047), - [anon_sym_PERCENT_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_BANGin] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5045), - [anon_sym_BANGis] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_PERCENT] = ACTIONS(5045), - [anon_sym_as_QMARK] = ACTIONS(5047), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5047), - [anon_sym_suspend] = ACTIONS(5045), - [anon_sym_sealed] = ACTIONS(5045), - [anon_sym_annotation] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5045), - [anon_sym_inner] = ACTIONS(5045), - [anon_sym_override] = ACTIONS(5045), - [anon_sym_lateinit] = ACTIONS(5045), - [anon_sym_public] = ACTIONS(5045), - [anon_sym_private] = ACTIONS(5045), - [anon_sym_internal] = ACTIONS(5045), - [anon_sym_protected] = ACTIONS(5045), - [anon_sym_tailrec] = ACTIONS(5045), - [anon_sym_operator] = ACTIONS(5045), - [anon_sym_infix] = ACTIONS(5045), - [anon_sym_inline] = ACTIONS(5045), - [anon_sym_external] = ACTIONS(5045), - [sym_property_modifier] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5045), - [anon_sym_final] = ACTIONS(5045), - [anon_sym_open] = ACTIONS(5045), - [anon_sym_vararg] = ACTIONS(5045), - [anon_sym_noinline] = ACTIONS(5045), - [anon_sym_crossinline] = ACTIONS(5045), - [anon_sym_expect] = ACTIONS(5045), - [anon_sym_actual] = ACTIONS(5045), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5047), - [sym__automatic_semicolon] = ACTIONS(5047), - [sym_safe_nav] = ACTIONS(5047), + [3650] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(6747), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), + }, + [3651] = { + [sym_enum_class_body] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, - [3695] = { - [sym_class_body] = STATE(3209), - [sym_type_constraints] = STATE(3098), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6830), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [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_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(4186), - [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_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), + [3652] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(6743), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [3653] = { + [sym_type_constraints] = STATE(4014), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6816), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [3654] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3654), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [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(6818), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_DOT] = 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_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), }, - [3696] = { - [sym_type_constraints] = STATE(3093), - [sym_enum_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6832), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_RBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [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_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(4186), - [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_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), + [3655] = { + [sym_function_body] = STATE(3886), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), [sym_multiline_comment] = ACTIONS(3), }, - [3697] = { - [sym__alpha_identifier] = ACTIONS(4867), - [anon_sym_AT] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_as] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_COMMA] = ACTIONS(4869), - [anon_sym_LT] = ACTIONS(4867), - [anon_sym_GT] = ACTIONS(4867), - [anon_sym_where] = ACTIONS(4867), - [anon_sym_DOT] = ACTIONS(4867), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_get] = ACTIONS(4867), - [anon_sym_set] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4867), - [sym_label] = ACTIONS(4869), - [anon_sym_in] = ACTIONS(4867), - [anon_sym_DOT_DOT] = ACTIONS(4869), - [anon_sym_QMARK_COLON] = ACTIONS(4869), - [anon_sym_AMP_AMP] = ACTIONS(4869), - [anon_sym_PIPE_PIPE] = ACTIONS(4869), - [anon_sym_else] = ACTIONS(4867), - [anon_sym_COLON_COLON] = ACTIONS(4869), - [anon_sym_PLUS_EQ] = ACTIONS(4869), - [anon_sym_DASH_EQ] = ACTIONS(4869), - [anon_sym_STAR_EQ] = ACTIONS(4869), - [anon_sym_SLASH_EQ] = ACTIONS(4869), - [anon_sym_PERCENT_EQ] = ACTIONS(4869), - [anon_sym_BANG_EQ] = ACTIONS(4867), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), - [anon_sym_EQ_EQ] = ACTIONS(4867), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), - [anon_sym_LT_EQ] = ACTIONS(4869), - [anon_sym_GT_EQ] = ACTIONS(4869), - [anon_sym_BANGin] = ACTIONS(4869), - [anon_sym_is] = ACTIONS(4867), - [anon_sym_BANGis] = ACTIONS(4869), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_SLASH] = ACTIONS(4867), - [anon_sym_PERCENT] = ACTIONS(4867), - [anon_sym_as_QMARK] = ACTIONS(4869), - [anon_sym_PLUS_PLUS] = ACTIONS(4869), - [anon_sym_DASH_DASH] = ACTIONS(4869), - [anon_sym_BANG_BANG] = ACTIONS(4869), - [anon_sym_suspend] = ACTIONS(4867), - [anon_sym_sealed] = ACTIONS(4867), - [anon_sym_annotation] = ACTIONS(4867), - [anon_sym_data] = ACTIONS(4867), - [anon_sym_inner] = ACTIONS(4867), - [anon_sym_override] = ACTIONS(4867), - [anon_sym_lateinit] = ACTIONS(4867), - [anon_sym_public] = ACTIONS(4867), - [anon_sym_private] = ACTIONS(4867), - [anon_sym_internal] = ACTIONS(4867), - [anon_sym_protected] = ACTIONS(4867), - [anon_sym_tailrec] = ACTIONS(4867), - [anon_sym_operator] = ACTIONS(4867), - [anon_sym_infix] = ACTIONS(4867), - [anon_sym_inline] = ACTIONS(4867), - [anon_sym_external] = ACTIONS(4867), - [sym_property_modifier] = ACTIONS(4867), - [anon_sym_abstract] = ACTIONS(4867), - [anon_sym_final] = ACTIONS(4867), - [anon_sym_open] = ACTIONS(4867), - [anon_sym_vararg] = ACTIONS(4867), - [anon_sym_noinline] = ACTIONS(4867), - [anon_sym_crossinline] = ACTIONS(4867), - [anon_sym_expect] = ACTIONS(4867), - [anon_sym_actual] = ACTIONS(4867), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4869), - [sym__automatic_semicolon] = ACTIONS(4869), - [sym_safe_nav] = ACTIONS(4869), + [3656] = { + [sym_class_body] = STATE(3720), + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), [sym_multiline_comment] = ACTIONS(3), }, - [3698] = { - [sym_class_body] = STATE(3261), - [sym_type_constraints] = STATE(3076), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), + [3657] = { + [sym_class_body] = STATE(3189), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), }, - [3699] = { - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), + [3658] = { + [ts_builtin_sym_end] = ACTIONS(6825), + [sym__alpha_identifier] = ACTIONS(6827), + [anon_sym_AT] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(6825), + [anon_sym_package] = ACTIONS(6827), + [anon_sym_import] = ACTIONS(6827), + [anon_sym_typealias] = ACTIONS(6827), + [anon_sym_class] = ACTIONS(6827), + [anon_sym_interface] = ACTIONS(6827), + [anon_sym_enum] = ACTIONS(6827), + [anon_sym_LBRACE] = ACTIONS(6825), + [anon_sym_LPAREN] = ACTIONS(6825), + [anon_sym_val] = ACTIONS(6827), + [anon_sym_var] = ACTIONS(6827), + [anon_sym_object] = ACTIONS(6827), + [anon_sym_fun] = ACTIONS(6827), + [anon_sym_get] = ACTIONS(6827), + [anon_sym_set] = ACTIONS(6827), + [anon_sym_this] = ACTIONS(6827), + [anon_sym_super] = ACTIONS(6827), + [anon_sym_STAR] = ACTIONS(6825), + [sym_label] = ACTIONS(6827), + [anon_sym_for] = ACTIONS(6827), + [anon_sym_while] = ACTIONS(6827), + [anon_sym_do] = ACTIONS(6827), + [anon_sym_null] = ACTIONS(6827), + [anon_sym_if] = ACTIONS(6827), + [anon_sym_when] = ACTIONS(6827), + [anon_sym_try] = ACTIONS(6827), + [anon_sym_throw] = ACTIONS(6827), + [anon_sym_return] = ACTIONS(6827), + [anon_sym_continue] = ACTIONS(6827), + [anon_sym_break] = ACTIONS(6827), + [anon_sym_COLON_COLON] = ACTIONS(6825), + [anon_sym_PLUS] = ACTIONS(6827), + [anon_sym_DASH] = ACTIONS(6827), + [anon_sym_PLUS_PLUS] = ACTIONS(6825), + [anon_sym_DASH_DASH] = ACTIONS(6825), + [anon_sym_BANG] = ACTIONS(6825), + [anon_sym_suspend] = ACTIONS(6827), + [anon_sym_sealed] = ACTIONS(6827), + [anon_sym_annotation] = ACTIONS(6827), + [anon_sym_data] = ACTIONS(6827), + [anon_sym_inner] = ACTIONS(6827), + [anon_sym_override] = ACTIONS(6827), + [anon_sym_lateinit] = ACTIONS(6827), + [anon_sym_public] = ACTIONS(6827), + [anon_sym_private] = ACTIONS(6827), + [anon_sym_internal] = ACTIONS(6827), + [anon_sym_protected] = ACTIONS(6827), + [anon_sym_tailrec] = ACTIONS(6827), + [anon_sym_operator] = ACTIONS(6827), + [anon_sym_infix] = ACTIONS(6827), + [anon_sym_inline] = ACTIONS(6827), + [anon_sym_external] = ACTIONS(6827), + [sym_property_modifier] = ACTIONS(6827), + [anon_sym_abstract] = ACTIONS(6827), + [anon_sym_final] = ACTIONS(6827), + [anon_sym_open] = ACTIONS(6827), + [anon_sym_vararg] = ACTIONS(6827), + [anon_sym_noinline] = ACTIONS(6827), + [anon_sym_crossinline] = ACTIONS(6827), + [anon_sym_expect] = ACTIONS(6827), + [anon_sym_actual] = ACTIONS(6827), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6825), + [anon_sym_continue_AT] = ACTIONS(6825), + [anon_sym_break_AT] = ACTIONS(6825), + [sym_real_literal] = ACTIONS(6825), + [sym_integer_literal] = ACTIONS(6827), + [sym_hex_literal] = ACTIONS(6825), + [sym_bin_literal] = ACTIONS(6825), + [anon_sym_true] = ACTIONS(6827), + [anon_sym_false] = ACTIONS(6827), + [anon_sym_SQUOTE] = ACTIONS(6825), + [sym__backtick_identifier] = ACTIONS(6825), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6825), }, - [3700] = { - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(5954), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), + [3659] = { + [sym_type_constraints] = STATE(4002), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [3660] = { + [sym_class_body] = STATE(3286), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), [sym_multiline_comment] = ACTIONS(3), }, - [3701] = { - [sym__alpha_identifier] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [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_DOT] = 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_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), + [3661] = { + [aux_sym_type_constraints_repeat1] = STATE(3559), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_by] = ACTIONS(4521), + [anon_sym_object] = ACTIONS(4521), + [anon_sym_fun] = ACTIONS(4521), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_get] = ACTIONS(4521), + [anon_sym_set] = ACTIONS(4521), + [anon_sym_this] = ACTIONS(4521), + [anon_sym_super] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4523), + [sym_label] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4521), + [anon_sym_if] = ACTIONS(4521), + [anon_sym_else] = ACTIONS(4521), + [anon_sym_when] = ACTIONS(4521), + [anon_sym_try] = ACTIONS(4521), + [anon_sym_throw] = ACTIONS(4521), + [anon_sym_return] = ACTIONS(4521), + [anon_sym_continue] = ACTIONS(4521), + [anon_sym_break] = ACTIONS(4521), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_BANGin] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4521), + [anon_sym_BANGis] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4521), + [anon_sym_sealed] = ACTIONS(4521), + [anon_sym_annotation] = ACTIONS(4521), + [anon_sym_data] = ACTIONS(4521), + [anon_sym_inner] = ACTIONS(4521), + [anon_sym_override] = ACTIONS(4521), + [anon_sym_lateinit] = ACTIONS(4521), + [anon_sym_public] = ACTIONS(4521), + [anon_sym_private] = ACTIONS(4521), + [anon_sym_internal] = ACTIONS(4521), + [anon_sym_protected] = ACTIONS(4521), + [anon_sym_tailrec] = ACTIONS(4521), + [anon_sym_operator] = ACTIONS(4521), + [anon_sym_infix] = ACTIONS(4521), + [anon_sym_inline] = ACTIONS(4521), + [anon_sym_external] = ACTIONS(4521), + [sym_property_modifier] = ACTIONS(4521), + [anon_sym_abstract] = ACTIONS(4521), + [anon_sym_final] = ACTIONS(4521), + [anon_sym_open] = ACTIONS(4521), + [anon_sym_vararg] = ACTIONS(4521), + [anon_sym_noinline] = ACTIONS(4521), + [anon_sym_crossinline] = ACTIONS(4521), + [anon_sym_expect] = ACTIONS(4521), + [anon_sym_actual] = ACTIONS(4521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4523), + [anon_sym_continue_AT] = ACTIONS(4523), + [anon_sym_break_AT] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4523), + [sym_integer_literal] = ACTIONS(4521), + [sym_hex_literal] = ACTIONS(4523), + [sym_bin_literal] = ACTIONS(4523), + [anon_sym_true] = ACTIONS(4521), + [anon_sym_false] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(4523), + [sym__automatic_semicolon] = ACTIONS(4523), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4523), }, - [3702] = { - [sym__alpha_identifier] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_where] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [sym_label] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_QMARK_COLON] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_BANGin] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1764), - [anon_sym_BANGis] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_as_QMARK] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(1764), - [anon_sym_sealed] = ACTIONS(1764), - [anon_sym_annotation] = ACTIONS(1764), - [anon_sym_data] = ACTIONS(1764), - [anon_sym_inner] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_lateinit] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_internal] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_tailrec] = ACTIONS(1764), - [anon_sym_operator] = ACTIONS(1764), - [anon_sym_infix] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_external] = ACTIONS(1764), - [sym_property_modifier] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_final] = ACTIONS(1764), - [anon_sym_open] = ACTIONS(1764), - [anon_sym_vararg] = ACTIONS(1764), - [anon_sym_noinline] = ACTIONS(1764), - [anon_sym_crossinline] = ACTIONS(1764), - [anon_sym_expect] = ACTIONS(1764), - [anon_sym_actual] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1766), - [sym__automatic_semicolon] = ACTIONS(1766), - [sym_safe_nav] = ACTIONS(1766), + [3662] = { + [sym_type_constraints] = STATE(4012), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [3663] = { + [sym_enum_class_body] = STATE(3705), + [sym__alpha_identifier] = ACTIONS(4619), + [anon_sym_AT] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_get] = ACTIONS(4619), + [anon_sym_set] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [sym_label] = ACTIONS(4621), + [anon_sym_in] = ACTIONS(4619), + [anon_sym_DOT_DOT] = ACTIONS(4621), + [anon_sym_QMARK_COLON] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_else] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4621), + [anon_sym_PLUS_EQ] = ACTIONS(4621), + [anon_sym_DASH_EQ] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(4621), + [anon_sym_SLASH_EQ] = ACTIONS(4621), + [anon_sym_PERCENT_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ] = ACTIONS(4619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ] = ACTIONS(4619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_as_QMARK] = ACTIONS(4621), + [anon_sym_PLUS_PLUS] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_BANG_BANG] = ACTIONS(4621), + [anon_sym_suspend] = ACTIONS(4619), + [anon_sym_sealed] = ACTIONS(4619), + [anon_sym_annotation] = ACTIONS(4619), + [anon_sym_data] = ACTIONS(4619), + [anon_sym_inner] = ACTIONS(4619), + [anon_sym_override] = ACTIONS(4619), + [anon_sym_lateinit] = ACTIONS(4619), + [anon_sym_public] = ACTIONS(4619), + [anon_sym_private] = ACTIONS(4619), + [anon_sym_internal] = ACTIONS(4619), + [anon_sym_protected] = ACTIONS(4619), + [anon_sym_tailrec] = ACTIONS(4619), + [anon_sym_operator] = ACTIONS(4619), + [anon_sym_infix] = ACTIONS(4619), + [anon_sym_inline] = ACTIONS(4619), + [anon_sym_external] = ACTIONS(4619), + [sym_property_modifier] = ACTIONS(4619), + [anon_sym_abstract] = ACTIONS(4619), + [anon_sym_final] = ACTIONS(4619), + [anon_sym_open] = ACTIONS(4619), + [anon_sym_vararg] = ACTIONS(4619), + [anon_sym_noinline] = ACTIONS(4619), + [anon_sym_crossinline] = ACTIONS(4619), + [anon_sym_expect] = ACTIONS(4619), + [anon_sym_actual] = ACTIONS(4619), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4621), + [sym__automatic_semicolon] = ACTIONS(4621), + [sym_safe_nav] = ACTIONS(4621), [sym_multiline_comment] = ACTIONS(3), }, - [3703] = { - [sym_class_body] = STATE(3270), - [sym_type_constraints] = STATE(3068), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6834), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [3664] = { + [sym__alpha_identifier] = ACTIONS(4615), + [anon_sym_AT] = ACTIONS(4617), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_as] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4617), + [anon_sym_RBRACE] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_where] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [anon_sym_get] = ACTIONS(4615), + [anon_sym_set] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [sym_label] = ACTIONS(4617), + [anon_sym_in] = ACTIONS(4615), + [anon_sym_DOT_DOT] = ACTIONS(4617), + [anon_sym_QMARK_COLON] = ACTIONS(4617), + [anon_sym_AMP_AMP] = ACTIONS(4617), + [anon_sym_PIPE_PIPE] = ACTIONS(4617), + [anon_sym_else] = ACTIONS(4615), + [anon_sym_COLON_COLON] = ACTIONS(4617), + [anon_sym_PLUS_EQ] = ACTIONS(4617), + [anon_sym_DASH_EQ] = ACTIONS(4617), + [anon_sym_STAR_EQ] = ACTIONS(4617), + [anon_sym_SLASH_EQ] = ACTIONS(4617), + [anon_sym_PERCENT_EQ] = ACTIONS(4617), + [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(4617), + [anon_sym_GT_EQ] = ACTIONS(4617), + [anon_sym_BANGin] = ACTIONS(4617), + [anon_sym_is] = ACTIONS(4615), + [anon_sym_BANGis] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_as_QMARK] = ACTIONS(4617), + [anon_sym_PLUS_PLUS] = ACTIONS(4617), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_BANG_BANG] = ACTIONS(4617), + [anon_sym_suspend] = ACTIONS(4615), + [anon_sym_sealed] = ACTIONS(4615), + [anon_sym_annotation] = ACTIONS(4615), + [anon_sym_data] = ACTIONS(4615), + [anon_sym_inner] = ACTIONS(4615), + [anon_sym_override] = ACTIONS(4615), + [anon_sym_lateinit] = ACTIONS(4615), + [anon_sym_public] = ACTIONS(4615), + [anon_sym_private] = ACTIONS(4615), + [anon_sym_internal] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4615), + [anon_sym_tailrec] = ACTIONS(4615), + [anon_sym_operator] = ACTIONS(4615), + [anon_sym_infix] = ACTIONS(4615), + [anon_sym_inline] = ACTIONS(4615), + [anon_sym_external] = ACTIONS(4615), + [sym_property_modifier] = ACTIONS(4615), + [anon_sym_abstract] = ACTIONS(4615), + [anon_sym_final] = ACTIONS(4615), + [anon_sym_open] = ACTIONS(4615), + [anon_sym_vararg] = ACTIONS(4615), + [anon_sym_noinline] = ACTIONS(4615), + [anon_sym_crossinline] = ACTIONS(4615), + [anon_sym_expect] = ACTIONS(4615), + [anon_sym_actual] = ACTIONS(4615), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4617), + [sym__automatic_semicolon] = ACTIONS(4617), + [sym_safe_nav] = ACTIONS(4617), [sym_multiline_comment] = ACTIONS(3), }, - [3704] = { - [sym__alpha_identifier] = ACTIONS(5013), - [anon_sym_AT] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [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_DOT] = 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_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), + [3665] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3654), + [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(6780), + [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_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(5015), - [sym__automatic_semicolon] = ACTIONS(5015), - [sym_safe_nav] = ACTIONS(5015), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, - [3705] = { - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(4099), - [anon_sym_LBRACE] = ACTIONS(4101), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [3666] = { + [sym_class_body] = STATE(3887), + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(5439), + [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_DOT] = 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_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_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), }, - [3706] = { - [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_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), + [3667] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [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_by] = ACTIONS(4694), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_DOT] = 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_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), }, - [3707] = { - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4256), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [3668] = { + [sym_type_arguments] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_typealias] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_interface] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_val] = ACTIONS(4148), + [anon_sym_var] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(6835), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_when] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4148), + [anon_sym_sealed] = ACTIONS(4148), + [anon_sym_annotation] = ACTIONS(4148), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_override] = ACTIONS(4148), + [anon_sym_lateinit] = ACTIONS(4148), + [anon_sym_public] = ACTIONS(4148), + [anon_sym_private] = ACTIONS(4148), + [anon_sym_internal] = ACTIONS(4148), + [anon_sym_protected] = ACTIONS(4148), + [anon_sym_tailrec] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_infix] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym_external] = ACTIONS(4148), + [sym_property_modifier] = ACTIONS(4148), + [anon_sym_abstract] = ACTIONS(4148), + [anon_sym_final] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4148), + [anon_sym_vararg] = ACTIONS(4148), + [anon_sym_noinline] = ACTIONS(4148), + [anon_sym_crossinline] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [3669] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [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_by] = ACTIONS(4690), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_DOT] = 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_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), }, - [3708] = { - [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_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), + [3670] = { + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), [sym_multiline_comment] = ACTIONS(3), }, - [3709] = { - [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_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_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), + [3671] = { + [sym_function_body] = STATE(3246), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), [sym_multiline_comment] = ACTIONS(3), }, - [3710] = { - [sym__alpha_identifier] = ACTIONS(4985), - [anon_sym_AT] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_where] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_get] = ACTIONS(4985), - [anon_sym_set] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4985), - [sym_label] = ACTIONS(4987), - [anon_sym_in] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_QMARK_COLON] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_else] = ACTIONS(4985), - [anon_sym_COLON_COLON] = ACTIONS(4987), - [anon_sym_PLUS_EQ] = ACTIONS(4987), - [anon_sym_DASH_EQ] = ACTIONS(4987), - [anon_sym_STAR_EQ] = ACTIONS(4987), - [anon_sym_SLASH_EQ] = ACTIONS(4987), - [anon_sym_PERCENT_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_BANGin] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4985), - [anon_sym_BANGis] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_as_QMARK] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_BANG_BANG] = ACTIONS(4987), - [anon_sym_suspend] = ACTIONS(4985), - [anon_sym_sealed] = ACTIONS(4985), - [anon_sym_annotation] = ACTIONS(4985), - [anon_sym_data] = ACTIONS(4985), - [anon_sym_inner] = ACTIONS(4985), - [anon_sym_override] = ACTIONS(4985), - [anon_sym_lateinit] = ACTIONS(4985), - [anon_sym_public] = ACTIONS(4985), - [anon_sym_private] = ACTIONS(4985), - [anon_sym_internal] = ACTIONS(4985), - [anon_sym_protected] = ACTIONS(4985), - [anon_sym_tailrec] = ACTIONS(4985), - [anon_sym_operator] = ACTIONS(4985), - [anon_sym_infix] = ACTIONS(4985), - [anon_sym_inline] = ACTIONS(4985), - [anon_sym_external] = ACTIONS(4985), - [sym_property_modifier] = ACTIONS(4985), - [anon_sym_abstract] = ACTIONS(4985), - [anon_sym_final] = ACTIONS(4985), - [anon_sym_open] = ACTIONS(4985), - [anon_sym_vararg] = ACTIONS(4985), - [anon_sym_noinline] = ACTIONS(4985), - [anon_sym_crossinline] = ACTIONS(4985), - [anon_sym_expect] = ACTIONS(4985), - [anon_sym_actual] = ACTIONS(4985), + [3672] = { + [sym__alpha_identifier] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [anon_sym_COLON] = ACTIONS(4674), + [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_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_override] = ACTIONS(4674), + [anon_sym_lateinit] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4674), + [anon_sym_tailrec] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_inline] = ACTIONS(4674), + [anon_sym_external] = ACTIONS(4674), + [sym_property_modifier] = ACTIONS(4674), + [anon_sym_abstract] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_vararg] = ACTIONS(4674), + [anon_sym_noinline] = ACTIONS(4674), + [anon_sym_crossinline] = ACTIONS(4674), + [anon_sym_expect] = ACTIONS(4674), + [anon_sym_actual] = ACTIONS(4674), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4676), + [sym__automatic_semicolon] = ACTIONS(4676), + [sym_safe_nav] = ACTIONS(4676), + [sym_multiline_comment] = ACTIONS(3), + }, + [3673] = { + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3674] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [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_DOT] = 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_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(4987), - [sym__automatic_semicolon] = ACTIONS(4987), - [sym_safe_nav] = ACTIONS(4987), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), [sym_multiline_comment] = ACTIONS(3), }, - [3711] = { - [sym_class_body] = STATE(3319), - [sym_type_constraints] = STATE(3055), + [3675] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3676] = { + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [3677] = { + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_COLON] = ACTIONS(5949), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_RBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_COMMA] = ACTIONS(3200), [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -399895,1429 +397286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [3712] = { - [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_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_override] = ACTIONS(4722), - [anon_sym_lateinit] = ACTIONS(4722), - [anon_sym_public] = ACTIONS(4722), - [anon_sym_private] = ACTIONS(4722), - [anon_sym_internal] = ACTIONS(4722), - [anon_sym_protected] = ACTIONS(4722), - [anon_sym_tailrec] = ACTIONS(4722), - [anon_sym_operator] = ACTIONS(4722), - [anon_sym_infix] = ACTIONS(4722), - [anon_sym_inline] = ACTIONS(4722), - [anon_sym_external] = ACTIONS(4722), - [sym_property_modifier] = ACTIONS(4722), - [anon_sym_abstract] = ACTIONS(4722), - [anon_sym_final] = ACTIONS(4722), - [anon_sym_open] = ACTIONS(4722), - [anon_sym_vararg] = ACTIONS(4722), - [anon_sym_noinline] = ACTIONS(4722), - [anon_sym_crossinline] = ACTIONS(4722), - [anon_sym_expect] = ACTIONS(4722), - [anon_sym_actual] = ACTIONS(4722), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4724), - [sym__automatic_semicolon] = ACTIONS(4724), - [sym_safe_nav] = ACTIONS(4724), - [sym_multiline_comment] = ACTIONS(3), - }, - [3713] = { - [sym__alpha_identifier] = ACTIONS(4921), - [anon_sym_AT] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_as] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_LPAREN] = ACTIONS(4923), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4921), - [anon_sym_GT] = ACTIONS(4921), - [anon_sym_where] = ACTIONS(4921), - [anon_sym_DOT] = ACTIONS(4921), - [anon_sym_SEMI] = ACTIONS(4923), - [anon_sym_get] = ACTIONS(4921), - [anon_sym_set] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4921), - [sym_label] = ACTIONS(4923), - [anon_sym_in] = ACTIONS(4921), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [anon_sym_QMARK_COLON] = ACTIONS(4923), - [anon_sym_AMP_AMP] = ACTIONS(4923), - [anon_sym_PIPE_PIPE] = ACTIONS(4923), - [anon_sym_else] = ACTIONS(4921), - [anon_sym_COLON_COLON] = ACTIONS(4923), - [anon_sym_PLUS_EQ] = ACTIONS(4923), - [anon_sym_DASH_EQ] = ACTIONS(4923), - [anon_sym_STAR_EQ] = ACTIONS(4923), - [anon_sym_SLASH_EQ] = ACTIONS(4923), - [anon_sym_PERCENT_EQ] = ACTIONS(4923), - [anon_sym_BANG_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4923), - [anon_sym_EQ_EQ] = ACTIONS(4921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4923), - [anon_sym_LT_EQ] = ACTIONS(4923), - [anon_sym_GT_EQ] = ACTIONS(4923), - [anon_sym_BANGin] = ACTIONS(4923), - [anon_sym_is] = ACTIONS(4921), - [anon_sym_BANGis] = ACTIONS(4923), - [anon_sym_PLUS] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_SLASH] = ACTIONS(4921), - [anon_sym_PERCENT] = ACTIONS(4921), - [anon_sym_as_QMARK] = ACTIONS(4923), - [anon_sym_PLUS_PLUS] = ACTIONS(4923), - [anon_sym_DASH_DASH] = ACTIONS(4923), - [anon_sym_BANG_BANG] = ACTIONS(4923), - [anon_sym_suspend] = ACTIONS(4921), - [anon_sym_sealed] = ACTIONS(4921), - [anon_sym_annotation] = ACTIONS(4921), - [anon_sym_data] = ACTIONS(4921), - [anon_sym_inner] = ACTIONS(4921), - [anon_sym_override] = ACTIONS(4921), - [anon_sym_lateinit] = ACTIONS(4921), - [anon_sym_public] = ACTIONS(4921), - [anon_sym_private] = ACTIONS(4921), - [anon_sym_internal] = ACTIONS(4921), - [anon_sym_protected] = ACTIONS(4921), - [anon_sym_tailrec] = ACTIONS(4921), - [anon_sym_operator] = ACTIONS(4921), - [anon_sym_infix] = ACTIONS(4921), - [anon_sym_inline] = ACTIONS(4921), - [anon_sym_external] = ACTIONS(4921), - [sym_property_modifier] = ACTIONS(4921), - [anon_sym_abstract] = ACTIONS(4921), - [anon_sym_final] = ACTIONS(4921), - [anon_sym_open] = ACTIONS(4921), - [anon_sym_vararg] = ACTIONS(4921), - [anon_sym_noinline] = ACTIONS(4921), - [anon_sym_crossinline] = ACTIONS(4921), - [anon_sym_expect] = ACTIONS(4921), - [anon_sym_actual] = ACTIONS(4921), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4923), - [sym__automatic_semicolon] = ACTIONS(4923), - [sym_safe_nav] = ACTIONS(4923), - [sym_multiline_comment] = ACTIONS(3), - }, - [3714] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_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), - }, - [3715] = { - [sym__alpha_identifier] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_where] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [sym_label] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_QMARK_COLON] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_BANGin] = ACTIONS(1754), - [anon_sym_is] = ACTIONS(1752), - [anon_sym_BANGis] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_as_QMARK] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_BANG_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(1752), - [anon_sym_sealed] = ACTIONS(1752), - [anon_sym_annotation] = ACTIONS(1752), - [anon_sym_data] = ACTIONS(1752), - [anon_sym_inner] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_lateinit] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_internal] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_tailrec] = ACTIONS(1752), - [anon_sym_operator] = ACTIONS(1752), - [anon_sym_infix] = ACTIONS(1752), - [anon_sym_inline] = ACTIONS(1752), - [anon_sym_external] = ACTIONS(1752), - [sym_property_modifier] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_open] = ACTIONS(1752), - [anon_sym_vararg] = ACTIONS(1752), - [anon_sym_noinline] = ACTIONS(1752), - [anon_sym_crossinline] = ACTIONS(1752), - [anon_sym_expect] = ACTIONS(1752), - [anon_sym_actual] = ACTIONS(1752), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1754), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym_safe_nav] = ACTIONS(1754), - [sym_multiline_comment] = ACTIONS(3), - }, - [3716] = { - [sym_class_body] = STATE(3322), - [sym_type_constraints] = STATE(3078), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [3717] = { - [sym__alpha_identifier] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_as] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_where] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_get] = ACTIONS(201), - [anon_sym_set] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [sym_label] = ACTIONS(199), - [anon_sym_in] = ACTIONS(201), - [anon_sym_DOT_DOT] = ACTIONS(199), - [anon_sym_QMARK_COLON] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_else] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(199), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(199), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_BANGin] = ACTIONS(199), - [anon_sym_is] = ACTIONS(201), - [anon_sym_BANGis] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_PERCENT] = ACTIONS(201), - [anon_sym_as_QMARK] = ACTIONS(199), - [anon_sym_PLUS_PLUS] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(199), - [anon_sym_BANG_BANG] = ACTIONS(199), - [anon_sym_suspend] = ACTIONS(201), - [anon_sym_sealed] = ACTIONS(201), - [anon_sym_annotation] = ACTIONS(201), - [anon_sym_data] = ACTIONS(201), - [anon_sym_inner] = ACTIONS(201), - [anon_sym_override] = ACTIONS(201), - [anon_sym_lateinit] = ACTIONS(201), - [anon_sym_public] = ACTIONS(201), - [anon_sym_private] = ACTIONS(201), - [anon_sym_internal] = ACTIONS(201), - [anon_sym_protected] = ACTIONS(201), - [anon_sym_tailrec] = ACTIONS(201), - [anon_sym_operator] = ACTIONS(201), - [anon_sym_infix] = ACTIONS(201), - [anon_sym_inline] = ACTIONS(201), - [anon_sym_external] = ACTIONS(201), - [sym_property_modifier] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_final] = ACTIONS(201), - [anon_sym_open] = ACTIONS(201), - [anon_sym_vararg] = ACTIONS(201), - [anon_sym_noinline] = ACTIONS(201), - [anon_sym_crossinline] = ACTIONS(201), - [anon_sym_expect] = ACTIONS(201), - [anon_sym_actual] = ACTIONS(201), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(199), - [sym__automatic_semicolon] = ACTIONS(199), - [sym_safe_nav] = ACTIONS(199), - [sym_multiline_comment] = ACTIONS(3), - }, - [3718] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_COMMA] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5077), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - }, - [3719] = { - [sym_type_constraints] = STATE(3092), - [sym_enum_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6836), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3720] = { - [sym__alpha_identifier] = ACTIONS(4901), - [anon_sym_AT] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_as] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4901), - [anon_sym_GT] = ACTIONS(4901), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_get] = ACTIONS(4901), - [anon_sym_set] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4901), - [sym_label] = ACTIONS(4903), - [anon_sym_in] = ACTIONS(4901), - [anon_sym_DOT_DOT] = ACTIONS(4903), - [anon_sym_QMARK_COLON] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym_PLUS_EQ] = ACTIONS(4903), - [anon_sym_DASH_EQ] = ACTIONS(4903), - [anon_sym_STAR_EQ] = ACTIONS(4903), - [anon_sym_SLASH_EQ] = ACTIONS(4903), - [anon_sym_PERCENT_EQ] = ACTIONS(4903), - [anon_sym_BANG_EQ] = ACTIONS(4901), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT_EQ] = ACTIONS(4903), - [anon_sym_GT_EQ] = ACTIONS(4903), - [anon_sym_BANGin] = ACTIONS(4903), - [anon_sym_is] = ACTIONS(4901), - [anon_sym_BANGis] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(4901), - [anon_sym_DASH] = ACTIONS(4901), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_PERCENT] = ACTIONS(4901), - [anon_sym_as_QMARK] = ACTIONS(4903), - [anon_sym_PLUS_PLUS] = ACTIONS(4903), - [anon_sym_DASH_DASH] = ACTIONS(4903), - [anon_sym_BANG_BANG] = ACTIONS(4903), - [anon_sym_suspend] = ACTIONS(4901), - [anon_sym_sealed] = ACTIONS(4901), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_data] = ACTIONS(4901), - [anon_sym_inner] = ACTIONS(4901), - [anon_sym_override] = ACTIONS(4901), - [anon_sym_lateinit] = ACTIONS(4901), - [anon_sym_public] = ACTIONS(4901), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_internal] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_tailrec] = ACTIONS(4901), - [anon_sym_operator] = ACTIONS(4901), - [anon_sym_infix] = ACTIONS(4901), - [anon_sym_inline] = ACTIONS(4901), - [anon_sym_external] = ACTIONS(4901), - [sym_property_modifier] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_final] = ACTIONS(4901), - [anon_sym_open] = ACTIONS(4901), - [anon_sym_vararg] = ACTIONS(4901), - [anon_sym_noinline] = ACTIONS(4901), - [anon_sym_crossinline] = ACTIONS(4901), - [anon_sym_expect] = ACTIONS(4901), - [anon_sym_actual] = ACTIONS(4901), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4903), - [sym__automatic_semicolon] = ACTIONS(4903), - [sym_safe_nav] = ACTIONS(4903), - [sym_multiline_comment] = ACTIONS(3), - }, - [3721] = { - [sym_class_body] = STATE(3216), - [sym_type_constraints] = STATE(3111), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6838), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3722] = { - [sym__alpha_identifier] = ACTIONS(4913), - [anon_sym_AT] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_as] = ACTIONS(4913), - [anon_sym_EQ] = ACTIONS(4913), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_RBRACE] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_where] = ACTIONS(4913), - [anon_sym_DOT] = ACTIONS(4913), - [anon_sym_SEMI] = ACTIONS(4915), - [anon_sym_get] = ACTIONS(4913), - [anon_sym_set] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4913), - [sym_label] = ACTIONS(4915), - [anon_sym_in] = ACTIONS(4913), - [anon_sym_DOT_DOT] = ACTIONS(4915), - [anon_sym_QMARK_COLON] = ACTIONS(4915), - [anon_sym_AMP_AMP] = ACTIONS(4915), - [anon_sym_PIPE_PIPE] = ACTIONS(4915), - [anon_sym_else] = ACTIONS(4913), - [anon_sym_COLON_COLON] = ACTIONS(4915), - [anon_sym_PLUS_EQ] = ACTIONS(4915), - [anon_sym_DASH_EQ] = ACTIONS(4915), - [anon_sym_STAR_EQ] = ACTIONS(4915), - [anon_sym_SLASH_EQ] = ACTIONS(4915), - [anon_sym_PERCENT_EQ] = ACTIONS(4915), - [anon_sym_BANG_EQ] = ACTIONS(4913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), - [anon_sym_EQ_EQ] = ACTIONS(4913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), - [anon_sym_LT_EQ] = ACTIONS(4915), - [anon_sym_GT_EQ] = ACTIONS(4915), - [anon_sym_BANGin] = ACTIONS(4915), - [anon_sym_is] = ACTIONS(4913), - [anon_sym_BANGis] = ACTIONS(4915), - [anon_sym_PLUS] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_SLASH] = ACTIONS(4913), - [anon_sym_PERCENT] = ACTIONS(4913), - [anon_sym_as_QMARK] = ACTIONS(4915), - [anon_sym_PLUS_PLUS] = ACTIONS(4915), - [anon_sym_DASH_DASH] = ACTIONS(4915), - [anon_sym_BANG_BANG] = ACTIONS(4915), - [anon_sym_suspend] = ACTIONS(4913), - [anon_sym_sealed] = ACTIONS(4913), - [anon_sym_annotation] = ACTIONS(4913), - [anon_sym_data] = ACTIONS(4913), - [anon_sym_inner] = ACTIONS(4913), - [anon_sym_override] = ACTIONS(4913), - [anon_sym_lateinit] = ACTIONS(4913), - [anon_sym_public] = ACTIONS(4913), - [anon_sym_private] = ACTIONS(4913), - [anon_sym_internal] = ACTIONS(4913), - [anon_sym_protected] = ACTIONS(4913), - [anon_sym_tailrec] = ACTIONS(4913), - [anon_sym_operator] = ACTIONS(4913), - [anon_sym_infix] = ACTIONS(4913), - [anon_sym_inline] = ACTIONS(4913), - [anon_sym_external] = ACTIONS(4913), - [sym_property_modifier] = ACTIONS(4913), - [anon_sym_abstract] = ACTIONS(4913), - [anon_sym_final] = ACTIONS(4913), - [anon_sym_open] = ACTIONS(4913), - [anon_sym_vararg] = ACTIONS(4913), - [anon_sym_noinline] = ACTIONS(4913), - [anon_sym_crossinline] = ACTIONS(4913), - [anon_sym_expect] = ACTIONS(4913), - [anon_sym_actual] = ACTIONS(4913), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4915), - [sym__automatic_semicolon] = ACTIONS(4915), - [sym_safe_nav] = ACTIONS(4915), - [sym_multiline_comment] = ACTIONS(3), - }, - [3723] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3724] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - }, - [3725] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4842), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(6864), - [anon_sym_PLUS_EQ] = ACTIONS(4877), - [anon_sym_DASH_EQ] = ACTIONS(4877), - [anon_sym_STAR_EQ] = ACTIONS(4877), - [anon_sym_SLASH_EQ] = ACTIONS(4877), - [anon_sym_PERCENT_EQ] = ACTIONS(4877), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), - [sym_multiline_comment] = ACTIONS(3), - }, - [3726] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [3727] = { - [sym__alpha_identifier] = ACTIONS(4344), - [anon_sym_AT] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4344), - [anon_sym_EQ] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_get] = ACTIONS(4344), - [anon_sym_set] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [sym_label] = ACTIONS(4346), - [anon_sym_in] = ACTIONS(4344), - [anon_sym_DOT_DOT] = ACTIONS(4346), - [anon_sym_QMARK_COLON] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4346), - [anon_sym_else] = ACTIONS(4344), - [anon_sym_COLON_COLON] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(4346), - [anon_sym_DASH_EQ] = ACTIONS(4346), - [anon_sym_STAR_EQ] = ACTIONS(4346), - [anon_sym_SLASH_EQ] = ACTIONS(4346), - [anon_sym_PERCENT_EQ] = ACTIONS(4346), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4346), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4346), - [anon_sym_BANGin] = ACTIONS(4346), - [anon_sym_is] = ACTIONS(4344), - [anon_sym_BANGis] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_SLASH] = ACTIONS(4344), - [anon_sym_PERCENT] = ACTIONS(4344), - [anon_sym_as_QMARK] = ACTIONS(4346), - [anon_sym_PLUS_PLUS] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4346), - [anon_sym_BANG_BANG] = ACTIONS(4346), - [anon_sym_suspend] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_annotation] = ACTIONS(4344), - [anon_sym_data] = ACTIONS(4344), - [anon_sym_inner] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_lateinit] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_tailrec] = ACTIONS(4344), - [anon_sym_operator] = ACTIONS(4344), - [anon_sym_infix] = ACTIONS(4344), - [anon_sym_inline] = ACTIONS(4344), - [anon_sym_external] = ACTIONS(4344), - [sym_property_modifier] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_final] = ACTIONS(4344), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_vararg] = ACTIONS(4344), - [anon_sym_noinline] = ACTIONS(4344), - [anon_sym_crossinline] = ACTIONS(4344), - [anon_sym_expect] = ACTIONS(4344), - [anon_sym_actual] = ACTIONS(4344), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4346), - [sym__automatic_semicolon] = ACTIONS(4346), - [sym_safe_nav] = ACTIONS(4346), - [sym_multiline_comment] = ACTIONS(3), - }, - [3728] = { - [sym__alpha_identifier] = ACTIONS(4806), - [anon_sym_AT] = ACTIONS(4808), - [anon_sym_LBRACK] = ACTIONS(4808), - [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_DOT] = 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_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), - }, - [3729] = { - [sym_type_constraints] = STATE(3110), - [sym_enum_class_body] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3112), - [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(3118), - [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_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), - [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), - }, - [3730] = { + [3678] = { [sym__alpha_identifier] = ACTIONS(4909), [anon_sym_AT] = ACTIONS(4911), [anon_sym_LBRACK] = ACTIONS(4911), @@ -401396,585 +397365,3201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4911), [sym_multiline_comment] = ACTIONS(3), }, - [3731] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3679] = { + [sym_type_constraints] = STATE(3080), + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + }, + [3680] = { + [sym_function_body] = STATE(3256), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_RBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_DASH_GT] = ACTIONS(4444), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + }, + [3681] = { + [sym_function_body] = STATE(3254), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_RBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [anon_sym_DASH_GT] = ACTIONS(4440), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + }, + [3682] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [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_DOT] = 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_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), + }, + [3683] = { + [sym_class_body] = STATE(3293), + [sym_type_constraints] = STATE(3019), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [3684] = { + [sym_class_body] = STATE(3455), + [sym_type_constraints] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [3685] = { + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6845), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_RBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [anon_sym_DASH_GT] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [3686] = { + [sym__alpha_identifier] = ACTIONS(4933), + [anon_sym_AT] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_COMMA] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4933), + [anon_sym_GT] = ACTIONS(4933), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), + [anon_sym_STAR] = ACTIONS(4933), + [sym_label] = ACTIONS(4935), + [anon_sym_in] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4935), + [anon_sym_QMARK_COLON] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4935), + [anon_sym_PIPE_PIPE] = ACTIONS(4935), + [anon_sym_else] = ACTIONS(4933), + [anon_sym_COLON_COLON] = ACTIONS(4935), + [anon_sym_PLUS_EQ] = ACTIONS(4935), + [anon_sym_DASH_EQ] = ACTIONS(4935), + [anon_sym_STAR_EQ] = ACTIONS(4935), + [anon_sym_SLASH_EQ] = ACTIONS(4935), + [anon_sym_PERCENT_EQ] = ACTIONS(4935), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4935), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4935), + [anon_sym_LT_EQ] = ACTIONS(4935), + [anon_sym_GT_EQ] = ACTIONS(4935), + [anon_sym_BANGin] = ACTIONS(4935), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_BANGis] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(4933), + [anon_sym_DASH] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4933), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_as_QMARK] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4935), + [anon_sym_DASH_DASH] = ACTIONS(4935), + [anon_sym_BANG_BANG] = ACTIONS(4935), + [anon_sym_suspend] = ACTIONS(4933), + [anon_sym_sealed] = ACTIONS(4933), + [anon_sym_annotation] = ACTIONS(4933), + [anon_sym_data] = ACTIONS(4933), + [anon_sym_inner] = ACTIONS(4933), + [anon_sym_override] = ACTIONS(4933), + [anon_sym_lateinit] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_internal] = ACTIONS(4933), + [anon_sym_protected] = ACTIONS(4933), + [anon_sym_tailrec] = ACTIONS(4933), + [anon_sym_operator] = ACTIONS(4933), + [anon_sym_infix] = ACTIONS(4933), + [anon_sym_inline] = ACTIONS(4933), + [anon_sym_external] = ACTIONS(4933), + [sym_property_modifier] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_open] = ACTIONS(4933), + [anon_sym_vararg] = ACTIONS(4933), + [anon_sym_noinline] = ACTIONS(4933), + [anon_sym_crossinline] = ACTIONS(4933), + [anon_sym_expect] = ACTIONS(4933), + [anon_sym_actual] = ACTIONS(4933), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4935), + [sym__automatic_semicolon] = ACTIONS(4935), + [sym_safe_nav] = ACTIONS(4935), + [sym_multiline_comment] = ACTIONS(3), + }, + [3687] = { + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3688] = { + [sym_class_body] = STATE(3235), + [sym_type_constraints] = STATE(3050), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6847), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [3689] = { + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [3690] = { + [sym_class_body] = STATE(3230), + [sym_type_constraints] = STATE(3081), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [3691] = { + [sym__alpha_identifier] = ACTIONS(4885), + [anon_sym_AT] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_where] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_get] = ACTIONS(4885), + [anon_sym_set] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4885), + [sym_label] = ACTIONS(4887), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_QMARK_COLON] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_else] = ACTIONS(4885), + [anon_sym_COLON_COLON] = ACTIONS(4887), + [anon_sym_PLUS_EQ] = ACTIONS(4887), + [anon_sym_DASH_EQ] = ACTIONS(4887), + [anon_sym_STAR_EQ] = ACTIONS(4887), + [anon_sym_SLASH_EQ] = ACTIONS(4887), + [anon_sym_PERCENT_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_BANGin] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_BANGis] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4885), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_as_QMARK] = ACTIONS(4887), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_BANG_BANG] = ACTIONS(4887), + [anon_sym_suspend] = ACTIONS(4885), + [anon_sym_sealed] = ACTIONS(4885), + [anon_sym_annotation] = ACTIONS(4885), + [anon_sym_data] = ACTIONS(4885), + [anon_sym_inner] = ACTIONS(4885), + [anon_sym_override] = ACTIONS(4885), + [anon_sym_lateinit] = ACTIONS(4885), + [anon_sym_public] = ACTIONS(4885), + [anon_sym_private] = ACTIONS(4885), + [anon_sym_internal] = ACTIONS(4885), + [anon_sym_protected] = ACTIONS(4885), + [anon_sym_tailrec] = ACTIONS(4885), + [anon_sym_operator] = ACTIONS(4885), + [anon_sym_infix] = ACTIONS(4885), + [anon_sym_inline] = ACTIONS(4885), + [anon_sym_external] = ACTIONS(4885), + [sym_property_modifier] = ACTIONS(4885), + [anon_sym_abstract] = ACTIONS(4885), + [anon_sym_final] = ACTIONS(4885), + [anon_sym_open] = ACTIONS(4885), + [anon_sym_vararg] = ACTIONS(4885), + [anon_sym_noinline] = ACTIONS(4885), + [anon_sym_crossinline] = ACTIONS(4885), + [anon_sym_expect] = ACTIONS(4885), + [anon_sym_actual] = ACTIONS(4885), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4887), + [sym__automatic_semicolon] = ACTIONS(4887), + [sym_safe_nav] = ACTIONS(4887), + [sym_multiline_comment] = ACTIONS(3), + }, + [3692] = { + [sym__alpha_identifier] = ACTIONS(4720), + [anon_sym_AT] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_as] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_where] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_get] = ACTIONS(4720), + [anon_sym_set] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4720), + [anon_sym_DOT_DOT] = ACTIONS(4722), + [anon_sym_QMARK_COLON] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4720), + [anon_sym_COLON_COLON] = ACTIONS(4722), + [anon_sym_PLUS_EQ] = ACTIONS(4722), + [anon_sym_DASH_EQ] = ACTIONS(4722), + [anon_sym_STAR_EQ] = ACTIONS(4722), + [anon_sym_SLASH_EQ] = ACTIONS(4722), + [anon_sym_PERCENT_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4722), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_BANGin] = ACTIONS(4722), + [anon_sym_is] = ACTIONS(4720), + [anon_sym_BANGis] = ACTIONS(4722), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_SLASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_as_QMARK] = ACTIONS(4722), + [anon_sym_PLUS_PLUS] = ACTIONS(4722), + [anon_sym_DASH_DASH] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4722), + [anon_sym_suspend] = ACTIONS(4720), + [anon_sym_sealed] = ACTIONS(4720), + [anon_sym_annotation] = ACTIONS(4720), + [anon_sym_data] = ACTIONS(4720), + [anon_sym_inner] = ACTIONS(4720), + [anon_sym_override] = ACTIONS(4720), + [anon_sym_lateinit] = ACTIONS(4720), + [anon_sym_public] = ACTIONS(4720), + [anon_sym_private] = ACTIONS(4720), + [anon_sym_internal] = ACTIONS(4720), + [anon_sym_protected] = ACTIONS(4720), + [anon_sym_tailrec] = ACTIONS(4720), + [anon_sym_operator] = ACTIONS(4720), + [anon_sym_infix] = ACTIONS(4720), + [anon_sym_inline] = ACTIONS(4720), + [anon_sym_external] = ACTIONS(4720), + [sym_property_modifier] = ACTIONS(4720), + [anon_sym_abstract] = ACTIONS(4720), + [anon_sym_final] = ACTIONS(4720), + [anon_sym_open] = ACTIONS(4720), + [anon_sym_vararg] = ACTIONS(4720), + [anon_sym_noinline] = ACTIONS(4720), + [anon_sym_crossinline] = ACTIONS(4720), + [anon_sym_expect] = ACTIONS(4720), + [anon_sym_actual] = ACTIONS(4720), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4722), + [sym__automatic_semicolon] = ACTIONS(4722), + [sym_safe_nav] = ACTIONS(4722), + [sym_multiline_comment] = ACTIONS(3), + }, + [3693] = { + [sym_type_constraints] = STATE(3095), + [sym_enum_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6849), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [3694] = { + [sym_type_constraints] = STATE(4002), + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [3695] = { + [sym_class_body] = STATE(3162), + [sym_type_constraints] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [3696] = { + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [sym_label] = ACTIONS(3880), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_suspend] = ACTIONS(3878), + [anon_sym_sealed] = ACTIONS(3878), + [anon_sym_annotation] = ACTIONS(3878), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_override] = ACTIONS(3878), + [anon_sym_lateinit] = ACTIONS(3878), + [anon_sym_public] = ACTIONS(3878), + [anon_sym_private] = ACTIONS(3878), + [anon_sym_internal] = ACTIONS(3878), + [anon_sym_protected] = ACTIONS(3878), + [anon_sym_tailrec] = ACTIONS(3878), + [anon_sym_operator] = ACTIONS(3878), + [anon_sym_infix] = ACTIONS(3878), + [anon_sym_inline] = ACTIONS(3878), + [anon_sym_external] = ACTIONS(3878), + [sym_property_modifier] = ACTIONS(3878), + [anon_sym_abstract] = ACTIONS(3878), + [anon_sym_final] = ACTIONS(3878), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_vararg] = ACTIONS(3878), + [anon_sym_noinline] = ACTIONS(3878), + [anon_sym_crossinline] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3880), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), + [sym_multiline_comment] = ACTIONS(3), + }, + [3697] = { + [sym__alpha_identifier] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [sym_label] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3076), + [anon_sym_QMARK_COLON] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_as_QMARK] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(3076), + [anon_sym_suspend] = ACTIONS(3074), + [anon_sym_sealed] = ACTIONS(3074), + [anon_sym_annotation] = ACTIONS(3074), + [anon_sym_data] = ACTIONS(3074), + [anon_sym_inner] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_lateinit] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_internal] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_tailrec] = ACTIONS(3074), + [anon_sym_operator] = ACTIONS(3074), + [anon_sym_infix] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_external] = ACTIONS(3074), + [sym_property_modifier] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_open] = ACTIONS(3074), + [anon_sym_vararg] = ACTIONS(3074), + [anon_sym_noinline] = ACTIONS(3074), + [anon_sym_crossinline] = ACTIONS(3074), + [anon_sym_expect] = ACTIONS(3074), + [anon_sym_actual] = ACTIONS(3074), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3076), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(3076), + [sym_multiline_comment] = ACTIONS(3), + }, + [3698] = { + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, - [3732] = { - [sym__alpha_identifier] = ACTIONS(4973), - [anon_sym_AT] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_where] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_get] = ACTIONS(4973), - [anon_sym_set] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [sym_label] = ACTIONS(4975), - [anon_sym_in] = ACTIONS(4973), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_QMARK_COLON] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_else] = ACTIONS(4973), - [anon_sym_COLON_COLON] = ACTIONS(4975), - [anon_sym_PLUS_EQ] = ACTIONS(4975), - [anon_sym_DASH_EQ] = ACTIONS(4975), - [anon_sym_STAR_EQ] = ACTIONS(4975), - [anon_sym_SLASH_EQ] = ACTIONS(4975), - [anon_sym_PERCENT_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4975), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_BANGin] = ACTIONS(4975), - [anon_sym_is] = ACTIONS(4973), - [anon_sym_BANGis] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_PERCENT] = ACTIONS(4973), - [anon_sym_as_QMARK] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_BANG_BANG] = ACTIONS(4975), - [anon_sym_suspend] = ACTIONS(4973), - [anon_sym_sealed] = ACTIONS(4973), - [anon_sym_annotation] = ACTIONS(4973), - [anon_sym_data] = ACTIONS(4973), - [anon_sym_inner] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_lateinit] = ACTIONS(4973), - [anon_sym_public] = ACTIONS(4973), - [anon_sym_private] = ACTIONS(4973), - [anon_sym_internal] = ACTIONS(4973), - [anon_sym_protected] = ACTIONS(4973), - [anon_sym_tailrec] = ACTIONS(4973), - [anon_sym_operator] = ACTIONS(4973), - [anon_sym_infix] = ACTIONS(4973), - [anon_sym_inline] = ACTIONS(4973), - [anon_sym_external] = ACTIONS(4973), - [sym_property_modifier] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_final] = ACTIONS(4973), - [anon_sym_open] = ACTIONS(4973), - [anon_sym_vararg] = ACTIONS(4973), - [anon_sym_noinline] = ACTIONS(4973), - [anon_sym_crossinline] = ACTIONS(4973), - [anon_sym_expect] = ACTIONS(4973), - [anon_sym_actual] = ACTIONS(4973), + [3699] = { + [sym_type_constraints] = STATE(3102), + [sym_enum_class_body] = STATE(3146), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [3700] = { + [sym__alpha_identifier] = ACTIONS(4989), + [anon_sym_AT] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_where] = ACTIONS(4989), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_get] = ACTIONS(4989), + [anon_sym_set] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4989), + [sym_label] = ACTIONS(4991), + [anon_sym_in] = ACTIONS(4989), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_QMARK_COLON] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_else] = ACTIONS(4989), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_PLUS_EQ] = ACTIONS(4991), + [anon_sym_DASH_EQ] = ACTIONS(4991), + [anon_sym_STAR_EQ] = ACTIONS(4991), + [anon_sym_SLASH_EQ] = ACTIONS(4991), + [anon_sym_PERCENT_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_BANGin] = ACTIONS(4991), + [anon_sym_is] = ACTIONS(4989), + [anon_sym_BANGis] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4989), + [anon_sym_as_QMARK] = ACTIONS(4991), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_BANG_BANG] = ACTIONS(4991), + [anon_sym_suspend] = ACTIONS(4989), + [anon_sym_sealed] = ACTIONS(4989), + [anon_sym_annotation] = ACTIONS(4989), + [anon_sym_data] = ACTIONS(4989), + [anon_sym_inner] = ACTIONS(4989), + [anon_sym_override] = ACTIONS(4989), + [anon_sym_lateinit] = ACTIONS(4989), + [anon_sym_public] = ACTIONS(4989), + [anon_sym_private] = ACTIONS(4989), + [anon_sym_internal] = ACTIONS(4989), + [anon_sym_protected] = ACTIONS(4989), + [anon_sym_tailrec] = ACTIONS(4989), + [anon_sym_operator] = ACTIONS(4989), + [anon_sym_infix] = ACTIONS(4989), + [anon_sym_inline] = ACTIONS(4989), + [anon_sym_external] = ACTIONS(4989), + [sym_property_modifier] = ACTIONS(4989), + [anon_sym_abstract] = ACTIONS(4989), + [anon_sym_final] = ACTIONS(4989), + [anon_sym_open] = ACTIONS(4989), + [anon_sym_vararg] = ACTIONS(4989), + [anon_sym_noinline] = ACTIONS(4989), + [anon_sym_crossinline] = ACTIONS(4989), + [anon_sym_expect] = ACTIONS(4989), + [anon_sym_actual] = ACTIONS(4989), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4975), - [sym__automatic_semicolon] = ACTIONS(4975), - [sym_safe_nav] = ACTIONS(4975), + [sym__backtick_identifier] = ACTIONS(4991), + [sym__automatic_semicolon] = ACTIONS(4991), + [sym_safe_nav] = ACTIONS(4991), [sym_multiline_comment] = ACTIONS(3), }, - [3733] = { - [sym__alpha_identifier] = ACTIONS(4802), - [anon_sym_AT] = ACTIONS(4804), - [anon_sym_LBRACK] = ACTIONS(4804), - [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_DOT] = 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_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), + [3701] = { + [sym__alpha_identifier] = ACTIONS(4993), + [anon_sym_AT] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_where] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [sym_label] = ACTIONS(4995), + [anon_sym_in] = ACTIONS(4993), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_QMARK_COLON] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_else] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4995), + [anon_sym_PLUS_EQ] = ACTIONS(4995), + [anon_sym_DASH_EQ] = ACTIONS(4995), + [anon_sym_STAR_EQ] = ACTIONS(4995), + [anon_sym_SLASH_EQ] = ACTIONS(4995), + [anon_sym_PERCENT_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_BANGin] = ACTIONS(4995), + [anon_sym_is] = ACTIONS(4993), + [anon_sym_BANGis] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_as_QMARK] = ACTIONS(4995), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_BANG_BANG] = ACTIONS(4995), + [anon_sym_suspend] = ACTIONS(4993), + [anon_sym_sealed] = ACTIONS(4993), + [anon_sym_annotation] = ACTIONS(4993), + [anon_sym_data] = ACTIONS(4993), + [anon_sym_inner] = ACTIONS(4993), + [anon_sym_override] = ACTIONS(4993), + [anon_sym_lateinit] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_internal] = ACTIONS(4993), + [anon_sym_protected] = ACTIONS(4993), + [anon_sym_tailrec] = ACTIONS(4993), + [anon_sym_operator] = ACTIONS(4993), + [anon_sym_infix] = ACTIONS(4993), + [anon_sym_inline] = ACTIONS(4993), + [anon_sym_external] = ACTIONS(4993), + [sym_property_modifier] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_open] = ACTIONS(4993), + [anon_sym_vararg] = ACTIONS(4993), + [anon_sym_noinline] = ACTIONS(4993), + [anon_sym_crossinline] = ACTIONS(4993), + [anon_sym_expect] = ACTIONS(4993), + [anon_sym_actual] = ACTIONS(4993), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4995), + [sym__automatic_semicolon] = ACTIONS(4995), + [sym_safe_nav] = ACTIONS(4995), [sym_multiline_comment] = ACTIONS(3), }, - [3734] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_get] = ACTIONS(4995), - [anon_sym_set] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [sym_label] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_QMARK_COLON] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_else] = ACTIONS(4995), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_PLUS_EQ] = ACTIONS(4997), - [anon_sym_DASH_EQ] = ACTIONS(4997), - [anon_sym_STAR_EQ] = ACTIONS(4997), - [anon_sym_SLASH_EQ] = ACTIONS(4997), - [anon_sym_PERCENT_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_BANGin] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_BANGis] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_as_QMARK] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_BANG_BANG] = ACTIONS(4997), - [anon_sym_suspend] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_annotation] = ACTIONS(4995), - [anon_sym_data] = ACTIONS(4995), - [anon_sym_inner] = ACTIONS(4995), - [anon_sym_override] = ACTIONS(4995), - [anon_sym_lateinit] = ACTIONS(4995), - [anon_sym_public] = ACTIONS(4995), - [anon_sym_private] = ACTIONS(4995), - [anon_sym_internal] = ACTIONS(4995), - [anon_sym_protected] = ACTIONS(4995), - [anon_sym_tailrec] = ACTIONS(4995), - [anon_sym_operator] = ACTIONS(4995), - [anon_sym_infix] = ACTIONS(4995), - [anon_sym_inline] = ACTIONS(4995), - [anon_sym_external] = ACTIONS(4995), - [sym_property_modifier] = ACTIONS(4995), - [anon_sym_abstract] = ACTIONS(4995), - [anon_sym_final] = ACTIONS(4995), - [anon_sym_open] = ACTIONS(4995), - [anon_sym_vararg] = ACTIONS(4995), - [anon_sym_noinline] = ACTIONS(4995), - [anon_sym_crossinline] = ACTIONS(4995), - [anon_sym_expect] = ACTIONS(4995), - [anon_sym_actual] = ACTIONS(4995), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4997), - [sym__automatic_semicolon] = ACTIONS(4997), - [sym_safe_nav] = ACTIONS(4997), + [3702] = { + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, - [3735] = { - [sym__alpha_identifier] = ACTIONS(4969), - [anon_sym_AT] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4969), - [anon_sym_where] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_get] = ACTIONS(4969), - [anon_sym_set] = ACTIONS(4969), - [anon_sym_STAR] = ACTIONS(4969), - [sym_label] = ACTIONS(4971), - [anon_sym_in] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4971), - [anon_sym_QMARK_COLON] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4971), - [anon_sym_PIPE_PIPE] = ACTIONS(4971), - [anon_sym_else] = ACTIONS(4969), - [anon_sym_COLON_COLON] = ACTIONS(4971), - [anon_sym_PLUS_EQ] = ACTIONS(4971), - [anon_sym_DASH_EQ] = ACTIONS(4971), - [anon_sym_STAR_EQ] = ACTIONS(4971), - [anon_sym_SLASH_EQ] = ACTIONS(4971), - [anon_sym_PERCENT_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4971), - [anon_sym_LT_EQ] = ACTIONS(4971), - [anon_sym_GT_EQ] = ACTIONS(4971), - [anon_sym_BANGin] = ACTIONS(4971), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_BANGis] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4969), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4969), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_as_QMARK] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4971), - [anon_sym_BANG_BANG] = ACTIONS(4971), - [anon_sym_suspend] = ACTIONS(4969), - [anon_sym_sealed] = ACTIONS(4969), - [anon_sym_annotation] = ACTIONS(4969), - [anon_sym_data] = ACTIONS(4969), - [anon_sym_inner] = ACTIONS(4969), - [anon_sym_override] = ACTIONS(4969), - [anon_sym_lateinit] = ACTIONS(4969), - [anon_sym_public] = ACTIONS(4969), - [anon_sym_private] = ACTIONS(4969), - [anon_sym_internal] = ACTIONS(4969), - [anon_sym_protected] = ACTIONS(4969), - [anon_sym_tailrec] = ACTIONS(4969), - [anon_sym_operator] = ACTIONS(4969), - [anon_sym_infix] = ACTIONS(4969), - [anon_sym_inline] = ACTIONS(4969), - [anon_sym_external] = ACTIONS(4969), - [sym_property_modifier] = ACTIONS(4969), - [anon_sym_abstract] = ACTIONS(4969), - [anon_sym_final] = ACTIONS(4969), - [anon_sym_open] = ACTIONS(4969), - [anon_sym_vararg] = ACTIONS(4969), - [anon_sym_noinline] = ACTIONS(4969), - [anon_sym_crossinline] = ACTIONS(4969), - [anon_sym_expect] = ACTIONS(4969), - [anon_sym_actual] = ACTIONS(4969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4971), - [sym__automatic_semicolon] = ACTIONS(4971), - [sym_safe_nav] = ACTIONS(4971), + [3703] = { + [sym_class_body] = STATE(3317), + [sym_type_constraints] = STATE(3020), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, - [3736] = { - [sym__alpha_identifier] = ACTIONS(4965), - [anon_sym_AT] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4965), - [anon_sym_where] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_get] = ACTIONS(4965), - [anon_sym_set] = ACTIONS(4965), - [anon_sym_STAR] = ACTIONS(4965), - [sym_label] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4967), - [anon_sym_QMARK_COLON] = ACTIONS(4967), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE_PIPE] = ACTIONS(4967), - [anon_sym_else] = ACTIONS(4965), - [anon_sym_COLON_COLON] = ACTIONS(4967), - [anon_sym_PLUS_EQ] = ACTIONS(4967), - [anon_sym_DASH_EQ] = ACTIONS(4967), - [anon_sym_STAR_EQ] = ACTIONS(4967), - [anon_sym_SLASH_EQ] = ACTIONS(4967), - [anon_sym_PERCENT_EQ] = ACTIONS(4967), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4967), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4967), - [anon_sym_LT_EQ] = ACTIONS(4967), - [anon_sym_GT_EQ] = ACTIONS(4967), - [anon_sym_BANGin] = ACTIONS(4967), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_BANGis] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4965), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_as_QMARK] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4967), - [anon_sym_BANG_BANG] = ACTIONS(4967), - [anon_sym_suspend] = ACTIONS(4965), - [anon_sym_sealed] = ACTIONS(4965), - [anon_sym_annotation] = ACTIONS(4965), - [anon_sym_data] = ACTIONS(4965), - [anon_sym_inner] = ACTIONS(4965), - [anon_sym_override] = ACTIONS(4965), - [anon_sym_lateinit] = ACTIONS(4965), - [anon_sym_public] = ACTIONS(4965), - [anon_sym_private] = ACTIONS(4965), - [anon_sym_internal] = ACTIONS(4965), - [anon_sym_protected] = ACTIONS(4965), - [anon_sym_tailrec] = ACTIONS(4965), - [anon_sym_operator] = ACTIONS(4965), - [anon_sym_infix] = ACTIONS(4965), - [anon_sym_inline] = ACTIONS(4965), - [anon_sym_external] = ACTIONS(4965), - [sym_property_modifier] = ACTIONS(4965), - [anon_sym_abstract] = ACTIONS(4965), - [anon_sym_final] = ACTIONS(4965), - [anon_sym_open] = ACTIONS(4965), - [anon_sym_vararg] = ACTIONS(4965), - [anon_sym_noinline] = ACTIONS(4965), - [anon_sym_crossinline] = ACTIONS(4965), - [anon_sym_expect] = ACTIONS(4965), - [anon_sym_actual] = ACTIONS(4965), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4967), - [sym__automatic_semicolon] = ACTIONS(4967), - [sym_safe_nav] = ACTIONS(4967), + [3704] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [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(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), [sym_multiline_comment] = ACTIONS(3), }, - [3737] = { - [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_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), + [3705] = { + [sym__alpha_identifier] = ACTIONS(4997), + [anon_sym_AT] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4999), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4999), + [anon_sym_get] = ACTIONS(4997), + [anon_sym_set] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4997), + [sym_label] = ACTIONS(4999), + [anon_sym_in] = ACTIONS(4997), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_QMARK_COLON] = ACTIONS(4999), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_else] = ACTIONS(4997), + [anon_sym_COLON_COLON] = ACTIONS(4999), + [anon_sym_PLUS_EQ] = ACTIONS(4999), + [anon_sym_DASH_EQ] = ACTIONS(4999), + [anon_sym_STAR_EQ] = ACTIONS(4999), + [anon_sym_SLASH_EQ] = ACTIONS(4999), + [anon_sym_PERCENT_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_BANGin] = ACTIONS(4999), + [anon_sym_is] = ACTIONS(4997), + [anon_sym_BANGis] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_as_QMARK] = ACTIONS(4999), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_BANG_BANG] = ACTIONS(4999), + [anon_sym_suspend] = ACTIONS(4997), + [anon_sym_sealed] = ACTIONS(4997), + [anon_sym_annotation] = ACTIONS(4997), + [anon_sym_data] = ACTIONS(4997), + [anon_sym_inner] = ACTIONS(4997), + [anon_sym_override] = ACTIONS(4997), + [anon_sym_lateinit] = ACTIONS(4997), + [anon_sym_public] = ACTIONS(4997), + [anon_sym_private] = ACTIONS(4997), + [anon_sym_internal] = ACTIONS(4997), + [anon_sym_protected] = ACTIONS(4997), + [anon_sym_tailrec] = ACTIONS(4997), + [anon_sym_operator] = ACTIONS(4997), + [anon_sym_infix] = ACTIONS(4997), + [anon_sym_inline] = ACTIONS(4997), + [anon_sym_external] = ACTIONS(4997), + [sym_property_modifier] = ACTIONS(4997), + [anon_sym_abstract] = ACTIONS(4997), + [anon_sym_final] = ACTIONS(4997), + [anon_sym_open] = ACTIONS(4997), + [anon_sym_vararg] = ACTIONS(4997), + [anon_sym_noinline] = ACTIONS(4997), + [anon_sym_crossinline] = ACTIONS(4997), + [anon_sym_expect] = ACTIONS(4997), + [anon_sym_actual] = ACTIONS(4997), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4999), + [sym__automatic_semicolon] = ACTIONS(4999), + [sym_safe_nav] = ACTIONS(4999), + [sym_multiline_comment] = ACTIONS(3), + }, + [3706] = { + [sym__alpha_identifier] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_QMARK_COLON] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_BANG_BANG] = ACTIONS(3342), + [anon_sym_suspend] = ACTIONS(3340), + [anon_sym_sealed] = ACTIONS(3340), + [anon_sym_annotation] = ACTIONS(3340), + [anon_sym_data] = ACTIONS(3340), + [anon_sym_inner] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_lateinit] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_internal] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_tailrec] = ACTIONS(3340), + [anon_sym_operator] = ACTIONS(3340), + [anon_sym_infix] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_external] = ACTIONS(3340), + [sym_property_modifier] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_final] = ACTIONS(3340), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_vararg] = ACTIONS(3340), + [anon_sym_noinline] = ACTIONS(3340), + [anon_sym_crossinline] = ACTIONS(3340), + [anon_sym_expect] = ACTIONS(3340), + [anon_sym_actual] = ACTIONS(3340), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3342), + [sym__automatic_semicolon] = ACTIONS(3342), + [sym_safe_nav] = ACTIONS(3342), + [sym_multiline_comment] = ACTIONS(3), + }, + [3707] = { + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [3708] = { + [sym_class_body] = STATE(3296), + [sym_type_constraints] = STATE(3008), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(6855), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + }, + [3709] = { + [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_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), + }, + [3710] = { + [aux_sym_user_type_repeat1] = STATE(3880), + [sym__alpha_identifier] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_typealias] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_interface] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_val] = ACTIONS(4271), + [anon_sym_var] = ACTIONS(4271), + [anon_sym_object] = ACTIONS(4271), + [anon_sym_fun] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_get] = ACTIONS(4271), + [anon_sym_set] = ACTIONS(4271), + [anon_sym_this] = ACTIONS(4271), + [anon_sym_super] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [sym_label] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_null] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_when] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_suspend] = ACTIONS(4271), + [anon_sym_sealed] = ACTIONS(4271), + [anon_sym_annotation] = ACTIONS(4271), + [anon_sym_data] = ACTIONS(4271), + [anon_sym_inner] = ACTIONS(4271), + [anon_sym_override] = ACTIONS(4271), + [anon_sym_lateinit] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_internal] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_tailrec] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_infix] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym_external] = ACTIONS(4271), + [sym_property_modifier] = ACTIONS(4271), + [anon_sym_abstract] = ACTIONS(4271), + [anon_sym_final] = ACTIONS(4271), + [anon_sym_open] = ACTIONS(4271), + [anon_sym_vararg] = ACTIONS(4271), + [anon_sym_noinline] = ACTIONS(4271), + [anon_sym_crossinline] = ACTIONS(4271), + [anon_sym_expect] = ACTIONS(4271), + [anon_sym_actual] = ACTIONS(4271), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4273), + [anon_sym_continue_AT] = ACTIONS(4273), + [anon_sym_break_AT] = ACTIONS(4273), + [sym_real_literal] = ACTIONS(4273), + [sym_integer_literal] = ACTIONS(4271), + [sym_hex_literal] = ACTIONS(4273), + [sym_bin_literal] = ACTIONS(4273), + [anon_sym_true] = ACTIONS(4271), + [anon_sym_false] = ACTIONS(4271), + [anon_sym_SQUOTE] = ACTIONS(4273), + [sym__backtick_identifier] = ACTIONS(4273), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4273), + }, + [3711] = { + [sym__alpha_identifier] = ACTIONS(4396), + [anon_sym_AT] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_COMMA] = ACTIONS(4398), + [anon_sym_LT] = ACTIONS(4396), + [anon_sym_GT] = ACTIONS(4396), + [anon_sym_where] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym_get] = ACTIONS(4396), + [anon_sym_set] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4396), + [anon_sym_DOT_DOT] = ACTIONS(4398), + [anon_sym_QMARK_COLON] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_PIPE_PIPE] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_PLUS_EQ] = ACTIONS(4398), + [anon_sym_DASH_EQ] = ACTIONS(4398), + [anon_sym_STAR_EQ] = ACTIONS(4398), + [anon_sym_SLASH_EQ] = ACTIONS(4398), + [anon_sym_PERCENT_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4398), + [anon_sym_LT_EQ] = ACTIONS(4398), + [anon_sym_GT_EQ] = ACTIONS(4398), + [anon_sym_BANGin] = ACTIONS(4398), + [anon_sym_is] = ACTIONS(4396), + [anon_sym_BANGis] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4398), + [anon_sym_PLUS_PLUS] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4398), + [anon_sym_suspend] = ACTIONS(4396), + [anon_sym_sealed] = ACTIONS(4396), + [anon_sym_annotation] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4396), + [anon_sym_inner] = ACTIONS(4396), + [anon_sym_override] = ACTIONS(4396), + [anon_sym_lateinit] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_internal] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_tailrec] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_infix] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym_external] = ACTIONS(4396), + [sym_property_modifier] = ACTIONS(4396), + [anon_sym_abstract] = ACTIONS(4396), + [anon_sym_final] = ACTIONS(4396), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_vararg] = ACTIONS(4396), + [anon_sym_noinline] = ACTIONS(4396), + [anon_sym_crossinline] = ACTIONS(4396), + [anon_sym_expect] = ACTIONS(4396), + [anon_sym_actual] = ACTIONS(4396), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4398), + [sym__automatic_semicolon] = ACTIONS(4398), + [sym_safe_nav] = ACTIONS(4398), + [sym_multiline_comment] = ACTIONS(3), + }, + [3712] = { + [sym__alpha_identifier] = ACTIONS(4929), + [anon_sym_AT] = ACTIONS(4931), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_as] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4929), + [anon_sym_LBRACE] = ACTIONS(4931), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_LPAREN] = ACTIONS(4931), + [anon_sym_COMMA] = ACTIONS(4931), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_where] = ACTIONS(4929), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_get] = ACTIONS(4929), + [anon_sym_set] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [sym_label] = ACTIONS(4931), + [anon_sym_in] = ACTIONS(4929), + [anon_sym_DOT_DOT] = ACTIONS(4931), + [anon_sym_QMARK_COLON] = ACTIONS(4931), + [anon_sym_AMP_AMP] = ACTIONS(4931), + [anon_sym_PIPE_PIPE] = ACTIONS(4931), + [anon_sym_else] = ACTIONS(4929), + [anon_sym_COLON_COLON] = ACTIONS(4931), + [anon_sym_PLUS_EQ] = ACTIONS(4931), + [anon_sym_DASH_EQ] = ACTIONS(4931), + [anon_sym_STAR_EQ] = ACTIONS(4931), + [anon_sym_SLASH_EQ] = ACTIONS(4931), + [anon_sym_PERCENT_EQ] = ACTIONS(4931), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4931), + [anon_sym_EQ_EQ] = ACTIONS(4929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4931), + [anon_sym_LT_EQ] = ACTIONS(4931), + [anon_sym_GT_EQ] = ACTIONS(4931), + [anon_sym_BANGin] = ACTIONS(4931), + [anon_sym_is] = ACTIONS(4929), + [anon_sym_BANGis] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_as_QMARK] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4931), + [anon_sym_DASH_DASH] = ACTIONS(4931), + [anon_sym_BANG_BANG] = ACTIONS(4931), + [anon_sym_suspend] = ACTIONS(4929), + [anon_sym_sealed] = ACTIONS(4929), + [anon_sym_annotation] = ACTIONS(4929), + [anon_sym_data] = ACTIONS(4929), + [anon_sym_inner] = ACTIONS(4929), + [anon_sym_override] = ACTIONS(4929), + [anon_sym_lateinit] = ACTIONS(4929), + [anon_sym_public] = ACTIONS(4929), + [anon_sym_private] = ACTIONS(4929), + [anon_sym_internal] = ACTIONS(4929), + [anon_sym_protected] = ACTIONS(4929), + [anon_sym_tailrec] = ACTIONS(4929), + [anon_sym_operator] = ACTIONS(4929), + [anon_sym_infix] = ACTIONS(4929), + [anon_sym_inline] = ACTIONS(4929), + [anon_sym_external] = ACTIONS(4929), + [sym_property_modifier] = ACTIONS(4929), + [anon_sym_abstract] = ACTIONS(4929), + [anon_sym_final] = ACTIONS(4929), + [anon_sym_open] = ACTIONS(4929), + [anon_sym_vararg] = ACTIONS(4929), + [anon_sym_noinline] = ACTIONS(4929), + [anon_sym_crossinline] = ACTIONS(4929), + [anon_sym_expect] = ACTIONS(4929), + [anon_sym_actual] = ACTIONS(4929), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4931), + [sym__automatic_semicolon] = ACTIONS(4931), + [sym_safe_nav] = ACTIONS(4931), + [sym_multiline_comment] = ACTIONS(3), + }, + [3713] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [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_DOT] = 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_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), + }, + [3714] = { + [sym__alpha_identifier] = ACTIONS(4619), + [anon_sym_AT] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4621), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [anon_sym_get] = ACTIONS(4619), + [anon_sym_set] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [sym_label] = ACTIONS(4621), + [anon_sym_in] = ACTIONS(4619), + [anon_sym_DOT_DOT] = ACTIONS(4621), + [anon_sym_QMARK_COLON] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_else] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4621), + [anon_sym_PLUS_EQ] = ACTIONS(4621), + [anon_sym_DASH_EQ] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(4621), + [anon_sym_SLASH_EQ] = ACTIONS(4621), + [anon_sym_PERCENT_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ] = ACTIONS(4619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ] = ACTIONS(4619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_as_QMARK] = ACTIONS(4621), + [anon_sym_PLUS_PLUS] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_BANG_BANG] = ACTIONS(4621), + [anon_sym_suspend] = ACTIONS(4619), + [anon_sym_sealed] = ACTIONS(4619), + [anon_sym_annotation] = ACTIONS(4619), + [anon_sym_data] = ACTIONS(4619), + [anon_sym_inner] = ACTIONS(4619), + [anon_sym_override] = ACTIONS(4619), + [anon_sym_lateinit] = ACTIONS(4619), + [anon_sym_public] = ACTIONS(4619), + [anon_sym_private] = ACTIONS(4619), + [anon_sym_internal] = ACTIONS(4619), + [anon_sym_protected] = ACTIONS(4619), + [anon_sym_tailrec] = ACTIONS(4619), + [anon_sym_operator] = ACTIONS(4619), + [anon_sym_infix] = ACTIONS(4619), + [anon_sym_inline] = ACTIONS(4619), + [anon_sym_external] = ACTIONS(4619), + [sym_property_modifier] = ACTIONS(4619), + [anon_sym_abstract] = ACTIONS(4619), + [anon_sym_final] = ACTIONS(4619), + [anon_sym_open] = ACTIONS(4619), + [anon_sym_vararg] = ACTIONS(4619), + [anon_sym_noinline] = ACTIONS(4619), + [anon_sym_crossinline] = ACTIONS(4619), + [anon_sym_expect] = ACTIONS(4619), + [anon_sym_actual] = ACTIONS(4619), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4654), - [sym__automatic_semicolon] = ACTIONS(4654), - [sym_safe_nav] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4621), + [sym__automatic_semicolon] = ACTIONS(4621), + [sym_safe_nav] = ACTIONS(4621), [sym_multiline_comment] = ACTIONS(3), }, - [3738] = { - [sym__alpha_identifier] = ACTIONS(4822), - [anon_sym_AT] = ACTIONS(4824), - [anon_sym_LBRACK] = ACTIONS(4824), + [3715] = { + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + }, + [3716] = { + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + }, + [3717] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(1694), + [anon_sym_sealed] = ACTIONS(1694), + [anon_sym_annotation] = ACTIONS(1694), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_lateinit] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_internal] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_tailrec] = ACTIONS(1694), + [anon_sym_operator] = ACTIONS(1694), + [anon_sym_infix] = ACTIONS(1694), + [anon_sym_inline] = ACTIONS(1694), + [anon_sym_external] = ACTIONS(1694), + [sym_property_modifier] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(1694), + [anon_sym_final] = ACTIONS(1694), + [anon_sym_open] = ACTIONS(1694), + [anon_sym_vararg] = ACTIONS(1694), + [anon_sym_noinline] = ACTIONS(1694), + [anon_sym_crossinline] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3718] = { + [sym__alpha_identifier] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_where] = ACTIONS(3264), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [sym_label] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_QMARK_COLON] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3264), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_as_QMARK] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_BANG_BANG] = ACTIONS(3266), + [anon_sym_suspend] = ACTIONS(3264), + [anon_sym_sealed] = ACTIONS(3264), + [anon_sym_annotation] = ACTIONS(3264), + [anon_sym_data] = ACTIONS(3264), + [anon_sym_inner] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_lateinit] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_internal] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_tailrec] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_infix] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym_external] = ACTIONS(3264), + [sym_property_modifier] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3264), + [anon_sym_vararg] = ACTIONS(3264), + [anon_sym_noinline] = ACTIONS(3264), + [anon_sym_crossinline] = ACTIONS(3264), + [anon_sym_expect] = ACTIONS(3264), + [anon_sym_actual] = ACTIONS(3264), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3266), + [sym__automatic_semicolon] = ACTIONS(3266), + [sym_safe_nav] = ACTIONS(3266), + [sym_multiline_comment] = ACTIONS(3), + }, + [3719] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), [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_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), [anon_sym_LT] = ACTIONS(4822), [anon_sym_GT] = ACTIONS(4822), - [anon_sym_where] = ACTIONS(4822), + [anon_sym_object] = ACTIONS(4502), + [anon_sym_fun] = ACTIONS(4502), [anon_sym_DOT] = 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_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_this] = ACTIONS(4502), + [anon_sym_super] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4502), + [anon_sym_in] = ACTIONS(4502), [anon_sym_DOT_DOT] = ACTIONS(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_null] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_when] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), [anon_sym_PLUS_EQ] = ACTIONS(4824), [anon_sym_DASH_EQ] = ACTIONS(4824), [anon_sym_STAR_EQ] = ACTIONS(4824), @@ -401986,760 +400571,1383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), [anon_sym_SLASH] = ACTIONS(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_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4502), [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_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), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4504), + [anon_sym_continue_AT] = ACTIONS(4504), + [anon_sym_break_AT] = ACTIONS(4504), + [sym_real_literal] = ACTIONS(4504), + [sym_integer_literal] = ACTIONS(4502), + [sym_hex_literal] = ACTIONS(4504), + [sym_bin_literal] = ACTIONS(4504), + [anon_sym_true] = ACTIONS(4502), + [anon_sym_false] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4504), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), [sym_safe_nav] = ACTIONS(4824), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4504), }, - [3739] = { - [sym__alpha_identifier] = ACTIONS(4863), - [anon_sym_AT] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4865), - [anon_sym_as] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4865), - [anon_sym_LPAREN] = ACTIONS(4865), - [anon_sym_COMMA] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4863), - [anon_sym_GT] = ACTIONS(4863), - [anon_sym_where] = ACTIONS(4863), - [anon_sym_DOT] = ACTIONS(4863), - [anon_sym_SEMI] = ACTIONS(4865), - [anon_sym_get] = ACTIONS(4863), - [anon_sym_set] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4863), - [sym_label] = ACTIONS(4865), - [anon_sym_in] = ACTIONS(4863), - [anon_sym_DOT_DOT] = ACTIONS(4865), - [anon_sym_QMARK_COLON] = ACTIONS(4865), - [anon_sym_AMP_AMP] = ACTIONS(4865), - [anon_sym_PIPE_PIPE] = ACTIONS(4865), - [anon_sym_else] = ACTIONS(4863), - [anon_sym_COLON_COLON] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4865), - [anon_sym_EQ_EQ] = ACTIONS(4863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4865), - [anon_sym_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_EQ] = ACTIONS(4865), - [anon_sym_BANGin] = ACTIONS(4865), - [anon_sym_is] = ACTIONS(4863), - [anon_sym_BANGis] = ACTIONS(4865), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_SLASH] = ACTIONS(4863), - [anon_sym_PERCENT] = ACTIONS(4863), - [anon_sym_as_QMARK] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4865), - [anon_sym_DASH_DASH] = ACTIONS(4865), - [anon_sym_BANG_BANG] = ACTIONS(4865), - [anon_sym_suspend] = ACTIONS(4863), - [anon_sym_sealed] = ACTIONS(4863), - [anon_sym_annotation] = ACTIONS(4863), - [anon_sym_data] = ACTIONS(4863), - [anon_sym_inner] = ACTIONS(4863), - [anon_sym_override] = ACTIONS(4863), - [anon_sym_lateinit] = ACTIONS(4863), - [anon_sym_public] = ACTIONS(4863), - [anon_sym_private] = ACTIONS(4863), - [anon_sym_internal] = ACTIONS(4863), - [anon_sym_protected] = ACTIONS(4863), - [anon_sym_tailrec] = ACTIONS(4863), - [anon_sym_operator] = ACTIONS(4863), - [anon_sym_infix] = ACTIONS(4863), - [anon_sym_inline] = ACTIONS(4863), - [anon_sym_external] = ACTIONS(4863), - [sym_property_modifier] = ACTIONS(4863), - [anon_sym_abstract] = ACTIONS(4863), - [anon_sym_final] = ACTIONS(4863), - [anon_sym_open] = ACTIONS(4863), - [anon_sym_vararg] = ACTIONS(4863), - [anon_sym_noinline] = ACTIONS(4863), - [anon_sym_crossinline] = ACTIONS(4863), - [anon_sym_expect] = ACTIONS(4863), - [anon_sym_actual] = ACTIONS(4863), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4865), - [sym__automatic_semicolon] = ACTIONS(4865), - [sym_safe_nav] = ACTIONS(4865), + [3720] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [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_DOT] = 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_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), }, - [3740] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6423), + [3721] = { + [sym__alpha_identifier] = ACTIONS(5021), + [anon_sym_AT] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_where] = ACTIONS(5021), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_get] = ACTIONS(5021), + [anon_sym_set] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [sym_label] = ACTIONS(5023), + [anon_sym_in] = ACTIONS(5021), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_QMARK_COLON] = ACTIONS(5023), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_else] = ACTIONS(5021), + [anon_sym_COLON_COLON] = ACTIONS(5023), + [anon_sym_PLUS_EQ] = ACTIONS(5023), + [anon_sym_DASH_EQ] = ACTIONS(5023), + [anon_sym_STAR_EQ] = ACTIONS(5023), + [anon_sym_SLASH_EQ] = ACTIONS(5023), + [anon_sym_PERCENT_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5021), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5021), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_BANGin] = ACTIONS(5023), + [anon_sym_is] = ACTIONS(5021), + [anon_sym_BANGis] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5021), + [anon_sym_as_QMARK] = ACTIONS(5023), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_BANG_BANG] = ACTIONS(5023), + [anon_sym_suspend] = ACTIONS(5021), + [anon_sym_sealed] = ACTIONS(5021), + [anon_sym_annotation] = ACTIONS(5021), + [anon_sym_data] = ACTIONS(5021), + [anon_sym_inner] = ACTIONS(5021), + [anon_sym_override] = ACTIONS(5021), + [anon_sym_lateinit] = ACTIONS(5021), + [anon_sym_public] = ACTIONS(5021), + [anon_sym_private] = ACTIONS(5021), + [anon_sym_internal] = ACTIONS(5021), + [anon_sym_protected] = ACTIONS(5021), + [anon_sym_tailrec] = ACTIONS(5021), + [anon_sym_operator] = ACTIONS(5021), + [anon_sym_infix] = ACTIONS(5021), + [anon_sym_inline] = ACTIONS(5021), + [anon_sym_external] = ACTIONS(5021), + [sym_property_modifier] = ACTIONS(5021), + [anon_sym_abstract] = ACTIONS(5021), + [anon_sym_final] = ACTIONS(5021), + [anon_sym_open] = ACTIONS(5021), + [anon_sym_vararg] = ACTIONS(5021), + [anon_sym_noinline] = ACTIONS(5021), + [anon_sym_crossinline] = ACTIONS(5021), + [anon_sym_expect] = ACTIONS(5021), + [anon_sym_actual] = ACTIONS(5021), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5023), + [sym__automatic_semicolon] = ACTIONS(5023), + [sym_safe_nav] = ACTIONS(5023), [sym_multiline_comment] = ACTIONS(3), }, - [3741] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6423), + [3722] = { + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, - [3742] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(5001), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [sym_label] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_QMARK_COLON] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_else] = ACTIONS(4999), - [anon_sym_COLON_COLON] = ACTIONS(5001), - [anon_sym_PLUS_EQ] = ACTIONS(5001), - [anon_sym_DASH_EQ] = ACTIONS(5001), - [anon_sym_STAR_EQ] = ACTIONS(5001), - [anon_sym_SLASH_EQ] = ACTIONS(5001), - [anon_sym_PERCENT_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_BANGin] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_BANGis] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_as_QMARK] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_BANG_BANG] = ACTIONS(5001), - [anon_sym_suspend] = ACTIONS(4999), - [anon_sym_sealed] = ACTIONS(4999), - [anon_sym_annotation] = ACTIONS(4999), - [anon_sym_data] = ACTIONS(4999), - [anon_sym_inner] = ACTIONS(4999), - [anon_sym_override] = ACTIONS(4999), - [anon_sym_lateinit] = ACTIONS(4999), - [anon_sym_public] = ACTIONS(4999), - [anon_sym_private] = ACTIONS(4999), - [anon_sym_internal] = ACTIONS(4999), - [anon_sym_protected] = ACTIONS(4999), - [anon_sym_tailrec] = ACTIONS(4999), - [anon_sym_operator] = ACTIONS(4999), - [anon_sym_infix] = ACTIONS(4999), - [anon_sym_inline] = ACTIONS(4999), - [anon_sym_external] = ACTIONS(4999), - [sym_property_modifier] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_final] = ACTIONS(4999), - [anon_sym_open] = ACTIONS(4999), - [anon_sym_vararg] = ACTIONS(4999), - [anon_sym_noinline] = ACTIONS(4999), - [anon_sym_crossinline] = ACTIONS(4999), - [anon_sym_expect] = ACTIONS(4999), - [anon_sym_actual] = ACTIONS(4999), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5001), - [sym__automatic_semicolon] = ACTIONS(5001), - [sym_safe_nav] = ACTIONS(5001), + [3723] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [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_DOT] = 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_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), }, - [3743] = { - [sym__alpha_identifier] = ACTIONS(4400), - [anon_sym_AT] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_as] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(4402), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_LPAREN] = ACTIONS(4402), - [anon_sym_COMMA] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(4400), - [anon_sym_GT] = ACTIONS(4400), - [anon_sym_where] = ACTIONS(4400), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_SEMI] = ACTIONS(4402), - [anon_sym_get] = ACTIONS(4400), - [anon_sym_set] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [sym_label] = ACTIONS(4402), - [anon_sym_in] = ACTIONS(4400), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_QMARK_COLON] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_else] = ACTIONS(4400), - [anon_sym_COLON_COLON] = ACTIONS(4402), - [anon_sym_PLUS_EQ] = ACTIONS(4402), - [anon_sym_DASH_EQ] = ACTIONS(4402), - [anon_sym_STAR_EQ] = ACTIONS(4402), - [anon_sym_SLASH_EQ] = ACTIONS(4402), - [anon_sym_PERCENT_EQ] = ACTIONS(4402), - [anon_sym_BANG_EQ] = ACTIONS(4400), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4402), - [anon_sym_EQ_EQ] = ACTIONS(4400), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4402), - [anon_sym_LT_EQ] = ACTIONS(4402), - [anon_sym_GT_EQ] = ACTIONS(4402), - [anon_sym_BANGin] = ACTIONS(4402), - [anon_sym_is] = ACTIONS(4400), - [anon_sym_BANGis] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_PERCENT] = ACTIONS(4400), - [anon_sym_as_QMARK] = ACTIONS(4402), - [anon_sym_PLUS_PLUS] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4402), - [anon_sym_BANG_BANG] = ACTIONS(4402), - [anon_sym_suspend] = ACTIONS(4400), - [anon_sym_sealed] = ACTIONS(4400), - [anon_sym_annotation] = ACTIONS(4400), - [anon_sym_data] = ACTIONS(4400), - [anon_sym_inner] = ACTIONS(4400), - [anon_sym_override] = ACTIONS(4400), - [anon_sym_lateinit] = ACTIONS(4400), - [anon_sym_public] = ACTIONS(4400), - [anon_sym_private] = ACTIONS(4400), - [anon_sym_internal] = ACTIONS(4400), - [anon_sym_protected] = ACTIONS(4400), - [anon_sym_tailrec] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(4400), - [anon_sym_infix] = ACTIONS(4400), - [anon_sym_inline] = ACTIONS(4400), - [anon_sym_external] = ACTIONS(4400), - [sym_property_modifier] = ACTIONS(4400), - [anon_sym_abstract] = ACTIONS(4400), - [anon_sym_final] = ACTIONS(4400), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_vararg] = ACTIONS(4400), - [anon_sym_noinline] = ACTIONS(4400), - [anon_sym_crossinline] = ACTIONS(4400), - [anon_sym_expect] = ACTIONS(4400), - [anon_sym_actual] = ACTIONS(4400), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4402), - [sym__automatic_semicolon] = ACTIONS(4402), - [sym_safe_nav] = ACTIONS(4402), + [3724] = { + [sym__alpha_identifier] = ACTIONS(4498), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_as] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_RBRACE] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LT] = ACTIONS(4498), + [anon_sym_GT] = ACTIONS(4498), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_get] = ACTIONS(4498), + [anon_sym_set] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [sym_label] = ACTIONS(4500), + [anon_sym_in] = ACTIONS(4498), + [anon_sym_DOT_DOT] = ACTIONS(4500), + [anon_sym_QMARK_COLON] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE_PIPE] = ACTIONS(4500), + [anon_sym_else] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_PLUS_EQ] = ACTIONS(4500), + [anon_sym_DASH_EQ] = ACTIONS(4500), + [anon_sym_STAR_EQ] = ACTIONS(4500), + [anon_sym_SLASH_EQ] = ACTIONS(4500), + [anon_sym_PERCENT_EQ] = ACTIONS(4500), + [anon_sym_BANG_EQ] = ACTIONS(4498), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4500), + [anon_sym_EQ_EQ] = ACTIONS(4498), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4500), + [anon_sym_LT_EQ] = ACTIONS(4500), + [anon_sym_GT_EQ] = ACTIONS(4500), + [anon_sym_BANGin] = ACTIONS(4500), + [anon_sym_is] = ACTIONS(4498), + [anon_sym_BANGis] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_SLASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_as_QMARK] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_BANG_BANG] = ACTIONS(4500), + [anon_sym_suspend] = ACTIONS(4498), + [anon_sym_sealed] = ACTIONS(4498), + [anon_sym_annotation] = ACTIONS(4498), + [anon_sym_data] = ACTIONS(4498), + [anon_sym_inner] = ACTIONS(4498), + [anon_sym_override] = ACTIONS(4498), + [anon_sym_lateinit] = ACTIONS(4498), + [anon_sym_public] = ACTIONS(4498), + [anon_sym_private] = ACTIONS(4498), + [anon_sym_internal] = ACTIONS(4498), + [anon_sym_protected] = ACTIONS(4498), + [anon_sym_tailrec] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_infix] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_external] = ACTIONS(4498), + [sym_property_modifier] = ACTIONS(4498), + [anon_sym_abstract] = ACTIONS(4498), + [anon_sym_final] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4498), + [anon_sym_vararg] = ACTIONS(4498), + [anon_sym_noinline] = ACTIONS(4498), + [anon_sym_crossinline] = ACTIONS(4498), + [anon_sym_expect] = ACTIONS(4498), + [anon_sym_actual] = ACTIONS(4498), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4500), + [sym__automatic_semicolon] = ACTIONS(4500), + [sym_safe_nav] = ACTIONS(4500), [sym_multiline_comment] = ACTIONS(3), }, - [3744] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_get] = ACTIONS(4766), - [anon_sym_set] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4766), - [sym_label] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_QMARK_COLON] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_else] = ACTIONS(4766), - [anon_sym_COLON_COLON] = ACTIONS(4768), - [anon_sym_PLUS_EQ] = ACTIONS(4768), - [anon_sym_DASH_EQ] = ACTIONS(4768), - [anon_sym_STAR_EQ] = ACTIONS(4768), - [anon_sym_SLASH_EQ] = ACTIONS(4768), - [anon_sym_PERCENT_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_BANGin] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_BANGis] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_as_QMARK] = ACTIONS(4768), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_BANG_BANG] = ACTIONS(4768), - [anon_sym_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), + [3725] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LBRACE] = ACTIONS(4788), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_LPAREN] = ACTIONS(4788), + [anon_sym_COMMA] = ACTIONS(4788), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4788), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_DOT_DOT] = ACTIONS(4788), + [anon_sym_QMARK_COLON] = ACTIONS(4788), + [anon_sym_AMP_AMP] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4786), + [anon_sym_COLON_COLON] = ACTIONS(4788), + [anon_sym_PLUS_EQ] = ACTIONS(4788), + [anon_sym_DASH_EQ] = ACTIONS(4788), + [anon_sym_STAR_EQ] = ACTIONS(4788), + [anon_sym_SLASH_EQ] = ACTIONS(4788), + [anon_sym_PERCENT_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4788), + [anon_sym_LT_EQ] = ACTIONS(4788), + [anon_sym_GT_EQ] = ACTIONS(4788), + [anon_sym_BANGin] = ACTIONS(4788), + [anon_sym_is] = ACTIONS(4786), + [anon_sym_BANGis] = ACTIONS(4788), + [anon_sym_PLUS] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_SLASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_as_QMARK] = ACTIONS(4788), + [anon_sym_PLUS_PLUS] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4788), + [anon_sym_suspend] = ACTIONS(4786), + [anon_sym_sealed] = ACTIONS(4786), + [anon_sym_annotation] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4786), + [anon_sym_inner] = ACTIONS(4786), + [anon_sym_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(4768), - [sym__automatic_semicolon] = ACTIONS(4768), - [sym_safe_nav] = ACTIONS(4768), + [sym__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), [sym_multiline_comment] = ACTIONS(3), }, - [3745] = { - [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(4426), - [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_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), + [3726] = { + [sym_class_body] = STATE(3208), + [sym_type_constraints] = STATE(3037), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + }, + [3727] = { + [sym_type_constraints] = STATE(4012), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [3728] = { + [sym__alpha_identifier] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5029), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [anon_sym_COMMA] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5027), + [anon_sym_GT] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_get] = ACTIONS(5027), + [anon_sym_set] = ACTIONS(5027), + [anon_sym_STAR] = ACTIONS(5027), + [sym_label] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5029), + [anon_sym_QMARK_COLON] = ACTIONS(5029), + [anon_sym_AMP_AMP] = ACTIONS(5029), + [anon_sym_PIPE_PIPE] = ACTIONS(5029), + [anon_sym_else] = ACTIONS(5027), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym_PLUS_EQ] = ACTIONS(5029), + [anon_sym_DASH_EQ] = ACTIONS(5029), + [anon_sym_STAR_EQ] = ACTIONS(5029), + [anon_sym_SLASH_EQ] = ACTIONS(5029), + [anon_sym_PERCENT_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_BANGin] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_BANGis] = ACTIONS(5029), + [anon_sym_PLUS] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5027), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_as_QMARK] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_BANG_BANG] = ACTIONS(5029), + [anon_sym_suspend] = ACTIONS(5027), + [anon_sym_sealed] = ACTIONS(5027), + [anon_sym_annotation] = ACTIONS(5027), + [anon_sym_data] = ACTIONS(5027), + [anon_sym_inner] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_lateinit] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_protected] = ACTIONS(5027), + [anon_sym_tailrec] = ACTIONS(5027), + [anon_sym_operator] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_inline] = ACTIONS(5027), + [anon_sym_external] = ACTIONS(5027), + [sym_property_modifier] = ACTIONS(5027), + [anon_sym_abstract] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_vararg] = ACTIONS(5027), + [anon_sym_noinline] = ACTIONS(5027), + [anon_sym_crossinline] = ACTIONS(5027), + [anon_sym_expect] = ACTIONS(5027), + [anon_sym_actual] = ACTIONS(5027), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5029), + [sym__automatic_semicolon] = ACTIONS(5029), + [sym_safe_nav] = ACTIONS(5029), + [sym_multiline_comment] = ACTIONS(3), + }, + [3729] = { + [sym_type_constraints] = STATE(4014), + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [3730] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(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(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), + [sym_multiline_comment] = ACTIONS(3), + }, + [3731] = { + [sym__alpha_identifier] = ACTIONS(4949), + [anon_sym_AT] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_as] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_RBRACE] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_COMMA] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_where] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_get] = ACTIONS(4949), + [anon_sym_set] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4949), + [sym_label] = ACTIONS(4951), + [anon_sym_in] = ACTIONS(4949), + [anon_sym_DOT_DOT] = ACTIONS(4951), + [anon_sym_QMARK_COLON] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4951), + [anon_sym_PIPE_PIPE] = ACTIONS(4951), + [anon_sym_else] = ACTIONS(4949), + [anon_sym_COLON_COLON] = ACTIONS(4951), + [anon_sym_PLUS_EQ] = ACTIONS(4951), + [anon_sym_DASH_EQ] = ACTIONS(4951), + [anon_sym_STAR_EQ] = ACTIONS(4951), + [anon_sym_SLASH_EQ] = ACTIONS(4951), + [anon_sym_PERCENT_EQ] = ACTIONS(4951), + [anon_sym_BANG_EQ] = ACTIONS(4949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4951), + [anon_sym_EQ_EQ] = ACTIONS(4949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4951), + [anon_sym_LT_EQ] = ACTIONS(4951), + [anon_sym_GT_EQ] = ACTIONS(4951), + [anon_sym_BANGin] = ACTIONS(4951), + [anon_sym_is] = ACTIONS(4949), + [anon_sym_BANGis] = ACTIONS(4951), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_SLASH] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_as_QMARK] = ACTIONS(4951), + [anon_sym_PLUS_PLUS] = ACTIONS(4951), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_BANG_BANG] = ACTIONS(4951), + [anon_sym_suspend] = ACTIONS(4949), + [anon_sym_sealed] = ACTIONS(4949), + [anon_sym_annotation] = ACTIONS(4949), + [anon_sym_data] = ACTIONS(4949), + [anon_sym_inner] = ACTIONS(4949), + [anon_sym_override] = ACTIONS(4949), + [anon_sym_lateinit] = ACTIONS(4949), + [anon_sym_public] = ACTIONS(4949), + [anon_sym_private] = ACTIONS(4949), + [anon_sym_internal] = ACTIONS(4949), + [anon_sym_protected] = ACTIONS(4949), + [anon_sym_tailrec] = ACTIONS(4949), + [anon_sym_operator] = ACTIONS(4949), + [anon_sym_infix] = ACTIONS(4949), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_external] = ACTIONS(4949), + [sym_property_modifier] = ACTIONS(4949), + [anon_sym_abstract] = ACTIONS(4949), + [anon_sym_final] = ACTIONS(4949), + [anon_sym_open] = ACTIONS(4949), + [anon_sym_vararg] = ACTIONS(4949), + [anon_sym_noinline] = ACTIONS(4949), + [anon_sym_crossinline] = ACTIONS(4949), + [anon_sym_expect] = ACTIONS(4949), + [anon_sym_actual] = ACTIONS(4949), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4951), + [sym__automatic_semicolon] = ACTIONS(4951), + [sym_safe_nav] = ACTIONS(4951), + [sym_multiline_comment] = ACTIONS(3), + }, + [3732] = { + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + }, + [3733] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4426), - [sym__automatic_semicolon] = ACTIONS(4426), - [sym_safe_nav] = ACTIONS(4426), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3746] = { - [sym__alpha_identifier] = ACTIONS(4746), - [anon_sym_AT] = ACTIONS(4748), - [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_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), + [3734] = { + [sym__alpha_identifier] = ACTIONS(4973), + [anon_sym_AT] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_where] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4973), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [sym_label] = ACTIONS(4975), + [anon_sym_in] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_QMARK_COLON] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_else] = ACTIONS(4973), + [anon_sym_COLON_COLON] = ACTIONS(4975), + [anon_sym_PLUS_EQ] = ACTIONS(4975), + [anon_sym_DASH_EQ] = ACTIONS(4975), + [anon_sym_STAR_EQ] = ACTIONS(4975), + [anon_sym_SLASH_EQ] = ACTIONS(4975), + [anon_sym_PERCENT_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_BANGin] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_BANGis] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_as_QMARK] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_BANG_BANG] = ACTIONS(4975), + [anon_sym_suspend] = ACTIONS(4973), + [anon_sym_sealed] = ACTIONS(4973), + [anon_sym_annotation] = ACTIONS(4973), + [anon_sym_data] = ACTIONS(4973), + [anon_sym_inner] = ACTIONS(4973), + [anon_sym_override] = ACTIONS(4973), + [anon_sym_lateinit] = ACTIONS(4973), + [anon_sym_public] = ACTIONS(4973), + [anon_sym_private] = ACTIONS(4973), + [anon_sym_internal] = ACTIONS(4973), + [anon_sym_protected] = ACTIONS(4973), + [anon_sym_tailrec] = ACTIONS(4973), + [anon_sym_operator] = ACTIONS(4973), + [anon_sym_infix] = ACTIONS(4973), + [anon_sym_inline] = ACTIONS(4973), + [anon_sym_external] = ACTIONS(4973), + [sym_property_modifier] = ACTIONS(4973), + [anon_sym_abstract] = ACTIONS(4973), + [anon_sym_final] = ACTIONS(4973), + [anon_sym_open] = ACTIONS(4973), + [anon_sym_vararg] = ACTIONS(4973), + [anon_sym_noinline] = ACTIONS(4973), + [anon_sym_crossinline] = ACTIONS(4973), + [anon_sym_expect] = ACTIONS(4973), + [anon_sym_actual] = ACTIONS(4973), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4748), - [sym__automatic_semicolon] = ACTIONS(4748), - [sym_safe_nav] = ACTIONS(4748), + [sym__backtick_identifier] = ACTIONS(4975), + [sym__automatic_semicolon] = ACTIONS(4975), + [sym_safe_nav] = ACTIONS(4975), [sym_multiline_comment] = ACTIONS(3), }, - [3747] = { - [sym__alpha_identifier] = ACTIONS(4981), - [anon_sym_AT] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4981), - [anon_sym_where] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_get] = ACTIONS(4981), - [anon_sym_set] = ACTIONS(4981), - [anon_sym_STAR] = ACTIONS(4981), - [sym_label] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4981), - [anon_sym_DOT_DOT] = ACTIONS(4983), - [anon_sym_QMARK_COLON] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_else] = ACTIONS(4981), - [anon_sym_COLON_COLON] = ACTIONS(4983), - [anon_sym_PLUS_EQ] = ACTIONS(4983), - [anon_sym_DASH_EQ] = ACTIONS(4983), - [anon_sym_STAR_EQ] = ACTIONS(4983), - [anon_sym_SLASH_EQ] = ACTIONS(4983), - [anon_sym_PERCENT_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_BANGin] = ACTIONS(4983), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_BANGis] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_as_QMARK] = ACTIONS(4983), - [anon_sym_PLUS_PLUS] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_BANG_BANG] = ACTIONS(4983), - [anon_sym_suspend] = ACTIONS(4981), - [anon_sym_sealed] = ACTIONS(4981), - [anon_sym_annotation] = ACTIONS(4981), - [anon_sym_data] = ACTIONS(4981), - [anon_sym_inner] = ACTIONS(4981), - [anon_sym_override] = ACTIONS(4981), - [anon_sym_lateinit] = ACTIONS(4981), - [anon_sym_public] = ACTIONS(4981), - [anon_sym_private] = ACTIONS(4981), - [anon_sym_internal] = ACTIONS(4981), - [anon_sym_protected] = ACTIONS(4981), - [anon_sym_tailrec] = ACTIONS(4981), - [anon_sym_operator] = ACTIONS(4981), - [anon_sym_infix] = ACTIONS(4981), - [anon_sym_inline] = ACTIONS(4981), - [anon_sym_external] = ACTIONS(4981), - [sym_property_modifier] = ACTIONS(4981), - [anon_sym_abstract] = ACTIONS(4981), - [anon_sym_final] = ACTIONS(4981), - [anon_sym_open] = ACTIONS(4981), - [anon_sym_vararg] = ACTIONS(4981), - [anon_sym_noinline] = ACTIONS(4981), - [anon_sym_crossinline] = ACTIONS(4981), - [anon_sym_expect] = ACTIONS(4981), - [anon_sym_actual] = ACTIONS(4981), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4983), - [sym__automatic_semicolon] = ACTIONS(4983), - [sym_safe_nav] = ACTIONS(4983), + [3735] = { + [sym_type_constraints] = STATE(4018), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [3736] = { + [sym__alpha_identifier] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_where] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [sym_label] = ACTIONS(1594), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_QMARK_COLON] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PERCENT_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_BANGin] = ACTIONS(1594), + [anon_sym_is] = ACTIONS(1596), + [anon_sym_BANGis] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_as_QMARK] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1594), + [anon_sym_BANG_BANG] = ACTIONS(1594), + [anon_sym_suspend] = ACTIONS(1596), + [anon_sym_sealed] = ACTIONS(1596), + [anon_sym_annotation] = ACTIONS(1596), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1596), + [anon_sym_lateinit] = ACTIONS(1596), + [anon_sym_public] = ACTIONS(1596), + [anon_sym_private] = ACTIONS(1596), + [anon_sym_internal] = ACTIONS(1596), + [anon_sym_protected] = ACTIONS(1596), + [anon_sym_tailrec] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1596), + [anon_sym_infix] = ACTIONS(1596), + [anon_sym_inline] = ACTIONS(1596), + [anon_sym_external] = ACTIONS(1596), + [sym_property_modifier] = ACTIONS(1596), + [anon_sym_abstract] = ACTIONS(1596), + [anon_sym_final] = ACTIONS(1596), + [anon_sym_open] = ACTIONS(1596), + [anon_sym_vararg] = ACTIONS(1596), + [anon_sym_noinline] = ACTIONS(1596), + [anon_sym_crossinline] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1594), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym_safe_nav] = ACTIONS(1594), [sym_multiline_comment] = ACTIONS(3), }, - [3748] = { + [3737] = { [sym__alpha_identifier] = ACTIONS(4905), [anon_sym_AT] = ACTIONS(4907), [anon_sym_LBRACK] = ACTIONS(4907), @@ -402818,7038 +402026,5537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4907), [sym_multiline_comment] = ACTIONS(3), }, - [3749] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6423), + [3738] = { + [sym_function_body] = STATE(3902), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, - [3750] = { - [sym__alpha_identifier] = ACTIONS(5029), - [anon_sym_AT] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [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_DOT] = 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_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), + [3739] = { + [sym__alpha_identifier] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_where] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1762), + [anon_sym_set] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_QMARK_COLON] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PERCENT_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_BANGin] = ACTIONS(1764), + [anon_sym_is] = ACTIONS(1762), + [anon_sym_BANGis] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1764), + [anon_sym_suspend] = ACTIONS(1762), + [anon_sym_sealed] = ACTIONS(1762), + [anon_sym_annotation] = ACTIONS(1762), + [anon_sym_data] = ACTIONS(1762), + [anon_sym_inner] = ACTIONS(1762), + [anon_sym_override] = ACTIONS(1762), + [anon_sym_lateinit] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_internal] = ACTIONS(1762), + [anon_sym_protected] = ACTIONS(1762), + [anon_sym_tailrec] = ACTIONS(1762), + [anon_sym_operator] = ACTIONS(1762), + [anon_sym_infix] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_external] = ACTIONS(1762), + [sym_property_modifier] = ACTIONS(1762), + [anon_sym_abstract] = ACTIONS(1762), + [anon_sym_final] = ACTIONS(1762), + [anon_sym_open] = ACTIONS(1762), + [anon_sym_vararg] = ACTIONS(1762), + [anon_sym_noinline] = ACTIONS(1762), + [anon_sym_crossinline] = ACTIONS(1762), + [anon_sym_expect] = ACTIONS(1762), + [anon_sym_actual] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), }, - [3751] = { - [sym__alpha_identifier] = ACTIONS(5025), - [anon_sym_AT] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_get] = ACTIONS(5025), - [anon_sym_set] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [sym_label] = ACTIONS(5027), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_QMARK_COLON] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_else] = ACTIONS(5025), - [anon_sym_COLON_COLON] = ACTIONS(5027), - [anon_sym_PLUS_EQ] = ACTIONS(5027), - [anon_sym_DASH_EQ] = ACTIONS(5027), - [anon_sym_STAR_EQ] = ACTIONS(5027), - [anon_sym_SLASH_EQ] = ACTIONS(5027), - [anon_sym_PERCENT_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_BANGin] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5025), - [anon_sym_BANGis] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), - [anon_sym_as_QMARK] = ACTIONS(5027), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_BANG_BANG] = ACTIONS(5027), - [anon_sym_suspend] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_annotation] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5025), - [anon_sym_inner] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_lateinit] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_tailrec] = ACTIONS(5025), - [anon_sym_operator] = ACTIONS(5025), - [anon_sym_infix] = ACTIONS(5025), - [anon_sym_inline] = ACTIONS(5025), - [anon_sym_external] = ACTIONS(5025), - [sym_property_modifier] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_final] = ACTIONS(5025), - [anon_sym_open] = ACTIONS(5025), - [anon_sym_vararg] = ACTIONS(5025), - [anon_sym_noinline] = ACTIONS(5025), - [anon_sym_crossinline] = ACTIONS(5025), - [anon_sym_expect] = ACTIONS(5025), - [anon_sym_actual] = ACTIONS(5025), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5027), - [sym__automatic_semicolon] = ACTIONS(5027), - [sym_safe_nav] = ACTIONS(5027), + [3740] = { + [sym__alpha_identifier] = ACTIONS(4953), + [anon_sym_AT] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4955), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4955), + [anon_sym_COMMA] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4953), + [anon_sym_GT] = ACTIONS(4953), + [anon_sym_where] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4953), + [anon_sym_SEMI] = ACTIONS(4955), + [anon_sym_get] = ACTIONS(4953), + [anon_sym_set] = ACTIONS(4953), + [anon_sym_STAR] = ACTIONS(4953), + [sym_label] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4955), + [anon_sym_QMARK_COLON] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_else] = ACTIONS(4953), + [anon_sym_COLON_COLON] = ACTIONS(4955), + [anon_sym_PLUS_EQ] = ACTIONS(4955), + [anon_sym_DASH_EQ] = ACTIONS(4955), + [anon_sym_STAR_EQ] = ACTIONS(4955), + [anon_sym_SLASH_EQ] = ACTIONS(4955), + [anon_sym_PERCENT_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4955), + [anon_sym_BANGin] = ACTIONS(4955), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_BANGis] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4953), + [anon_sym_DASH] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4953), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_as_QMARK] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_BANG_BANG] = ACTIONS(4955), + [anon_sym_suspend] = ACTIONS(4953), + [anon_sym_sealed] = ACTIONS(4953), + [anon_sym_annotation] = ACTIONS(4953), + [anon_sym_data] = ACTIONS(4953), + [anon_sym_inner] = ACTIONS(4953), + [anon_sym_override] = ACTIONS(4953), + [anon_sym_lateinit] = ACTIONS(4953), + [anon_sym_public] = ACTIONS(4953), + [anon_sym_private] = ACTIONS(4953), + [anon_sym_internal] = ACTIONS(4953), + [anon_sym_protected] = ACTIONS(4953), + [anon_sym_tailrec] = ACTIONS(4953), + [anon_sym_operator] = ACTIONS(4953), + [anon_sym_infix] = ACTIONS(4953), + [anon_sym_inline] = ACTIONS(4953), + [anon_sym_external] = ACTIONS(4953), + [sym_property_modifier] = ACTIONS(4953), + [anon_sym_abstract] = ACTIONS(4953), + [anon_sym_final] = ACTIONS(4953), + [anon_sym_open] = ACTIONS(4953), + [anon_sym_vararg] = ACTIONS(4953), + [anon_sym_noinline] = ACTIONS(4953), + [anon_sym_crossinline] = ACTIONS(4953), + [anon_sym_expect] = ACTIONS(4953), + [anon_sym_actual] = ACTIONS(4953), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4955), + [sym__automatic_semicolon] = ACTIONS(4955), + [sym_safe_nav] = ACTIONS(4955), [sym_multiline_comment] = ACTIONS(3), }, - [3752] = { - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4231), - [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_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), + [3741] = { + [sym__alpha_identifier] = ACTIONS(4623), + [anon_sym_AT] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_get] = ACTIONS(4623), + [anon_sym_set] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_DOT_DOT] = ACTIONS(4625), + [anon_sym_QMARK_COLON] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4623), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym_PLUS_EQ] = ACTIONS(4625), + [anon_sym_DASH_EQ] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4625), + [anon_sym_SLASH_EQ] = ACTIONS(4625), + [anon_sym_PERCENT_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_as_QMARK] = ACTIONS(4625), + [anon_sym_PLUS_PLUS] = ACTIONS(4625), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4625), + [anon_sym_suspend] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4623), + [anon_sym_inner] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_lateinit] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_tailrec] = ACTIONS(4623), + [anon_sym_operator] = ACTIONS(4623), + [anon_sym_infix] = ACTIONS(4623), + [anon_sym_inline] = ACTIONS(4623), + [anon_sym_external] = ACTIONS(4623), + [sym_property_modifier] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_final] = ACTIONS(4623), + [anon_sym_open] = ACTIONS(4623), + [anon_sym_vararg] = ACTIONS(4623), + [anon_sym_noinline] = ACTIONS(4623), + [anon_sym_crossinline] = ACTIONS(4623), + [anon_sym_expect] = ACTIONS(4623), + [anon_sym_actual] = ACTIONS(4623), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4625), + [sym__automatic_semicolon] = ACTIONS(4625), + [sym_safe_nav] = ACTIONS(4625), [sym_multiline_comment] = ACTIONS(3), }, - [3753] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5639), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_where] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [3742] = { + [sym_function_body] = STATE(3774), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_PLUS_EQ] = ACTIONS(4440), + [anon_sym_DASH_EQ] = ACTIONS(4440), + [anon_sym_STAR_EQ] = ACTIONS(4440), + [anon_sym_SLASH_EQ] = ACTIONS(4440), + [anon_sym_PERCENT_EQ] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4438), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, - [3754] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5733), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4141), + [3743] = { + [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_override] = ACTIONS(5043), + [anon_sym_lateinit] = ACTIONS(5043), + [anon_sym_public] = ACTIONS(5043), + [anon_sym_private] = ACTIONS(5043), + [anon_sym_internal] = ACTIONS(5043), + [anon_sym_protected] = ACTIONS(5043), + [anon_sym_tailrec] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(5043), + [anon_sym_infix] = ACTIONS(5043), + [anon_sym_inline] = ACTIONS(5043), + [anon_sym_external] = ACTIONS(5043), + [sym_property_modifier] = ACTIONS(5043), + [anon_sym_abstract] = ACTIONS(5043), + [anon_sym_final] = ACTIONS(5043), + [anon_sym_open] = ACTIONS(5043), + [anon_sym_vararg] = ACTIONS(5043), + [anon_sym_noinline] = ACTIONS(5043), + [anon_sym_crossinline] = ACTIONS(5043), + [anon_sym_expect] = ACTIONS(5043), + [anon_sym_actual] = ACTIONS(5043), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), [sym_multiline_comment] = ACTIONS(3), }, - [3755] = { - [sym__alpha_identifier] = ACTIONS(4925), - [anon_sym_AT] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_as] = ACTIONS(4925), - [anon_sym_EQ] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_where] = ACTIONS(4925), - [anon_sym_DOT] = ACTIONS(4925), - [anon_sym_SEMI] = ACTIONS(4927), - [anon_sym_get] = ACTIONS(4925), - [anon_sym_set] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4925), - [sym_label] = ACTIONS(4927), - [anon_sym_in] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(4927), - [anon_sym_QMARK_COLON] = ACTIONS(4927), - [anon_sym_AMP_AMP] = ACTIONS(4927), - [anon_sym_PIPE_PIPE] = ACTIONS(4927), - [anon_sym_else] = ACTIONS(4925), - [anon_sym_COLON_COLON] = ACTIONS(4927), - [anon_sym_PLUS_EQ] = ACTIONS(4927), - [anon_sym_DASH_EQ] = ACTIONS(4927), - [anon_sym_STAR_EQ] = ACTIONS(4927), - [anon_sym_SLASH_EQ] = ACTIONS(4927), - [anon_sym_PERCENT_EQ] = ACTIONS(4927), - [anon_sym_BANG_EQ] = ACTIONS(4925), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4927), - [anon_sym_EQ_EQ] = ACTIONS(4925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4927), - [anon_sym_LT_EQ] = ACTIONS(4927), - [anon_sym_GT_EQ] = ACTIONS(4927), - [anon_sym_BANGin] = ACTIONS(4927), - [anon_sym_is] = ACTIONS(4925), - [anon_sym_BANGis] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4925), - [anon_sym_PERCENT] = ACTIONS(4925), - [anon_sym_as_QMARK] = ACTIONS(4927), - [anon_sym_PLUS_PLUS] = ACTIONS(4927), - [anon_sym_DASH_DASH] = ACTIONS(4927), - [anon_sym_BANG_BANG] = ACTIONS(4927), - [anon_sym_suspend] = ACTIONS(4925), - [anon_sym_sealed] = ACTIONS(4925), - [anon_sym_annotation] = ACTIONS(4925), - [anon_sym_data] = ACTIONS(4925), - [anon_sym_inner] = ACTIONS(4925), - [anon_sym_override] = ACTIONS(4925), - [anon_sym_lateinit] = ACTIONS(4925), - [anon_sym_public] = ACTIONS(4925), - [anon_sym_private] = ACTIONS(4925), - [anon_sym_internal] = ACTIONS(4925), - [anon_sym_protected] = ACTIONS(4925), - [anon_sym_tailrec] = ACTIONS(4925), - [anon_sym_operator] = ACTIONS(4925), - [anon_sym_infix] = ACTIONS(4925), - [anon_sym_inline] = ACTIONS(4925), - [anon_sym_external] = ACTIONS(4925), - [sym_property_modifier] = ACTIONS(4925), - [anon_sym_abstract] = ACTIONS(4925), - [anon_sym_final] = ACTIONS(4925), - [anon_sym_open] = ACTIONS(4925), - [anon_sym_vararg] = ACTIONS(4925), - [anon_sym_noinline] = ACTIONS(4925), - [anon_sym_crossinline] = ACTIONS(4925), - [anon_sym_expect] = ACTIONS(4925), - [anon_sym_actual] = ACTIONS(4925), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4927), - [sym__automatic_semicolon] = ACTIONS(4927), - [sym_safe_nav] = ACTIONS(4927), + [3744] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), [sym_multiline_comment] = ACTIONS(3), }, - [3756] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3745] = { + [sym__alpha_identifier] = ACTIONS(4730), + [anon_sym_AT] = ACTIONS(4732), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_where] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4732), + [anon_sym_get] = ACTIONS(4730), + [anon_sym_set] = ACTIONS(4730), + [anon_sym_STAR] = ACTIONS(4730), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4730), + [anon_sym_DOT_DOT] = ACTIONS(4732), + [anon_sym_QMARK_COLON] = ACTIONS(4732), + [anon_sym_AMP_AMP] = ACTIONS(4732), + [anon_sym_PIPE_PIPE] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4730), + [anon_sym_COLON_COLON] = ACTIONS(4732), + [anon_sym_PLUS_EQ] = ACTIONS(4732), + [anon_sym_DASH_EQ] = ACTIONS(4732), + [anon_sym_STAR_EQ] = ACTIONS(4732), + [anon_sym_SLASH_EQ] = ACTIONS(4732), + [anon_sym_PERCENT_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ] = ACTIONS(4730), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4732), + [anon_sym_LT_EQ] = ACTIONS(4732), + [anon_sym_GT_EQ] = ACTIONS(4732), + [anon_sym_BANGin] = ACTIONS(4732), + [anon_sym_is] = ACTIONS(4730), + [anon_sym_BANGis] = ACTIONS(4732), + [anon_sym_PLUS] = ACTIONS(4730), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_SLASH] = ACTIONS(4730), + [anon_sym_PERCENT] = ACTIONS(4730), + [anon_sym_as_QMARK] = ACTIONS(4732), + [anon_sym_PLUS_PLUS] = ACTIONS(4732), + [anon_sym_DASH_DASH] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4732), + [anon_sym_suspend] = ACTIONS(4730), + [anon_sym_sealed] = ACTIONS(4730), + [anon_sym_annotation] = ACTIONS(4730), + [anon_sym_data] = ACTIONS(4730), + [anon_sym_inner] = ACTIONS(4730), + [anon_sym_override] = ACTIONS(4730), + [anon_sym_lateinit] = ACTIONS(4730), + [anon_sym_public] = ACTIONS(4730), + [anon_sym_private] = ACTIONS(4730), + [anon_sym_internal] = ACTIONS(4730), + [anon_sym_protected] = ACTIONS(4730), + [anon_sym_tailrec] = ACTIONS(4730), + [anon_sym_operator] = ACTIONS(4730), + [anon_sym_infix] = ACTIONS(4730), + [anon_sym_inline] = ACTIONS(4730), + [anon_sym_external] = ACTIONS(4730), + [sym_property_modifier] = ACTIONS(4730), + [anon_sym_abstract] = ACTIONS(4730), + [anon_sym_final] = ACTIONS(4730), + [anon_sym_open] = ACTIONS(4730), + [anon_sym_vararg] = ACTIONS(4730), + [anon_sym_noinline] = ACTIONS(4730), + [anon_sym_crossinline] = ACTIONS(4730), + [anon_sym_expect] = ACTIONS(4730), + [anon_sym_actual] = ACTIONS(4730), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__backtick_identifier] = ACTIONS(4732), + [sym__automatic_semicolon] = ACTIONS(4732), + [sym_safe_nav] = ACTIONS(4732), [sym_multiline_comment] = ACTIONS(3), }, - [3757] = { - [sym__alpha_identifier] = ACTIONS(4917), - [anon_sym_AT] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_as] = ACTIONS(4917), - [anon_sym_EQ] = ACTIONS(4917), - [anon_sym_LBRACE] = ACTIONS(4919), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_LT] = ACTIONS(4917), - [anon_sym_GT] = ACTIONS(4917), - [anon_sym_where] = ACTIONS(4917), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_SEMI] = ACTIONS(4919), - [anon_sym_get] = ACTIONS(4917), - [anon_sym_set] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4917), - [sym_label] = ACTIONS(4919), - [anon_sym_in] = ACTIONS(4917), - [anon_sym_DOT_DOT] = ACTIONS(4919), - [anon_sym_QMARK_COLON] = ACTIONS(4919), - [anon_sym_AMP_AMP] = ACTIONS(4919), - [anon_sym_PIPE_PIPE] = ACTIONS(4919), - [anon_sym_else] = ACTIONS(4917), - [anon_sym_COLON_COLON] = ACTIONS(4919), - [anon_sym_PLUS_EQ] = ACTIONS(4919), - [anon_sym_DASH_EQ] = ACTIONS(4919), - [anon_sym_STAR_EQ] = ACTIONS(4919), - [anon_sym_SLASH_EQ] = ACTIONS(4919), - [anon_sym_PERCENT_EQ] = ACTIONS(4919), - [anon_sym_BANG_EQ] = ACTIONS(4917), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4919), - [anon_sym_EQ_EQ] = ACTIONS(4917), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4919), - [anon_sym_LT_EQ] = ACTIONS(4919), - [anon_sym_GT_EQ] = ACTIONS(4919), - [anon_sym_BANGin] = ACTIONS(4919), - [anon_sym_is] = ACTIONS(4917), - [anon_sym_BANGis] = ACTIONS(4919), - [anon_sym_PLUS] = ACTIONS(4917), - [anon_sym_DASH] = ACTIONS(4917), - [anon_sym_SLASH] = ACTIONS(4917), - [anon_sym_PERCENT] = ACTIONS(4917), - [anon_sym_as_QMARK] = ACTIONS(4919), - [anon_sym_PLUS_PLUS] = ACTIONS(4919), - [anon_sym_DASH_DASH] = ACTIONS(4919), - [anon_sym_BANG_BANG] = ACTIONS(4919), - [anon_sym_suspend] = ACTIONS(4917), - [anon_sym_sealed] = ACTIONS(4917), - [anon_sym_annotation] = ACTIONS(4917), - [anon_sym_data] = ACTIONS(4917), - [anon_sym_inner] = ACTIONS(4917), - [anon_sym_override] = ACTIONS(4917), - [anon_sym_lateinit] = ACTIONS(4917), - [anon_sym_public] = ACTIONS(4917), - [anon_sym_private] = ACTIONS(4917), - [anon_sym_internal] = ACTIONS(4917), - [anon_sym_protected] = ACTIONS(4917), - [anon_sym_tailrec] = ACTIONS(4917), - [anon_sym_operator] = ACTIONS(4917), - [anon_sym_infix] = ACTIONS(4917), - [anon_sym_inline] = ACTIONS(4917), - [anon_sym_external] = ACTIONS(4917), - [sym_property_modifier] = ACTIONS(4917), - [anon_sym_abstract] = ACTIONS(4917), - [anon_sym_final] = ACTIONS(4917), - [anon_sym_open] = ACTIONS(4917), - [anon_sym_vararg] = ACTIONS(4917), - [anon_sym_noinline] = ACTIONS(4917), - [anon_sym_crossinline] = ACTIONS(4917), - [anon_sym_expect] = ACTIONS(4917), - [anon_sym_actual] = ACTIONS(4917), + [3746] = { + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + }, + [3747] = { + [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_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(4919), - [sym__automatic_semicolon] = ACTIONS(4919), - [sym_safe_nav] = ACTIONS(4919), + [sym__backtick_identifier] = ACTIONS(5053), + [sym__automatic_semicolon] = ACTIONS(5053), + [sym_safe_nav] = ACTIONS(5053), [sym_multiline_comment] = ACTIONS(3), }, - [3758] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3748] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3039), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3759] = { - [aux_sym_user_type_repeat1] = STATE(3759), - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_typealias] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_interface] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_val] = ACTIONS(4270), - [anon_sym_var] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(6869), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), - }, - [3760] = { - [sym__alpha_identifier] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_where] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(1778), - [anon_sym_set] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [sym_label] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_QMARK_COLON] = ACTIONS(1780), - [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1780), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1780), - [anon_sym_BANGin] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(1778), - [anon_sym_BANGis] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_BANG_BANG] = ACTIONS(1780), - [anon_sym_suspend] = ACTIONS(1778), - [anon_sym_sealed] = ACTIONS(1778), - [anon_sym_annotation] = ACTIONS(1778), - [anon_sym_data] = ACTIONS(1778), - [anon_sym_inner] = ACTIONS(1778), - [anon_sym_override] = ACTIONS(1778), - [anon_sym_lateinit] = ACTIONS(1778), - [anon_sym_public] = ACTIONS(1778), - [anon_sym_private] = ACTIONS(1778), - [anon_sym_internal] = ACTIONS(1778), - [anon_sym_protected] = ACTIONS(1778), - [anon_sym_tailrec] = ACTIONS(1778), - [anon_sym_operator] = ACTIONS(1778), - [anon_sym_infix] = ACTIONS(1778), - [anon_sym_inline] = ACTIONS(1778), - [anon_sym_external] = ACTIONS(1778), - [sym_property_modifier] = ACTIONS(1778), - [anon_sym_abstract] = ACTIONS(1778), - [anon_sym_final] = ACTIONS(1778), - [anon_sym_open] = ACTIONS(1778), - [anon_sym_vararg] = ACTIONS(1778), - [anon_sym_noinline] = ACTIONS(1778), - [anon_sym_crossinline] = ACTIONS(1778), - [anon_sym_expect] = ACTIONS(1778), - [anon_sym_actual] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1780), - [sym__automatic_semicolon] = ACTIONS(1780), - [sym_safe_nav] = ACTIONS(1780), - [sym_multiline_comment] = ACTIONS(3), - }, - [3761] = { - [sym__alpha_identifier] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_EQ] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [sym_label] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_QMARK_COLON] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4025), - [anon_sym_PIPE_PIPE] = ACTIONS(4025), - [anon_sym_else] = ACTIONS(4023), - [anon_sym_COLON_COLON] = ACTIONS(4025), - [anon_sym_PLUS_EQ] = ACTIONS(4025), - [anon_sym_DASH_EQ] = ACTIONS(4025), - [anon_sym_STAR_EQ] = ACTIONS(4025), - [anon_sym_SLASH_EQ] = ACTIONS(4025), - [anon_sym_PERCENT_EQ] = ACTIONS(4025), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4025), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4025), - [anon_sym_LT_EQ] = ACTIONS(4025), - [anon_sym_GT_EQ] = ACTIONS(4025), - [anon_sym_BANGin] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_BANGis] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_as_QMARK] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_BANG_BANG] = ACTIONS(4025), - [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_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(4025), - [sym__automatic_semicolon] = ACTIONS(4025), - [sym_safe_nav] = ACTIONS(4025), - [sym_multiline_comment] = ACTIONS(3), - }, - [3762] = { - [sym__alpha_identifier] = ACTIONS(4879), - [anon_sym_AT] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_COMMA] = ACTIONS(4881), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_where] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4881), - [anon_sym_get] = ACTIONS(4879), - [anon_sym_set] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [sym_label] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4881), - [anon_sym_QMARK_COLON] = ACTIONS(4881), - [anon_sym_AMP_AMP] = ACTIONS(4881), - [anon_sym_PIPE_PIPE] = ACTIONS(4881), - [anon_sym_else] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4881), - [anon_sym_PLUS_EQ] = ACTIONS(4881), - [anon_sym_DASH_EQ] = ACTIONS(4881), - [anon_sym_STAR_EQ] = ACTIONS(4881), - [anon_sym_SLASH_EQ] = ACTIONS(4881), - [anon_sym_PERCENT_EQ] = ACTIONS(4881), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4881), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4881), - [anon_sym_LT_EQ] = ACTIONS(4881), - [anon_sym_GT_EQ] = ACTIONS(4881), - [anon_sym_BANGin] = ACTIONS(4881), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_BANGis] = ACTIONS(4881), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4879), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_as_QMARK] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4881), - [anon_sym_DASH_DASH] = ACTIONS(4881), - [anon_sym_BANG_BANG] = ACTIONS(4881), - [anon_sym_suspend] = ACTIONS(4879), - [anon_sym_sealed] = ACTIONS(4879), - [anon_sym_annotation] = ACTIONS(4879), - [anon_sym_data] = ACTIONS(4879), - [anon_sym_inner] = ACTIONS(4879), - [anon_sym_override] = ACTIONS(4879), - [anon_sym_lateinit] = ACTIONS(4879), - [anon_sym_public] = ACTIONS(4879), - [anon_sym_private] = ACTIONS(4879), - [anon_sym_internal] = ACTIONS(4879), - [anon_sym_protected] = ACTIONS(4879), - [anon_sym_tailrec] = ACTIONS(4879), - [anon_sym_operator] = ACTIONS(4879), - [anon_sym_infix] = ACTIONS(4879), - [anon_sym_inline] = ACTIONS(4879), - [anon_sym_external] = ACTIONS(4879), - [sym_property_modifier] = ACTIONS(4879), - [anon_sym_abstract] = ACTIONS(4879), - [anon_sym_final] = ACTIONS(4879), - [anon_sym_open] = ACTIONS(4879), - [anon_sym_vararg] = ACTIONS(4879), - [anon_sym_noinline] = ACTIONS(4879), - [anon_sym_crossinline] = ACTIONS(4879), - [anon_sym_expect] = ACTIONS(4879), - [anon_sym_actual] = ACTIONS(4879), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4881), - [sym__automatic_semicolon] = ACTIONS(4881), - [sym_safe_nav] = ACTIONS(4881), - [sym_multiline_comment] = ACTIONS(3), - }, - [3763] = { - [sym__alpha_identifier] = ACTIONS(5081), - [anon_sym_AT] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [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_DOT] = 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_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), - }, - [3764] = { - [sym__alpha_identifier] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [sym_label] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_QMARK_COLON] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1399), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_BANGin] = ACTIONS(1399), - [anon_sym_is] = ACTIONS(1401), - [anon_sym_BANGis] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_as_QMARK] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_BANG_BANG] = ACTIONS(1399), - [anon_sym_suspend] = ACTIONS(1401), - [anon_sym_sealed] = ACTIONS(1401), - [anon_sym_annotation] = ACTIONS(1401), - [anon_sym_data] = ACTIONS(1401), - [anon_sym_inner] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_lateinit] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_internal] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_tailrec] = ACTIONS(1401), - [anon_sym_operator] = ACTIONS(1401), - [anon_sym_infix] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym_external] = ACTIONS(1401), - [sym_property_modifier] = ACTIONS(1401), - [anon_sym_abstract] = ACTIONS(1401), - [anon_sym_final] = ACTIONS(1401), - [anon_sym_open] = ACTIONS(1401), - [anon_sym_vararg] = ACTIONS(1401), - [anon_sym_noinline] = ACTIONS(1401), - [anon_sym_crossinline] = ACTIONS(1401), - [anon_sym_expect] = ACTIONS(1401), - [anon_sym_actual] = ACTIONS(1401), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1399), - [sym__automatic_semicolon] = ACTIONS(1399), - [sym_safe_nav] = ACTIONS(1399), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3765] = { - [sym_class_body] = STATE(3121), - [sym_type_constraints] = STATE(3047), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6872), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), - }, - [3766] = { - [sym__alpha_identifier] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_where] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1770), - [anon_sym_set] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [sym_label] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_QMARK_COLON] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1770), - [anon_sym_BANGis] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_as_QMARK] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(1770), - [anon_sym_sealed] = ACTIONS(1770), - [anon_sym_annotation] = ACTIONS(1770), - [anon_sym_data] = ACTIONS(1770), - [anon_sym_inner] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_lateinit] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_internal] = ACTIONS(1770), - [anon_sym_protected] = ACTIONS(1770), - [anon_sym_tailrec] = ACTIONS(1770), - [anon_sym_operator] = ACTIONS(1770), - [anon_sym_infix] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym_external] = ACTIONS(1770), - [sym_property_modifier] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_final] = ACTIONS(1770), - [anon_sym_open] = ACTIONS(1770), - [anon_sym_vararg] = ACTIONS(1770), - [anon_sym_noinline] = ACTIONS(1770), - [anon_sym_crossinline] = ACTIONS(1770), - [anon_sym_expect] = ACTIONS(1770), - [anon_sym_actual] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1772), - [sym_safe_nav] = ACTIONS(1772), + [3749] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, - [3767] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [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_DOT] = 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_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), + [3750] = { + [sym__alpha_identifier] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4482), + [anon_sym_set] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [sym_label] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_DOT_DOT] = ACTIONS(4484), + [anon_sym_QMARK_COLON] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_PLUS_EQ] = ACTIONS(4484), + [anon_sym_DASH_EQ] = ACTIONS(4484), + [anon_sym_STAR_EQ] = ACTIONS(4484), + [anon_sym_SLASH_EQ] = ACTIONS(4484), + [anon_sym_PERCENT_EQ] = ACTIONS(4484), + [anon_sym_BANG_EQ] = ACTIONS(4482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4484), + [anon_sym_EQ_EQ] = ACTIONS(4482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4484), + [anon_sym_LT_EQ] = ACTIONS(4484), + [anon_sym_GT_EQ] = ACTIONS(4484), + [anon_sym_BANGin] = ACTIONS(4484), + [anon_sym_is] = ACTIONS(4482), + [anon_sym_BANGis] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_SLASH] = ACTIONS(4482), + [anon_sym_PERCENT] = ACTIONS(4482), + [anon_sym_as_QMARK] = ACTIONS(4484), + [anon_sym_PLUS_PLUS] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4484), + [anon_sym_BANG_BANG] = ACTIONS(4484), + [anon_sym_suspend] = ACTIONS(4482), + [anon_sym_sealed] = ACTIONS(4482), + [anon_sym_annotation] = ACTIONS(4482), + [anon_sym_data] = ACTIONS(4482), + [anon_sym_inner] = ACTIONS(4482), + [anon_sym_override] = ACTIONS(4482), + [anon_sym_lateinit] = ACTIONS(4482), + [anon_sym_public] = ACTIONS(4482), + [anon_sym_private] = ACTIONS(4482), + [anon_sym_internal] = ACTIONS(4482), + [anon_sym_protected] = ACTIONS(4482), + [anon_sym_tailrec] = ACTIONS(4482), + [anon_sym_operator] = ACTIONS(4482), + [anon_sym_infix] = ACTIONS(4482), + [anon_sym_inline] = ACTIONS(4482), + [anon_sym_external] = ACTIONS(4482), + [sym_property_modifier] = ACTIONS(4482), + [anon_sym_abstract] = ACTIONS(4482), + [anon_sym_final] = ACTIONS(4482), + [anon_sym_open] = ACTIONS(4482), + [anon_sym_vararg] = ACTIONS(4482), + [anon_sym_noinline] = ACTIONS(4482), + [anon_sym_crossinline] = ACTIONS(4482), + [anon_sym_expect] = ACTIONS(4482), + [anon_sym_actual] = ACTIONS(4482), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4484), + [sym__automatic_semicolon] = ACTIONS(4484), + [sym_safe_nav] = ACTIONS(4484), [sym_multiline_comment] = ACTIONS(3), }, - [3768] = { - [sym__alpha_identifier] = ACTIONS(5033), - [anon_sym_AT] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_get] = ACTIONS(5033), - [anon_sym_set] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [sym_label] = ACTIONS(5035), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_QMARK_COLON] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_else] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5035), - [anon_sym_DASH_EQ] = ACTIONS(5035), - [anon_sym_STAR_EQ] = ACTIONS(5035), - [anon_sym_SLASH_EQ] = ACTIONS(5035), - [anon_sym_PERCENT_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_BANGin] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5033), - [anon_sym_BANGis] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_as_QMARK] = ACTIONS(5035), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_BANG_BANG] = ACTIONS(5035), - [anon_sym_suspend] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_annotation] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5033), - [anon_sym_inner] = ACTIONS(5033), - [anon_sym_override] = ACTIONS(5033), - [anon_sym_lateinit] = ACTIONS(5033), - [anon_sym_public] = ACTIONS(5033), - [anon_sym_private] = ACTIONS(5033), - [anon_sym_internal] = ACTIONS(5033), - [anon_sym_protected] = ACTIONS(5033), - [anon_sym_tailrec] = ACTIONS(5033), - [anon_sym_operator] = ACTIONS(5033), - [anon_sym_infix] = ACTIONS(5033), - [anon_sym_inline] = ACTIONS(5033), - [anon_sym_external] = ACTIONS(5033), - [sym_property_modifier] = ACTIONS(5033), - [anon_sym_abstract] = ACTIONS(5033), - [anon_sym_final] = ACTIONS(5033), - [anon_sym_open] = ACTIONS(5033), - [anon_sym_vararg] = ACTIONS(5033), - [anon_sym_noinline] = ACTIONS(5033), - [anon_sym_crossinline] = ACTIONS(5033), - [anon_sym_expect] = ACTIONS(5033), - [anon_sym_actual] = ACTIONS(5033), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5035), - [sym__automatic_semicolon] = ACTIONS(5035), - [sym_safe_nav] = ACTIONS(5035), - [sym_multiline_comment] = ACTIONS(3), + [3751] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_typealias] = ACTIONS(3866), + [anon_sym_class] = ACTIONS(3866), + [anon_sym_interface] = ACTIONS(3866), + [anon_sym_enum] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_val] = ACTIONS(3866), + [anon_sym_var] = ACTIONS(3866), + [anon_sym_LT] = ACTIONS(3871), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3871), + [sym_label] = ACTIONS(3866), + [anon_sym_for] = ACTIONS(3866), + [anon_sym_while] = ACTIONS(3866), + [anon_sym_do] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [3769] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [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_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), + [3752] = { + [sym__alpha_identifier] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(4849), + [anon_sym_as] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4849), + [anon_sym_COMMA] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_GT] = ACTIONS(4847), + [anon_sym_where] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(4849), + [anon_sym_get] = ACTIONS(4847), + [anon_sym_set] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4847), + [sym_label] = ACTIONS(4849), + [anon_sym_in] = ACTIONS(4847), + [anon_sym_DOT_DOT] = ACTIONS(4849), + [anon_sym_QMARK_COLON] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_else] = ACTIONS(4847), + [anon_sym_COLON_COLON] = ACTIONS(4849), + [anon_sym_PLUS_EQ] = ACTIONS(4849), + [anon_sym_DASH_EQ] = ACTIONS(4849), + [anon_sym_STAR_EQ] = ACTIONS(4849), + [anon_sym_SLASH_EQ] = ACTIONS(4849), + [anon_sym_PERCENT_EQ] = ACTIONS(4849), + [anon_sym_BANG_EQ] = ACTIONS(4847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), + [anon_sym_EQ_EQ] = ACTIONS(4847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), + [anon_sym_LT_EQ] = ACTIONS(4849), + [anon_sym_GT_EQ] = ACTIONS(4849), + [anon_sym_BANGin] = ACTIONS(4849), + [anon_sym_is] = ACTIONS(4847), + [anon_sym_BANGis] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(4847), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_SLASH] = ACTIONS(4847), + [anon_sym_PERCENT] = ACTIONS(4847), + [anon_sym_as_QMARK] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_BANG_BANG] = ACTIONS(4849), + [anon_sym_suspend] = ACTIONS(4847), + [anon_sym_sealed] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4847), + [anon_sym_data] = ACTIONS(4847), + [anon_sym_inner] = ACTIONS(4847), + [anon_sym_override] = ACTIONS(4847), + [anon_sym_lateinit] = ACTIONS(4847), + [anon_sym_public] = ACTIONS(4847), + [anon_sym_private] = ACTIONS(4847), + [anon_sym_internal] = ACTIONS(4847), + [anon_sym_protected] = ACTIONS(4847), + [anon_sym_tailrec] = ACTIONS(4847), + [anon_sym_operator] = ACTIONS(4847), + [anon_sym_infix] = ACTIONS(4847), + [anon_sym_inline] = ACTIONS(4847), + [anon_sym_external] = ACTIONS(4847), + [sym_property_modifier] = ACTIONS(4847), + [anon_sym_abstract] = ACTIONS(4847), + [anon_sym_final] = ACTIONS(4847), + [anon_sym_open] = ACTIONS(4847), + [anon_sym_vararg] = ACTIONS(4847), + [anon_sym_noinline] = ACTIONS(4847), + [anon_sym_crossinline] = ACTIONS(4847), + [anon_sym_expect] = ACTIONS(4847), + [anon_sym_actual] = ACTIONS(4847), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [sym__backtick_identifier] = ACTIONS(4849), + [sym__automatic_semicolon] = ACTIONS(4849), + [sym_safe_nav] = ACTIONS(4849), [sym_multiline_comment] = ACTIONS(3), }, - [3770] = { - [sym__alpha_identifier] = ACTIONS(4871), - [anon_sym_AT] = ACTIONS(4873), - [anon_sym_LBRACK] = ACTIONS(4873), - [anon_sym_as] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(4873), - [anon_sym_RBRACE] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4873), - [anon_sym_COMMA] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4871), - [anon_sym_GT] = ACTIONS(4871), - [anon_sym_where] = ACTIONS(4871), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_STAR] = ACTIONS(4871), - [sym_label] = ACTIONS(4873), - [anon_sym_in] = ACTIONS(4871), - [anon_sym_DOT_DOT] = ACTIONS(4873), - [anon_sym_QMARK_COLON] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(4871), - [anon_sym_COLON_COLON] = ACTIONS(4873), - [anon_sym_PLUS_EQ] = ACTIONS(4873), - [anon_sym_DASH_EQ] = ACTIONS(4873), - [anon_sym_STAR_EQ] = ACTIONS(4873), - [anon_sym_SLASH_EQ] = ACTIONS(4873), - [anon_sym_PERCENT_EQ] = ACTIONS(4873), - [anon_sym_BANG_EQ] = ACTIONS(4871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4871), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT_EQ] = ACTIONS(4873), - [anon_sym_GT_EQ] = ACTIONS(4873), - [anon_sym_BANGin] = ACTIONS(4873), - [anon_sym_is] = ACTIONS(4871), - [anon_sym_BANGis] = ACTIONS(4873), - [anon_sym_PLUS] = ACTIONS(4871), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_SLASH] = ACTIONS(4871), - [anon_sym_PERCENT] = ACTIONS(4871), - [anon_sym_as_QMARK] = ACTIONS(4873), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_BANG_BANG] = ACTIONS(4873), - [anon_sym_suspend] = ACTIONS(4871), - [anon_sym_sealed] = ACTIONS(4871), - [anon_sym_annotation] = ACTIONS(4871), - [anon_sym_data] = ACTIONS(4871), - [anon_sym_inner] = ACTIONS(4871), - [anon_sym_override] = ACTIONS(4871), - [anon_sym_lateinit] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_internal] = ACTIONS(4871), - [anon_sym_protected] = ACTIONS(4871), - [anon_sym_tailrec] = ACTIONS(4871), - [anon_sym_operator] = ACTIONS(4871), - [anon_sym_infix] = ACTIONS(4871), - [anon_sym_inline] = ACTIONS(4871), - [anon_sym_external] = ACTIONS(4871), - [sym_property_modifier] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_open] = ACTIONS(4871), - [anon_sym_vararg] = ACTIONS(4871), - [anon_sym_noinline] = ACTIONS(4871), - [anon_sym_crossinline] = ACTIONS(4871), - [anon_sym_expect] = ACTIONS(4871), - [anon_sym_actual] = ACTIONS(4871), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4873), - [sym__automatic_semicolon] = ACTIONS(4873), - [sym_safe_nav] = ACTIONS(4873), + [3753] = { + [sym__alpha_identifier] = ACTIONS(4963), + [anon_sym_AT] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_EQ] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4963), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_get] = ACTIONS(4963), + [anon_sym_set] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [sym_label] = ACTIONS(4965), + [anon_sym_in] = ACTIONS(4963), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_QMARK_COLON] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_else] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_PLUS_EQ] = ACTIONS(4965), + [anon_sym_DASH_EQ] = ACTIONS(4965), + [anon_sym_STAR_EQ] = ACTIONS(4965), + [anon_sym_SLASH_EQ] = ACTIONS(4965), + [anon_sym_PERCENT_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_BANGin] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4963), + [anon_sym_BANGis] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_as_QMARK] = ACTIONS(4965), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_BANG_BANG] = ACTIONS(4965), + [anon_sym_suspend] = ACTIONS(4963), + [anon_sym_sealed] = ACTIONS(4963), + [anon_sym_annotation] = ACTIONS(4963), + [anon_sym_data] = ACTIONS(4963), + [anon_sym_inner] = ACTIONS(4963), + [anon_sym_override] = ACTIONS(4963), + [anon_sym_lateinit] = ACTIONS(4963), + [anon_sym_public] = ACTIONS(4963), + [anon_sym_private] = ACTIONS(4963), + [anon_sym_internal] = ACTIONS(4963), + [anon_sym_protected] = ACTIONS(4963), + [anon_sym_tailrec] = ACTIONS(4963), + [anon_sym_operator] = ACTIONS(4963), + [anon_sym_infix] = ACTIONS(4963), + [anon_sym_inline] = ACTIONS(4963), + [anon_sym_external] = ACTIONS(4963), + [sym_property_modifier] = ACTIONS(4963), + [anon_sym_abstract] = ACTIONS(4963), + [anon_sym_final] = ACTIONS(4963), + [anon_sym_open] = ACTIONS(4963), + [anon_sym_vararg] = ACTIONS(4963), + [anon_sym_noinline] = ACTIONS(4963), + [anon_sym_crossinline] = ACTIONS(4963), + [anon_sym_expect] = ACTIONS(4963), + [anon_sym_actual] = ACTIONS(4963), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4965), + [sym__automatic_semicolon] = ACTIONS(4965), + [sym_safe_nav] = ACTIONS(4965), [sym_multiline_comment] = ACTIONS(3), }, - [3771] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), + [3754] = { + [sym_type_constraints] = STATE(3993), + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, - [3772] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5003), - [anon_sym_set] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [sym_label] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_QMARK_COLON] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_else] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5005), - [anon_sym_PLUS_EQ] = ACTIONS(5005), - [anon_sym_DASH_EQ] = ACTIONS(5005), - [anon_sym_STAR_EQ] = ACTIONS(5005), - [anon_sym_SLASH_EQ] = ACTIONS(5005), - [anon_sym_PERCENT_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_BANGin] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_BANGis] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_as_QMARK] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_BANG_BANG] = ACTIONS(5005), - [anon_sym_suspend] = ACTIONS(5003), - [anon_sym_sealed] = ACTIONS(5003), - [anon_sym_annotation] = ACTIONS(5003), - [anon_sym_data] = ACTIONS(5003), - [anon_sym_inner] = ACTIONS(5003), - [anon_sym_override] = ACTIONS(5003), - [anon_sym_lateinit] = ACTIONS(5003), - [anon_sym_public] = ACTIONS(5003), - [anon_sym_private] = ACTIONS(5003), - [anon_sym_internal] = ACTIONS(5003), - [anon_sym_protected] = ACTIONS(5003), - [anon_sym_tailrec] = ACTIONS(5003), - [anon_sym_operator] = ACTIONS(5003), - [anon_sym_infix] = ACTIONS(5003), - [anon_sym_inline] = ACTIONS(5003), - [anon_sym_external] = ACTIONS(5003), - [sym_property_modifier] = ACTIONS(5003), - [anon_sym_abstract] = ACTIONS(5003), - [anon_sym_final] = ACTIONS(5003), - [anon_sym_open] = ACTIONS(5003), - [anon_sym_vararg] = ACTIONS(5003), - [anon_sym_noinline] = ACTIONS(5003), - [anon_sym_crossinline] = ACTIONS(5003), - [anon_sym_expect] = ACTIONS(5003), - [anon_sym_actual] = ACTIONS(5003), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5005), - [sym__automatic_semicolon] = ACTIONS(5005), - [sym_safe_nav] = ACTIONS(5005), + [3755] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3773] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3756] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3774] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_constructor] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3948), - [sym_label] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym__automatic_semicolon] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3775] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6874), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [3757] = { + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [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(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [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(3346), + [anon_sym_sealed] = ACTIONS(3346), + [anon_sym_annotation] = ACTIONS(3346), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_lateinit] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_internal] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_tailrec] = ACTIONS(3346), + [anon_sym_operator] = ACTIONS(3346), + [anon_sym_infix] = ACTIONS(3346), + [anon_sym_inline] = ACTIONS(3346), + [anon_sym_external] = ACTIONS(3346), + [sym_property_modifier] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_final] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3346), + [anon_sym_vararg] = ACTIONS(3346), + [anon_sym_noinline] = ACTIONS(3346), + [anon_sym_crossinline] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [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), }, - [3776] = { - [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_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), + [3758] = { + [sym__alpha_identifier] = ACTIONS(4734), + [anon_sym_AT] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4736), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_get] = ACTIONS(4734), + [anon_sym_set] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(4734), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_QMARK_COLON] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_PLUS_EQ] = ACTIONS(4736), + [anon_sym_DASH_EQ] = ACTIONS(4736), + [anon_sym_STAR_EQ] = ACTIONS(4736), + [anon_sym_SLASH_EQ] = ACTIONS(4736), + [anon_sym_PERCENT_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4736), + [anon_sym_LT_EQ] = ACTIONS(4736), + [anon_sym_GT_EQ] = ACTIONS(4736), + [anon_sym_BANGin] = ACTIONS(4736), + [anon_sym_is] = ACTIONS(4734), + [anon_sym_BANGis] = ACTIONS(4736), + [anon_sym_PLUS] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_SLASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_as_QMARK] = ACTIONS(4736), + [anon_sym_PLUS_PLUS] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4736), + [anon_sym_suspend] = ACTIONS(4734), + [anon_sym_sealed] = ACTIONS(4734), + [anon_sym_annotation] = ACTIONS(4734), + [anon_sym_data] = ACTIONS(4734), + [anon_sym_inner] = ACTIONS(4734), + [anon_sym_override] = ACTIONS(4734), + [anon_sym_lateinit] = ACTIONS(4734), + [anon_sym_public] = ACTIONS(4734), + [anon_sym_private] = ACTIONS(4734), + [anon_sym_internal] = ACTIONS(4734), + [anon_sym_protected] = ACTIONS(4734), + [anon_sym_tailrec] = ACTIONS(4734), + [anon_sym_operator] = ACTIONS(4734), + [anon_sym_infix] = ACTIONS(4734), + [anon_sym_inline] = ACTIONS(4734), + [anon_sym_external] = ACTIONS(4734), + [sym_property_modifier] = ACTIONS(4734), + [anon_sym_abstract] = ACTIONS(4734), + [anon_sym_final] = ACTIONS(4734), + [anon_sym_open] = ACTIONS(4734), + [anon_sym_vararg] = ACTIONS(4734), + [anon_sym_noinline] = ACTIONS(4734), + [anon_sym_crossinline] = ACTIONS(4734), + [anon_sym_expect] = ACTIONS(4734), + [anon_sym_actual] = ACTIONS(4734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4736), + [sym__automatic_semicolon] = ACTIONS(4736), + [sym_safe_nav] = ACTIONS(4736), [sym_multiline_comment] = ACTIONS(3), }, - [3777] = { - [sym__alpha_identifier] = ACTIONS(4851), - [anon_sym_AT] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4853), - [anon_sym_as] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4853), - [anon_sym_COMMA] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_where] = ACTIONS(4851), - [anon_sym_DOT] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym_get] = ACTIONS(4851), - [anon_sym_set] = ACTIONS(4851), - [anon_sym_STAR] = ACTIONS(4851), - [sym_label] = ACTIONS(4853), - [anon_sym_in] = ACTIONS(4851), - [anon_sym_DOT_DOT] = ACTIONS(4853), - [anon_sym_QMARK_COLON] = ACTIONS(4853), - [anon_sym_AMP_AMP] = ACTIONS(4853), - [anon_sym_PIPE_PIPE] = ACTIONS(4853), - [anon_sym_else] = ACTIONS(4851), - [anon_sym_COLON_COLON] = ACTIONS(4853), - [anon_sym_PLUS_EQ] = ACTIONS(4853), - [anon_sym_DASH_EQ] = ACTIONS(4853), - [anon_sym_STAR_EQ] = ACTIONS(4853), - [anon_sym_SLASH_EQ] = ACTIONS(4853), - [anon_sym_PERCENT_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ] = ACTIONS(4851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4853), - [anon_sym_EQ_EQ] = ACTIONS(4851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4853), - [anon_sym_LT_EQ] = ACTIONS(4853), - [anon_sym_GT_EQ] = ACTIONS(4853), - [anon_sym_BANGin] = ACTIONS(4853), - [anon_sym_is] = ACTIONS(4851), - [anon_sym_BANGis] = ACTIONS(4853), - [anon_sym_PLUS] = ACTIONS(4851), - [anon_sym_DASH] = ACTIONS(4851), - [anon_sym_SLASH] = ACTIONS(4851), - [anon_sym_PERCENT] = ACTIONS(4851), - [anon_sym_as_QMARK] = ACTIONS(4853), - [anon_sym_PLUS_PLUS] = ACTIONS(4853), - [anon_sym_DASH_DASH] = ACTIONS(4853), - [anon_sym_BANG_BANG] = ACTIONS(4853), - [anon_sym_suspend] = ACTIONS(4851), - [anon_sym_sealed] = ACTIONS(4851), - [anon_sym_annotation] = ACTIONS(4851), - [anon_sym_data] = ACTIONS(4851), - [anon_sym_inner] = ACTIONS(4851), - [anon_sym_override] = ACTIONS(4851), - [anon_sym_lateinit] = ACTIONS(4851), - [anon_sym_public] = ACTIONS(4851), - [anon_sym_private] = ACTIONS(4851), - [anon_sym_internal] = ACTIONS(4851), - [anon_sym_protected] = ACTIONS(4851), - [anon_sym_tailrec] = ACTIONS(4851), - [anon_sym_operator] = ACTIONS(4851), - [anon_sym_infix] = ACTIONS(4851), - [anon_sym_inline] = ACTIONS(4851), - [anon_sym_external] = ACTIONS(4851), - [sym_property_modifier] = ACTIONS(4851), - [anon_sym_abstract] = ACTIONS(4851), - [anon_sym_final] = ACTIONS(4851), - [anon_sym_open] = ACTIONS(4851), - [anon_sym_vararg] = ACTIONS(4851), - [anon_sym_noinline] = ACTIONS(4851), - [anon_sym_crossinline] = ACTIONS(4851), - [anon_sym_expect] = ACTIONS(4851), - [anon_sym_actual] = ACTIONS(4851), + [3759] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_by] = 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(4696), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [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_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_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [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_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(4853), - [sym__automatic_semicolon] = ACTIONS(4853), - [sym_safe_nav] = ACTIONS(4853), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), }, - [3778] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6876), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), + [3760] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_by] = 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_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_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_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [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_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), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), }, - [3779] = { - [sym__alpha_identifier] = ACTIONS(4714), - [anon_sym_AT] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LBRACE] = ACTIONS(4716), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_LPAREN] = ACTIONS(4716), - [anon_sym_COMMA] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(4714), - [anon_sym_where] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_get] = ACTIONS(4714), - [anon_sym_set] = ACTIONS(4714), - [anon_sym_STAR] = ACTIONS(4714), - [sym_label] = ACTIONS(4716), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_DOT_DOT] = ACTIONS(4716), - [anon_sym_QMARK_COLON] = ACTIONS(4716), - [anon_sym_AMP_AMP] = ACTIONS(4716), - [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4716), - [anon_sym_STAR_EQ] = ACTIONS(4716), - [anon_sym_SLASH_EQ] = ACTIONS(4716), - [anon_sym_PERCENT_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT_EQ] = ACTIONS(4716), - [anon_sym_GT_EQ] = ACTIONS(4716), - [anon_sym_BANGin] = ACTIONS(4716), - [anon_sym_is] = ACTIONS(4714), - [anon_sym_BANGis] = ACTIONS(4716), - [anon_sym_PLUS] = ACTIONS(4714), - [anon_sym_DASH] = ACTIONS(4714), - [anon_sym_SLASH] = ACTIONS(4714), - [anon_sym_PERCENT] = ACTIONS(4714), - [anon_sym_as_QMARK] = ACTIONS(4716), - [anon_sym_PLUS_PLUS] = ACTIONS(4716), - [anon_sym_DASH_DASH] = ACTIONS(4716), - [anon_sym_BANG_BANG] = ACTIONS(4716), - [anon_sym_suspend] = ACTIONS(4714), - [anon_sym_sealed] = ACTIONS(4714), - [anon_sym_annotation] = ACTIONS(4714), - [anon_sym_data] = ACTIONS(4714), - [anon_sym_inner] = ACTIONS(4714), - [anon_sym_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), + [3761] = { + [sym__alpha_identifier] = ACTIONS(4502), + [anon_sym_AT] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_as] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_COMMA] = ACTIONS(4504), + [anon_sym_LT] = ACTIONS(4502), + [anon_sym_GT] = ACTIONS(4502), + [anon_sym_where] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym_get] = ACTIONS(4502), + [anon_sym_set] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4502), + [sym_label] = ACTIONS(4504), + [anon_sym_in] = ACTIONS(4502), + [anon_sym_DOT_DOT] = ACTIONS(4504), + [anon_sym_QMARK_COLON] = ACTIONS(4504), + [anon_sym_AMP_AMP] = ACTIONS(4504), + [anon_sym_PIPE_PIPE] = ACTIONS(4504), + [anon_sym_else] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4504), + [anon_sym_PLUS_EQ] = ACTIONS(4504), + [anon_sym_DASH_EQ] = ACTIONS(4504), + [anon_sym_STAR_EQ] = ACTIONS(4504), + [anon_sym_SLASH_EQ] = ACTIONS(4504), + [anon_sym_PERCENT_EQ] = ACTIONS(4504), + [anon_sym_BANG_EQ] = ACTIONS(4502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4504), + [anon_sym_EQ_EQ] = ACTIONS(4502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4504), + [anon_sym_LT_EQ] = ACTIONS(4504), + [anon_sym_GT_EQ] = ACTIONS(4504), + [anon_sym_BANGin] = ACTIONS(4504), + [anon_sym_is] = ACTIONS(4502), + [anon_sym_BANGis] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_SLASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_as_QMARK] = ACTIONS(4504), + [anon_sym_PLUS_PLUS] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4504), + [anon_sym_BANG_BANG] = ACTIONS(4504), + [anon_sym_suspend] = ACTIONS(4502), + [anon_sym_sealed] = ACTIONS(4502), + [anon_sym_annotation] = ACTIONS(4502), + [anon_sym_data] = ACTIONS(4502), + [anon_sym_inner] = ACTIONS(4502), + [anon_sym_override] = ACTIONS(4502), + [anon_sym_lateinit] = ACTIONS(4502), + [anon_sym_public] = ACTIONS(4502), + [anon_sym_private] = ACTIONS(4502), + [anon_sym_internal] = ACTIONS(4502), + [anon_sym_protected] = ACTIONS(4502), + [anon_sym_tailrec] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_infix] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym_external] = ACTIONS(4502), + [sym_property_modifier] = ACTIONS(4502), + [anon_sym_abstract] = ACTIONS(4502), + [anon_sym_final] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4502), + [anon_sym_vararg] = ACTIONS(4502), + [anon_sym_noinline] = ACTIONS(4502), + [anon_sym_crossinline] = ACTIONS(4502), + [anon_sym_expect] = ACTIONS(4502), + [anon_sym_actual] = ACTIONS(4502), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4504), + [sym__automatic_semicolon] = ACTIONS(4504), + [sym_safe_nav] = ACTIONS(4504), [sym_multiline_comment] = ACTIONS(3), }, - [3780] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(6878), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), + [3762] = { + [sym_function_body] = STATE(3179), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), }, - [3781] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [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_DOT] = 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_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), + [3763] = { + [sym_function_body] = STATE(3350), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_RBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_DASH_GT] = ACTIONS(4454), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, - [3782] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), + [3764] = { + [sym__alpha_identifier] = ACTIONS(4941), + [anon_sym_AT] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_where] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_get] = ACTIONS(4941), + [anon_sym_set] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4941), + [sym_label] = ACTIONS(4943), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_QMARK_COLON] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_else] = ACTIONS(4941), + [anon_sym_COLON_COLON] = ACTIONS(4943), + [anon_sym_PLUS_EQ] = ACTIONS(4943), + [anon_sym_DASH_EQ] = ACTIONS(4943), + [anon_sym_STAR_EQ] = ACTIONS(4943), + [anon_sym_SLASH_EQ] = ACTIONS(4943), + [anon_sym_PERCENT_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_BANGin] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_BANGis] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_as_QMARK] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_BANG_BANG] = ACTIONS(4943), + [anon_sym_suspend] = ACTIONS(4941), + [anon_sym_sealed] = ACTIONS(4941), + [anon_sym_annotation] = ACTIONS(4941), + [anon_sym_data] = ACTIONS(4941), + [anon_sym_inner] = ACTIONS(4941), + [anon_sym_override] = ACTIONS(4941), + [anon_sym_lateinit] = ACTIONS(4941), + [anon_sym_public] = ACTIONS(4941), + [anon_sym_private] = ACTIONS(4941), + [anon_sym_internal] = ACTIONS(4941), + [anon_sym_protected] = ACTIONS(4941), + [anon_sym_tailrec] = ACTIONS(4941), + [anon_sym_operator] = ACTIONS(4941), + [anon_sym_infix] = ACTIONS(4941), + [anon_sym_inline] = ACTIONS(4941), + [anon_sym_external] = ACTIONS(4941), + [sym_property_modifier] = ACTIONS(4941), + [anon_sym_abstract] = ACTIONS(4941), + [anon_sym_final] = ACTIONS(4941), + [anon_sym_open] = ACTIONS(4941), + [anon_sym_vararg] = ACTIONS(4941), + [anon_sym_noinline] = ACTIONS(4941), + [anon_sym_crossinline] = ACTIONS(4941), + [anon_sym_expect] = ACTIONS(4941), + [anon_sym_actual] = ACTIONS(4941), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4943), + [sym__automatic_semicolon] = ACTIONS(4943), + [sym_safe_nav] = ACTIONS(4943), [sym_multiline_comment] = ACTIONS(3), }, - [3783] = { - [sym__alpha_identifier] = ACTIONS(4818), - [anon_sym_AT] = ACTIONS(4820), - [anon_sym_LBRACK] = ACTIONS(4820), - [anon_sym_as] = ACTIONS(4818), - [anon_sym_EQ] = ACTIONS(4818), - [anon_sym_LBRACE] = ACTIONS(4820), - [anon_sym_RBRACE] = ACTIONS(4820), - [anon_sym_LPAREN] = ACTIONS(4820), - [anon_sym_COMMA] = ACTIONS(4820), - [anon_sym_LT] = ACTIONS(4818), - [anon_sym_GT] = ACTIONS(4818), - [anon_sym_where] = ACTIONS(4818), - [anon_sym_DOT] = ACTIONS(4818), - [anon_sym_SEMI] = ACTIONS(4820), - [anon_sym_get] = ACTIONS(4818), - [anon_sym_set] = ACTIONS(4818), - [anon_sym_STAR] = ACTIONS(4818), - [sym_label] = ACTIONS(4820), - [anon_sym_in] = ACTIONS(4818), - [anon_sym_DOT_DOT] = ACTIONS(4820), - [anon_sym_QMARK_COLON] = ACTIONS(4820), - [anon_sym_AMP_AMP] = ACTIONS(4820), - [anon_sym_PIPE_PIPE] = ACTIONS(4820), - [anon_sym_else] = ACTIONS(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_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), + [3765] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [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_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(4820), - [sym__automatic_semicolon] = ACTIONS(4820), - [sym_safe_nav] = ACTIONS(4820), - [sym_multiline_comment] = ACTIONS(3), - }, - [3784] = { - [sym__alpha_identifier] = ACTIONS(4718), - [anon_sym_AT] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_as] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4718), - [anon_sym_GT] = ACTIONS(4718), - [anon_sym_where] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_get] = ACTIONS(4718), - [anon_sym_set] = ACTIONS(4718), - [anon_sym_STAR] = ACTIONS(4718), - [sym_label] = ACTIONS(4720), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_QMARK_COLON] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_else] = ACTIONS(4718), - [anon_sym_COLON_COLON] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4720), - [anon_sym_STAR_EQ] = ACTIONS(4720), - [anon_sym_SLASH_EQ] = ACTIONS(4720), - [anon_sym_PERCENT_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4720), - [anon_sym_BANGin] = ACTIONS(4720), - [anon_sym_is] = ACTIONS(4718), - [anon_sym_BANGis] = ACTIONS(4720), - [anon_sym_PLUS] = ACTIONS(4718), - [anon_sym_DASH] = ACTIONS(4718), - [anon_sym_SLASH] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4718), - [anon_sym_as_QMARK] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_BANG_BANG] = ACTIONS(4720), - [anon_sym_suspend] = ACTIONS(4718), - [anon_sym_sealed] = ACTIONS(4718), - [anon_sym_annotation] = ACTIONS(4718), - [anon_sym_data] = ACTIONS(4718), - [anon_sym_inner] = ACTIONS(4718), - [anon_sym_override] = ACTIONS(4718), - [anon_sym_lateinit] = ACTIONS(4718), - [anon_sym_public] = ACTIONS(4718), - [anon_sym_private] = ACTIONS(4718), - [anon_sym_internal] = ACTIONS(4718), - [anon_sym_protected] = ACTIONS(4718), - [anon_sym_tailrec] = ACTIONS(4718), - [anon_sym_operator] = ACTIONS(4718), - [anon_sym_infix] = ACTIONS(4718), - [anon_sym_inline] = ACTIONS(4718), - [anon_sym_external] = ACTIONS(4718), - [sym_property_modifier] = ACTIONS(4718), - [anon_sym_abstract] = ACTIONS(4718), - [anon_sym_final] = ACTIONS(4718), - [anon_sym_open] = ACTIONS(4718), - [anon_sym_vararg] = ACTIONS(4718), - [anon_sym_noinline] = ACTIONS(4718), - [anon_sym_crossinline] = ACTIONS(4718), - [anon_sym_expect] = ACTIONS(4718), - [anon_sym_actual] = ACTIONS(4718), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4720), - [sym__automatic_semicolon] = ACTIONS(4720), - [sym_safe_nav] = ACTIONS(4720), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), [sym_multiline_comment] = ACTIONS(3), }, - [3785] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4210), - [anon_sym_DASH_EQ] = ACTIONS(4210), - [anon_sym_STAR_EQ] = ACTIONS(4210), - [anon_sym_SLASH_EQ] = ACTIONS(4210), - [anon_sym_PERCENT_EQ] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), + [3766] = { + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), }, - [3786] = { - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_PLUS_EQ] = ACTIONS(4303), - [anon_sym_DASH_EQ] = ACTIONS(4303), - [anon_sym_STAR_EQ] = ACTIONS(4303), - [anon_sym_SLASH_EQ] = ACTIONS(4303), - [anon_sym_PERCENT_EQ] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [3767] = { + [sym__alpha_identifier] = ACTIONS(4985), + [anon_sym_AT] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_where] = ACTIONS(4985), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_get] = ACTIONS(4985), + [anon_sym_set] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [sym_label] = ACTIONS(4987), + [anon_sym_in] = ACTIONS(4985), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_QMARK_COLON] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_else] = ACTIONS(4985), + [anon_sym_COLON_COLON] = ACTIONS(4987), + [anon_sym_PLUS_EQ] = ACTIONS(4987), + [anon_sym_DASH_EQ] = ACTIONS(4987), + [anon_sym_STAR_EQ] = ACTIONS(4987), + [anon_sym_SLASH_EQ] = ACTIONS(4987), + [anon_sym_PERCENT_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4985), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4985), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_BANGin] = ACTIONS(4987), + [anon_sym_is] = ACTIONS(4985), + [anon_sym_BANGis] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4985), + [anon_sym_as_QMARK] = ACTIONS(4987), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_BANG_BANG] = ACTIONS(4987), + [anon_sym_suspend] = ACTIONS(4985), + [anon_sym_sealed] = ACTIONS(4985), + [anon_sym_annotation] = ACTIONS(4985), + [anon_sym_data] = ACTIONS(4985), + [anon_sym_inner] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_lateinit] = ACTIONS(4985), + [anon_sym_public] = ACTIONS(4985), + [anon_sym_private] = ACTIONS(4985), + [anon_sym_internal] = ACTIONS(4985), + [anon_sym_protected] = ACTIONS(4985), + [anon_sym_tailrec] = ACTIONS(4985), + [anon_sym_operator] = ACTIONS(4985), + [anon_sym_infix] = ACTIONS(4985), + [anon_sym_inline] = ACTIONS(4985), + [anon_sym_external] = ACTIONS(4985), + [sym_property_modifier] = ACTIONS(4985), + [anon_sym_abstract] = ACTIONS(4985), + [anon_sym_final] = ACTIONS(4985), + [anon_sym_open] = ACTIONS(4985), + [anon_sym_vararg] = ACTIONS(4985), + [anon_sym_noinline] = ACTIONS(4985), + [anon_sym_crossinline] = ACTIONS(4985), + [anon_sym_expect] = ACTIONS(4985), + [anon_sym_actual] = ACTIONS(4985), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4987), + [sym__automatic_semicolon] = ACTIONS(4987), + [sym_safe_nav] = ACTIONS(4987), [sym_multiline_comment] = ACTIONS(3), }, - [3787] = { - [sym__alpha_identifier] = ACTIONS(4634), - [anon_sym_AT] = ACTIONS(4636), - [anon_sym_LBRACK] = ACTIONS(4636), - [anon_sym_EQ] = ACTIONS(4636), - [anon_sym_LBRACE] = ACTIONS(4636), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4636), - [anon_sym_COMMA] = ACTIONS(4636), - [anon_sym_by] = ACTIONS(4634), - [anon_sym_object] = ACTIONS(4634), - [anon_sym_fun] = ACTIONS(4634), - [anon_sym_SEMI] = ACTIONS(4636), - [anon_sym_get] = ACTIONS(4634), - [anon_sym_set] = ACTIONS(4634), - [anon_sym_this] = ACTIONS(4634), - [anon_sym_super] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4636), - [sym_label] = ACTIONS(4634), - [anon_sym_in] = ACTIONS(4634), - [anon_sym_null] = ACTIONS(4634), - [anon_sym_if] = ACTIONS(4634), - [anon_sym_else] = ACTIONS(4634), - [anon_sym_when] = ACTIONS(4634), - [anon_sym_try] = ACTIONS(4634), - [anon_sym_throw] = ACTIONS(4634), - [anon_sym_return] = ACTIONS(4634), - [anon_sym_continue] = ACTIONS(4634), - [anon_sym_break] = ACTIONS(4634), - [anon_sym_COLON_COLON] = ACTIONS(4636), - [anon_sym_BANGin] = ACTIONS(4636), - [anon_sym_is] = ACTIONS(4634), - [anon_sym_BANGis] = ACTIONS(4636), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_BANG] = ACTIONS(4634), - [anon_sym_suspend] = ACTIONS(4634), - [anon_sym_sealed] = ACTIONS(4634), - [anon_sym_annotation] = ACTIONS(4634), - [anon_sym_data] = ACTIONS(4634), - [anon_sym_inner] = ACTIONS(4634), - [anon_sym_override] = ACTIONS(4634), - [anon_sym_lateinit] = ACTIONS(4634), - [anon_sym_public] = ACTIONS(4634), - [anon_sym_private] = ACTIONS(4634), - [anon_sym_internal] = ACTIONS(4634), - [anon_sym_protected] = ACTIONS(4634), - [anon_sym_tailrec] = ACTIONS(4634), - [anon_sym_operator] = ACTIONS(4634), - [anon_sym_infix] = ACTIONS(4634), - [anon_sym_inline] = ACTIONS(4634), - [anon_sym_external] = ACTIONS(4634), - [sym_property_modifier] = ACTIONS(4634), - [anon_sym_abstract] = ACTIONS(4634), - [anon_sym_final] = ACTIONS(4634), - [anon_sym_open] = ACTIONS(4634), - [anon_sym_vararg] = ACTIONS(4634), - [anon_sym_noinline] = ACTIONS(4634), - [anon_sym_crossinline] = ACTIONS(4634), - [anon_sym_expect] = ACTIONS(4634), - [anon_sym_actual] = ACTIONS(4634), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4636), - [anon_sym_continue_AT] = ACTIONS(4636), - [anon_sym_break_AT] = ACTIONS(4636), - [sym_real_literal] = ACTIONS(4636), - [sym_integer_literal] = ACTIONS(4634), - [sym_hex_literal] = ACTIONS(4636), - [sym_bin_literal] = ACTIONS(4636), - [anon_sym_true] = ACTIONS(4634), - [anon_sym_false] = ACTIONS(4634), - [anon_sym_SQUOTE] = ACTIONS(4636), - [sym__backtick_identifier] = ACTIONS(4636), - [sym__automatic_semicolon] = ACTIONS(4636), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4636), + [3768] = { + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), }, - [3788] = { - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [3769] = { + [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_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), }, - [3789] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_typealias] = ACTIONS(3943), - [anon_sym_class] = ACTIONS(3943), - [anon_sym_interface] = ACTIONS(3943), - [anon_sym_enum] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_val] = ACTIONS(3943), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_get] = ACTIONS(3943), - [anon_sym_set] = ACTIONS(3943), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3948), - [sym_label] = ACTIONS(3943), - [anon_sym_for] = ACTIONS(3943), - [anon_sym_while] = ACTIONS(3943), - [anon_sym_do] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3943), - [anon_sym_sealed] = ACTIONS(3943), - [anon_sym_annotation] = ACTIONS(3943), - [anon_sym_data] = ACTIONS(3943), - [anon_sym_inner] = ACTIONS(3943), - [anon_sym_override] = ACTIONS(3943), - [anon_sym_lateinit] = ACTIONS(3943), - [anon_sym_public] = ACTIONS(3943), - [anon_sym_private] = ACTIONS(3943), - [anon_sym_internal] = ACTIONS(3943), - [anon_sym_protected] = ACTIONS(3943), - [anon_sym_tailrec] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_infix] = ACTIONS(3943), - [anon_sym_inline] = ACTIONS(3943), - [anon_sym_external] = ACTIONS(3943), - [sym_property_modifier] = ACTIONS(3943), - [anon_sym_abstract] = ACTIONS(3943), - [anon_sym_final] = ACTIONS(3943), - [anon_sym_open] = ACTIONS(3943), - [anon_sym_vararg] = ACTIONS(3943), - [anon_sym_noinline] = ACTIONS(3943), - [anon_sym_crossinline] = ACTIONS(3943), - [anon_sym_expect] = ACTIONS(3943), - [anon_sym_actual] = ACTIONS(3943), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3790] = { - [sym__alpha_identifier] = ACTIONS(5037), - [anon_sym_AT] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_get] = ACTIONS(5037), - [anon_sym_set] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [sym_label] = ACTIONS(5039), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_QMARK_COLON] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_else] = ACTIONS(5037), - [anon_sym_COLON_COLON] = ACTIONS(5039), - [anon_sym_PLUS_EQ] = ACTIONS(5039), - [anon_sym_DASH_EQ] = ACTIONS(5039), - [anon_sym_STAR_EQ] = ACTIONS(5039), - [anon_sym_SLASH_EQ] = ACTIONS(5039), - [anon_sym_PERCENT_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_BANGin] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5037), - [anon_sym_BANGis] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_as_QMARK] = ACTIONS(5039), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_BANG_BANG] = ACTIONS(5039), - [anon_sym_suspend] = ACTIONS(5037), - [anon_sym_sealed] = ACTIONS(5037), - [anon_sym_annotation] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5037), - [anon_sym_inner] = ACTIONS(5037), - [anon_sym_override] = ACTIONS(5037), - [anon_sym_lateinit] = ACTIONS(5037), - [anon_sym_public] = ACTIONS(5037), - [anon_sym_private] = ACTIONS(5037), - [anon_sym_internal] = ACTIONS(5037), - [anon_sym_protected] = ACTIONS(5037), - [anon_sym_tailrec] = ACTIONS(5037), - [anon_sym_operator] = ACTIONS(5037), - [anon_sym_infix] = ACTIONS(5037), - [anon_sym_inline] = ACTIONS(5037), - [anon_sym_external] = ACTIONS(5037), - [sym_property_modifier] = ACTIONS(5037), - [anon_sym_abstract] = ACTIONS(5037), - [anon_sym_final] = ACTIONS(5037), - [anon_sym_open] = ACTIONS(5037), - [anon_sym_vararg] = ACTIONS(5037), - [anon_sym_noinline] = ACTIONS(5037), - [anon_sym_crossinline] = ACTIONS(5037), - [anon_sym_expect] = ACTIONS(5037), - [anon_sym_actual] = ACTIONS(5037), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5039), - [sym__automatic_semicolon] = ACTIONS(5039), - [sym_safe_nav] = ACTIONS(5039), + [3770] = { + [sym__alpha_identifier] = ACTIONS(4957), + [anon_sym_AT] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_COMMA] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_where] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4959), + [anon_sym_get] = ACTIONS(4957), + [anon_sym_set] = ACTIONS(4957), + [anon_sym_STAR] = ACTIONS(4957), + [sym_label] = ACTIONS(4959), + [anon_sym_in] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_QMARK_COLON] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_else] = ACTIONS(4957), + [anon_sym_COLON_COLON] = ACTIONS(4959), + [anon_sym_PLUS_EQ] = ACTIONS(4959), + [anon_sym_DASH_EQ] = ACTIONS(4959), + [anon_sym_STAR_EQ] = ACTIONS(4959), + [anon_sym_SLASH_EQ] = ACTIONS(4959), + [anon_sym_PERCENT_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4959), + [anon_sym_LT_EQ] = ACTIONS(4959), + [anon_sym_GT_EQ] = ACTIONS(4959), + [anon_sym_BANGin] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_BANGis] = ACTIONS(4959), + [anon_sym_PLUS] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_as_QMARK] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_BANG_BANG] = ACTIONS(4959), + [anon_sym_suspend] = ACTIONS(4957), + [anon_sym_sealed] = ACTIONS(4957), + [anon_sym_annotation] = ACTIONS(4957), + [anon_sym_data] = ACTIONS(4957), + [anon_sym_inner] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_lateinit] = ACTIONS(4957), + [anon_sym_public] = ACTIONS(4957), + [anon_sym_private] = ACTIONS(4957), + [anon_sym_internal] = ACTIONS(4957), + [anon_sym_protected] = ACTIONS(4957), + [anon_sym_tailrec] = ACTIONS(4957), + [anon_sym_operator] = ACTIONS(4957), + [anon_sym_infix] = ACTIONS(4957), + [anon_sym_inline] = ACTIONS(4957), + [anon_sym_external] = ACTIONS(4957), + [sym_property_modifier] = ACTIONS(4957), + [anon_sym_abstract] = ACTIONS(4957), + [anon_sym_final] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_vararg] = ACTIONS(4957), + [anon_sym_noinline] = ACTIONS(4957), + [anon_sym_crossinline] = ACTIONS(4957), + [anon_sym_expect] = ACTIONS(4957), + [anon_sym_actual] = ACTIONS(4957), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4959), + [sym__automatic_semicolon] = ACTIONS(4959), + [sym_safe_nav] = ACTIONS(4959), [sym_multiline_comment] = ACTIONS(3), }, - [3791] = { - [sym_function_body] = STATE(3418), - [sym__block] = STATE(3464), - [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(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_COMMA] = ACTIONS(4426), - [anon_sym_RPAREN] = ACTIONS(4426), - [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(4426), - [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_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(4426), - [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_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), + [3771] = { + [sym__alpha_identifier] = ACTIONS(4869), + [anon_sym_AT] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_where] = ACTIONS(4869), + [anon_sym_DOT] = ACTIONS(4869), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4869), + [anon_sym_set] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [sym_label] = ACTIONS(4871), + [anon_sym_in] = ACTIONS(4869), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_QMARK_COLON] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_else] = ACTIONS(4869), + [anon_sym_COLON_COLON] = ACTIONS(4871), + [anon_sym_PLUS_EQ] = ACTIONS(4871), + [anon_sym_DASH_EQ] = ACTIONS(4871), + [anon_sym_STAR_EQ] = ACTIONS(4871), + [anon_sym_SLASH_EQ] = ACTIONS(4871), + [anon_sym_PERCENT_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_BANGin] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4869), + [anon_sym_BANGis] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_as_QMARK] = ACTIONS(4871), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_BANG_BANG] = ACTIONS(4871), + [anon_sym_suspend] = ACTIONS(4869), + [anon_sym_sealed] = ACTIONS(4869), + [anon_sym_annotation] = ACTIONS(4869), + [anon_sym_data] = ACTIONS(4869), + [anon_sym_inner] = ACTIONS(4869), + [anon_sym_override] = ACTIONS(4869), + [anon_sym_lateinit] = ACTIONS(4869), + [anon_sym_public] = ACTIONS(4869), + [anon_sym_private] = ACTIONS(4869), + [anon_sym_internal] = ACTIONS(4869), + [anon_sym_protected] = ACTIONS(4869), + [anon_sym_tailrec] = ACTIONS(4869), + [anon_sym_operator] = ACTIONS(4869), + [anon_sym_infix] = ACTIONS(4869), + [anon_sym_inline] = ACTIONS(4869), + [anon_sym_external] = ACTIONS(4869), + [sym_property_modifier] = ACTIONS(4869), + [anon_sym_abstract] = ACTIONS(4869), + [anon_sym_final] = ACTIONS(4869), + [anon_sym_open] = ACTIONS(4869), + [anon_sym_vararg] = ACTIONS(4869), + [anon_sym_noinline] = ACTIONS(4869), + [anon_sym_crossinline] = ACTIONS(4869), + [anon_sym_expect] = ACTIONS(4869), + [anon_sym_actual] = ACTIONS(4869), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4871), + [sym__automatic_semicolon] = ACTIONS(4871), + [sym_safe_nav] = ACTIONS(4871), [sym_multiline_comment] = ACTIONS(3), }, - [3792] = { - [sym__alpha_identifier] = ACTIONS(4895), - [anon_sym_AT] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4897), - [anon_sym_as] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4897), - [anon_sym_COMMA] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4895), - [anon_sym_GT] = ACTIONS(4895), - [anon_sym_where] = ACTIONS(4895), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_get] = ACTIONS(4895), - [anon_sym_set] = ACTIONS(4895), - [anon_sym_STAR] = ACTIONS(4895), - [sym_label] = ACTIONS(4897), - [anon_sym_in] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(4897), - [anon_sym_QMARK_COLON] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_else] = ACTIONS(4895), - [anon_sym_COLON_COLON] = ACTIONS(4897), - [anon_sym_PLUS_EQ] = ACTIONS(4897), - [anon_sym_DASH_EQ] = ACTIONS(4897), - [anon_sym_STAR_EQ] = ACTIONS(4897), - [anon_sym_SLASH_EQ] = ACTIONS(4897), - [anon_sym_PERCENT_EQ] = ACTIONS(4897), - [anon_sym_BANG_EQ] = ACTIONS(4895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT_EQ] = ACTIONS(4897), - [anon_sym_GT_EQ] = ACTIONS(4897), - [anon_sym_BANGin] = ACTIONS(4897), - [anon_sym_is] = ACTIONS(4895), - [anon_sym_BANGis] = ACTIONS(4897), - [anon_sym_PLUS] = ACTIONS(4895), - [anon_sym_DASH] = ACTIONS(4895), - [anon_sym_SLASH] = ACTIONS(4895), - [anon_sym_PERCENT] = ACTIONS(4895), - [anon_sym_as_QMARK] = ACTIONS(4897), - [anon_sym_PLUS_PLUS] = ACTIONS(4897), - [anon_sym_DASH_DASH] = ACTIONS(4897), - [anon_sym_BANG_BANG] = ACTIONS(4897), - [anon_sym_suspend] = ACTIONS(4895), - [anon_sym_sealed] = ACTIONS(4895), - [anon_sym_annotation] = ACTIONS(4895), - [anon_sym_data] = ACTIONS(4895), - [anon_sym_inner] = ACTIONS(4895), - [anon_sym_override] = ACTIONS(4895), - [anon_sym_lateinit] = ACTIONS(4895), - [anon_sym_public] = ACTIONS(4895), - [anon_sym_private] = ACTIONS(4895), - [anon_sym_internal] = ACTIONS(4895), - [anon_sym_protected] = ACTIONS(4895), - [anon_sym_tailrec] = ACTIONS(4895), - [anon_sym_operator] = ACTIONS(4895), - [anon_sym_infix] = ACTIONS(4895), - [anon_sym_inline] = ACTIONS(4895), - [anon_sym_external] = ACTIONS(4895), - [sym_property_modifier] = ACTIONS(4895), - [anon_sym_abstract] = ACTIONS(4895), - [anon_sym_final] = ACTIONS(4895), - [anon_sym_open] = ACTIONS(4895), - [anon_sym_vararg] = ACTIONS(4895), - [anon_sym_noinline] = ACTIONS(4895), - [anon_sym_crossinline] = ACTIONS(4895), - [anon_sym_expect] = ACTIONS(4895), - [anon_sym_actual] = ACTIONS(4895), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4897), - [sym__automatic_semicolon] = ACTIONS(4897), - [sym_safe_nav] = ACTIONS(4897), + [3772] = { + [sym__alpha_identifier] = ACTIONS(4937), + [anon_sym_AT] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4937), + [anon_sym_GT] = ACTIONS(4937), + [anon_sym_where] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4937), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_get] = ACTIONS(4937), + [anon_sym_set] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [sym_label] = ACTIONS(4939), + [anon_sym_in] = ACTIONS(4937), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_QMARK_COLON] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_else] = ACTIONS(4937), + [anon_sym_COLON_COLON] = ACTIONS(4939), + [anon_sym_PLUS_EQ] = ACTIONS(4939), + [anon_sym_DASH_EQ] = ACTIONS(4939), + [anon_sym_STAR_EQ] = ACTIONS(4939), + [anon_sym_SLASH_EQ] = ACTIONS(4939), + [anon_sym_PERCENT_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4937), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_BANGin] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4937), + [anon_sym_BANGis] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_as_QMARK] = ACTIONS(4939), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_BANG_BANG] = ACTIONS(4939), + [anon_sym_suspend] = ACTIONS(4937), + [anon_sym_sealed] = ACTIONS(4937), + [anon_sym_annotation] = ACTIONS(4937), + [anon_sym_data] = ACTIONS(4937), + [anon_sym_inner] = ACTIONS(4937), + [anon_sym_override] = ACTIONS(4937), + [anon_sym_lateinit] = ACTIONS(4937), + [anon_sym_public] = ACTIONS(4937), + [anon_sym_private] = ACTIONS(4937), + [anon_sym_internal] = ACTIONS(4937), + [anon_sym_protected] = ACTIONS(4937), + [anon_sym_tailrec] = ACTIONS(4937), + [anon_sym_operator] = ACTIONS(4937), + [anon_sym_infix] = ACTIONS(4937), + [anon_sym_inline] = ACTIONS(4937), + [anon_sym_external] = ACTIONS(4937), + [sym_property_modifier] = ACTIONS(4937), + [anon_sym_abstract] = ACTIONS(4937), + [anon_sym_final] = ACTIONS(4937), + [anon_sym_open] = ACTIONS(4937), + [anon_sym_vararg] = ACTIONS(4937), + [anon_sym_noinline] = ACTIONS(4937), + [anon_sym_crossinline] = ACTIONS(4937), + [anon_sym_expect] = ACTIONS(4937), + [anon_sym_actual] = ACTIONS(4937), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4939), + [sym__automatic_semicolon] = ACTIONS(4939), + [sym_safe_nav] = ACTIONS(4939), [sym_multiline_comment] = ACTIONS(3), }, - [3793] = { - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_PLUS_EQ] = ACTIONS(4198), - [anon_sym_DASH_EQ] = ACTIONS(4198), - [anon_sym_STAR_EQ] = ACTIONS(4198), - [anon_sym_SLASH_EQ] = ACTIONS(4198), - [anon_sym_PERCENT_EQ] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [3773] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [3794] = { - [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_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), + [3774] = { + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_PLUS_EQ] = ACTIONS(4444), + [anon_sym_DASH_EQ] = ACTIONS(4444), + [anon_sym_STAR_EQ] = ACTIONS(4444), + [anon_sym_SLASH_EQ] = ACTIONS(4444), + [anon_sym_PERCENT_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, - [3795] = { - [sym__alpha_identifier] = ACTIONS(4859), - [anon_sym_AT] = ACTIONS(4861), - [anon_sym_LBRACK] = ACTIONS(4861), - [anon_sym_as] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4861), - [anon_sym_COMMA] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4859), - [anon_sym_GT] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4859), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_get] = ACTIONS(4859), - [anon_sym_set] = ACTIONS(4859), - [anon_sym_STAR] = ACTIONS(4859), - [sym_label] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4859), - [anon_sym_DOT_DOT] = ACTIONS(4861), - [anon_sym_QMARK_COLON] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_else] = ACTIONS(4859), - [anon_sym_COLON_COLON] = ACTIONS(4861), - [anon_sym_PLUS_EQ] = ACTIONS(4861), - [anon_sym_DASH_EQ] = ACTIONS(4861), - [anon_sym_STAR_EQ] = ACTIONS(4861), - [anon_sym_SLASH_EQ] = ACTIONS(4861), - [anon_sym_PERCENT_EQ] = ACTIONS(4861), - [anon_sym_BANG_EQ] = ACTIONS(4859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4859), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), - [anon_sym_LT_EQ] = ACTIONS(4861), - [anon_sym_GT_EQ] = ACTIONS(4861), - [anon_sym_BANGin] = ACTIONS(4861), - [anon_sym_is] = ACTIONS(4859), - [anon_sym_BANGis] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4859), - [anon_sym_DASH] = ACTIONS(4859), - [anon_sym_SLASH] = ACTIONS(4859), - [anon_sym_PERCENT] = ACTIONS(4859), - [anon_sym_as_QMARK] = ACTIONS(4861), - [anon_sym_PLUS_PLUS] = ACTIONS(4861), - [anon_sym_DASH_DASH] = ACTIONS(4861), - [anon_sym_BANG_BANG] = ACTIONS(4861), - [anon_sym_suspend] = ACTIONS(4859), - [anon_sym_sealed] = ACTIONS(4859), - [anon_sym_annotation] = ACTIONS(4859), - [anon_sym_data] = ACTIONS(4859), - [anon_sym_inner] = ACTIONS(4859), - [anon_sym_override] = ACTIONS(4859), - [anon_sym_lateinit] = ACTIONS(4859), - [anon_sym_public] = ACTIONS(4859), - [anon_sym_private] = ACTIONS(4859), - [anon_sym_internal] = ACTIONS(4859), - [anon_sym_protected] = ACTIONS(4859), - [anon_sym_tailrec] = ACTIONS(4859), - [anon_sym_operator] = ACTIONS(4859), - [anon_sym_infix] = ACTIONS(4859), - [anon_sym_inline] = ACTIONS(4859), - [anon_sym_external] = ACTIONS(4859), - [sym_property_modifier] = ACTIONS(4859), - [anon_sym_abstract] = ACTIONS(4859), - [anon_sym_final] = ACTIONS(4859), - [anon_sym_open] = ACTIONS(4859), - [anon_sym_vararg] = ACTIONS(4859), - [anon_sym_noinline] = ACTIONS(4859), - [anon_sym_crossinline] = ACTIONS(4859), - [anon_sym_expect] = ACTIONS(4859), - [anon_sym_actual] = ACTIONS(4859), + [3775] = { + [sym__alpha_identifier] = ACTIONS(4585), + [anon_sym_AT] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_by] = ACTIONS(4585), + [anon_sym_object] = ACTIONS(4585), + [anon_sym_fun] = 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(4587), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4585), + [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_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_PLUS_PLUS] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4585), + [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_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(4861), - [sym__automatic_semicolon] = ACTIONS(4861), - [sym_safe_nav] = ACTIONS(4861), + [anon_sym_return_AT] = ACTIONS(4587), + [anon_sym_continue_AT] = ACTIONS(4587), + [anon_sym_break_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4587), }, - [3796] = { - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4186), - [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_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_DOT] = 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_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), + [3776] = { + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, - [3797] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3777] = { + [sym__alpha_identifier] = ACTIONS(4851), + [anon_sym_AT] = ACTIONS(4853), + [anon_sym_LBRACK] = ACTIONS(4853), + [anon_sym_as] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4853), + [anon_sym_COMMA] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_where] = ACTIONS(4851), + [anon_sym_DOT] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4853), + [anon_sym_get] = ACTIONS(4851), + [anon_sym_set] = ACTIONS(4851), + [anon_sym_STAR] = ACTIONS(4851), + [sym_label] = ACTIONS(4853), + [anon_sym_in] = ACTIONS(4851), + [anon_sym_DOT_DOT] = ACTIONS(4853), + [anon_sym_QMARK_COLON] = ACTIONS(4853), + [anon_sym_AMP_AMP] = ACTIONS(4853), + [anon_sym_PIPE_PIPE] = ACTIONS(4853), + [anon_sym_else] = ACTIONS(4851), + [anon_sym_COLON_COLON] = ACTIONS(4853), + [anon_sym_PLUS_EQ] = ACTIONS(4853), + [anon_sym_DASH_EQ] = ACTIONS(4853), + [anon_sym_STAR_EQ] = ACTIONS(4853), + [anon_sym_SLASH_EQ] = ACTIONS(4853), + [anon_sym_PERCENT_EQ] = ACTIONS(4853), + [anon_sym_BANG_EQ] = ACTIONS(4851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4853), + [anon_sym_EQ_EQ] = ACTIONS(4851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4853), + [anon_sym_LT_EQ] = ACTIONS(4853), + [anon_sym_GT_EQ] = ACTIONS(4853), + [anon_sym_BANGin] = ACTIONS(4853), + [anon_sym_is] = ACTIONS(4851), + [anon_sym_BANGis] = ACTIONS(4853), + [anon_sym_PLUS] = ACTIONS(4851), + [anon_sym_DASH] = ACTIONS(4851), + [anon_sym_SLASH] = ACTIONS(4851), + [anon_sym_PERCENT] = ACTIONS(4851), + [anon_sym_as_QMARK] = ACTIONS(4853), + [anon_sym_PLUS_PLUS] = ACTIONS(4853), + [anon_sym_DASH_DASH] = ACTIONS(4853), + [anon_sym_BANG_BANG] = ACTIONS(4853), + [anon_sym_suspend] = ACTIONS(4851), + [anon_sym_sealed] = ACTIONS(4851), + [anon_sym_annotation] = ACTIONS(4851), + [anon_sym_data] = ACTIONS(4851), + [anon_sym_inner] = ACTIONS(4851), + [anon_sym_override] = ACTIONS(4851), + [anon_sym_lateinit] = ACTIONS(4851), + [anon_sym_public] = ACTIONS(4851), + [anon_sym_private] = ACTIONS(4851), + [anon_sym_internal] = ACTIONS(4851), + [anon_sym_protected] = ACTIONS(4851), + [anon_sym_tailrec] = ACTIONS(4851), + [anon_sym_operator] = ACTIONS(4851), + [anon_sym_infix] = ACTIONS(4851), + [anon_sym_inline] = ACTIONS(4851), + [anon_sym_external] = ACTIONS(4851), + [sym_property_modifier] = ACTIONS(4851), + [anon_sym_abstract] = ACTIONS(4851), + [anon_sym_final] = ACTIONS(4851), + [anon_sym_open] = ACTIONS(4851), + [anon_sym_vararg] = ACTIONS(4851), + [anon_sym_noinline] = ACTIONS(4851), + [anon_sym_crossinline] = ACTIONS(4851), + [anon_sym_expect] = ACTIONS(4851), + [anon_sym_actual] = ACTIONS(4851), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3798] = { - [sym__alpha_identifier] = ACTIONS(4738), - [anon_sym_AT] = ACTIONS(4740), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(4738), - [anon_sym_LBRACE] = ACTIONS(4740), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_LPAREN] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_LT] = ACTIONS(4738), - [anon_sym_GT] = ACTIONS(4738), - [anon_sym_where] = ACTIONS(4738), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(4738), - [anon_sym_set] = ACTIONS(4738), - [anon_sym_STAR] = ACTIONS(4738), - [sym_label] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4738), - [anon_sym_DOT_DOT] = ACTIONS(4740), - [anon_sym_QMARK_COLON] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_else] = ACTIONS(4738), - [anon_sym_COLON_COLON] = ACTIONS(4740), - [anon_sym_PLUS_EQ] = ACTIONS(4740), - [anon_sym_DASH_EQ] = ACTIONS(4740), - [anon_sym_STAR_EQ] = ACTIONS(4740), - [anon_sym_SLASH_EQ] = ACTIONS(4740), - [anon_sym_PERCENT_EQ] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4738), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4740), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_BANGin] = ACTIONS(4740), - [anon_sym_is] = ACTIONS(4738), - [anon_sym_BANGis] = ACTIONS(4740), - [anon_sym_PLUS] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [anon_sym_SLASH] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4738), - [anon_sym_as_QMARK] = ACTIONS(4740), - [anon_sym_PLUS_PLUS] = ACTIONS(4740), - [anon_sym_DASH_DASH] = ACTIONS(4740), - [anon_sym_BANG_BANG] = ACTIONS(4740), - [anon_sym_suspend] = ACTIONS(4738), - [anon_sym_sealed] = ACTIONS(4738), - [anon_sym_annotation] = ACTIONS(4738), - [anon_sym_data] = ACTIONS(4738), - [anon_sym_inner] = ACTIONS(4738), - [anon_sym_override] = ACTIONS(4738), - [anon_sym_lateinit] = ACTIONS(4738), - [anon_sym_public] = ACTIONS(4738), - [anon_sym_private] = ACTIONS(4738), - [anon_sym_internal] = ACTIONS(4738), - [anon_sym_protected] = ACTIONS(4738), - [anon_sym_tailrec] = ACTIONS(4738), - [anon_sym_operator] = ACTIONS(4738), - [anon_sym_infix] = ACTIONS(4738), - [anon_sym_inline] = ACTIONS(4738), - [anon_sym_external] = ACTIONS(4738), - [sym_property_modifier] = ACTIONS(4738), - [anon_sym_abstract] = ACTIONS(4738), - [anon_sym_final] = ACTIONS(4738), - [anon_sym_open] = ACTIONS(4738), - [anon_sym_vararg] = ACTIONS(4738), - [anon_sym_noinline] = ACTIONS(4738), - [anon_sym_crossinline] = ACTIONS(4738), - [anon_sym_expect] = ACTIONS(4738), - [anon_sym_actual] = ACTIONS(4738), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4740), - [sym__automatic_semicolon] = ACTIONS(4740), - [sym_safe_nav] = ACTIONS(4740), + [sym__backtick_identifier] = ACTIONS(4853), + [sym__automatic_semicolon] = ACTIONS(4853), + [sym_safe_nav] = ACTIONS(4853), [sym_multiline_comment] = ACTIONS(3), }, - [3799] = { - [sym_function_body] = STATE(3745), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_PLUS_EQ] = ACTIONS(4422), - [anon_sym_DASH_EQ] = ACTIONS(4422), - [anon_sym_STAR_EQ] = ACTIONS(4422), - [anon_sym_SLASH_EQ] = ACTIONS(4422), - [anon_sym_PERCENT_EQ] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), + [3778] = { + [sym__alpha_identifier] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [sym_label] = ACTIONS(2990), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_QMARK_COLON] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_as_QMARK] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_BANG_BANG] = ACTIONS(2990), + [anon_sym_suspend] = ACTIONS(2988), + [anon_sym_sealed] = ACTIONS(2988), + [anon_sym_annotation] = ACTIONS(2988), + [anon_sym_data] = ACTIONS(2988), + [anon_sym_inner] = ACTIONS(2988), + [anon_sym_override] = ACTIONS(2988), + [anon_sym_lateinit] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_internal] = ACTIONS(2988), + [anon_sym_protected] = ACTIONS(2988), + [anon_sym_tailrec] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_infix] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_external] = ACTIONS(2988), + [sym_property_modifier] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_vararg] = ACTIONS(2988), + [anon_sym_noinline] = ACTIONS(2988), + [anon_sym_crossinline] = ACTIONS(2988), + [anon_sym_expect] = ACTIONS(2988), + [anon_sym_actual] = ACTIONS(2988), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(2990), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(2990), [sym_multiline_comment] = ACTIONS(3), }, - [3800] = { - [sym__alpha_identifier] = ACTIONS(4742), - [anon_sym_AT] = ACTIONS(4744), - [anon_sym_LBRACK] = ACTIONS(4744), - [anon_sym_as] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LBRACE] = ACTIONS(4744), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_LPAREN] = ACTIONS(4744), - [anon_sym_COMMA] = ACTIONS(4744), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(4742), - [anon_sym_set] = ACTIONS(4742), - [anon_sym_STAR] = ACTIONS(4742), - [sym_label] = ACTIONS(4744), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(4744), - [anon_sym_QMARK_COLON] = ACTIONS(4744), - [anon_sym_AMP_AMP] = ACTIONS(4744), - [anon_sym_PIPE_PIPE] = ACTIONS(4744), - [anon_sym_else] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(4744), - [anon_sym_PLUS_EQ] = ACTIONS(4744), - [anon_sym_DASH_EQ] = ACTIONS(4744), - [anon_sym_STAR_EQ] = ACTIONS(4744), - [anon_sym_SLASH_EQ] = ACTIONS(4744), - [anon_sym_PERCENT_EQ] = ACTIONS(4744), - [anon_sym_BANG_EQ] = ACTIONS(4742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4744), - [anon_sym_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4744), - [anon_sym_LT_EQ] = ACTIONS(4744), - [anon_sym_GT_EQ] = ACTIONS(4744), - [anon_sym_BANGin] = ACTIONS(4744), - [anon_sym_is] = ACTIONS(4742), - [anon_sym_BANGis] = ACTIONS(4744), - [anon_sym_PLUS] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_SLASH] = ACTIONS(4742), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_as_QMARK] = ACTIONS(4744), - [anon_sym_PLUS_PLUS] = ACTIONS(4744), - [anon_sym_DASH_DASH] = ACTIONS(4744), - [anon_sym_BANG_BANG] = ACTIONS(4744), - [anon_sym_suspend] = ACTIONS(4742), - [anon_sym_sealed] = ACTIONS(4742), - [anon_sym_annotation] = ACTIONS(4742), - [anon_sym_data] = ACTIONS(4742), - [anon_sym_inner] = ACTIONS(4742), - [anon_sym_override] = ACTIONS(4742), - [anon_sym_lateinit] = ACTIONS(4742), - [anon_sym_public] = ACTIONS(4742), - [anon_sym_private] = ACTIONS(4742), - [anon_sym_internal] = ACTIONS(4742), - [anon_sym_protected] = ACTIONS(4742), - [anon_sym_tailrec] = ACTIONS(4742), - [anon_sym_operator] = ACTIONS(4742), - [anon_sym_infix] = ACTIONS(4742), - [anon_sym_inline] = ACTIONS(4742), - [anon_sym_external] = ACTIONS(4742), - [sym_property_modifier] = ACTIONS(4742), - [anon_sym_abstract] = ACTIONS(4742), - [anon_sym_final] = ACTIONS(4742), - [anon_sym_open] = ACTIONS(4742), - [anon_sym_vararg] = ACTIONS(4742), - [anon_sym_noinline] = ACTIONS(4742), - [anon_sym_crossinline] = ACTIONS(4742), - [anon_sym_expect] = ACTIONS(4742), - [anon_sym_actual] = ACTIONS(4742), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4744), - [sym__automatic_semicolon] = ACTIONS(4744), - [sym_safe_nav] = ACTIONS(4744), + [3779] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [sym_label] = ACTIONS(205), + [anon_sym_in] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_else] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(207), + [anon_sym_sealed] = ACTIONS(207), + [anon_sym_annotation] = ACTIONS(207), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_override] = ACTIONS(207), + [anon_sym_lateinit] = ACTIONS(207), + [anon_sym_public] = ACTIONS(207), + [anon_sym_private] = ACTIONS(207), + [anon_sym_internal] = ACTIONS(207), + [anon_sym_protected] = ACTIONS(207), + [anon_sym_tailrec] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(207), + [anon_sym_infix] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_external] = ACTIONS(207), + [sym_property_modifier] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_open] = ACTIONS(207), + [anon_sym_vararg] = ACTIONS(207), + [anon_sym_noinline] = ACTIONS(207), + [anon_sym_crossinline] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(205), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), [sym_multiline_comment] = ACTIONS(3), }, - [3801] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4734), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_where] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [3780] = { + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_RBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [anon_sym_DASH_GT] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, - [3802] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(6880), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [anon_sym_DOT_DOT] = ACTIONS(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(4141), - [anon_sym_is] = ACTIONS(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), - }, - [3803] = { - [sym__alpha_identifier] = ACTIONS(4935), - [anon_sym_AT] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4935), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_where] = ACTIONS(4935), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_get] = ACTIONS(4935), - [anon_sym_set] = ACTIONS(4935), - [anon_sym_STAR] = ACTIONS(4935), - [sym_label] = ACTIONS(4937), - [anon_sym_in] = ACTIONS(4935), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_QMARK_COLON] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_else] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4937), - [anon_sym_PLUS_EQ] = ACTIONS(4937), - [anon_sym_DASH_EQ] = ACTIONS(4937), - [anon_sym_STAR_EQ] = ACTIONS(4937), - [anon_sym_SLASH_EQ] = ACTIONS(4937), - [anon_sym_PERCENT_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_BANGin] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4935), - [anon_sym_BANGis] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4935), - [anon_sym_SLASH] = ACTIONS(4935), - [anon_sym_PERCENT] = ACTIONS(4935), - [anon_sym_as_QMARK] = ACTIONS(4937), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_BANG_BANG] = ACTIONS(4937), - [anon_sym_suspend] = ACTIONS(4935), - [anon_sym_sealed] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4935), - [anon_sym_data] = ACTIONS(4935), - [anon_sym_inner] = ACTIONS(4935), - [anon_sym_override] = ACTIONS(4935), - [anon_sym_lateinit] = ACTIONS(4935), - [anon_sym_public] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4935), - [anon_sym_internal] = ACTIONS(4935), - [anon_sym_protected] = ACTIONS(4935), - [anon_sym_tailrec] = ACTIONS(4935), - [anon_sym_operator] = ACTIONS(4935), - [anon_sym_infix] = ACTIONS(4935), - [anon_sym_inline] = ACTIONS(4935), - [anon_sym_external] = ACTIONS(4935), - [sym_property_modifier] = ACTIONS(4935), - [anon_sym_abstract] = ACTIONS(4935), - [anon_sym_final] = ACTIONS(4935), - [anon_sym_open] = ACTIONS(4935), - [anon_sym_vararg] = ACTIONS(4935), - [anon_sym_noinline] = ACTIONS(4935), - [anon_sym_crossinline] = ACTIONS(4935), - [anon_sym_expect] = ACTIONS(4935), - [anon_sym_actual] = ACTIONS(4935), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4937), - [sym__automatic_semicolon] = ACTIONS(4937), - [sym_safe_nav] = ACTIONS(4937), + [3781] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(1780), + [anon_sym_sealed] = ACTIONS(1780), + [anon_sym_annotation] = ACTIONS(1780), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_lateinit] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_internal] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_tailrec] = ACTIONS(1780), + [anon_sym_operator] = ACTIONS(1780), + [anon_sym_infix] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [anon_sym_external] = ACTIONS(1780), + [sym_property_modifier] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_final] = ACTIONS(1780), + [anon_sym_open] = ACTIONS(1780), + [anon_sym_vararg] = ACTIONS(1780), + [anon_sym_noinline] = ACTIONS(1780), + [anon_sym_crossinline] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), [sym_multiline_comment] = ACTIONS(3), }, - [3804] = { - [sym_type_constraints] = STATE(3983), - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), + [3782] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6883), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4310), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [3805] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [anon_sym_PLUS_EQ] = ACTIONS(4511), - [anon_sym_DASH_EQ] = ACTIONS(4511), - [anon_sym_STAR_EQ] = ACTIONS(4511), - [anon_sym_SLASH_EQ] = ACTIONS(4511), - [anon_sym_PERCENT_EQ] = ACTIONS(4511), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), + [3783] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), }, - [3806] = { - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [sym_label] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_suspend] = ACTIONS(4019), - [anon_sym_sealed] = ACTIONS(4019), - [anon_sym_annotation] = ACTIONS(4019), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_override] = ACTIONS(4019), - [anon_sym_lateinit] = ACTIONS(4019), - [anon_sym_public] = ACTIONS(4019), - [anon_sym_private] = ACTIONS(4019), - [anon_sym_internal] = ACTIONS(4019), - [anon_sym_protected] = ACTIONS(4019), - [anon_sym_tailrec] = ACTIONS(4019), - [anon_sym_operator] = ACTIONS(4019), - [anon_sym_infix] = ACTIONS(4019), - [anon_sym_inline] = ACTIONS(4019), - [anon_sym_external] = ACTIONS(4019), - [sym_property_modifier] = ACTIONS(4019), - [anon_sym_abstract] = ACTIONS(4019), - [anon_sym_final] = ACTIONS(4019), - [anon_sym_open] = ACTIONS(4019), - [anon_sym_vararg] = ACTIONS(4019), - [anon_sym_noinline] = ACTIONS(4019), - [anon_sym_crossinline] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), + [3784] = { + [sym__alpha_identifier] = ACTIONS(5017), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [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_DOT] = 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_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(4021), - [sym__automatic_semicolon] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), - [sym_multiline_comment] = ACTIONS(3), - }, - [3807] = { - [sym__alpha_identifier] = ACTIONS(4939), - [anon_sym_AT] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4939), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_get] = ACTIONS(4939), - [anon_sym_set] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [sym_label] = ACTIONS(4941), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_QMARK_COLON] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_else] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4941), - [anon_sym_PLUS_EQ] = ACTIONS(4941), - [anon_sym_DASH_EQ] = ACTIONS(4941), - [anon_sym_STAR_EQ] = ACTIONS(4941), - [anon_sym_SLASH_EQ] = ACTIONS(4941), - [anon_sym_PERCENT_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_BANGin] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4939), - [anon_sym_BANGis] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_as_QMARK] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_BANG_BANG] = ACTIONS(4941), - [anon_sym_suspend] = ACTIONS(4939), - [anon_sym_sealed] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4939), - [anon_sym_data] = ACTIONS(4939), - [anon_sym_inner] = ACTIONS(4939), - [anon_sym_override] = ACTIONS(4939), - [anon_sym_lateinit] = ACTIONS(4939), - [anon_sym_public] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4939), - [anon_sym_internal] = ACTIONS(4939), - [anon_sym_protected] = ACTIONS(4939), - [anon_sym_tailrec] = ACTIONS(4939), - [anon_sym_operator] = ACTIONS(4939), - [anon_sym_infix] = ACTIONS(4939), - [anon_sym_inline] = ACTIONS(4939), - [anon_sym_external] = ACTIONS(4939), - [sym_property_modifier] = ACTIONS(4939), - [anon_sym_abstract] = ACTIONS(4939), - [anon_sym_final] = ACTIONS(4939), - [anon_sym_open] = ACTIONS(4939), - [anon_sym_vararg] = ACTIONS(4939), - [anon_sym_noinline] = ACTIONS(4939), - [anon_sym_crossinline] = ACTIONS(4939), - [anon_sym_expect] = ACTIONS(4939), - [anon_sym_actual] = ACTIONS(4939), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4941), - [sym__automatic_semicolon] = ACTIONS(4941), - [sym_safe_nav] = ACTIONS(4941), - [sym_multiline_comment] = ACTIONS(3), - }, - [3808] = { - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [sym__backtick_identifier] = ACTIONS(5019), + [sym__automatic_semicolon] = ACTIONS(5019), + [sym_safe_nav] = ACTIONS(5019), [sym_multiline_comment] = ACTIONS(3), }, - [3809] = { - [sym__alpha_identifier] = ACTIONS(4931), - [anon_sym_AT] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4933), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym_get] = ACTIONS(4931), - [anon_sym_set] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [sym_label] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4933), - [anon_sym_QMARK_COLON] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_else] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4933), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_BANGin] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_BANGis] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_as_QMARK] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_BANG_BANG] = ACTIONS(4933), - [anon_sym_suspend] = ACTIONS(4931), - [anon_sym_sealed] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4931), - [anon_sym_data] = ACTIONS(4931), - [anon_sym_inner] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), - [anon_sym_lateinit] = ACTIONS(4931), - [anon_sym_public] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4931), - [anon_sym_internal] = ACTIONS(4931), - [anon_sym_protected] = ACTIONS(4931), - [anon_sym_tailrec] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_infix] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym_external] = ACTIONS(4931), - [sym_property_modifier] = ACTIONS(4931), - [anon_sym_abstract] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_open] = ACTIONS(4931), - [anon_sym_vararg] = ACTIONS(4931), - [anon_sym_noinline] = ACTIONS(4931), - [anon_sym_crossinline] = ACTIONS(4931), - [anon_sym_expect] = ACTIONS(4931), - [anon_sym_actual] = ACTIONS(4931), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4933), - [sym__automatic_semicolon] = ACTIONS(4933), - [sym_safe_nav] = ACTIONS(4933), - [sym_multiline_comment] = ACTIONS(3), + [3785] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), }, - [3810] = { - [sym__alpha_identifier] = ACTIONS(4977), - [anon_sym_AT] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_as] = ACTIONS(4977), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_RBRACE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_where] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_get] = ACTIONS(4977), - [anon_sym_set] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4977), - [sym_label] = ACTIONS(4979), - [anon_sym_in] = ACTIONS(4977), - [anon_sym_DOT_DOT] = ACTIONS(4979), - [anon_sym_QMARK_COLON] = ACTIONS(4979), - [anon_sym_AMP_AMP] = ACTIONS(4979), - [anon_sym_PIPE_PIPE] = ACTIONS(4979), - [anon_sym_else] = ACTIONS(4977), - [anon_sym_COLON_COLON] = ACTIONS(4979), - [anon_sym_PLUS_EQ] = ACTIONS(4979), - [anon_sym_DASH_EQ] = ACTIONS(4979), - [anon_sym_STAR_EQ] = ACTIONS(4979), - [anon_sym_SLASH_EQ] = ACTIONS(4979), - [anon_sym_PERCENT_EQ] = ACTIONS(4979), - [anon_sym_BANG_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4977), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4979), - [anon_sym_LT_EQ] = ACTIONS(4979), - [anon_sym_GT_EQ] = ACTIONS(4979), - [anon_sym_BANGin] = ACTIONS(4979), - [anon_sym_is] = ACTIONS(4977), - [anon_sym_BANGis] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_as_QMARK] = ACTIONS(4979), - [anon_sym_PLUS_PLUS] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4979), - [anon_sym_BANG_BANG] = ACTIONS(4979), - [anon_sym_suspend] = ACTIONS(4977), - [anon_sym_sealed] = ACTIONS(4977), - [anon_sym_annotation] = ACTIONS(4977), - [anon_sym_data] = ACTIONS(4977), - [anon_sym_inner] = ACTIONS(4977), - [anon_sym_override] = ACTIONS(4977), - [anon_sym_lateinit] = ACTIONS(4977), - [anon_sym_public] = ACTIONS(4977), - [anon_sym_private] = ACTIONS(4977), - [anon_sym_internal] = ACTIONS(4977), - [anon_sym_protected] = ACTIONS(4977), - [anon_sym_tailrec] = ACTIONS(4977), - [anon_sym_operator] = ACTIONS(4977), - [anon_sym_infix] = ACTIONS(4977), - [anon_sym_inline] = ACTIONS(4977), - [anon_sym_external] = ACTIONS(4977), - [sym_property_modifier] = ACTIONS(4977), - [anon_sym_abstract] = ACTIONS(4977), - [anon_sym_final] = ACTIONS(4977), - [anon_sym_open] = ACTIONS(4977), - [anon_sym_vararg] = ACTIONS(4977), - [anon_sym_noinline] = ACTIONS(4977), - [anon_sym_crossinline] = ACTIONS(4977), - [anon_sym_expect] = ACTIONS(4977), - [anon_sym_actual] = ACTIONS(4977), + [3786] = { + [sym__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [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_DOT] = 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_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(4979), - [sym__automatic_semicolon] = ACTIONS(4979), - [sym_safe_nav] = ACTIONS(4979), - [sym_multiline_comment] = ACTIONS(3), - }, - [3811] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(5057), + [sym__automatic_semicolon] = ACTIONS(5057), + [sym_safe_nav] = ACTIONS(5057), [sym_multiline_comment] = ACTIONS(3), }, - [3812] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_RBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_RPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [anon_sym_DASH_GT] = ACTIONS(4422), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_while] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), + [3787] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6887), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [anon_sym_DASH_GT] = ACTIONS(4296), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, - [3813] = { - [sym__alpha_identifier] = ACTIONS(4810), - [anon_sym_AT] = ACTIONS(4812), - [anon_sym_LBRACK] = ACTIONS(4812), - [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_DOT] = 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_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), + [3788] = { + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), }, - [3814] = { - [sym__alpha_identifier] = ACTIONS(4601), - [anon_sym_AT] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_RBRACE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_by] = ACTIONS(4601), - [anon_sym_where] = ACTIONS(4601), - [anon_sym_object] = ACTIONS(4601), - [anon_sym_fun] = ACTIONS(4601), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_get] = ACTIONS(4601), - [anon_sym_set] = ACTIONS(4601), - [anon_sym_this] = ACTIONS(4601), - [anon_sym_super] = ACTIONS(4601), - [anon_sym_STAR] = ACTIONS(4603), - [sym_label] = ACTIONS(4601), - [anon_sym_in] = ACTIONS(4601), - [anon_sym_null] = ACTIONS(4601), - [anon_sym_if] = ACTIONS(4601), - [anon_sym_else] = ACTIONS(4601), - [anon_sym_when] = ACTIONS(4601), - [anon_sym_try] = ACTIONS(4601), - [anon_sym_throw] = ACTIONS(4601), - [anon_sym_return] = ACTIONS(4601), - [anon_sym_continue] = ACTIONS(4601), - [anon_sym_break] = ACTIONS(4601), - [anon_sym_COLON_COLON] = ACTIONS(4603), - [anon_sym_BANGin] = ACTIONS(4603), - [anon_sym_is] = ACTIONS(4601), - [anon_sym_BANGis] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_PLUS_PLUS] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4601), - [anon_sym_suspend] = ACTIONS(4601), - [anon_sym_sealed] = ACTIONS(4601), - [anon_sym_annotation] = ACTIONS(4601), - [anon_sym_data] = ACTIONS(4601), - [anon_sym_inner] = ACTIONS(4601), - [anon_sym_override] = ACTIONS(4601), - [anon_sym_lateinit] = ACTIONS(4601), - [anon_sym_public] = ACTIONS(4601), - [anon_sym_private] = ACTIONS(4601), - [anon_sym_internal] = ACTIONS(4601), - [anon_sym_protected] = ACTIONS(4601), - [anon_sym_tailrec] = ACTIONS(4601), - [anon_sym_operator] = ACTIONS(4601), - [anon_sym_infix] = ACTIONS(4601), - [anon_sym_inline] = ACTIONS(4601), - [anon_sym_external] = ACTIONS(4601), - [sym_property_modifier] = ACTIONS(4601), - [anon_sym_abstract] = ACTIONS(4601), - [anon_sym_final] = ACTIONS(4601), - [anon_sym_open] = ACTIONS(4601), - [anon_sym_vararg] = ACTIONS(4601), - [anon_sym_noinline] = ACTIONS(4601), - [anon_sym_crossinline] = ACTIONS(4601), - [anon_sym_expect] = ACTIONS(4601), - [anon_sym_actual] = ACTIONS(4601), + [3789] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4603), - [anon_sym_continue_AT] = ACTIONS(4603), - [anon_sym_break_AT] = ACTIONS(4603), - [sym_real_literal] = ACTIONS(4603), - [sym_integer_literal] = ACTIONS(4601), - [sym_hex_literal] = ACTIONS(4603), - [sym_bin_literal] = ACTIONS(4603), - [anon_sym_true] = ACTIONS(4601), - [anon_sym_false] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4603), - [sym__backtick_identifier] = ACTIONS(4603), - [sym__automatic_semicolon] = ACTIONS(4603), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4603), }, - [3815] = { - [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_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), + [3790] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4494), + [anon_sym_fun] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_this] = ACTIONS(4494), + [anon_sym_super] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4494), + [anon_sym_in] = ACTIONS(4494), + [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(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_when] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_throw] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [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(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4496), + [anon_sym_continue_AT] = ACTIONS(4496), + [anon_sym_break_AT] = ACTIONS(4496), + [sym_real_literal] = ACTIONS(4496), + [sym_integer_literal] = ACTIONS(4494), + [sym_hex_literal] = ACTIONS(4496), + [sym_bin_literal] = ACTIONS(4496), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4496), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4496), }, - [3816] = { - [sym_type_constraints] = STATE(3976), - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [3791] = { + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), }, - [3817] = { - [sym__alpha_identifier] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_COMMA] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [sym_label] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_QMARK_COLON] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_STAR_EQ] = ACTIONS(1696), - [anon_sym_SLASH_EQ] = ACTIONS(1696), - [anon_sym_PERCENT_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_BANGin] = ACTIONS(1696), - [anon_sym_is] = ACTIONS(1694), - [anon_sym_BANGis] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_as_QMARK] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG_BANG] = ACTIONS(1696), - [anon_sym_suspend] = ACTIONS(1694), - [anon_sym_sealed] = ACTIONS(1694), - [anon_sym_annotation] = ACTIONS(1694), - [anon_sym_data] = ACTIONS(1694), - [anon_sym_inner] = ACTIONS(1694), - [anon_sym_override] = ACTIONS(1694), - [anon_sym_lateinit] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_private] = ACTIONS(1694), - [anon_sym_internal] = ACTIONS(1694), - [anon_sym_protected] = ACTIONS(1694), - [anon_sym_tailrec] = ACTIONS(1694), - [anon_sym_operator] = ACTIONS(1694), - [anon_sym_infix] = ACTIONS(1694), - [anon_sym_inline] = ACTIONS(1694), - [anon_sym_external] = ACTIONS(1694), - [sym_property_modifier] = ACTIONS(1694), - [anon_sym_abstract] = ACTIONS(1694), - [anon_sym_final] = ACTIONS(1694), - [anon_sym_open] = ACTIONS(1694), - [anon_sym_vararg] = ACTIONS(1694), - [anon_sym_noinline] = ACTIONS(1694), - [anon_sym_crossinline] = ACTIONS(1694), - [anon_sym_expect] = ACTIONS(1694), - [anon_sym_actual] = ACTIONS(1694), + [3792] = { + [sym__alpha_identifier] = ACTIONS(4855), + [anon_sym_AT] = ACTIONS(4857), + [anon_sym_LBRACK] = ACTIONS(4857), + [anon_sym_as] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4857), + [anon_sym_RBRACE] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4857), + [anon_sym_COMMA] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4855), + [anon_sym_GT] = ACTIONS(4855), + [anon_sym_where] = ACTIONS(4855), + [anon_sym_DOT] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_get] = ACTIONS(4855), + [anon_sym_set] = ACTIONS(4855), + [anon_sym_STAR] = ACTIONS(4855), + [sym_label] = ACTIONS(4857), + [anon_sym_in] = ACTIONS(4855), + [anon_sym_DOT_DOT] = ACTIONS(4857), + [anon_sym_QMARK_COLON] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [anon_sym_else] = ACTIONS(4855), + [anon_sym_COLON_COLON] = ACTIONS(4857), + [anon_sym_PLUS_EQ] = ACTIONS(4857), + [anon_sym_DASH_EQ] = ACTIONS(4857), + [anon_sym_STAR_EQ] = ACTIONS(4857), + [anon_sym_SLASH_EQ] = ACTIONS(4857), + [anon_sym_PERCENT_EQ] = ACTIONS(4857), + [anon_sym_BANG_EQ] = ACTIONS(4855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4857), + [anon_sym_EQ_EQ] = ACTIONS(4855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4857), + [anon_sym_LT_EQ] = ACTIONS(4857), + [anon_sym_GT_EQ] = ACTIONS(4857), + [anon_sym_BANGin] = ACTIONS(4857), + [anon_sym_is] = ACTIONS(4855), + [anon_sym_BANGis] = ACTIONS(4857), + [anon_sym_PLUS] = ACTIONS(4855), + [anon_sym_DASH] = ACTIONS(4855), + [anon_sym_SLASH] = ACTIONS(4855), + [anon_sym_PERCENT] = ACTIONS(4855), + [anon_sym_as_QMARK] = ACTIONS(4857), + [anon_sym_PLUS_PLUS] = ACTIONS(4857), + [anon_sym_DASH_DASH] = ACTIONS(4857), + [anon_sym_BANG_BANG] = ACTIONS(4857), + [anon_sym_suspend] = ACTIONS(4855), + [anon_sym_sealed] = ACTIONS(4855), + [anon_sym_annotation] = ACTIONS(4855), + [anon_sym_data] = ACTIONS(4855), + [anon_sym_inner] = ACTIONS(4855), + [anon_sym_override] = ACTIONS(4855), + [anon_sym_lateinit] = ACTIONS(4855), + [anon_sym_public] = ACTIONS(4855), + [anon_sym_private] = ACTIONS(4855), + [anon_sym_internal] = ACTIONS(4855), + [anon_sym_protected] = ACTIONS(4855), + [anon_sym_tailrec] = ACTIONS(4855), + [anon_sym_operator] = ACTIONS(4855), + [anon_sym_infix] = ACTIONS(4855), + [anon_sym_inline] = ACTIONS(4855), + [anon_sym_external] = ACTIONS(4855), + [sym_property_modifier] = ACTIONS(4855), + [anon_sym_abstract] = ACTIONS(4855), + [anon_sym_final] = ACTIONS(4855), + [anon_sym_open] = ACTIONS(4855), + [anon_sym_vararg] = ACTIONS(4855), + [anon_sym_noinline] = ACTIONS(4855), + [anon_sym_crossinline] = ACTIONS(4855), + [anon_sym_expect] = ACTIONS(4855), + [anon_sym_actual] = ACTIONS(4855), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1696), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym_safe_nav] = ACTIONS(1696), + [sym__backtick_identifier] = ACTIONS(4857), + [sym__automatic_semicolon] = ACTIONS(4857), + [sym_safe_nav] = ACTIONS(4857), [sym_multiline_comment] = ACTIONS(3), }, - [3818] = { - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3793] = { + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3819] = { - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3971), - [anon_sym_PLUS_EQ] = ACTIONS(3971), - [anon_sym_DASH_EQ] = ACTIONS(3971), - [anon_sym_STAR_EQ] = ACTIONS(3971), - [anon_sym_SLASH_EQ] = ACTIONS(3971), - [anon_sym_PERCENT_EQ] = ACTIONS(3971), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3971), - [anon_sym_DASH_DASH] = ACTIONS(3971), - [anon_sym_BANG_BANG] = ACTIONS(3971), - [anon_sym_suspend] = ACTIONS(3969), - [anon_sym_sealed] = ACTIONS(3969), - [anon_sym_annotation] = ACTIONS(3969), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_override] = ACTIONS(3969), - [anon_sym_lateinit] = ACTIONS(3969), - [anon_sym_public] = ACTIONS(3969), - [anon_sym_private] = ACTIONS(3969), - [anon_sym_internal] = ACTIONS(3969), - [anon_sym_protected] = ACTIONS(3969), - [anon_sym_tailrec] = ACTIONS(3969), - [anon_sym_operator] = ACTIONS(3969), - [anon_sym_infix] = ACTIONS(3969), - [anon_sym_inline] = ACTIONS(3969), - [anon_sym_external] = ACTIONS(3969), - [sym_property_modifier] = ACTIONS(3969), - [anon_sym_abstract] = ACTIONS(3969), - [anon_sym_final] = ACTIONS(3969), - [anon_sym_open] = ACTIONS(3969), - [anon_sym_vararg] = ACTIONS(3969), - [anon_sym_noinline] = ACTIONS(3969), - [anon_sym_crossinline] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym__automatic_semicolon] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3971), + [3794] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [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_DOT] = 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_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_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), }, - [3820] = { - [sym_class_body] = STATE(3813), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6884), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_PLUS_EQ] = ACTIONS(4386), - [anon_sym_DASH_EQ] = ACTIONS(4386), - [anon_sym_STAR_EQ] = ACTIONS(4386), - [anon_sym_SLASH_EQ] = ACTIONS(4386), - [anon_sym_PERCENT_EQ] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), + [3795] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(1768), + [anon_sym_sealed] = ACTIONS(1768), + [anon_sym_annotation] = ACTIONS(1768), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_lateinit] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_internal] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_tailrec] = ACTIONS(1768), + [anon_sym_operator] = ACTIONS(1768), + [anon_sym_infix] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [anon_sym_external] = ACTIONS(1768), + [sym_property_modifier] = ACTIONS(1768), + [anon_sym_abstract] = ACTIONS(1768), + [anon_sym_final] = ACTIONS(1768), + [anon_sym_open] = ACTIONS(1768), + [anon_sym_vararg] = ACTIONS(1768), + [anon_sym_noinline] = ACTIONS(1768), + [anon_sym_crossinline] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), [sym_multiline_comment] = ACTIONS(3), }, - [3821] = { - [sym__alpha_identifier] = ACTIONS(4891), - [anon_sym_AT] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_as] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4893), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_LPAREN] = ACTIONS(4893), - [anon_sym_COMMA] = ACTIONS(4893), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_where] = ACTIONS(4891), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4893), - [anon_sym_get] = ACTIONS(4891), - [anon_sym_set] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [sym_label] = ACTIONS(4893), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_DOT_DOT] = ACTIONS(4893), - [anon_sym_QMARK_COLON] = ACTIONS(4893), - [anon_sym_AMP_AMP] = ACTIONS(4893), - [anon_sym_PIPE_PIPE] = ACTIONS(4893), - [anon_sym_else] = ACTIONS(4891), - [anon_sym_COLON_COLON] = ACTIONS(4893), - [anon_sym_PLUS_EQ] = ACTIONS(4893), - [anon_sym_DASH_EQ] = ACTIONS(4893), - [anon_sym_STAR_EQ] = ACTIONS(4893), - [anon_sym_SLASH_EQ] = ACTIONS(4893), - [anon_sym_PERCENT_EQ] = ACTIONS(4893), - [anon_sym_BANG_EQ] = ACTIONS(4891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), - [anon_sym_EQ_EQ] = ACTIONS(4891), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), - [anon_sym_LT_EQ] = ACTIONS(4893), - [anon_sym_GT_EQ] = ACTIONS(4893), - [anon_sym_BANGin] = ACTIONS(4893), - [anon_sym_is] = ACTIONS(4891), - [anon_sym_BANGis] = ACTIONS(4893), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4891), - [anon_sym_as_QMARK] = ACTIONS(4893), - [anon_sym_PLUS_PLUS] = ACTIONS(4893), - [anon_sym_DASH_DASH] = ACTIONS(4893), - [anon_sym_BANG_BANG] = ACTIONS(4893), - [anon_sym_suspend] = ACTIONS(4891), - [anon_sym_sealed] = ACTIONS(4891), - [anon_sym_annotation] = ACTIONS(4891), - [anon_sym_data] = ACTIONS(4891), - [anon_sym_inner] = ACTIONS(4891), - [anon_sym_override] = ACTIONS(4891), - [anon_sym_lateinit] = ACTIONS(4891), - [anon_sym_public] = ACTIONS(4891), - [anon_sym_private] = ACTIONS(4891), - [anon_sym_internal] = ACTIONS(4891), - [anon_sym_protected] = ACTIONS(4891), - [anon_sym_tailrec] = ACTIONS(4891), - [anon_sym_operator] = ACTIONS(4891), - [anon_sym_infix] = ACTIONS(4891), - [anon_sym_inline] = ACTIONS(4891), - [anon_sym_external] = ACTIONS(4891), - [sym_property_modifier] = ACTIONS(4891), - [anon_sym_abstract] = ACTIONS(4891), - [anon_sym_final] = ACTIONS(4891), - [anon_sym_open] = ACTIONS(4891), - [anon_sym_vararg] = ACTIONS(4891), - [anon_sym_noinline] = ACTIONS(4891), - [anon_sym_crossinline] = ACTIONS(4891), - [anon_sym_expect] = ACTIONS(4891), - [anon_sym_actual] = ACTIONS(4891), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4893), - [sym__automatic_semicolon] = ACTIONS(4893), - [sym_safe_nav] = ACTIONS(4893), + [3796] = { + [sym__alpha_identifier] = ACTIONS(4917), + [anon_sym_AT] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_as] = ACTIONS(4917), + [anon_sym_EQ] = ACTIONS(4917), + [anon_sym_LBRACE] = ACTIONS(4919), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_where] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4917), + [anon_sym_SEMI] = ACTIONS(4919), + [anon_sym_get] = ACTIONS(4917), + [anon_sym_set] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [sym_label] = ACTIONS(4919), + [anon_sym_in] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4919), + [anon_sym_QMARK_COLON] = ACTIONS(4919), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE_PIPE] = ACTIONS(4919), + [anon_sym_else] = ACTIONS(4917), + [anon_sym_COLON_COLON] = ACTIONS(4919), + [anon_sym_PLUS_EQ] = ACTIONS(4919), + [anon_sym_DASH_EQ] = ACTIONS(4919), + [anon_sym_STAR_EQ] = ACTIONS(4919), + [anon_sym_SLASH_EQ] = ACTIONS(4919), + [anon_sym_PERCENT_EQ] = ACTIONS(4919), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4919), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4919), + [anon_sym_LT_EQ] = ACTIONS(4919), + [anon_sym_GT_EQ] = ACTIONS(4919), + [anon_sym_BANGin] = ACTIONS(4919), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_BANGis] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_as_QMARK] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4919), + [anon_sym_DASH_DASH] = ACTIONS(4919), + [anon_sym_BANG_BANG] = ACTIONS(4919), + [anon_sym_suspend] = ACTIONS(4917), + [anon_sym_sealed] = ACTIONS(4917), + [anon_sym_annotation] = ACTIONS(4917), + [anon_sym_data] = ACTIONS(4917), + [anon_sym_inner] = ACTIONS(4917), + [anon_sym_override] = ACTIONS(4917), + [anon_sym_lateinit] = ACTIONS(4917), + [anon_sym_public] = ACTIONS(4917), + [anon_sym_private] = ACTIONS(4917), + [anon_sym_internal] = ACTIONS(4917), + [anon_sym_protected] = ACTIONS(4917), + [anon_sym_tailrec] = ACTIONS(4917), + [anon_sym_operator] = ACTIONS(4917), + [anon_sym_infix] = ACTIONS(4917), + [anon_sym_inline] = ACTIONS(4917), + [anon_sym_external] = ACTIONS(4917), + [sym_property_modifier] = ACTIONS(4917), + [anon_sym_abstract] = ACTIONS(4917), + [anon_sym_final] = ACTIONS(4917), + [anon_sym_open] = ACTIONS(4917), + [anon_sym_vararg] = ACTIONS(4917), + [anon_sym_noinline] = ACTIONS(4917), + [anon_sym_crossinline] = ACTIONS(4917), + [anon_sym_expect] = ACTIONS(4917), + [anon_sym_actual] = ACTIONS(4917), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4919), + [sym__automatic_semicolon] = ACTIONS(4919), + [sym_safe_nav] = ACTIONS(4919), [sym_multiline_comment] = ACTIONS(3), }, - [3822] = { - [ts_builtin_sym_end] = ACTIONS(6886), - [sym__alpha_identifier] = ACTIONS(6888), - [anon_sym_AT] = ACTIONS(6886), - [anon_sym_LBRACK] = ACTIONS(6886), - [anon_sym_import] = ACTIONS(6888), - [anon_sym_typealias] = ACTIONS(6888), - [anon_sym_class] = ACTIONS(6888), - [anon_sym_interface] = ACTIONS(6888), - [anon_sym_enum] = ACTIONS(6888), - [anon_sym_LBRACE] = ACTIONS(6886), - [anon_sym_LPAREN] = ACTIONS(6886), - [anon_sym_val] = ACTIONS(6888), - [anon_sym_var] = ACTIONS(6888), - [anon_sym_object] = ACTIONS(6888), - [anon_sym_fun] = ACTIONS(6888), - [anon_sym_get] = ACTIONS(6888), - [anon_sym_set] = ACTIONS(6888), - [anon_sym_this] = ACTIONS(6888), - [anon_sym_super] = ACTIONS(6888), - [anon_sym_STAR] = ACTIONS(6886), - [sym_label] = ACTIONS(6888), - [anon_sym_for] = ACTIONS(6888), - [anon_sym_while] = ACTIONS(6888), - [anon_sym_do] = ACTIONS(6888), - [anon_sym_null] = ACTIONS(6888), - [anon_sym_if] = ACTIONS(6888), - [anon_sym_when] = ACTIONS(6888), - [anon_sym_try] = ACTIONS(6888), - [anon_sym_throw] = ACTIONS(6888), - [anon_sym_return] = ACTIONS(6888), - [anon_sym_continue] = ACTIONS(6888), - [anon_sym_break] = ACTIONS(6888), - [anon_sym_COLON_COLON] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6888), - [anon_sym_DASH] = ACTIONS(6888), - [anon_sym_PLUS_PLUS] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6886), - [anon_sym_BANG] = ACTIONS(6886), - [anon_sym_suspend] = ACTIONS(6888), - [anon_sym_sealed] = ACTIONS(6888), - [anon_sym_annotation] = ACTIONS(6888), - [anon_sym_data] = ACTIONS(6888), - [anon_sym_inner] = ACTIONS(6888), - [anon_sym_override] = ACTIONS(6888), - [anon_sym_lateinit] = ACTIONS(6888), - [anon_sym_public] = ACTIONS(6888), - [anon_sym_private] = ACTIONS(6888), - [anon_sym_internal] = ACTIONS(6888), - [anon_sym_protected] = ACTIONS(6888), - [anon_sym_tailrec] = ACTIONS(6888), - [anon_sym_operator] = ACTIONS(6888), - [anon_sym_infix] = ACTIONS(6888), - [anon_sym_inline] = ACTIONS(6888), - [anon_sym_external] = ACTIONS(6888), - [sym_property_modifier] = ACTIONS(6888), - [anon_sym_abstract] = ACTIONS(6888), - [anon_sym_final] = ACTIONS(6888), - [anon_sym_open] = ACTIONS(6888), - [anon_sym_vararg] = ACTIONS(6888), - [anon_sym_noinline] = ACTIONS(6888), - [anon_sym_crossinline] = ACTIONS(6888), - [anon_sym_expect] = ACTIONS(6888), - [anon_sym_actual] = ACTIONS(6888), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6886), - [anon_sym_continue_AT] = ACTIONS(6886), - [anon_sym_break_AT] = ACTIONS(6886), - [sym_real_literal] = ACTIONS(6886), - [sym_integer_literal] = ACTIONS(6888), - [sym_hex_literal] = ACTIONS(6886), - [sym_bin_literal] = ACTIONS(6886), - [anon_sym_true] = ACTIONS(6888), - [anon_sym_false] = ACTIONS(6888), - [anon_sym_SQUOTE] = ACTIONS(6886), - [sym__backtick_identifier] = ACTIONS(6886), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6886), - }, - [3823] = { - [sym_type_constraints] = STATE(3970), - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [3824] = { - [sym__alpha_identifier] = ACTIONS(4887), - [anon_sym_AT] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_as] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4887), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_COMMA] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(4887), - [anon_sym_GT] = ACTIONS(4887), - [anon_sym_where] = ACTIONS(4887), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_get] = ACTIONS(4887), - [anon_sym_set] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [sym_label] = ACTIONS(4889), - [anon_sym_in] = ACTIONS(4887), - [anon_sym_DOT_DOT] = ACTIONS(4889), - [anon_sym_QMARK_COLON] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_else] = ACTIONS(4887), - [anon_sym_COLON_COLON] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(4889), - [anon_sym_DASH_EQ] = ACTIONS(4889), - [anon_sym_STAR_EQ] = ACTIONS(4889), - [anon_sym_SLASH_EQ] = ACTIONS(4889), - [anon_sym_PERCENT_EQ] = ACTIONS(4889), - [anon_sym_BANG_EQ] = ACTIONS(4887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4889), - [anon_sym_EQ_EQ] = ACTIONS(4887), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4889), - [anon_sym_LT_EQ] = ACTIONS(4889), - [anon_sym_GT_EQ] = ACTIONS(4889), - [anon_sym_BANGin] = ACTIONS(4889), - [anon_sym_is] = ACTIONS(4887), - [anon_sym_BANGis] = ACTIONS(4889), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_SLASH] = ACTIONS(4887), - [anon_sym_PERCENT] = ACTIONS(4887), - [anon_sym_as_QMARK] = ACTIONS(4889), - [anon_sym_PLUS_PLUS] = ACTIONS(4889), - [anon_sym_DASH_DASH] = ACTIONS(4889), - [anon_sym_BANG_BANG] = ACTIONS(4889), - [anon_sym_suspend] = ACTIONS(4887), - [anon_sym_sealed] = ACTIONS(4887), - [anon_sym_annotation] = ACTIONS(4887), - [anon_sym_data] = ACTIONS(4887), - [anon_sym_inner] = ACTIONS(4887), - [anon_sym_override] = ACTIONS(4887), - [anon_sym_lateinit] = ACTIONS(4887), - [anon_sym_public] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4887), - [anon_sym_internal] = ACTIONS(4887), - [anon_sym_protected] = ACTIONS(4887), - [anon_sym_tailrec] = ACTIONS(4887), - [anon_sym_operator] = ACTIONS(4887), - [anon_sym_infix] = ACTIONS(4887), - [anon_sym_inline] = ACTIONS(4887), - [anon_sym_external] = ACTIONS(4887), - [sym_property_modifier] = ACTIONS(4887), - [anon_sym_abstract] = ACTIONS(4887), - [anon_sym_final] = ACTIONS(4887), - [anon_sym_open] = ACTIONS(4887), - [anon_sym_vararg] = ACTIONS(4887), - [anon_sym_noinline] = ACTIONS(4887), - [anon_sym_crossinline] = ACTIONS(4887), - [anon_sym_expect] = ACTIONS(4887), - [anon_sym_actual] = ACTIONS(4887), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4889), - [sym__automatic_semicolon] = ACTIONS(4889), - [sym_safe_nav] = ACTIONS(4889), + [3797] = { + [sym_function_body] = STATE(3700), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_PLUS_EQ] = ACTIONS(4454), + [anon_sym_DASH_EQ] = ACTIONS(4454), + [anon_sym_STAR_EQ] = ACTIONS(4454), + [anon_sym_SLASH_EQ] = ACTIONS(4454), + [anon_sym_PERCENT_EQ] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, - [3825] = { - [sym_type_constraints] = STATE(3984), - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [3826] = { - [sym_class_body] = STATE(3751), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6890), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_EQ] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_PLUS_EQ] = ACTIONS(4410), - [anon_sym_DASH_EQ] = ACTIONS(4410), - [anon_sym_STAR_EQ] = ACTIONS(4410), - [anon_sym_SLASH_EQ] = ACTIONS(4410), - [anon_sym_PERCENT_EQ] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4408), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [3798] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5741), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), [sym_multiline_comment] = ACTIONS(3), }, - [3827] = { - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3799] = { + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_DASH_GT] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, - [3828] = { - [aux_sym_user_type_repeat1] = STATE(3759), - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_typealias] = ACTIONS(4220), - [anon_sym_class] = ACTIONS(4220), - [anon_sym_interface] = ACTIONS(4220), - [anon_sym_enum] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_val] = ACTIONS(4220), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(6892), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4222), - [sym_label] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_do] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [anon_sym_try] = ACTIONS(4220), - [anon_sym_throw] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_BANG] = ACTIONS(4222), - [anon_sym_suspend] = ACTIONS(4220), - [anon_sym_sealed] = ACTIONS(4220), - [anon_sym_annotation] = ACTIONS(4220), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4220), - [anon_sym_lateinit] = ACTIONS(4220), - [anon_sym_public] = ACTIONS(4220), - [anon_sym_private] = ACTIONS(4220), - [anon_sym_internal] = ACTIONS(4220), - [anon_sym_protected] = ACTIONS(4220), - [anon_sym_tailrec] = ACTIONS(4220), - [anon_sym_operator] = ACTIONS(4220), - [anon_sym_infix] = ACTIONS(4220), - [anon_sym_inline] = ACTIONS(4220), - [anon_sym_external] = ACTIONS(4220), - [sym_property_modifier] = ACTIONS(4220), - [anon_sym_abstract] = ACTIONS(4220), - [anon_sym_final] = ACTIONS(4220), - [anon_sym_open] = ACTIONS(4220), - [anon_sym_vararg] = ACTIONS(4220), - [anon_sym_noinline] = ACTIONS(4220), - [anon_sym_crossinline] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4222), - [anon_sym_continue_AT] = ACTIONS(4222), - [anon_sym_break_AT] = ACTIONS(4222), - [sym_real_literal] = ACTIONS(4222), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4222), - [sym_bin_literal] = ACTIONS(4222), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4222), - [sym__backtick_identifier] = ACTIONS(4222), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4222), - }, - [3829] = { - [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [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_DOT] = 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_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), + [3800] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [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_DOT] = 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_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(4764), - [sym__automatic_semicolon] = ACTIONS(4764), - [sym_safe_nav] = ACTIONS(4764), - [sym_multiline_comment] = ACTIONS(3), - }, - [3830] = { - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_PLUS_EQ] = ACTIONS(4101), - [anon_sym_DASH_EQ] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4101), - [anon_sym_SLASH_EQ] = ACTIONS(4101), - [anon_sym_PERCENT_EQ] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4099), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [sym__backtick_identifier] = ACTIONS(5083), + [sym__automatic_semicolon] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), [sym_multiline_comment] = ACTIONS(3), }, - [3831] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4517), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [anon_sym_PLUS_EQ] = ACTIONS(4519), - [anon_sym_DASH_EQ] = ACTIONS(4519), - [anon_sym_STAR_EQ] = ACTIONS(4519), - [anon_sym_SLASH_EQ] = ACTIONS(4519), - [anon_sym_PERCENT_EQ] = ACTIONS(4519), - [anon_sym_BANG_EQ] = ACTIONS(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), + [3801] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5735), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), [sym_multiline_comment] = ACTIONS(3), }, - [3832] = { - [sym__alpha_identifier] = ACTIONS(4814), - [anon_sym_AT] = ACTIONS(4816), - [anon_sym_LBRACK] = ACTIONS(4816), - [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_DOT] = 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_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), + [3802] = { + [sym__alpha_identifier] = ACTIONS(4826), + [anon_sym_AT] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(4837), + [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(6891), + [anon_sym_PLUS_EQ] = ACTIONS(4839), + [anon_sym_DASH_EQ] = ACTIONS(4839), + [anon_sym_STAR_EQ] = ACTIONS(4839), + [anon_sym_SLASH_EQ] = ACTIONS(4839), + [anon_sym_PERCENT_EQ] = ACTIONS(4839), + [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_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(4816), - [sym__automatic_semicolon] = ACTIONS(4816), - [sym_safe_nav] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), [sym_multiline_comment] = ACTIONS(3), }, - [3833] = { - [sym__alpha_identifier] = ACTIONS(4501), - [anon_sym_AT] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4503), - [anon_sym_as] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_COMMA] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4501), - [anon_sym_GT] = ACTIONS(4501), - [anon_sym_where] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4501), - [anon_sym_SEMI] = ACTIONS(4503), - [anon_sym_get] = ACTIONS(4501), - [anon_sym_set] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [sym_label] = ACTIONS(4503), - [anon_sym_in] = ACTIONS(4501), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_QMARK_COLON] = ACTIONS(4503), - [anon_sym_AMP_AMP] = ACTIONS(4503), - [anon_sym_PIPE_PIPE] = ACTIONS(4503), - [anon_sym_else] = ACTIONS(4501), - [anon_sym_COLON_COLON] = ACTIONS(4503), - [anon_sym_PLUS_EQ] = ACTIONS(4503), - [anon_sym_DASH_EQ] = ACTIONS(4503), - [anon_sym_STAR_EQ] = ACTIONS(4503), - [anon_sym_SLASH_EQ] = ACTIONS(4503), - [anon_sym_PERCENT_EQ] = ACTIONS(4503), - [anon_sym_BANG_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), - [anon_sym_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), - [anon_sym_LT_EQ] = ACTIONS(4503), - [anon_sym_GT_EQ] = ACTIONS(4503), - [anon_sym_BANGin] = ACTIONS(4503), - [anon_sym_is] = ACTIONS(4501), - [anon_sym_BANGis] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_SLASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_as_QMARK] = ACTIONS(4503), - [anon_sym_PLUS_PLUS] = ACTIONS(4503), - [anon_sym_DASH_DASH] = ACTIONS(4503), - [anon_sym_BANG_BANG] = ACTIONS(4503), - [anon_sym_suspend] = ACTIONS(4501), - [anon_sym_sealed] = ACTIONS(4501), - [anon_sym_annotation] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4501), - [anon_sym_inner] = ACTIONS(4501), - [anon_sym_override] = ACTIONS(4501), - [anon_sym_lateinit] = ACTIONS(4501), - [anon_sym_public] = ACTIONS(4501), - [anon_sym_private] = ACTIONS(4501), - [anon_sym_internal] = ACTIONS(4501), - [anon_sym_protected] = ACTIONS(4501), - [anon_sym_tailrec] = ACTIONS(4501), - [anon_sym_operator] = ACTIONS(4501), - [anon_sym_infix] = ACTIONS(4501), - [anon_sym_inline] = ACTIONS(4501), - [anon_sym_external] = ACTIONS(4501), - [sym_property_modifier] = ACTIONS(4501), - [anon_sym_abstract] = ACTIONS(4501), - [anon_sym_final] = ACTIONS(4501), - [anon_sym_open] = ACTIONS(4501), - [anon_sym_vararg] = ACTIONS(4501), - [anon_sym_noinline] = ACTIONS(4501), - [anon_sym_crossinline] = ACTIONS(4501), - [anon_sym_expect] = ACTIONS(4501), - [anon_sym_actual] = ACTIONS(4501), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4503), - [sym__automatic_semicolon] = ACTIONS(4503), - [sym_safe_nav] = ACTIONS(4503), + [3803] = { + [sym__alpha_identifier] = ACTIONS(4967), + [anon_sym_AT] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_get] = ACTIONS(4967), + [anon_sym_set] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4967), + [sym_label] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_QMARK_COLON] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_else] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_PLUS_EQ] = ACTIONS(4969), + [anon_sym_DASH_EQ] = ACTIONS(4969), + [anon_sym_STAR_EQ] = ACTIONS(4969), + [anon_sym_SLASH_EQ] = ACTIONS(4969), + [anon_sym_PERCENT_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_BANGin] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_BANGis] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_as_QMARK] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_BANG_BANG] = ACTIONS(4969), + [anon_sym_suspend] = ACTIONS(4967), + [anon_sym_sealed] = ACTIONS(4967), + [anon_sym_annotation] = ACTIONS(4967), + [anon_sym_data] = ACTIONS(4967), + [anon_sym_inner] = ACTIONS(4967), + [anon_sym_override] = ACTIONS(4967), + [anon_sym_lateinit] = ACTIONS(4967), + [anon_sym_public] = ACTIONS(4967), + [anon_sym_private] = ACTIONS(4967), + [anon_sym_internal] = ACTIONS(4967), + [anon_sym_protected] = ACTIONS(4967), + [anon_sym_tailrec] = ACTIONS(4967), + [anon_sym_operator] = ACTIONS(4967), + [anon_sym_infix] = ACTIONS(4967), + [anon_sym_inline] = ACTIONS(4967), + [anon_sym_external] = ACTIONS(4967), + [sym_property_modifier] = ACTIONS(4967), + [anon_sym_abstract] = ACTIONS(4967), + [anon_sym_final] = ACTIONS(4967), + [anon_sym_open] = ACTIONS(4967), + [anon_sym_vararg] = ACTIONS(4967), + [anon_sym_noinline] = ACTIONS(4967), + [anon_sym_crossinline] = ACTIONS(4967), + [anon_sym_expect] = ACTIONS(4967), + [anon_sym_actual] = ACTIONS(4967), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4969), + [sym__automatic_semicolon] = ACTIONS(4969), + [sym_safe_nav] = ACTIONS(4969), [sym_multiline_comment] = ACTIONS(3), }, - [3834] = { - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_PLUS_EQ] = ACTIONS(4260), - [anon_sym_DASH_EQ] = ACTIONS(4260), - [anon_sym_STAR_EQ] = ACTIONS(4260), - [anon_sym_SLASH_EQ] = ACTIONS(4260), - [anon_sym_PERCENT_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4258), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [3804] = { + [sym__alpha_identifier] = ACTIONS(5009), + [anon_sym_AT] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_as] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_where] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_get] = ACTIONS(5009), + [anon_sym_set] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5009), + [sym_label] = ACTIONS(5011), + [anon_sym_in] = ACTIONS(5009), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_QMARK_COLON] = ACTIONS(5011), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_else] = ACTIONS(5009), + [anon_sym_COLON_COLON] = ACTIONS(5011), + [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(5009), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_BANGin] = ACTIONS(5011), + [anon_sym_is] = ACTIONS(5009), + [anon_sym_BANGis] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_as_QMARK] = ACTIONS(5011), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_BANG_BANG] = ACTIONS(5011), + [anon_sym_suspend] = ACTIONS(5009), + [anon_sym_sealed] = ACTIONS(5009), + [anon_sym_annotation] = ACTIONS(5009), + [anon_sym_data] = ACTIONS(5009), + [anon_sym_inner] = ACTIONS(5009), + [anon_sym_override] = ACTIONS(5009), + [anon_sym_lateinit] = ACTIONS(5009), + [anon_sym_public] = ACTIONS(5009), + [anon_sym_private] = ACTIONS(5009), + [anon_sym_internal] = ACTIONS(5009), + [anon_sym_protected] = ACTIONS(5009), + [anon_sym_tailrec] = ACTIONS(5009), + [anon_sym_operator] = ACTIONS(5009), + [anon_sym_infix] = ACTIONS(5009), + [anon_sym_inline] = ACTIONS(5009), + [anon_sym_external] = ACTIONS(5009), + [sym_property_modifier] = ACTIONS(5009), + [anon_sym_abstract] = ACTIONS(5009), + [anon_sym_final] = ACTIONS(5009), + [anon_sym_open] = ACTIONS(5009), + [anon_sym_vararg] = ACTIONS(5009), + [anon_sym_noinline] = ACTIONS(5009), + [anon_sym_crossinline] = ACTIONS(5009), + [anon_sym_expect] = ACTIONS(5009), + [anon_sym_actual] = ACTIONS(5009), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5011), + [sym__automatic_semicolon] = ACTIONS(5011), + [sym_safe_nav] = ACTIONS(5011), [sym_multiline_comment] = ACTIONS(3), }, - [3835] = { - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_PLUS_EQ] = ACTIONS(4256), - [anon_sym_DASH_EQ] = ACTIONS(4256), - [anon_sym_STAR_EQ] = ACTIONS(4256), - [anon_sym_SLASH_EQ] = ACTIONS(4256), - [anon_sym_PERCENT_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), + [3805] = { + [sym__alpha_identifier] = ACTIONS(4668), + [anon_sym_AT] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_by] = ACTIONS(4668), + [anon_sym_where] = ACTIONS(4668), + [anon_sym_object] = ACTIONS(4668), + [anon_sym_fun] = ACTIONS(4668), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(4668), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_this] = ACTIONS(4668), + [anon_sym_super] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4668), + [anon_sym_in] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), + [anon_sym_if] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_when] = ACTIONS(4668), + [anon_sym_try] = ACTIONS(4668), + [anon_sym_throw] = ACTIONS(4668), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_continue] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_COLON_COLON] = ACTIONS(4670), + [anon_sym_BANGin] = ACTIONS(4670), + [anon_sym_is] = ACTIONS(4668), + [anon_sym_BANGis] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4668), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym_PLUS_PLUS] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4670), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_suspend] = ACTIONS(4668), + [anon_sym_sealed] = ACTIONS(4668), + [anon_sym_annotation] = ACTIONS(4668), + [anon_sym_data] = ACTIONS(4668), + [anon_sym_inner] = ACTIONS(4668), + [anon_sym_override] = ACTIONS(4668), + [anon_sym_lateinit] = ACTIONS(4668), + [anon_sym_public] = ACTIONS(4668), + [anon_sym_private] = ACTIONS(4668), + [anon_sym_internal] = ACTIONS(4668), + [anon_sym_protected] = ACTIONS(4668), + [anon_sym_tailrec] = ACTIONS(4668), + [anon_sym_operator] = ACTIONS(4668), + [anon_sym_infix] = ACTIONS(4668), + [anon_sym_inline] = ACTIONS(4668), + [anon_sym_external] = ACTIONS(4668), + [sym_property_modifier] = ACTIONS(4668), + [anon_sym_abstract] = ACTIONS(4668), + [anon_sym_final] = ACTIONS(4668), + [anon_sym_open] = ACTIONS(4668), + [anon_sym_vararg] = ACTIONS(4668), + [anon_sym_noinline] = ACTIONS(4668), + [anon_sym_crossinline] = ACTIONS(4668), + [anon_sym_expect] = ACTIONS(4668), + [anon_sym_actual] = ACTIONS(4668), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4670), + [anon_sym_continue_AT] = ACTIONS(4670), + [anon_sym_break_AT] = ACTIONS(4670), + [sym_real_literal] = ACTIONS(4670), + [sym_integer_literal] = ACTIONS(4668), + [sym_hex_literal] = ACTIONS(4670), + [sym_bin_literal] = ACTIONS(4670), + [anon_sym_true] = ACTIONS(4668), + [anon_sym_false] = ACTIONS(4668), + [anon_sym_SQUOTE] = ACTIONS(4670), + [sym__backtick_identifier] = ACTIONS(4670), + [sym__automatic_semicolon] = ACTIONS(4670), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4670), }, - [3836] = { - [sym__alpha_identifier] = ACTIONS(4840), - [anon_sym_AT] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_as] = ACTIONS(4840), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_GT] = ACTIONS(4840), - [anon_sym_where] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_get] = ACTIONS(4840), - [anon_sym_set] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [sym_label] = ACTIONS(4842), - [anon_sym_in] = ACTIONS(4840), - [anon_sym_DOT_DOT] = ACTIONS(4842), - [anon_sym_QMARK_COLON] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_else] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(6864), - [anon_sym_PLUS_EQ] = ACTIONS(4842), - [anon_sym_DASH_EQ] = ACTIONS(4842), - [anon_sym_STAR_EQ] = ACTIONS(4842), - [anon_sym_SLASH_EQ] = ACTIONS(4842), - [anon_sym_PERCENT_EQ] = ACTIONS(4842), - [anon_sym_BANG_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), - [anon_sym_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), - [anon_sym_LT_EQ] = ACTIONS(4842), - [anon_sym_GT_EQ] = ACTIONS(4842), - [anon_sym_BANGin] = ACTIONS(4842), - [anon_sym_is] = ACTIONS(4840), - [anon_sym_BANGis] = ACTIONS(4842), - [anon_sym_PLUS] = ACTIONS(4840), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_SLASH] = ACTIONS(4840), - [anon_sym_PERCENT] = ACTIONS(4840), - [anon_sym_as_QMARK] = ACTIONS(4842), - [anon_sym_PLUS_PLUS] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_BANG_BANG] = ACTIONS(4842), - [anon_sym_suspend] = ACTIONS(4840), - [anon_sym_sealed] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4840), - [anon_sym_inner] = ACTIONS(4840), - [anon_sym_override] = ACTIONS(4840), - [anon_sym_lateinit] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_internal] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_tailrec] = ACTIONS(4840), - [anon_sym_operator] = ACTIONS(4840), - [anon_sym_infix] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_external] = ACTIONS(4840), - [sym_property_modifier] = ACTIONS(4840), - [anon_sym_abstract] = ACTIONS(4840), - [anon_sym_final] = ACTIONS(4840), - [anon_sym_open] = ACTIONS(4840), - [anon_sym_vararg] = ACTIONS(4840), - [anon_sym_noinline] = ACTIONS(4840), - [anon_sym_crossinline] = ACTIONS(4840), - [anon_sym_expect] = ACTIONS(4840), - [anon_sym_actual] = ACTIONS(4840), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4842), - [sym__automatic_semicolon] = ACTIONS(4842), - [sym_safe_nav] = ACTIONS(4842), + [3806] = { + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, - [3837] = { - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4087), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4085), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_PLUS_EQ] = ACTIONS(4087), - [anon_sym_DASH_EQ] = ACTIONS(4087), - [anon_sym_STAR_EQ] = ACTIONS(4087), - [anon_sym_SLASH_EQ] = ACTIONS(4087), - [anon_sym_PERCENT_EQ] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4085), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3807] = { + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [sym_label] = ACTIONS(3914), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_suspend] = ACTIONS(3912), + [anon_sym_sealed] = ACTIONS(3912), + [anon_sym_annotation] = ACTIONS(3912), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_override] = ACTIONS(3912), + [anon_sym_lateinit] = ACTIONS(3912), + [anon_sym_public] = ACTIONS(3912), + [anon_sym_private] = ACTIONS(3912), + [anon_sym_internal] = ACTIONS(3912), + [anon_sym_protected] = ACTIONS(3912), + [anon_sym_tailrec] = ACTIONS(3912), + [anon_sym_operator] = ACTIONS(3912), + [anon_sym_infix] = ACTIONS(3912), + [anon_sym_inline] = ACTIONS(3912), + [anon_sym_external] = ACTIONS(3912), + [sym_property_modifier] = ACTIONS(3912), + [anon_sym_abstract] = ACTIONS(3912), + [anon_sym_final] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3912), + [anon_sym_vararg] = ACTIONS(3912), + [anon_sym_noinline] = ACTIONS(3912), + [anon_sym_crossinline] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3914), + [sym__automatic_semicolon] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), [sym_multiline_comment] = ACTIONS(3), }, - [3838] = { + [3808] = { [sym__alpha_identifier] = ACTIONS(4790), [anon_sym_AT] = ACTIONS(4792), [anon_sym_LBRACK] = ACTIONS(4792), @@ -409873,7 +407580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4792), [anon_sym_AMP_AMP] = ACTIONS(4792), [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(6894), + [anon_sym_else] = ACTIONS(4790), [anon_sym_COLON_COLON] = ACTIONS(4792), [anon_sym_PLUS_EQ] = ACTIONS(4792), [anon_sym_DASH_EQ] = ACTIONS(4792), @@ -409928,639 +407635,2140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4792), [sym_multiline_comment] = ACTIONS(3), }, - [3839] = { - [sym_function_body] = STATE(3730), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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_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_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), + [3809] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), [sym_multiline_comment] = ACTIONS(3), }, - [3840] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), + [3810] = { + [sym__alpha_identifier] = ACTIONS(4506), + [anon_sym_AT] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_EQ] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_COMMA] = ACTIONS(4508), + [anon_sym_by] = ACTIONS(4506), + [anon_sym_object] = ACTIONS(4506), + [anon_sym_fun] = ACTIONS(4506), + [anon_sym_SEMI] = ACTIONS(4508), + [anon_sym_get] = ACTIONS(4506), + [anon_sym_set] = ACTIONS(4506), + [anon_sym_this] = ACTIONS(4506), + [anon_sym_super] = ACTIONS(4506), + [anon_sym_STAR] = ACTIONS(4508), + [sym_label] = ACTIONS(4506), + [anon_sym_in] = ACTIONS(4506), + [anon_sym_null] = ACTIONS(4506), + [anon_sym_if] = ACTIONS(4506), + [anon_sym_else] = ACTIONS(4506), + [anon_sym_when] = ACTIONS(4506), + [anon_sym_try] = ACTIONS(4506), + [anon_sym_throw] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4506), + [anon_sym_continue] = ACTIONS(4506), + [anon_sym_break] = ACTIONS(4506), + [anon_sym_COLON_COLON] = ACTIONS(4508), + [anon_sym_BANGin] = ACTIONS(4508), + [anon_sym_is] = ACTIONS(4506), + [anon_sym_BANGis] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4506), + [anon_sym_PLUS_PLUS] = ACTIONS(4508), + [anon_sym_DASH_DASH] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_suspend] = ACTIONS(4506), + [anon_sym_sealed] = ACTIONS(4506), + [anon_sym_annotation] = ACTIONS(4506), + [anon_sym_data] = ACTIONS(4506), + [anon_sym_inner] = ACTIONS(4506), + [anon_sym_override] = ACTIONS(4506), + [anon_sym_lateinit] = ACTIONS(4506), + [anon_sym_public] = ACTIONS(4506), + [anon_sym_private] = ACTIONS(4506), + [anon_sym_internal] = ACTIONS(4506), + [anon_sym_protected] = ACTIONS(4506), + [anon_sym_tailrec] = ACTIONS(4506), + [anon_sym_operator] = ACTIONS(4506), + [anon_sym_infix] = ACTIONS(4506), + [anon_sym_inline] = ACTIONS(4506), + [anon_sym_external] = ACTIONS(4506), + [sym_property_modifier] = ACTIONS(4506), + [anon_sym_abstract] = ACTIONS(4506), + [anon_sym_final] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4506), + [anon_sym_vararg] = ACTIONS(4506), + [anon_sym_noinline] = ACTIONS(4506), + [anon_sym_crossinline] = ACTIONS(4506), + [anon_sym_expect] = ACTIONS(4506), + [anon_sym_actual] = ACTIONS(4506), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4508), + [anon_sym_continue_AT] = ACTIONS(4508), + [anon_sym_break_AT] = ACTIONS(4508), + [sym_real_literal] = ACTIONS(4508), + [sym_integer_literal] = ACTIONS(4506), + [sym_hex_literal] = ACTIONS(4508), + [sym_bin_literal] = ACTIONS(4508), + [anon_sym_true] = ACTIONS(4506), + [anon_sym_false] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4508), + [sym__backtick_identifier] = ACTIONS(4508), + [sym__automatic_semicolon] = ACTIONS(4508), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4508), }, - [3841] = { - [ts_builtin_sym_end] = ACTIONS(6896), - [sym__alpha_identifier] = ACTIONS(6898), - [anon_sym_AT] = ACTIONS(6896), - [anon_sym_LBRACK] = ACTIONS(6896), - [anon_sym_import] = ACTIONS(6898), - [anon_sym_typealias] = ACTIONS(6898), - [anon_sym_class] = ACTIONS(6898), - [anon_sym_interface] = ACTIONS(6898), - [anon_sym_enum] = ACTIONS(6898), - [anon_sym_LBRACE] = ACTIONS(6896), + [3811] = { + [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_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), + }, + [3812] = { + [sym__alpha_identifier] = ACTIONS(4494), + [anon_sym_AT] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_as] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_COMMA] = ACTIONS(4496), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_GT] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4496), + [anon_sym_get] = ACTIONS(4494), + [anon_sym_set] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [sym_label] = ACTIONS(4496), + [anon_sym_in] = ACTIONS(4494), + [anon_sym_DOT_DOT] = ACTIONS(4496), + [anon_sym_QMARK_COLON] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_else] = ACTIONS(4494), + [anon_sym_COLON_COLON] = ACTIONS(4496), + [anon_sym_PLUS_EQ] = ACTIONS(4496), + [anon_sym_DASH_EQ] = ACTIONS(4496), + [anon_sym_STAR_EQ] = ACTIONS(4496), + [anon_sym_SLASH_EQ] = ACTIONS(4496), + [anon_sym_PERCENT_EQ] = ACTIONS(4496), + [anon_sym_BANG_EQ] = ACTIONS(4494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4496), + [anon_sym_EQ_EQ] = ACTIONS(4494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4496), + [anon_sym_LT_EQ] = ACTIONS(4496), + [anon_sym_GT_EQ] = ACTIONS(4496), + [anon_sym_BANGin] = ACTIONS(4496), + [anon_sym_is] = ACTIONS(4494), + [anon_sym_BANGis] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_SLASH] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_as_QMARK] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_BANG_BANG] = ACTIONS(4496), + [anon_sym_suspend] = ACTIONS(4494), + [anon_sym_sealed] = ACTIONS(4494), + [anon_sym_annotation] = ACTIONS(4494), + [anon_sym_data] = ACTIONS(4494), + [anon_sym_inner] = ACTIONS(4494), + [anon_sym_override] = ACTIONS(4494), + [anon_sym_lateinit] = ACTIONS(4494), + [anon_sym_public] = ACTIONS(4494), + [anon_sym_private] = ACTIONS(4494), + [anon_sym_internal] = ACTIONS(4494), + [anon_sym_protected] = ACTIONS(4494), + [anon_sym_tailrec] = ACTIONS(4494), + [anon_sym_operator] = ACTIONS(4494), + [anon_sym_infix] = ACTIONS(4494), + [anon_sym_inline] = ACTIONS(4494), + [anon_sym_external] = ACTIONS(4494), + [sym_property_modifier] = ACTIONS(4494), + [anon_sym_abstract] = ACTIONS(4494), + [anon_sym_final] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4494), + [anon_sym_vararg] = ACTIONS(4494), + [anon_sym_noinline] = ACTIONS(4494), + [anon_sym_crossinline] = ACTIONS(4494), + [anon_sym_expect] = ACTIONS(4494), + [anon_sym_actual] = ACTIONS(4494), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4496), + [sym__automatic_semicolon] = ACTIONS(4496), + [sym_safe_nav] = ACTIONS(4496), + [sym_multiline_comment] = ACTIONS(3), + }, + [3813] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_COMMA] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_where] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + }, + [3814] = { + [sym__alpha_identifier] = ACTIONS(4925), + [anon_sym_AT] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_as] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_where] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4925), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [sym_label] = ACTIONS(4927), + [anon_sym_in] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4927), + [anon_sym_QMARK_COLON] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4927), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_else] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4927), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_BANGin] = ACTIONS(4927), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_BANGis] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_as_QMARK] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_BANG_BANG] = ACTIONS(4927), + [anon_sym_suspend] = ACTIONS(4925), + [anon_sym_sealed] = ACTIONS(4925), + [anon_sym_annotation] = ACTIONS(4925), + [anon_sym_data] = ACTIONS(4925), + [anon_sym_inner] = ACTIONS(4925), + [anon_sym_override] = ACTIONS(4925), + [anon_sym_lateinit] = ACTIONS(4925), + [anon_sym_public] = ACTIONS(4925), + [anon_sym_private] = ACTIONS(4925), + [anon_sym_internal] = ACTIONS(4925), + [anon_sym_protected] = ACTIONS(4925), + [anon_sym_tailrec] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), + [anon_sym_infix] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym_external] = ACTIONS(4925), + [sym_property_modifier] = ACTIONS(4925), + [anon_sym_abstract] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_open] = ACTIONS(4925), + [anon_sym_vararg] = ACTIONS(4925), + [anon_sym_noinline] = ACTIONS(4925), + [anon_sym_crossinline] = ACTIONS(4925), + [anon_sym_expect] = ACTIONS(4925), + [anon_sym_actual] = ACTIONS(4925), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4927), + [sym__automatic_semicolon] = ACTIONS(4927), + [sym_safe_nav] = ACTIONS(4927), + [sym_multiline_comment] = ACTIONS(3), + }, + [3815] = { + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_PLUS_EQ] = ACTIONS(4320), + [anon_sym_DASH_EQ] = ACTIONS(4320), + [anon_sym_STAR_EQ] = ACTIONS(4320), + [anon_sym_SLASH_EQ] = ACTIONS(4320), + [anon_sym_PERCENT_EQ] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + }, + [3816] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [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_DOT] = 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_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), + }, + [3817] = { + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + }, + [3818] = { + [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_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), + }, + [3819] = { + [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(6891), + [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_override] = ACTIONS(4826), + [anon_sym_lateinit] = ACTIONS(4826), + [anon_sym_public] = ACTIONS(4826), + [anon_sym_private] = ACTIONS(4826), + [anon_sym_internal] = ACTIONS(4826), + [anon_sym_protected] = ACTIONS(4826), + [anon_sym_tailrec] = ACTIONS(4826), + [anon_sym_operator] = ACTIONS(4826), + [anon_sym_infix] = ACTIONS(4826), + [anon_sym_inline] = ACTIONS(4826), + [anon_sym_external] = ACTIONS(4826), + [sym_property_modifier] = ACTIONS(4826), + [anon_sym_abstract] = ACTIONS(4826), + [anon_sym_final] = ACTIONS(4826), + [anon_sym_open] = ACTIONS(4826), + [anon_sym_vararg] = ACTIONS(4826), + [anon_sym_noinline] = ACTIONS(4826), + [anon_sym_crossinline] = ACTIONS(4826), + [anon_sym_expect] = ACTIONS(4826), + [anon_sym_actual] = ACTIONS(4826), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4828), + [sym__automatic_semicolon] = ACTIONS(4828), + [sym_safe_nav] = ACTIONS(4828), + [sym_multiline_comment] = ACTIONS(3), + }, + [3820] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_COMMA] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_where] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4794), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4794), + [anon_sym_DOT_DOT] = ACTIONS(4796), + [anon_sym_QMARK_COLON] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PERCENT_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT_EQ] = ACTIONS(4796), + [anon_sym_GT_EQ] = ACTIONS(4796), + [anon_sym_BANGin] = ACTIONS(4796), + [anon_sym_is] = ACTIONS(4794), + [anon_sym_BANGis] = ACTIONS(4796), + [anon_sym_PLUS] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_SLASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_as_QMARK] = ACTIONS(4796), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4796), + [anon_sym_suspend] = ACTIONS(4794), + [anon_sym_sealed] = ACTIONS(4794), + [anon_sym_annotation] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4794), + [anon_sym_inner] = ACTIONS(4794), + [anon_sym_override] = ACTIONS(4794), + [anon_sym_lateinit] = ACTIONS(4794), + [anon_sym_public] = ACTIONS(4794), + [anon_sym_private] = ACTIONS(4794), + [anon_sym_internal] = ACTIONS(4794), + [anon_sym_protected] = ACTIONS(4794), + [anon_sym_tailrec] = ACTIONS(4794), + [anon_sym_operator] = ACTIONS(4794), + [anon_sym_infix] = ACTIONS(4794), + [anon_sym_inline] = ACTIONS(4794), + [anon_sym_external] = ACTIONS(4794), + [sym_property_modifier] = ACTIONS(4794), + [anon_sym_abstract] = ACTIONS(4794), + [anon_sym_final] = ACTIONS(4794), + [anon_sym_open] = ACTIONS(4794), + [anon_sym_vararg] = ACTIONS(4794), + [anon_sym_noinline] = ACTIONS(4794), + [anon_sym_crossinline] = ACTIONS(4794), + [anon_sym_expect] = ACTIONS(4794), + [anon_sym_actual] = ACTIONS(4794), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4796), + [sym__automatic_semicolon] = ACTIONS(4796), + [sym_safe_nav] = ACTIONS(4796), + [sym_multiline_comment] = ACTIONS(3), + }, + [3821] = { + [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_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), + }, + [3822] = { + [sym_class_body] = STATE(3872), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6894), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_PLUS_EQ] = ACTIONS(4404), + [anon_sym_DASH_EQ] = ACTIONS(4404), + [anon_sym_STAR_EQ] = ACTIONS(4404), + [anon_sym_SLASH_EQ] = ACTIONS(4404), + [anon_sym_PERCENT_EQ] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + }, + [3823] = { + [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_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), + }, + [3824] = { + [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_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), + }, + [3825] = { + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_PLUS_EQ] = ACTIONS(4344), + [anon_sym_DASH_EQ] = ACTIONS(4344), + [anon_sym_STAR_EQ] = ACTIONS(4344), + [anon_sym_SLASH_EQ] = ACTIONS(4344), + [anon_sym_PERCENT_EQ] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4342), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + }, + [3826] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), [anon_sym_LPAREN] = ACTIONS(6896), - [anon_sym_val] = ACTIONS(6898), - [anon_sym_var] = ACTIONS(6898), - [anon_sym_object] = ACTIONS(6898), - [anon_sym_fun] = ACTIONS(6898), - [anon_sym_get] = ACTIONS(6898), - [anon_sym_set] = ACTIONS(6898), - [anon_sym_this] = ACTIONS(6898), - [anon_sym_super] = ACTIONS(6898), - [anon_sym_STAR] = ACTIONS(6896), - [sym_label] = ACTIONS(6898), - [anon_sym_for] = ACTIONS(6898), - [anon_sym_while] = ACTIONS(6898), - [anon_sym_do] = ACTIONS(6898), - [anon_sym_null] = ACTIONS(6898), - [anon_sym_if] = ACTIONS(6898), - [anon_sym_when] = ACTIONS(6898), - [anon_sym_try] = ACTIONS(6898), - [anon_sym_throw] = ACTIONS(6898), - [anon_sym_return] = ACTIONS(6898), - [anon_sym_continue] = ACTIONS(6898), - [anon_sym_break] = ACTIONS(6898), - [anon_sym_COLON_COLON] = ACTIONS(6896), - [anon_sym_PLUS] = ACTIONS(6898), - [anon_sym_DASH] = ACTIONS(6898), - [anon_sym_PLUS_PLUS] = ACTIONS(6896), - [anon_sym_DASH_DASH] = ACTIONS(6896), - [anon_sym_BANG] = ACTIONS(6896), - [anon_sym_suspend] = ACTIONS(6898), - [anon_sym_sealed] = ACTIONS(6898), - [anon_sym_annotation] = ACTIONS(6898), - [anon_sym_data] = ACTIONS(6898), - [anon_sym_inner] = ACTIONS(6898), - [anon_sym_override] = ACTIONS(6898), - [anon_sym_lateinit] = ACTIONS(6898), - [anon_sym_public] = ACTIONS(6898), - [anon_sym_private] = ACTIONS(6898), - [anon_sym_internal] = ACTIONS(6898), - [anon_sym_protected] = ACTIONS(6898), - [anon_sym_tailrec] = ACTIONS(6898), - [anon_sym_operator] = ACTIONS(6898), - [anon_sym_infix] = ACTIONS(6898), - [anon_sym_inline] = ACTIONS(6898), - [anon_sym_external] = ACTIONS(6898), - [sym_property_modifier] = ACTIONS(6898), - [anon_sym_abstract] = ACTIONS(6898), - [anon_sym_final] = ACTIONS(6898), - [anon_sym_open] = ACTIONS(6898), - [anon_sym_vararg] = ACTIONS(6898), - [anon_sym_noinline] = ACTIONS(6898), - [anon_sym_crossinline] = ACTIONS(6898), - [anon_sym_expect] = ACTIONS(6898), - [anon_sym_actual] = ACTIONS(6898), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6896), - [anon_sym_continue_AT] = ACTIONS(6896), - [anon_sym_break_AT] = ACTIONS(6896), - [sym_real_literal] = ACTIONS(6896), - [sym_integer_literal] = ACTIONS(6898), - [sym_hex_literal] = ACTIONS(6896), - [sym_bin_literal] = ACTIONS(6896), - [anon_sym_true] = ACTIONS(6898), - [anon_sym_false] = ACTIONS(6898), - [anon_sym_SQUOTE] = ACTIONS(6896), - [sym__backtick_identifier] = ACTIONS(6896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6896), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), }, - [3842] = { - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3186), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_PLUS_EQ] = ACTIONS(3190), - [anon_sym_DASH_EQ] = ACTIONS(3190), - [anon_sym_STAR_EQ] = ACTIONS(3190), - [anon_sym_SLASH_EQ] = ACTIONS(3190), - [anon_sym_PERCENT_EQ] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [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(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [3827] = { + [sym__alpha_identifier] = ACTIONS(4476), + [anon_sym_AT] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_COMMA] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4476), + [anon_sym_GT] = ACTIONS(4476), + [anon_sym_where] = ACTIONS(4476), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4476), + [anon_sym_set] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [sym_label] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4476), + [anon_sym_DOT_DOT] = ACTIONS(4478), + [anon_sym_QMARK_COLON] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_else] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_PLUS_EQ] = ACTIONS(4478), + [anon_sym_DASH_EQ] = ACTIONS(4478), + [anon_sym_STAR_EQ] = ACTIONS(4478), + [anon_sym_SLASH_EQ] = ACTIONS(4478), + [anon_sym_PERCENT_EQ] = ACTIONS(4478), + [anon_sym_BANG_EQ] = ACTIONS(4476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4478), + [anon_sym_LT_EQ] = ACTIONS(4478), + [anon_sym_GT_EQ] = ACTIONS(4478), + [anon_sym_BANGin] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4476), + [anon_sym_BANGis] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_SLASH] = ACTIONS(4476), + [anon_sym_PERCENT] = ACTIONS(4476), + [anon_sym_as_QMARK] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_BANG_BANG] = ACTIONS(4478), + [anon_sym_suspend] = ACTIONS(4476), + [anon_sym_sealed] = ACTIONS(4476), + [anon_sym_annotation] = ACTIONS(4476), + [anon_sym_data] = ACTIONS(4476), + [anon_sym_inner] = ACTIONS(4476), + [anon_sym_override] = ACTIONS(4476), + [anon_sym_lateinit] = ACTIONS(4476), + [anon_sym_public] = ACTIONS(4476), + [anon_sym_private] = ACTIONS(4476), + [anon_sym_internal] = ACTIONS(4476), + [anon_sym_protected] = ACTIONS(4476), + [anon_sym_tailrec] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_infix] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym_external] = ACTIONS(4476), + [sym_property_modifier] = ACTIONS(4476), + [anon_sym_abstract] = ACTIONS(4476), + [anon_sym_final] = ACTIONS(4476), + [anon_sym_open] = ACTIONS(4476), + [anon_sym_vararg] = ACTIONS(4476), + [anon_sym_noinline] = ACTIONS(4476), + [anon_sym_crossinline] = ACTIONS(4476), + [anon_sym_expect] = ACTIONS(4476), + [anon_sym_actual] = ACTIONS(4476), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4478), + [sym__automatic_semicolon] = ACTIONS(4478), + [sym_safe_nav] = ACTIONS(4478), [sym_multiline_comment] = ACTIONS(3), }, - [3843] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(6900), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(6894), - [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_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), + [3828] = { + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3871), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_constructor] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3866), + [anon_sym_set] = ACTIONS(3866), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3871), + [sym_label] = ACTIONS(3866), + [anon_sym_in] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(3871), + [anon_sym_is] = ACTIONS(3866), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_suspend] = ACTIONS(3866), + [anon_sym_sealed] = ACTIONS(3866), + [anon_sym_annotation] = ACTIONS(3866), + [anon_sym_data] = ACTIONS(3866), + [anon_sym_inner] = ACTIONS(3866), + [anon_sym_override] = ACTIONS(3866), + [anon_sym_lateinit] = ACTIONS(3866), + [anon_sym_public] = ACTIONS(3866), + [anon_sym_private] = ACTIONS(3866), + [anon_sym_internal] = ACTIONS(3866), + [anon_sym_protected] = ACTIONS(3866), + [anon_sym_tailrec] = ACTIONS(3866), + [anon_sym_operator] = ACTIONS(3866), + [anon_sym_infix] = ACTIONS(3866), + [anon_sym_inline] = ACTIONS(3866), + [anon_sym_external] = ACTIONS(3866), + [sym_property_modifier] = ACTIONS(3866), + [anon_sym_abstract] = ACTIONS(3866), + [anon_sym_final] = ACTIONS(3866), + [anon_sym_open] = ACTIONS(3866), + [anon_sym_vararg] = ACTIONS(3866), + [anon_sym_noinline] = ACTIONS(3866), + [anon_sym_crossinline] = ACTIONS(3866), + [anon_sym_expect] = ACTIONS(3866), + [anon_sym_actual] = ACTIONS(3866), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym__automatic_semicolon] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [3829] = { + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3830] = { + [sym__alpha_identifier] = ACTIONS(4893), + [anon_sym_AT] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_as] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_where] = ACTIONS(4893), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_get] = ACTIONS(4893), + [anon_sym_set] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [sym_label] = ACTIONS(4895), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_DOT_DOT] = ACTIONS(4895), + [anon_sym_QMARK_COLON] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_else] = ACTIONS(4893), + [anon_sym_COLON_COLON] = ACTIONS(4895), + [anon_sym_PLUS_EQ] = ACTIONS(4895), + [anon_sym_DASH_EQ] = ACTIONS(4895), + [anon_sym_STAR_EQ] = ACTIONS(4895), + [anon_sym_SLASH_EQ] = ACTIONS(4895), + [anon_sym_PERCENT_EQ] = ACTIONS(4895), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4895), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4895), + [anon_sym_LT_EQ] = ACTIONS(4895), + [anon_sym_GT_EQ] = ACTIONS(4895), + [anon_sym_BANGin] = ACTIONS(4895), + [anon_sym_is] = ACTIONS(4893), + [anon_sym_BANGis] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_as_QMARK] = ACTIONS(4895), + [anon_sym_PLUS_PLUS] = ACTIONS(4895), + [anon_sym_DASH_DASH] = ACTIONS(4895), + [anon_sym_BANG_BANG] = ACTIONS(4895), + [anon_sym_suspend] = ACTIONS(4893), + [anon_sym_sealed] = ACTIONS(4893), + [anon_sym_annotation] = ACTIONS(4893), + [anon_sym_data] = ACTIONS(4893), + [anon_sym_inner] = ACTIONS(4893), + [anon_sym_override] = ACTIONS(4893), + [anon_sym_lateinit] = ACTIONS(4893), + [anon_sym_public] = ACTIONS(4893), + [anon_sym_private] = ACTIONS(4893), + [anon_sym_internal] = ACTIONS(4893), + [anon_sym_protected] = ACTIONS(4893), + [anon_sym_tailrec] = ACTIONS(4893), + [anon_sym_operator] = ACTIONS(4893), + [anon_sym_infix] = ACTIONS(4893), + [anon_sym_inline] = ACTIONS(4893), + [anon_sym_external] = ACTIONS(4893), + [sym_property_modifier] = ACTIONS(4893), + [anon_sym_abstract] = ACTIONS(4893), + [anon_sym_final] = ACTIONS(4893), + [anon_sym_open] = ACTIONS(4893), + [anon_sym_vararg] = ACTIONS(4893), + [anon_sym_noinline] = ACTIONS(4893), + [anon_sym_crossinline] = ACTIONS(4893), + [anon_sym_expect] = ACTIONS(4893), + [anon_sym_actual] = ACTIONS(4893), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4895), + [sym__automatic_semicolon] = ACTIONS(4895), + [sym_safe_nav] = ACTIONS(4895), + [sym_multiline_comment] = ACTIONS(3), + }, + [3831] = { + [sym_class_body] = STATE(3740), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(6898), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3832] = { + [sym_function_body] = STATE(3473), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), + }, + [3833] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6900), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + }, + [3834] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [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_DOT] = 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_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), + }, + [3835] = { + [sym__alpha_identifier] = ACTIONS(4977), + [anon_sym_AT] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_as] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4979), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_where] = ACTIONS(4977), + [anon_sym_DOT] = ACTIONS(4977), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_get] = ACTIONS(4977), + [anon_sym_set] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [sym_label] = ACTIONS(4979), + [anon_sym_in] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4979), + [anon_sym_QMARK_COLON] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_else] = ACTIONS(4977), + [anon_sym_COLON_COLON] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4979), + [anon_sym_DASH_EQ] = ACTIONS(4979), + [anon_sym_STAR_EQ] = ACTIONS(4979), + [anon_sym_SLASH_EQ] = ACTIONS(4979), + [anon_sym_PERCENT_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4977), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_BANGin] = ACTIONS(4979), + [anon_sym_is] = ACTIONS(4977), + [anon_sym_BANGis] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_as_QMARK] = ACTIONS(4979), + [anon_sym_PLUS_PLUS] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_BANG_BANG] = ACTIONS(4979), + [anon_sym_suspend] = ACTIONS(4977), + [anon_sym_sealed] = ACTIONS(4977), + [anon_sym_annotation] = ACTIONS(4977), + [anon_sym_data] = ACTIONS(4977), + [anon_sym_inner] = ACTIONS(4977), + [anon_sym_override] = ACTIONS(4977), + [anon_sym_lateinit] = ACTIONS(4977), + [anon_sym_public] = ACTIONS(4977), + [anon_sym_private] = ACTIONS(4977), + [anon_sym_internal] = ACTIONS(4977), + [anon_sym_protected] = ACTIONS(4977), + [anon_sym_tailrec] = ACTIONS(4977), + [anon_sym_operator] = ACTIONS(4977), + [anon_sym_infix] = ACTIONS(4977), + [anon_sym_inline] = ACTIONS(4977), + [anon_sym_external] = ACTIONS(4977), + [sym_property_modifier] = ACTIONS(4977), + [anon_sym_abstract] = ACTIONS(4977), + [anon_sym_final] = ACTIONS(4977), + [anon_sym_open] = ACTIONS(4977), + [anon_sym_vararg] = ACTIONS(4977), + [anon_sym_noinline] = ACTIONS(4977), + [anon_sym_crossinline] = ACTIONS(4977), + [anon_sym_expect] = ACTIONS(4977), + [anon_sym_actual] = ACTIONS(4977), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), - }, - [3844] = { - [sym__alpha_identifier] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_where] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3278), - [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(3278), - [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(3278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [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(3278), - [anon_sym_BANGis] = ACTIONS(3280), - [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(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [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_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(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3845] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_RBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_DASH_GT] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [sym__backtick_identifier] = ACTIONS(4979), + [sym__automatic_semicolon] = ACTIONS(4979), + [sym_safe_nav] = ACTIONS(4979), [sym_multiline_comment] = ACTIONS(3), }, - [3846] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(6902), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(3943), - [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(3948), - [anon_sym_QMARK_COLON] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3948), - [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(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3948), - [anon_sym_LT_EQ] = ACTIONS(3948), - [anon_sym_GT_EQ] = ACTIONS(3948), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3943), - [anon_sym_as_QMARK] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(3948), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), - }, - [3847] = { + [3836] = { [sym__alpha_identifier] = ACTIONS(4778), [anon_sym_AT] = ACTIONS(4780), [anon_sym_LBRACK] = ACTIONS(4780), @@ -410639,3325 +409847,4747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4780), [sym_multiline_comment] = ACTIONS(3), }, + [3837] = { + [sym__alpha_identifier] = ACTIONS(4833), + [anon_sym_AT] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_as] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4833), + [anon_sym_LBRACE] = ACTIONS(4835), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4835), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [sym_label] = ACTIONS(4835), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_DOT_DOT] = ACTIONS(4835), + [anon_sym_QMARK_COLON] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_else] = ACTIONS(4833), + [anon_sym_COLON_COLON] = ACTIONS(4835), + [anon_sym_PLUS_EQ] = ACTIONS(4835), + [anon_sym_DASH_EQ] = ACTIONS(4835), + [anon_sym_STAR_EQ] = ACTIONS(4835), + [anon_sym_SLASH_EQ] = ACTIONS(4835), + [anon_sym_PERCENT_EQ] = ACTIONS(4835), + [anon_sym_BANG_EQ] = ACTIONS(4833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4835), + [anon_sym_EQ_EQ] = ACTIONS(4833), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4835), + [anon_sym_LT_EQ] = ACTIONS(4835), + [anon_sym_GT_EQ] = ACTIONS(4835), + [anon_sym_BANGin] = ACTIONS(4835), + [anon_sym_is] = ACTIONS(4833), + [anon_sym_BANGis] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4833), + [anon_sym_as_QMARK] = ACTIONS(4835), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_BANG_BANG] = ACTIONS(4835), + [anon_sym_suspend] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_annotation] = ACTIONS(4833), + [anon_sym_data] = ACTIONS(4833), + [anon_sym_inner] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_lateinit] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_tailrec] = ACTIONS(4833), + [anon_sym_operator] = ACTIONS(4833), + [anon_sym_infix] = ACTIONS(4833), + [anon_sym_inline] = ACTIONS(4833), + [anon_sym_external] = ACTIONS(4833), + [sym_property_modifier] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_open] = ACTIONS(4833), + [anon_sym_vararg] = ACTIONS(4833), + [anon_sym_noinline] = ACTIONS(4833), + [anon_sym_crossinline] = ACTIONS(4833), + [anon_sym_expect] = ACTIONS(4833), + [anon_sym_actual] = ACTIONS(4833), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4835), + [sym__automatic_semicolon] = ACTIONS(4835), + [sym_safe_nav] = ACTIONS(4835), + [sym_multiline_comment] = ACTIONS(3), + }, + [3838] = { + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3839] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [3840] = { + [sym__alpha_identifier] = ACTIONS(4913), + [anon_sym_AT] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_as] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_where] = ACTIONS(4913), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [sym_label] = ACTIONS(4915), + [anon_sym_in] = ACTIONS(4913), + [anon_sym_DOT_DOT] = ACTIONS(4915), + [anon_sym_QMARK_COLON] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4915), + [anon_sym_else] = ACTIONS(4913), + [anon_sym_COLON_COLON] = ACTIONS(4915), + [anon_sym_PLUS_EQ] = ACTIONS(4915), + [anon_sym_DASH_EQ] = ACTIONS(4915), + [anon_sym_STAR_EQ] = ACTIONS(4915), + [anon_sym_SLASH_EQ] = ACTIONS(4915), + [anon_sym_PERCENT_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), + [anon_sym_EQ_EQ] = ACTIONS(4913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4915), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_BANGin] = ACTIONS(4915), + [anon_sym_is] = ACTIONS(4913), + [anon_sym_BANGis] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_PERCENT] = ACTIONS(4913), + [anon_sym_as_QMARK] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_BANG_BANG] = ACTIONS(4915), + [anon_sym_suspend] = ACTIONS(4913), + [anon_sym_sealed] = ACTIONS(4913), + [anon_sym_annotation] = ACTIONS(4913), + [anon_sym_data] = ACTIONS(4913), + [anon_sym_inner] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_lateinit] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_internal] = ACTIONS(4913), + [anon_sym_protected] = ACTIONS(4913), + [anon_sym_tailrec] = ACTIONS(4913), + [anon_sym_operator] = ACTIONS(4913), + [anon_sym_infix] = ACTIONS(4913), + [anon_sym_inline] = ACTIONS(4913), + [anon_sym_external] = ACTIONS(4913), + [sym_property_modifier] = ACTIONS(4913), + [anon_sym_abstract] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_open] = ACTIONS(4913), + [anon_sym_vararg] = ACTIONS(4913), + [anon_sym_noinline] = ACTIONS(4913), + [anon_sym_crossinline] = ACTIONS(4913), + [anon_sym_expect] = ACTIONS(4913), + [anon_sym_actual] = ACTIONS(4913), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4915), + [sym__automatic_semicolon] = ACTIONS(4915), + [sym_safe_nav] = ACTIONS(4915), + [sym_multiline_comment] = ACTIONS(3), + }, + [3841] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [3842] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [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_DOT] = 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_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), + }, + [3843] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [3844] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4818), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_COMMA] = ACTIONS(4820), + [anon_sym_LT] = ACTIONS(4818), + [anon_sym_GT] = ACTIONS(4818), + [anon_sym_where] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_SEMI] = ACTIONS(4820), + [anon_sym_get] = ACTIONS(4818), + [anon_sym_set] = ACTIONS(4818), + [anon_sym_STAR] = ACTIONS(4818), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4818), + [anon_sym_DOT_DOT] = ACTIONS(4820), + [anon_sym_QMARK_COLON] = ACTIONS(4820), + [anon_sym_AMP_AMP] = ACTIONS(4820), + [anon_sym_PIPE_PIPE] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(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_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), + }, + [3845] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3846] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3847] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, [3848] = { - [sym__alpha_identifier] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(3029), - [anon_sym_set] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [sym_label] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(3031), - [anon_sym_QMARK_COLON] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_as_QMARK] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_BANG_BANG] = ACTIONS(3031), - [anon_sym_suspend] = ACTIONS(3029), - [anon_sym_sealed] = ACTIONS(3029), - [anon_sym_annotation] = ACTIONS(3029), - [anon_sym_data] = ACTIONS(3029), - [anon_sym_inner] = ACTIONS(3029), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_lateinit] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_internal] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_tailrec] = ACTIONS(3029), - [anon_sym_operator] = ACTIONS(3029), - [anon_sym_infix] = ACTIONS(3029), - [anon_sym_inline] = ACTIONS(3029), - [anon_sym_external] = ACTIONS(3029), - [sym_property_modifier] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_final] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_vararg] = ACTIONS(3029), - [anon_sym_noinline] = ACTIONS(3029), - [anon_sym_crossinline] = ACTIONS(3029), - [anon_sym_expect] = ACTIONS(3029), - [anon_sym_actual] = ACTIONS(3029), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3031), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(3031), + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(6906), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), [sym_multiline_comment] = ACTIONS(3), }, [3849] = { - [sym__alpha_identifier] = ACTIONS(4883), - [anon_sym_AT] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_as] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_RBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_COMMA] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4883), - [anon_sym_GT] = ACTIONS(4883), - [anon_sym_where] = ACTIONS(4883), - [anon_sym_DOT] = ACTIONS(4883), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_get] = ACTIONS(4883), - [anon_sym_set] = ACTIONS(4883), - [anon_sym_STAR] = ACTIONS(4883), - [sym_label] = ACTIONS(4885), - [anon_sym_in] = ACTIONS(4883), - [anon_sym_DOT_DOT] = ACTIONS(4885), - [anon_sym_QMARK_COLON] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [anon_sym_else] = ACTIONS(4883), - [anon_sym_COLON_COLON] = ACTIONS(4885), - [anon_sym_PLUS_EQ] = ACTIONS(4885), - [anon_sym_DASH_EQ] = ACTIONS(4885), - [anon_sym_STAR_EQ] = ACTIONS(4885), - [anon_sym_SLASH_EQ] = ACTIONS(4885), - [anon_sym_PERCENT_EQ] = ACTIONS(4885), - [anon_sym_BANG_EQ] = ACTIONS(4883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4885), - [anon_sym_EQ_EQ] = ACTIONS(4883), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT_EQ] = ACTIONS(4885), - [anon_sym_GT_EQ] = ACTIONS(4885), - [anon_sym_BANGin] = ACTIONS(4885), - [anon_sym_is] = ACTIONS(4883), - [anon_sym_BANGis] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_SLASH] = ACTIONS(4883), - [anon_sym_PERCENT] = ACTIONS(4883), - [anon_sym_as_QMARK] = ACTIONS(4885), - [anon_sym_PLUS_PLUS] = ACTIONS(4885), - [anon_sym_DASH_DASH] = ACTIONS(4885), - [anon_sym_BANG_BANG] = ACTIONS(4885), - [anon_sym_suspend] = ACTIONS(4883), - [anon_sym_sealed] = ACTIONS(4883), - [anon_sym_annotation] = ACTIONS(4883), - [anon_sym_data] = ACTIONS(4883), - [anon_sym_inner] = ACTIONS(4883), - [anon_sym_override] = ACTIONS(4883), - [anon_sym_lateinit] = ACTIONS(4883), - [anon_sym_public] = ACTIONS(4883), - [anon_sym_private] = ACTIONS(4883), - [anon_sym_internal] = ACTIONS(4883), - [anon_sym_protected] = ACTIONS(4883), - [anon_sym_tailrec] = ACTIONS(4883), - [anon_sym_operator] = ACTIONS(4883), - [anon_sym_infix] = ACTIONS(4883), - [anon_sym_inline] = ACTIONS(4883), - [anon_sym_external] = ACTIONS(4883), - [sym_property_modifier] = ACTIONS(4883), - [anon_sym_abstract] = ACTIONS(4883), - [anon_sym_final] = ACTIONS(4883), - [anon_sym_open] = ACTIONS(4883), - [anon_sym_vararg] = ACTIONS(4883), - [anon_sym_noinline] = ACTIONS(4883), - [anon_sym_crossinline] = ACTIONS(4883), - [anon_sym_expect] = ACTIONS(4883), - [anon_sym_actual] = ACTIONS(4883), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4885), - [sym__automatic_semicolon] = ACTIONS(4885), - [sym_safe_nav] = ACTIONS(4885), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(6908), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), }, [3850] = { - [sym__alpha_identifier] = ACTIONS(4855), - [anon_sym_AT] = ACTIONS(4857), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_as] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4857), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_LPAREN] = ACTIONS(4857), - [anon_sym_COMMA] = ACTIONS(4857), - [anon_sym_LT] = ACTIONS(4855), - [anon_sym_GT] = ACTIONS(4855), - [anon_sym_where] = ACTIONS(4855), - [anon_sym_DOT] = ACTIONS(4855), - [anon_sym_SEMI] = ACTIONS(4857), - [anon_sym_get] = ACTIONS(4855), - [anon_sym_set] = ACTIONS(4855), - [anon_sym_STAR] = ACTIONS(4855), - [sym_label] = ACTIONS(4857), - [anon_sym_in] = ACTIONS(4855), - [anon_sym_DOT_DOT] = ACTIONS(4857), - [anon_sym_QMARK_COLON] = ACTIONS(4857), - [anon_sym_AMP_AMP] = ACTIONS(4857), - [anon_sym_PIPE_PIPE] = ACTIONS(4857), - [anon_sym_else] = ACTIONS(4855), - [anon_sym_COLON_COLON] = ACTIONS(4857), - [anon_sym_PLUS_EQ] = ACTIONS(4857), - [anon_sym_DASH_EQ] = ACTIONS(4857), - [anon_sym_STAR_EQ] = ACTIONS(4857), - [anon_sym_SLASH_EQ] = ACTIONS(4857), - [anon_sym_PERCENT_EQ] = ACTIONS(4857), - [anon_sym_BANG_EQ] = ACTIONS(4855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4857), - [anon_sym_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4857), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_BANGin] = ACTIONS(4857), - [anon_sym_is] = ACTIONS(4855), - [anon_sym_BANGis] = ACTIONS(4857), - [anon_sym_PLUS] = ACTIONS(4855), - [anon_sym_DASH] = ACTIONS(4855), - [anon_sym_SLASH] = ACTIONS(4855), - [anon_sym_PERCENT] = ACTIONS(4855), - [anon_sym_as_QMARK] = ACTIONS(4857), - [anon_sym_PLUS_PLUS] = ACTIONS(4857), - [anon_sym_DASH_DASH] = ACTIONS(4857), - [anon_sym_BANG_BANG] = ACTIONS(4857), - [anon_sym_suspend] = ACTIONS(4855), - [anon_sym_sealed] = ACTIONS(4855), - [anon_sym_annotation] = ACTIONS(4855), - [anon_sym_data] = ACTIONS(4855), - [anon_sym_inner] = ACTIONS(4855), - [anon_sym_override] = ACTIONS(4855), - [anon_sym_lateinit] = ACTIONS(4855), - [anon_sym_public] = ACTIONS(4855), - [anon_sym_private] = ACTIONS(4855), - [anon_sym_internal] = ACTIONS(4855), - [anon_sym_protected] = ACTIONS(4855), - [anon_sym_tailrec] = ACTIONS(4855), - [anon_sym_operator] = ACTIONS(4855), - [anon_sym_infix] = ACTIONS(4855), - [anon_sym_inline] = ACTIONS(4855), - [anon_sym_external] = ACTIONS(4855), - [sym_property_modifier] = ACTIONS(4855), - [anon_sym_abstract] = ACTIONS(4855), - [anon_sym_final] = ACTIONS(4855), - [anon_sym_open] = ACTIONS(4855), - [anon_sym_vararg] = ACTIONS(4855), - [anon_sym_noinline] = ACTIONS(4855), - [anon_sym_crossinline] = ACTIONS(4855), - [anon_sym_expect] = ACTIONS(4855), - [anon_sym_actual] = ACTIONS(4855), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4857), - [sym__automatic_semicolon] = ACTIONS(4857), - [sym_safe_nav] = ACTIONS(4857), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_PLUS_EQ] = ACTIONS(3208), + [anon_sym_DASH_EQ] = ACTIONS(3208), + [anon_sym_STAR_EQ] = ACTIONS(3208), + [anon_sym_SLASH_EQ] = ACTIONS(3208), + [anon_sym_PERCENT_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, [3851] = { - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3200), - [anon_sym_DASH_EQ] = ACTIONS(3200), - [anon_sym_STAR_EQ] = ACTIONS(3200), - [anon_sym_SLASH_EQ] = ACTIONS(3200), - [anon_sym_PERCENT_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_as] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4642), + [anon_sym_LBRACE] = ACTIONS(4644), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_get] = ACTIONS(4642), + [anon_sym_set] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4642), + [sym_label] = ACTIONS(4644), + [anon_sym_in] = ACTIONS(4642), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_QMARK_COLON] = ACTIONS(4644), + [anon_sym_AMP_AMP] = ACTIONS(4644), + [anon_sym_PIPE_PIPE] = ACTIONS(4644), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4644), + [anon_sym_DASH_EQ] = ACTIONS(4644), + [anon_sym_STAR_EQ] = ACTIONS(4644), + [anon_sym_SLASH_EQ] = ACTIONS(4644), + [anon_sym_PERCENT_EQ] = ACTIONS(4644), + [anon_sym_BANG_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4644), + [anon_sym_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4644), + [anon_sym_GT_EQ] = ACTIONS(4644), + [anon_sym_BANGin] = ACTIONS(4644), + [anon_sym_is] = ACTIONS(4642), + [anon_sym_BANGis] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4642), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_PERCENT] = ACTIONS(4642), + [anon_sym_as_QMARK] = ACTIONS(4644), + [anon_sym_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG_BANG] = ACTIONS(4644), + [anon_sym_suspend] = ACTIONS(4642), + [anon_sym_sealed] = ACTIONS(4642), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4642), + [anon_sym_inner] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_lateinit] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_tailrec] = ACTIONS(4642), + [anon_sym_operator] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_inline] = ACTIONS(4642), + [anon_sym_external] = ACTIONS(4642), + [sym_property_modifier] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_vararg] = ACTIONS(4642), + [anon_sym_noinline] = ACTIONS(4642), + [anon_sym_crossinline] = ACTIONS(4642), + [anon_sym_expect] = ACTIONS(4642), + [anon_sym_actual] = ACTIONS(4642), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4644), + [sym__automatic_semicolon] = ACTIONS(4644), + [sym_safe_nav] = ACTIONS(4644), [sym_multiline_comment] = ACTIONS(3), }, [3852] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4814), - [anon_sym_EQ] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4814), - [anon_sym_GT] = ACTIONS(4814), - [anon_sym_object] = ACTIONS(4509), - [anon_sym_fun] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4814), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_this] = ACTIONS(4509), - [anon_sym_super] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4509), - [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(4509), - [anon_sym_if] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_try] = ACTIONS(4509), - [anon_sym_throw] = ACTIONS(4509), - [anon_sym_return] = ACTIONS(4509), - [anon_sym_continue] = ACTIONS(4509), - [anon_sym_break] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [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(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4814), - [anon_sym_PERCENT] = ACTIONS(4814), - [anon_sym_as_QMARK] = ACTIONS(4816), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4816), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4511), - [anon_sym_continue_AT] = ACTIONS(4511), - [anon_sym_break_AT] = ACTIONS(4511), - [sym_real_literal] = ACTIONS(4511), - [sym_integer_literal] = ACTIONS(4509), - [sym_hex_literal] = ACTIONS(4511), - [sym_bin_literal] = ACTIONS(4511), - [anon_sym_true] = ACTIONS(4509), - [anon_sym_false] = ACTIONS(4509), - [anon_sym_SQUOTE] = ACTIONS(4511), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4816), + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [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_DOT] = 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_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), - [sym__string_start] = ACTIONS(4511), }, [3853] = { - [sym__alpha_identifier] = ACTIONS(5041), - [anon_sym_AT] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5041), - [anon_sym_set] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [sym_label] = ACTIONS(5043), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_DOT_DOT] = ACTIONS(5043), - [anon_sym_QMARK_COLON] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_else] = ACTIONS(5041), - [anon_sym_COLON_COLON] = ACTIONS(5043), - [anon_sym_PLUS_EQ] = ACTIONS(5043), - [anon_sym_DASH_EQ] = ACTIONS(5043), - [anon_sym_STAR_EQ] = ACTIONS(5043), - [anon_sym_SLASH_EQ] = ACTIONS(5043), - [anon_sym_PERCENT_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5043), - [anon_sym_LT_EQ] = ACTIONS(5043), - [anon_sym_GT_EQ] = ACTIONS(5043), - [anon_sym_BANGin] = ACTIONS(5043), - [anon_sym_is] = ACTIONS(5041), - [anon_sym_BANGis] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5041), - [anon_sym_as_QMARK] = ACTIONS(5043), - [anon_sym_PLUS_PLUS] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5043), - [anon_sym_BANG_BANG] = ACTIONS(5043), - [anon_sym_suspend] = ACTIONS(5041), - [anon_sym_sealed] = ACTIONS(5041), - [anon_sym_annotation] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5041), - [anon_sym_inner] = ACTIONS(5041), - [anon_sym_override] = ACTIONS(5041), - [anon_sym_lateinit] = ACTIONS(5041), - [anon_sym_public] = ACTIONS(5041), - [anon_sym_private] = ACTIONS(5041), - [anon_sym_internal] = ACTIONS(5041), - [anon_sym_protected] = ACTIONS(5041), - [anon_sym_tailrec] = ACTIONS(5041), - [anon_sym_operator] = ACTIONS(5041), - [anon_sym_infix] = ACTIONS(5041), - [anon_sym_inline] = ACTIONS(5041), - [anon_sym_external] = ACTIONS(5041), - [sym_property_modifier] = ACTIONS(5041), - [anon_sym_abstract] = ACTIONS(5041), - [anon_sym_final] = ACTIONS(5041), - [anon_sym_open] = ACTIONS(5041), - [anon_sym_vararg] = ACTIONS(5041), - [anon_sym_noinline] = ACTIONS(5041), - [anon_sym_crossinline] = ACTIONS(5041), - [anon_sym_expect] = ACTIONS(5041), - [anon_sym_actual] = ACTIONS(5041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5043), - [sym__automatic_semicolon] = ACTIONS(5043), - [sym_safe_nav] = ACTIONS(5043), + [sym__alpha_identifier] = ACTIONS(4981), + [anon_sym_AT] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_as] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_where] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_get] = ACTIONS(4981), + [anon_sym_set] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4981), + [sym_label] = ACTIONS(4983), + [anon_sym_in] = ACTIONS(4981), + [anon_sym_DOT_DOT] = ACTIONS(4983), + [anon_sym_QMARK_COLON] = ACTIONS(4983), + [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_else] = ACTIONS(4981), + [anon_sym_COLON_COLON] = ACTIONS(4983), + [anon_sym_PLUS_EQ] = ACTIONS(4983), + [anon_sym_DASH_EQ] = ACTIONS(4983), + [anon_sym_STAR_EQ] = ACTIONS(4983), + [anon_sym_SLASH_EQ] = ACTIONS(4983), + [anon_sym_PERCENT_EQ] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_BANGin] = ACTIONS(4983), + [anon_sym_is] = ACTIONS(4981), + [anon_sym_BANGis] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_as_QMARK] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_BANG_BANG] = ACTIONS(4983), + [anon_sym_suspend] = ACTIONS(4981), + [anon_sym_sealed] = ACTIONS(4981), + [anon_sym_annotation] = ACTIONS(4981), + [anon_sym_data] = ACTIONS(4981), + [anon_sym_inner] = ACTIONS(4981), + [anon_sym_override] = ACTIONS(4981), + [anon_sym_lateinit] = ACTIONS(4981), + [anon_sym_public] = ACTIONS(4981), + [anon_sym_private] = ACTIONS(4981), + [anon_sym_internal] = ACTIONS(4981), + [anon_sym_protected] = ACTIONS(4981), + [anon_sym_tailrec] = ACTIONS(4981), + [anon_sym_operator] = ACTIONS(4981), + [anon_sym_infix] = ACTIONS(4981), + [anon_sym_inline] = ACTIONS(4981), + [anon_sym_external] = ACTIONS(4981), + [sym_property_modifier] = ACTIONS(4981), + [anon_sym_abstract] = ACTIONS(4981), + [anon_sym_final] = ACTIONS(4981), + [anon_sym_open] = ACTIONS(4981), + [anon_sym_vararg] = ACTIONS(4981), + [anon_sym_noinline] = ACTIONS(4981), + [anon_sym_crossinline] = ACTIONS(4981), + [anon_sym_expect] = ACTIONS(4981), + [anon_sym_actual] = ACTIONS(4981), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4983), + [sym__automatic_semicolon] = ACTIONS(4983), + [sym_safe_nav] = ACTIONS(4983), [sym_multiline_comment] = ACTIONS(3), }, [3854] = { - [sym_function_body] = STATE(3308), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_COMMA] = ACTIONS(4426), - [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(4426), - [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_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(4426), - [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_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), - [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_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4426), }, [3855] = { - [sym__alpha_identifier] = ACTIONS(4847), - [anon_sym_AT] = ACTIONS(4849), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4849), - [anon_sym_LT] = ACTIONS(4847), - [anon_sym_GT] = ACTIONS(4847), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_STAR] = ACTIONS(4847), - [sym_label] = ACTIONS(4849), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4849), - [anon_sym_QMARK_COLON] = ACTIONS(4849), - [anon_sym_AMP_AMP] = ACTIONS(4849), - [anon_sym_PIPE_PIPE] = ACTIONS(4849), - [anon_sym_else] = ACTIONS(4847), - [anon_sym_COLON_COLON] = ACTIONS(4849), - [anon_sym_PLUS_EQ] = ACTIONS(4849), - [anon_sym_DASH_EQ] = ACTIONS(4849), - [anon_sym_STAR_EQ] = ACTIONS(4849), - [anon_sym_SLASH_EQ] = ACTIONS(4849), - [anon_sym_PERCENT_EQ] = ACTIONS(4849), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4849), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4849), - [anon_sym_LT_EQ] = ACTIONS(4849), - [anon_sym_GT_EQ] = ACTIONS(4849), - [anon_sym_BANGin] = ACTIONS(4849), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_BANGis] = ACTIONS(4849), - [anon_sym_PLUS] = ACTIONS(4847), - [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4847), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_as_QMARK] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_BANG_BANG] = ACTIONS(4849), - [anon_sym_suspend] = ACTIONS(4847), - [anon_sym_sealed] = ACTIONS(4847), - [anon_sym_annotation] = ACTIONS(4847), - [anon_sym_data] = ACTIONS(4847), - [anon_sym_inner] = ACTIONS(4847), - [anon_sym_override] = ACTIONS(4847), - [anon_sym_lateinit] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_internal] = ACTIONS(4847), - [anon_sym_protected] = ACTIONS(4847), - [anon_sym_tailrec] = ACTIONS(4847), - [anon_sym_operator] = ACTIONS(4847), - [anon_sym_infix] = ACTIONS(4847), - [anon_sym_inline] = ACTIONS(4847), - [anon_sym_external] = ACTIONS(4847), - [sym_property_modifier] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_open] = ACTIONS(4847), - [anon_sym_vararg] = ACTIONS(4847), - [anon_sym_noinline] = ACTIONS(4847), - [anon_sym_crossinline] = ACTIONS(4847), - [anon_sym_expect] = ACTIONS(4847), - [anon_sym_actual] = ACTIONS(4847), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4849), - [sym__automatic_semicolon] = ACTIONS(4849), - [sym_safe_nav] = ACTIONS(4849), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [3856] = { - [sym__alpha_identifier] = ACTIONS(4943), - [anon_sym_AT] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4943), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [sym_label] = ACTIONS(4945), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_QMARK_COLON] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_else] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_PLUS_EQ] = ACTIONS(4945), - [anon_sym_DASH_EQ] = ACTIONS(4945), - [anon_sym_STAR_EQ] = ACTIONS(4945), - [anon_sym_SLASH_EQ] = ACTIONS(4945), - [anon_sym_PERCENT_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4943), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_BANGin] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4943), - [anon_sym_BANGis] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_as_QMARK] = ACTIONS(4945), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_BANG_BANG] = ACTIONS(4945), - [anon_sym_suspend] = ACTIONS(4943), - [anon_sym_sealed] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4943), - [anon_sym_data] = ACTIONS(4943), - [anon_sym_inner] = ACTIONS(4943), - [anon_sym_override] = ACTIONS(4943), - [anon_sym_lateinit] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_internal] = ACTIONS(4943), - [anon_sym_protected] = ACTIONS(4943), - [anon_sym_tailrec] = ACTIONS(4943), - [anon_sym_operator] = ACTIONS(4943), - [anon_sym_infix] = ACTIONS(4943), - [anon_sym_inline] = ACTIONS(4943), - [anon_sym_external] = ACTIONS(4943), - [sym_property_modifier] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_open] = ACTIONS(4943), - [anon_sym_vararg] = ACTIONS(4943), - [anon_sym_noinline] = ACTIONS(4943), - [anon_sym_crossinline] = ACTIONS(4943), - [anon_sym_expect] = ACTIONS(4943), - [anon_sym_actual] = ACTIONS(4943), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4945), - [sym__automatic_semicolon] = ACTIONS(4945), - [sym_safe_nav] = ACTIONS(4945), + [sym__alpha_identifier] = ACTIONS(4589), + [anon_sym_AT] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_RBRACE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_by] = ACTIONS(4589), + [anon_sym_object] = ACTIONS(4589), + [anon_sym_fun] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4589), + [anon_sym_set] = ACTIONS(4589), + [anon_sym_this] = ACTIONS(4589), + [anon_sym_super] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [sym_label] = ACTIONS(4589), + [anon_sym_in] = ACTIONS(4589), + [anon_sym_null] = ACTIONS(4589), + [anon_sym_if] = ACTIONS(4589), + [anon_sym_else] = ACTIONS(4589), + [anon_sym_when] = ACTIONS(4589), + [anon_sym_try] = ACTIONS(4589), + [anon_sym_throw] = ACTIONS(4589), + [anon_sym_return] = ACTIONS(4589), + [anon_sym_continue] = ACTIONS(4589), + [anon_sym_break] = ACTIONS(4589), + [anon_sym_COLON_COLON] = ACTIONS(4591), + [anon_sym_BANGin] = ACTIONS(4591), + [anon_sym_is] = ACTIONS(4589), + [anon_sym_BANGis] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4589), + [anon_sym_sealed] = ACTIONS(4589), + [anon_sym_annotation] = ACTIONS(4589), + [anon_sym_data] = ACTIONS(4589), + [anon_sym_inner] = ACTIONS(4589), + [anon_sym_override] = ACTIONS(4589), + [anon_sym_lateinit] = ACTIONS(4589), + [anon_sym_public] = ACTIONS(4589), + [anon_sym_private] = ACTIONS(4589), + [anon_sym_internal] = ACTIONS(4589), + [anon_sym_protected] = ACTIONS(4589), + [anon_sym_tailrec] = ACTIONS(4589), + [anon_sym_operator] = ACTIONS(4589), + [anon_sym_infix] = ACTIONS(4589), + [anon_sym_inline] = ACTIONS(4589), + [anon_sym_external] = ACTIONS(4589), + [sym_property_modifier] = ACTIONS(4589), + [anon_sym_abstract] = ACTIONS(4589), + [anon_sym_final] = ACTIONS(4589), + [anon_sym_open] = ACTIONS(4589), + [anon_sym_vararg] = ACTIONS(4589), + [anon_sym_noinline] = ACTIONS(4589), + [anon_sym_crossinline] = ACTIONS(4589), + [anon_sym_expect] = ACTIONS(4589), + [anon_sym_actual] = ACTIONS(4589), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4591), + [anon_sym_continue_AT] = ACTIONS(4591), + [anon_sym_break_AT] = ACTIONS(4591), + [sym_real_literal] = ACTIONS(4591), + [sym_integer_literal] = ACTIONS(4589), + [sym_hex_literal] = ACTIONS(4591), + [sym_bin_literal] = ACTIONS(4591), + [anon_sym_true] = ACTIONS(4589), + [anon_sym_false] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4591), + [sym__backtick_identifier] = ACTIONS(4591), + [sym__automatic_semicolon] = ACTIONS(4591), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4591), }, [3857] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4826), - [anon_sym_EQ] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4826), - [anon_sym_GT] = ACTIONS(4826), - [anon_sym_object] = ACTIONS(4517), - [anon_sym_fun] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4826), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_this] = ACTIONS(4517), - [anon_sym_super] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4517), - [anon_sym_in] = ACTIONS(4517), - [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(4517), - [anon_sym_if] = ACTIONS(4517), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_try] = ACTIONS(4517), - [anon_sym_throw] = ACTIONS(4517), - [anon_sym_return] = ACTIONS(4517), - [anon_sym_continue] = ACTIONS(4517), - [anon_sym_break] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [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(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4826), - [anon_sym_PERCENT] = ACTIONS(4826), - [anon_sym_as_QMARK] = ACTIONS(4828), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_BANG_BANG] = ACTIONS(4828), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4519), - [anon_sym_continue_AT] = ACTIONS(4519), - [anon_sym_break_AT] = ACTIONS(4519), - [sym_real_literal] = ACTIONS(4519), - [sym_integer_literal] = ACTIONS(4517), - [sym_hex_literal] = ACTIONS(4519), - [sym_bin_literal] = ACTIONS(4519), - [anon_sym_true] = ACTIONS(4517), - [anon_sym_false] = ACTIONS(4517), - [anon_sym_SQUOTE] = ACTIONS(4519), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4828), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4519), }, [3858] = { - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), }, [3859] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [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_override] = ACTIONS(5063), + [anon_sym_lateinit] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_internal] = ACTIONS(5063), + [anon_sym_protected] = ACTIONS(5063), + [anon_sym_tailrec] = ACTIONS(5063), + [anon_sym_operator] = ACTIONS(5063), + [anon_sym_infix] = ACTIONS(5063), + [anon_sym_inline] = ACTIONS(5063), + [anon_sym_external] = ACTIONS(5063), + [sym_property_modifier] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_open] = ACTIONS(5063), + [anon_sym_vararg] = ACTIONS(5063), + [anon_sym_noinline] = ACTIONS(5063), + [anon_sym_crossinline] = ACTIONS(5063), + [anon_sym_expect] = ACTIONS(5063), + [anon_sym_actual] = ACTIONS(5063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5065), + [sym__automatic_semicolon] = ACTIONS(5065), + [sym_safe_nav] = ACTIONS(5065), + [sym_multiline_comment] = ACTIONS(3), + }, + [3860] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3013), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3860] = { - [sym__alpha_identifier] = ACTIONS(4830), - [anon_sym_AT] = ACTIONS(4832), - [anon_sym_LBRACK] = ACTIONS(4832), - [anon_sym_as] = ACTIONS(4830), - [anon_sym_EQ] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(4832), - [anon_sym_RBRACE] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4832), - [anon_sym_COMMA] = ACTIONS(4832), - [anon_sym_LT] = ACTIONS(4830), - [anon_sym_GT] = ACTIONS(4830), - [anon_sym_where] = ACTIONS(4830), - [anon_sym_DOT] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(4830), - [anon_sym_set] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4830), - [sym_label] = ACTIONS(4832), - [anon_sym_in] = ACTIONS(4830), - [anon_sym_DOT_DOT] = ACTIONS(4832), - [anon_sym_QMARK_COLON] = ACTIONS(4832), - [anon_sym_AMP_AMP] = ACTIONS(4832), - [anon_sym_PIPE_PIPE] = ACTIONS(4832), - [anon_sym_else] = ACTIONS(4830), - [anon_sym_COLON_COLON] = ACTIONS(4832), - [anon_sym_PLUS_EQ] = ACTIONS(4832), - [anon_sym_DASH_EQ] = ACTIONS(4832), - [anon_sym_STAR_EQ] = ACTIONS(4832), - [anon_sym_SLASH_EQ] = ACTIONS(4832), - [anon_sym_PERCENT_EQ] = ACTIONS(4832), - [anon_sym_BANG_EQ] = ACTIONS(4830), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4832), - [anon_sym_EQ_EQ] = ACTIONS(4830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4832), - [anon_sym_LT_EQ] = ACTIONS(4832), - [anon_sym_GT_EQ] = ACTIONS(4832), - [anon_sym_BANGin] = ACTIONS(4832), - [anon_sym_is] = ACTIONS(4830), - [anon_sym_BANGis] = ACTIONS(4832), - [anon_sym_PLUS] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_SLASH] = ACTIONS(4830), - [anon_sym_PERCENT] = ACTIONS(4830), - [anon_sym_as_QMARK] = ACTIONS(4832), - [anon_sym_PLUS_PLUS] = ACTIONS(4832), - [anon_sym_DASH_DASH] = ACTIONS(4832), - [anon_sym_BANG_BANG] = ACTIONS(4832), - [anon_sym_suspend] = ACTIONS(4830), - [anon_sym_sealed] = ACTIONS(4830), - [anon_sym_annotation] = ACTIONS(4830), - [anon_sym_data] = ACTIONS(4830), - [anon_sym_inner] = ACTIONS(4830), - [anon_sym_override] = ACTIONS(4830), - [anon_sym_lateinit] = ACTIONS(4830), - [anon_sym_public] = ACTIONS(4830), - [anon_sym_private] = ACTIONS(4830), - [anon_sym_internal] = ACTIONS(4830), - [anon_sym_protected] = ACTIONS(4830), - [anon_sym_tailrec] = ACTIONS(4830), - [anon_sym_operator] = ACTIONS(4830), - [anon_sym_infix] = ACTIONS(4830), - [anon_sym_inline] = ACTIONS(4830), - [anon_sym_external] = ACTIONS(4830), - [sym_property_modifier] = ACTIONS(4830), - [anon_sym_abstract] = ACTIONS(4830), - [anon_sym_final] = ACTIONS(4830), - [anon_sym_open] = ACTIONS(4830), - [anon_sym_vararg] = ACTIONS(4830), - [anon_sym_noinline] = ACTIONS(4830), - [anon_sym_crossinline] = ACTIONS(4830), - [anon_sym_expect] = ACTIONS(4830), - [anon_sym_actual] = ACTIONS(4830), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4832), - [sym__automatic_semicolon] = ACTIONS(4832), - [sym_safe_nav] = ACTIONS(4832), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [3861] = { - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_DASH_GT] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), + [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_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), }, [3862] = { - [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_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__alpha_identifier] = ACTIONS(5093), + [anon_sym_AT] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_EQ] = ACTIONS(5093), + [anon_sym_LBRACE] = ACTIONS(5095), + [anon_sym_RBRACE] = ACTIONS(5095), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_where] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5093), + [anon_sym_SEMI] = ACTIONS(5095), + [anon_sym_get] = ACTIONS(5093), + [anon_sym_set] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5095), + [anon_sym_QMARK_COLON] = ACTIONS(5095), + [anon_sym_AMP_AMP] = ACTIONS(5095), + [anon_sym_PIPE_PIPE] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5093), + [anon_sym_COLON_COLON] = ACTIONS(5095), + [anon_sym_PLUS_EQ] = ACTIONS(5095), + [anon_sym_DASH_EQ] = ACTIONS(5095), + [anon_sym_STAR_EQ] = ACTIONS(5095), + [anon_sym_SLASH_EQ] = ACTIONS(5095), + [anon_sym_PERCENT_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5095), + [anon_sym_LT_EQ] = ACTIONS(5095), + [anon_sym_GT_EQ] = ACTIONS(5095), + [anon_sym_BANGin] = ACTIONS(5095), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_BANGis] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_as_QMARK] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5095), + [anon_sym_DASH_DASH] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5095), + [anon_sym_suspend] = ACTIONS(5093), + [anon_sym_sealed] = ACTIONS(5093), + [anon_sym_annotation] = ACTIONS(5093), + [anon_sym_data] = ACTIONS(5093), + [anon_sym_inner] = ACTIONS(5093), + [anon_sym_override] = ACTIONS(5093), + [anon_sym_lateinit] = ACTIONS(5093), + [anon_sym_public] = ACTIONS(5093), + [anon_sym_private] = ACTIONS(5093), + [anon_sym_internal] = ACTIONS(5093), + [anon_sym_protected] = ACTIONS(5093), + [anon_sym_tailrec] = ACTIONS(5093), + [anon_sym_operator] = ACTIONS(5093), + [anon_sym_infix] = ACTIONS(5093), + [anon_sym_inline] = ACTIONS(5093), + [anon_sym_external] = ACTIONS(5093), + [sym_property_modifier] = ACTIONS(5093), + [anon_sym_abstract] = ACTIONS(5093), + [anon_sym_final] = ACTIONS(5093), + [anon_sym_open] = ACTIONS(5093), + [anon_sym_vararg] = ACTIONS(5093), + [anon_sym_noinline] = ACTIONS(5093), + [anon_sym_crossinline] = ACTIONS(5093), + [anon_sym_expect] = ACTIONS(5093), + [anon_sym_actual] = ACTIONS(5093), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4784), - [sym__automatic_semicolon] = ACTIONS(4784), - [sym_safe_nav] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(5095), + [sym__automatic_semicolon] = ACTIONS(5095), + [sym_safe_nav] = ACTIONS(5095), [sym_multiline_comment] = ACTIONS(3), }, [3863] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [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_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_override] = ACTIONS(4716), + [anon_sym_lateinit] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(4716), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_internal] = ACTIONS(4716), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_tailrec] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4716), + [anon_sym_infix] = ACTIONS(4716), + [anon_sym_inline] = ACTIONS(4716), + [anon_sym_external] = ACTIONS(4716), + [sym_property_modifier] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_final] = ACTIONS(4716), + [anon_sym_open] = ACTIONS(4716), + [anon_sym_vararg] = ACTIONS(4716), + [anon_sym_noinline] = ACTIONS(4716), + [anon_sym_crossinline] = ACTIONS(4716), + [anon_sym_expect] = ACTIONS(4716), + [anon_sym_actual] = ACTIONS(4716), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4718), + [sym__automatic_semicolon] = ACTIONS(4718), + [sym_safe_nav] = ACTIONS(4718), + [sym_multiline_comment] = ACTIONS(3), + }, + [3864] = { + [sym__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [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_DOT] = 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_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), + }, + [3865] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(2988), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [3864] = { - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [sym_label] = ACTIONS(4007), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_suspend] = ACTIONS(4005), - [anon_sym_sealed] = ACTIONS(4005), - [anon_sym_annotation] = ACTIONS(4005), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_lateinit] = ACTIONS(4005), - [anon_sym_public] = ACTIONS(4005), - [anon_sym_private] = ACTIONS(4005), - [anon_sym_internal] = ACTIONS(4005), - [anon_sym_protected] = ACTIONS(4005), - [anon_sym_tailrec] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_infix] = ACTIONS(4005), - [anon_sym_inline] = ACTIONS(4005), - [anon_sym_external] = ACTIONS(4005), - [sym_property_modifier] = ACTIONS(4005), - [anon_sym_abstract] = ACTIONS(4005), - [anon_sym_final] = ACTIONS(4005), - [anon_sym_open] = ACTIONS(4005), - [anon_sym_vararg] = ACTIONS(4005), - [anon_sym_noinline] = ACTIONS(4005), - [anon_sym_crossinline] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4007), - [sym__automatic_semicolon] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), - [sym_multiline_comment] = ACTIONS(3), - }, - [3865] = { - [sym__alpha_identifier] = ACTIONS(4949), - [anon_sym_AT] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_as] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_RBRACE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_where] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_get] = ACTIONS(4949), - [anon_sym_set] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [sym_label] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4951), - [anon_sym_QMARK_COLON] = ACTIONS(4951), - [anon_sym_AMP_AMP] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4951), - [anon_sym_else] = ACTIONS(4949), - [anon_sym_COLON_COLON] = ACTIONS(4951), - [anon_sym_PLUS_EQ] = ACTIONS(4951), - [anon_sym_DASH_EQ] = ACTIONS(4951), - [anon_sym_STAR_EQ] = ACTIONS(4951), - [anon_sym_SLASH_EQ] = ACTIONS(4951), - [anon_sym_PERCENT_EQ] = ACTIONS(4951), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4951), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4951), - [anon_sym_BANGin] = ACTIONS(4951), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_BANGis] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_as_QMARK] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4951), - [anon_sym_BANG_BANG] = ACTIONS(4951), - [anon_sym_suspend] = ACTIONS(4949), - [anon_sym_sealed] = ACTIONS(4949), - [anon_sym_annotation] = ACTIONS(4949), - [anon_sym_data] = ACTIONS(4949), - [anon_sym_inner] = ACTIONS(4949), - [anon_sym_override] = ACTIONS(4949), - [anon_sym_lateinit] = ACTIONS(4949), - [anon_sym_public] = ACTIONS(4949), - [anon_sym_private] = ACTIONS(4949), - [anon_sym_internal] = ACTIONS(4949), - [anon_sym_protected] = ACTIONS(4949), - [anon_sym_tailrec] = ACTIONS(4949), - [anon_sym_operator] = ACTIONS(4949), - [anon_sym_infix] = ACTIONS(4949), - [anon_sym_inline] = ACTIONS(4949), - [anon_sym_external] = ACTIONS(4949), - [sym_property_modifier] = ACTIONS(4949), - [anon_sym_abstract] = ACTIONS(4949), - [anon_sym_final] = ACTIONS(4949), - [anon_sym_open] = ACTIONS(4949), - [anon_sym_vararg] = ACTIONS(4949), - [anon_sym_noinline] = ACTIONS(4949), - [anon_sym_crossinline] = ACTIONS(4949), - [anon_sym_expect] = ACTIONS(4949), - [anon_sym_actual] = ACTIONS(4949), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4951), - [sym__automatic_semicolon] = ACTIONS(4951), - [sym_safe_nav] = ACTIONS(4951), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [3866] = { - [aux_sym_user_type_repeat1] = STATE(3828), - [sym__alpha_identifier] = ACTIONS(4307), - [anon_sym_AT] = ACTIONS(4309), - [anon_sym_LBRACK] = ACTIONS(4309), - [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_DOT] = ACTIONS(6892), - [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_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), - [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), + [sym__alpha_identifier] = ACTIONS(4865), + [anon_sym_AT] = ACTIONS(4867), + [anon_sym_LBRACK] = ACTIONS(4867), + [anon_sym_as] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4867), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4867), + [anon_sym_COMMA] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_where] = ACTIONS(4865), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_get] = ACTIONS(4865), + [anon_sym_set] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [sym_label] = ACTIONS(4867), + [anon_sym_in] = ACTIONS(4865), + [anon_sym_DOT_DOT] = ACTIONS(4867), + [anon_sym_QMARK_COLON] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_else] = ACTIONS(4865), + [anon_sym_COLON_COLON] = ACTIONS(4867), + [anon_sym_PLUS_EQ] = ACTIONS(4867), + [anon_sym_DASH_EQ] = ACTIONS(4867), + [anon_sym_STAR_EQ] = ACTIONS(4867), + [anon_sym_SLASH_EQ] = ACTIONS(4867), + [anon_sym_PERCENT_EQ] = ACTIONS(4867), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4867), + [anon_sym_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4867), + [anon_sym_LT_EQ] = ACTIONS(4867), + [anon_sym_GT_EQ] = ACTIONS(4867), + [anon_sym_BANGin] = ACTIONS(4867), + [anon_sym_is] = ACTIONS(4865), + [anon_sym_BANGis] = ACTIONS(4867), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_as_QMARK] = ACTIONS(4867), + [anon_sym_PLUS_PLUS] = ACTIONS(4867), + [anon_sym_DASH_DASH] = ACTIONS(4867), + [anon_sym_BANG_BANG] = ACTIONS(4867), + [anon_sym_suspend] = ACTIONS(4865), + [anon_sym_sealed] = ACTIONS(4865), + [anon_sym_annotation] = ACTIONS(4865), + [anon_sym_data] = ACTIONS(4865), + [anon_sym_inner] = ACTIONS(4865), + [anon_sym_override] = ACTIONS(4865), + [anon_sym_lateinit] = ACTIONS(4865), + [anon_sym_public] = ACTIONS(4865), + [anon_sym_private] = ACTIONS(4865), + [anon_sym_internal] = ACTIONS(4865), + [anon_sym_protected] = ACTIONS(4865), + [anon_sym_tailrec] = ACTIONS(4865), + [anon_sym_operator] = ACTIONS(4865), + [anon_sym_infix] = ACTIONS(4865), + [anon_sym_inline] = ACTIONS(4865), + [anon_sym_external] = ACTIONS(4865), + [sym_property_modifier] = ACTIONS(4865), + [anon_sym_abstract] = ACTIONS(4865), + [anon_sym_final] = ACTIONS(4865), + [anon_sym_open] = ACTIONS(4865), + [anon_sym_vararg] = ACTIONS(4865), + [anon_sym_noinline] = ACTIONS(4865), + [anon_sym_crossinline] = ACTIONS(4865), + [anon_sym_expect] = ACTIONS(4865), + [anon_sym_actual] = ACTIONS(4865), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4867), + [sym__automatic_semicolon] = ACTIONS(4867), + [sym_safe_nav] = ACTIONS(4867), + [sym_multiline_comment] = ACTIONS(3), }, [3867] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3075), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3006), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [3868] = { - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_DASH_GT] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym__alpha_identifier] = ACTIONS(4945), + [anon_sym_AT] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4947), + [anon_sym_COMMA] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_where] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_get] = ACTIONS(4945), + [anon_sym_set] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4945), + [sym_label] = ACTIONS(4947), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4947), + [anon_sym_QMARK_COLON] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_else] = ACTIONS(4945), + [anon_sym_COLON_COLON] = ACTIONS(4947), + [anon_sym_PLUS_EQ] = ACTIONS(4947), + [anon_sym_DASH_EQ] = ACTIONS(4947), + [anon_sym_STAR_EQ] = ACTIONS(4947), + [anon_sym_SLASH_EQ] = ACTIONS(4947), + [anon_sym_PERCENT_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4947), + [anon_sym_LT_EQ] = ACTIONS(4947), + [anon_sym_GT_EQ] = ACTIONS(4947), + [anon_sym_BANGin] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_BANGis] = ACTIONS(4947), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_as_QMARK] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_BANG_BANG] = ACTIONS(4947), + [anon_sym_suspend] = ACTIONS(4945), + [anon_sym_sealed] = ACTIONS(4945), + [anon_sym_annotation] = ACTIONS(4945), + [anon_sym_data] = ACTIONS(4945), + [anon_sym_inner] = ACTIONS(4945), + [anon_sym_override] = ACTIONS(4945), + [anon_sym_lateinit] = ACTIONS(4945), + [anon_sym_public] = ACTIONS(4945), + [anon_sym_private] = ACTIONS(4945), + [anon_sym_internal] = ACTIONS(4945), + [anon_sym_protected] = ACTIONS(4945), + [anon_sym_tailrec] = ACTIONS(4945), + [anon_sym_operator] = ACTIONS(4945), + [anon_sym_infix] = ACTIONS(4945), + [anon_sym_inline] = ACTIONS(4945), + [anon_sym_external] = ACTIONS(4945), + [sym_property_modifier] = ACTIONS(4945), + [anon_sym_abstract] = ACTIONS(4945), + [anon_sym_final] = ACTIONS(4945), + [anon_sym_open] = ACTIONS(4945), + [anon_sym_vararg] = ACTIONS(4945), + [anon_sym_noinline] = ACTIONS(4945), + [anon_sym_crossinline] = ACTIONS(4945), + [anon_sym_expect] = ACTIONS(4945), + [anon_sym_actual] = ACTIONS(4945), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4947), + [sym__automatic_semicolon] = ACTIONS(4947), + [sym_safe_nav] = ACTIONS(4947), [sym_multiline_comment] = ACTIONS(3), }, [3869] = { - [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_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), + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(6910), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), }, [3870] = { - [sym__alpha_identifier] = ACTIONS(4730), - [anon_sym_AT] = ACTIONS(4732), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4732), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_LPAREN] = ACTIONS(4732), - [anon_sym_COMMA] = ACTIONS(4732), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4732), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4730), - [anon_sym_STAR] = ACTIONS(4730), - [sym_label] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_QMARK_COLON] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4732), - [anon_sym_else] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(4732), - [anon_sym_PLUS_EQ] = ACTIONS(4732), - [anon_sym_DASH_EQ] = ACTIONS(4732), - [anon_sym_STAR_EQ] = ACTIONS(4732), - [anon_sym_SLASH_EQ] = ACTIONS(4732), - [anon_sym_PERCENT_EQ] = ACTIONS(4732), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4732), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4732), - [anon_sym_LT_EQ] = ACTIONS(4732), - [anon_sym_GT_EQ] = ACTIONS(4732), - [anon_sym_BANGin] = ACTIONS(4732), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_BANGis] = ACTIONS(4732), - [anon_sym_PLUS] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_as_QMARK] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4732), - [anon_sym_DASH_DASH] = ACTIONS(4732), - [anon_sym_BANG_BANG] = ACTIONS(4732), - [anon_sym_suspend] = ACTIONS(4730), - [anon_sym_sealed] = ACTIONS(4730), - [anon_sym_annotation] = ACTIONS(4730), - [anon_sym_data] = ACTIONS(4730), - [anon_sym_inner] = ACTIONS(4730), - [anon_sym_override] = ACTIONS(4730), - [anon_sym_lateinit] = ACTIONS(4730), - [anon_sym_public] = ACTIONS(4730), - [anon_sym_private] = ACTIONS(4730), - [anon_sym_internal] = ACTIONS(4730), - [anon_sym_protected] = ACTIONS(4730), - [anon_sym_tailrec] = ACTIONS(4730), - [anon_sym_operator] = ACTIONS(4730), - [anon_sym_infix] = ACTIONS(4730), - [anon_sym_inline] = ACTIONS(4730), - [anon_sym_external] = ACTIONS(4730), - [sym_property_modifier] = ACTIONS(4730), - [anon_sym_abstract] = ACTIONS(4730), - [anon_sym_final] = ACTIONS(4730), - [anon_sym_open] = ACTIONS(4730), - [anon_sym_vararg] = ACTIONS(4730), - [anon_sym_noinline] = ACTIONS(4730), - [anon_sym_crossinline] = ACTIONS(4730), - [anon_sym_expect] = ACTIONS(4730), - [anon_sym_actual] = ACTIONS(4730), + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_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(4732), - [sym__automatic_semicolon] = ACTIONS(4732), - [sym_safe_nav] = ACTIONS(4732), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), [sym_multiline_comment] = ACTIONS(3), }, [3871] = { - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [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_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), }, [3872] = { - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_PLUS_EQ] = ACTIONS(4033), - [anon_sym_DASH_EQ] = ACTIONS(4033), - [anon_sym_STAR_EQ] = ACTIONS(4033), - [anon_sym_SLASH_EQ] = ACTIONS(4033), - [anon_sym_PERCENT_EQ] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [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_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), }, [3873] = { - [sym__alpha_identifier] = ACTIONS(4750), - [anon_sym_AT] = ACTIONS(4752), - [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_override] = ACTIONS(4750), - [anon_sym_lateinit] = ACTIONS(4750), - [anon_sym_public] = ACTIONS(4750), - [anon_sym_private] = ACTIONS(4750), - [anon_sym_internal] = ACTIONS(4750), - [anon_sym_protected] = ACTIONS(4750), - [anon_sym_tailrec] = ACTIONS(4750), - [anon_sym_operator] = ACTIONS(4750), - [anon_sym_infix] = ACTIONS(4750), - [anon_sym_inline] = ACTIONS(4750), - [anon_sym_external] = ACTIONS(4750), - [sym_property_modifier] = ACTIONS(4750), - [anon_sym_abstract] = ACTIONS(4750), - [anon_sym_final] = ACTIONS(4750), - [anon_sym_open] = ACTIONS(4750), - [anon_sym_vararg] = ACTIONS(4750), - [anon_sym_noinline] = ACTIONS(4750), - [anon_sym_crossinline] = ACTIONS(4750), - [anon_sym_expect] = ACTIONS(4750), - [anon_sym_actual] = ACTIONS(4750), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4752), - [sym__automatic_semicolon] = ACTIONS(4752), - [sym_safe_nav] = ACTIONS(4752), - [sym_multiline_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(6914), + [sym__alpha_identifier] = ACTIONS(6916), + [anon_sym_AT] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(6914), + [anon_sym_import] = ACTIONS(6916), + [anon_sym_typealias] = ACTIONS(6916), + [anon_sym_class] = ACTIONS(6916), + [anon_sym_interface] = ACTIONS(6916), + [anon_sym_enum] = ACTIONS(6916), + [anon_sym_LBRACE] = ACTIONS(6914), + [anon_sym_LPAREN] = ACTIONS(6914), + [anon_sym_val] = ACTIONS(6916), + [anon_sym_var] = ACTIONS(6916), + [anon_sym_object] = ACTIONS(6916), + [anon_sym_fun] = ACTIONS(6916), + [anon_sym_get] = ACTIONS(6916), + [anon_sym_set] = ACTIONS(6916), + [anon_sym_this] = ACTIONS(6916), + [anon_sym_super] = ACTIONS(6916), + [anon_sym_STAR] = ACTIONS(6914), + [sym_label] = ACTIONS(6916), + [anon_sym_for] = ACTIONS(6916), + [anon_sym_while] = ACTIONS(6916), + [anon_sym_do] = ACTIONS(6916), + [anon_sym_null] = ACTIONS(6916), + [anon_sym_if] = ACTIONS(6916), + [anon_sym_when] = ACTIONS(6916), + [anon_sym_try] = ACTIONS(6916), + [anon_sym_throw] = ACTIONS(6916), + [anon_sym_return] = ACTIONS(6916), + [anon_sym_continue] = ACTIONS(6916), + [anon_sym_break] = ACTIONS(6916), + [anon_sym_COLON_COLON] = ACTIONS(6914), + [anon_sym_PLUS] = ACTIONS(6916), + [anon_sym_DASH] = ACTIONS(6916), + [anon_sym_PLUS_PLUS] = ACTIONS(6914), + [anon_sym_DASH_DASH] = ACTIONS(6914), + [anon_sym_BANG] = ACTIONS(6914), + [anon_sym_suspend] = ACTIONS(6916), + [anon_sym_sealed] = ACTIONS(6916), + [anon_sym_annotation] = ACTIONS(6916), + [anon_sym_data] = ACTIONS(6916), + [anon_sym_inner] = ACTIONS(6916), + [anon_sym_override] = ACTIONS(6916), + [anon_sym_lateinit] = ACTIONS(6916), + [anon_sym_public] = ACTIONS(6916), + [anon_sym_private] = ACTIONS(6916), + [anon_sym_internal] = ACTIONS(6916), + [anon_sym_protected] = ACTIONS(6916), + [anon_sym_tailrec] = ACTIONS(6916), + [anon_sym_operator] = ACTIONS(6916), + [anon_sym_infix] = ACTIONS(6916), + [anon_sym_inline] = ACTIONS(6916), + [anon_sym_external] = ACTIONS(6916), + [sym_property_modifier] = ACTIONS(6916), + [anon_sym_abstract] = ACTIONS(6916), + [anon_sym_final] = ACTIONS(6916), + [anon_sym_open] = ACTIONS(6916), + [anon_sym_vararg] = ACTIONS(6916), + [anon_sym_noinline] = ACTIONS(6916), + [anon_sym_crossinline] = ACTIONS(6916), + [anon_sym_expect] = ACTIONS(6916), + [anon_sym_actual] = ACTIONS(6916), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6914), + [anon_sym_continue_AT] = ACTIONS(6914), + [anon_sym_break_AT] = ACTIONS(6914), + [sym_real_literal] = ACTIONS(6914), + [sym_integer_literal] = ACTIONS(6916), + [sym_hex_literal] = ACTIONS(6914), + [sym_bin_literal] = ACTIONS(6914), + [anon_sym_true] = ACTIONS(6916), + [anon_sym_false] = ACTIONS(6916), + [anon_sym_SQUOTE] = ACTIONS(6914), + [sym__backtick_identifier] = ACTIONS(6914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6914), }, [3874] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__alpha_identifier] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_COMMA] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_get] = ACTIONS(4035), + [anon_sym_set] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_QMARK_COLON] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(4037), + [anon_sym_PLUS_EQ] = ACTIONS(4037), + [anon_sym_DASH_EQ] = ACTIONS(4037), + [anon_sym_STAR_EQ] = ACTIONS(4037), + [anon_sym_SLASH_EQ] = ACTIONS(4037), + [anon_sym_PERCENT_EQ] = ACTIONS(4037), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4037), + [anon_sym_LT_EQ] = ACTIONS(4037), + [anon_sym_GT_EQ] = ACTIONS(4037), + [anon_sym_BANGin] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4035), + [anon_sym_BANGis] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_as_QMARK] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4037), + [anon_sym_DASH_DASH] = ACTIONS(4037), + [anon_sym_BANG_BANG] = ACTIONS(4037), + [anon_sym_suspend] = ACTIONS(4035), + [anon_sym_sealed] = ACTIONS(4035), + [anon_sym_annotation] = ACTIONS(4035), + [anon_sym_data] = ACTIONS(4035), + [anon_sym_inner] = ACTIONS(4035), + [anon_sym_override] = ACTIONS(4035), + [anon_sym_lateinit] = ACTIONS(4035), + [anon_sym_public] = ACTIONS(4035), + [anon_sym_private] = ACTIONS(4035), + [anon_sym_internal] = ACTIONS(4035), + [anon_sym_protected] = ACTIONS(4035), + [anon_sym_tailrec] = ACTIONS(4035), + [anon_sym_operator] = ACTIONS(4035), + [anon_sym_infix] = ACTIONS(4035), + [anon_sym_inline] = ACTIONS(4035), + [anon_sym_external] = ACTIONS(4035), + [sym_property_modifier] = ACTIONS(4035), + [anon_sym_abstract] = ACTIONS(4035), + [anon_sym_final] = ACTIONS(4035), + [anon_sym_open] = ACTIONS(4035), + [anon_sym_vararg] = ACTIONS(4035), + [anon_sym_noinline] = ACTIONS(4035), + [anon_sym_crossinline] = ACTIONS(4035), + [anon_sym_expect] = ACTIONS(4035), + [anon_sym_actual] = ACTIONS(4035), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4037), + [sym__automatic_semicolon] = ACTIONS(4037), + [sym_safe_nav] = ACTIONS(4037), [sym_multiline_comment] = ACTIONS(3), }, [3875] = { - [sym__alpha_identifier] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_where] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_get] = ACTIONS(1784), - [anon_sym_set] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [sym_label] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_QMARK_COLON] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_BANGin] = ACTIONS(1786), - [anon_sym_is] = ACTIONS(1784), - [anon_sym_BANGis] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_as_QMARK] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_BANG_BANG] = ACTIONS(1786), - [anon_sym_suspend] = ACTIONS(1784), - [anon_sym_sealed] = ACTIONS(1784), - [anon_sym_annotation] = ACTIONS(1784), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_lateinit] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_internal] = ACTIONS(1784), - [anon_sym_protected] = ACTIONS(1784), - [anon_sym_tailrec] = ACTIONS(1784), - [anon_sym_operator] = ACTIONS(1784), - [anon_sym_infix] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_external] = ACTIONS(1784), - [sym_property_modifier] = ACTIONS(1784), - [anon_sym_abstract] = ACTIONS(1784), - [anon_sym_final] = ACTIONS(1784), - [anon_sym_open] = ACTIONS(1784), - [anon_sym_vararg] = ACTIONS(1784), - [anon_sym_noinline] = ACTIONS(1784), - [anon_sym_crossinline] = ACTIONS(1784), - [anon_sym_expect] = ACTIONS(1784), - [anon_sym_actual] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1786), - [sym__automatic_semicolon] = ACTIONS(1786), - [sym_safe_nav] = ACTIONS(1786), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [3876] = { - [sym_function_body] = STATE(3176), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [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(4487), - [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_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_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(4487), - [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_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), - [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), - }, - [3877] = { - [sym__alpha_identifier] = ACTIONS(4509), - [anon_sym_AT] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_as] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LT] = ACTIONS(4509), - [anon_sym_GT] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4509), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym_get] = ACTIONS(4509), - [anon_sym_set] = ACTIONS(4509), - [anon_sym_STAR] = ACTIONS(4509), - [sym_label] = ACTIONS(4511), - [anon_sym_in] = ACTIONS(4509), - [anon_sym_DOT_DOT] = ACTIONS(4511), - [anon_sym_QMARK_COLON] = ACTIONS(4511), - [anon_sym_AMP_AMP] = ACTIONS(4511), - [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_else] = ACTIONS(4509), - [anon_sym_COLON_COLON] = ACTIONS(4511), - [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(4509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), - [anon_sym_LT_EQ] = ACTIONS(4511), - [anon_sym_GT_EQ] = ACTIONS(4511), - [anon_sym_BANGin] = ACTIONS(4511), - [anon_sym_is] = ACTIONS(4509), - [anon_sym_BANGis] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4509), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_as_QMARK] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_BANG_BANG] = ACTIONS(4511), - [anon_sym_suspend] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_annotation] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4509), - [anon_sym_inner] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_lateinit] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_tailrec] = ACTIONS(4509), - [anon_sym_operator] = ACTIONS(4509), - [anon_sym_infix] = ACTIONS(4509), - [anon_sym_inline] = ACTIONS(4509), - [anon_sym_external] = ACTIONS(4509), - [sym_property_modifier] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_final] = ACTIONS(4509), - [anon_sym_open] = ACTIONS(4509), - [anon_sym_vararg] = ACTIONS(4509), - [anon_sym_noinline] = ACTIONS(4509), - [anon_sym_crossinline] = ACTIONS(4509), - [anon_sym_expect] = ACTIONS(4509), - [anon_sym_actual] = ACTIONS(4509), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4511), - [sym__automatic_semicolon] = ACTIONS(4511), - [sym_safe_nav] = ACTIONS(4511), - [sym_multiline_comment] = ACTIONS(3), - }, - [3878] = { - [sym__alpha_identifier] = ACTIONS(4694), - [anon_sym_AT] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_EQ] = ACTIONS(4696), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_LPAREN] = ACTIONS(4696), - [anon_sym_by] = 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(4696), - [sym_label] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [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_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_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4694), - [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_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), - [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__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_PLUS_EQ] = ACTIONS(4328), + [anon_sym_DASH_EQ] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4328), + [anon_sym_SLASH_EQ] = ACTIONS(4328), + [anon_sym_PERCENT_EQ] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4326), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4696), }, - [3879] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3877] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [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_DOT] = 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_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(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), [sym_multiline_comment] = ACTIONS(3), }, - [3880] = { - [sym__alpha_identifier] = ACTIONS(4698), - [anon_sym_AT] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4700), - [anon_sym_EQ] = ACTIONS(4700), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_RBRACE] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(4700), - [anon_sym_by] = ACTIONS(4698), - [anon_sym_where] = ACTIONS(4698), - [anon_sym_object] = ACTIONS(4698), - [anon_sym_fun] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_get] = ACTIONS(4698), - [anon_sym_set] = ACTIONS(4698), - [anon_sym_this] = ACTIONS(4698), - [anon_sym_super] = ACTIONS(4698), - [anon_sym_STAR] = ACTIONS(4700), - [sym_label] = ACTIONS(4698), - [anon_sym_in] = ACTIONS(4698), - [anon_sym_null] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_else] = ACTIONS(4698), - [anon_sym_when] = ACTIONS(4698), - [anon_sym_try] = ACTIONS(4698), - [anon_sym_throw] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4700), - [anon_sym_is] = ACTIONS(4698), - [anon_sym_BANGis] = ACTIONS(4700), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_PLUS_PLUS] = ACTIONS(4700), - [anon_sym_DASH_DASH] = ACTIONS(4700), - [anon_sym_BANG] = ACTIONS(4698), - [anon_sym_suspend] = ACTIONS(4698), - [anon_sym_sealed] = ACTIONS(4698), - [anon_sym_annotation] = ACTIONS(4698), - [anon_sym_data] = ACTIONS(4698), - [anon_sym_inner] = ACTIONS(4698), - [anon_sym_override] = ACTIONS(4698), - [anon_sym_lateinit] = ACTIONS(4698), - [anon_sym_public] = ACTIONS(4698), - [anon_sym_private] = ACTIONS(4698), - [anon_sym_internal] = ACTIONS(4698), - [anon_sym_protected] = ACTIONS(4698), - [anon_sym_tailrec] = ACTIONS(4698), - [anon_sym_operator] = ACTIONS(4698), - [anon_sym_infix] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_external] = ACTIONS(4698), - [sym_property_modifier] = ACTIONS(4698), - [anon_sym_abstract] = ACTIONS(4698), - [anon_sym_final] = ACTIONS(4698), - [anon_sym_open] = ACTIONS(4698), - [anon_sym_vararg] = ACTIONS(4698), - [anon_sym_noinline] = ACTIONS(4698), - [anon_sym_crossinline] = ACTIONS(4698), - [anon_sym_expect] = ACTIONS(4698), - [anon_sym_actual] = ACTIONS(4698), + [3878] = { + [sym__alpha_identifier] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [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_DOT] = 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_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(4700), - [anon_sym_continue_AT] = ACTIONS(4700), - [anon_sym_break_AT] = ACTIONS(4700), - [sym_real_literal] = ACTIONS(4700), - [sym_integer_literal] = ACTIONS(4698), - [sym_hex_literal] = ACTIONS(4700), - [sym_bin_literal] = ACTIONS(4700), - [anon_sym_true] = ACTIONS(4698), - [anon_sym_false] = ACTIONS(4698), - [anon_sym_SQUOTE] = ACTIONS(4700), - [sym__backtick_identifier] = ACTIONS(4700), - [sym__automatic_semicolon] = ACTIONS(4700), + [sym__backtick_identifier] = ACTIONS(4808), + [sym__automatic_semicolon] = ACTIONS(4808), + [sym_safe_nav] = ACTIONS(4808), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4700), + }, + [3879] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(1774), + [anon_sym_sealed] = ACTIONS(1774), + [anon_sym_annotation] = ACTIONS(1774), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_lateinit] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_internal] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_tailrec] = ACTIONS(1774), + [anon_sym_operator] = ACTIONS(1774), + [anon_sym_infix] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1774), + [anon_sym_external] = ACTIONS(1774), + [sym_property_modifier] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_open] = ACTIONS(1774), + [anon_sym_vararg] = ACTIONS(1774), + [anon_sym_noinline] = ACTIONS(1774), + [anon_sym_crossinline] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [3880] = { + [aux_sym_user_type_repeat1] = STATE(3890), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_typealias] = ACTIONS(4216), + [anon_sym_class] = ACTIONS(4216), + [anon_sym_interface] = ACTIONS(4216), + [anon_sym_enum] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_val] = ACTIONS(4216), + [anon_sym_var] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(6857), + [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_for] = ACTIONS(4216), + [anon_sym_while] = ACTIONS(4216), + [anon_sym_do] = ACTIONS(4216), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_if] = 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] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_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_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), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4218), }, [3881] = { - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [anon_sym_DASH_GT] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [3882] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_EQ] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4414), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_PLUS_EQ] = ACTIONS(4416), - [anon_sym_DASH_EQ] = ACTIONS(4416), - [anon_sym_STAR_EQ] = ACTIONS(4416), - [anon_sym_SLASH_EQ] = ACTIONS(4416), - [anon_sym_PERCENT_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [3883] = { - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(6918), + [anon_sym_LT] = ACTIONS(3866), + [anon_sym_GT] = ACTIONS(3866), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(3871), + [anon_sym_QMARK_COLON] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_PIPE_PIPE] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(3866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ] = ACTIONS(3866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(3866), + [anon_sym_PERCENT] = ACTIONS(3866), + [anon_sym_as_QMARK] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(3871), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, [3884] = { - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [anon_sym_DASH_GT] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3885] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2304), + [sym__comparison_operator] = STATE(2303), + [sym__in_operator] = STATE(2302), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2300), + [sym__multiplicative_operator] = STATE(2299), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2297), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(3082), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(6850), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(6865), + [anon_sym_QMARK_COLON] = ACTIONS(6867), + [anon_sym_AMP_AMP] = ACTIONS(6869), + [anon_sym_PIPE_PIPE] = ACTIONS(6871), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(6873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6877), + [anon_sym_GT_EQ] = ACTIONS(6877), + [anon_sym_BANGin] = ACTIONS(6879), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6881), + [anon_sym_DASH] = ACTIONS(6881), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, + [3885] = { + [ts_builtin_sym_end] = ACTIONS(6922), + [sym__alpha_identifier] = ACTIONS(6924), + [anon_sym_AT] = ACTIONS(6922), + [anon_sym_LBRACK] = ACTIONS(6922), + [anon_sym_import] = ACTIONS(6924), + [anon_sym_typealias] = ACTIONS(6924), + [anon_sym_class] = ACTIONS(6924), + [anon_sym_interface] = ACTIONS(6924), + [anon_sym_enum] = ACTIONS(6924), + [anon_sym_LBRACE] = ACTIONS(6922), + [anon_sym_LPAREN] = ACTIONS(6922), + [anon_sym_val] = ACTIONS(6924), + [anon_sym_var] = ACTIONS(6924), + [anon_sym_object] = ACTIONS(6924), + [anon_sym_fun] = ACTIONS(6924), + [anon_sym_get] = ACTIONS(6924), + [anon_sym_set] = ACTIONS(6924), + [anon_sym_this] = ACTIONS(6924), + [anon_sym_super] = ACTIONS(6924), + [anon_sym_STAR] = ACTIONS(6922), + [sym_label] = ACTIONS(6924), + [anon_sym_for] = ACTIONS(6924), + [anon_sym_while] = ACTIONS(6924), + [anon_sym_do] = ACTIONS(6924), + [anon_sym_null] = ACTIONS(6924), + [anon_sym_if] = ACTIONS(6924), + [anon_sym_when] = ACTIONS(6924), + [anon_sym_try] = ACTIONS(6924), + [anon_sym_throw] = ACTIONS(6924), + [anon_sym_return] = ACTIONS(6924), + [anon_sym_continue] = ACTIONS(6924), + [anon_sym_break] = ACTIONS(6924), + [anon_sym_COLON_COLON] = ACTIONS(6922), + [anon_sym_PLUS] = ACTIONS(6924), + [anon_sym_DASH] = ACTIONS(6924), + [anon_sym_PLUS_PLUS] = ACTIONS(6922), + [anon_sym_DASH_DASH] = ACTIONS(6922), + [anon_sym_BANG] = ACTIONS(6922), + [anon_sym_suspend] = ACTIONS(6924), + [anon_sym_sealed] = ACTIONS(6924), + [anon_sym_annotation] = ACTIONS(6924), + [anon_sym_data] = ACTIONS(6924), + [anon_sym_inner] = ACTIONS(6924), + [anon_sym_override] = ACTIONS(6924), + [anon_sym_lateinit] = ACTIONS(6924), + [anon_sym_public] = ACTIONS(6924), + [anon_sym_private] = ACTIONS(6924), + [anon_sym_internal] = ACTIONS(6924), + [anon_sym_protected] = ACTIONS(6924), + [anon_sym_tailrec] = ACTIONS(6924), + [anon_sym_operator] = ACTIONS(6924), + [anon_sym_infix] = ACTIONS(6924), + [anon_sym_inline] = ACTIONS(6924), + [anon_sym_external] = ACTIONS(6924), + [sym_property_modifier] = ACTIONS(6924), + [anon_sym_abstract] = ACTIONS(6924), + [anon_sym_final] = ACTIONS(6924), + [anon_sym_open] = ACTIONS(6924), + [anon_sym_vararg] = ACTIONS(6924), + [anon_sym_noinline] = ACTIONS(6924), + [anon_sym_crossinline] = ACTIONS(6924), + [anon_sym_expect] = ACTIONS(6924), + [anon_sym_actual] = ACTIONS(6924), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6922), + [anon_sym_continue_AT] = ACTIONS(6922), + [anon_sym_break_AT] = ACTIONS(6922), + [sym_real_literal] = ACTIONS(6922), + [sym_integer_literal] = ACTIONS(6924), + [sym_hex_literal] = ACTIONS(6922), + [sym_bin_literal] = ACTIONS(6922), + [anon_sym_true] = ACTIONS(6924), + [anon_sym_false] = ACTIONS(6924), + [anon_sym_SQUOTE] = ACTIONS(6922), + [sym__backtick_identifier] = ACTIONS(6922), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6922), + }, [3886] = { - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [sym_label] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_suspend] = ACTIONS(4766), + [anon_sym_sealed] = ACTIONS(4766), + [anon_sym_annotation] = ACTIONS(4766), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_override] = ACTIONS(4766), + [anon_sym_lateinit] = ACTIONS(4766), + [anon_sym_public] = ACTIONS(4766), + [anon_sym_private] = ACTIONS(4766), + [anon_sym_internal] = ACTIONS(4766), + [anon_sym_protected] = ACTIONS(4766), + [anon_sym_tailrec] = ACTIONS(4766), + [anon_sym_operator] = ACTIONS(4766), + [anon_sym_infix] = ACTIONS(4766), + [anon_sym_inline] = ACTIONS(4766), + [anon_sym_external] = ACTIONS(4766), + [sym_property_modifier] = ACTIONS(4766), + [anon_sym_abstract] = ACTIONS(4766), + [anon_sym_final] = ACTIONS(4766), + [anon_sym_open] = ACTIONS(4766), + [anon_sym_vararg] = ACTIONS(4766), + [anon_sym_noinline] = ACTIONS(4766), + [anon_sym_crossinline] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4768), + [sym__automatic_semicolon] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), + [sym_multiline_comment] = ACTIONS(3), }, [3887] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__alpha_identifier] = ACTIONS(4410), + [anon_sym_AT] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_where] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_get] = ACTIONS(4410), + [anon_sym_set] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_QMARK_COLON] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_COLON_COLON] = ACTIONS(4412), + [anon_sym_PLUS_EQ] = ACTIONS(4412), + [anon_sym_DASH_EQ] = ACTIONS(4412), + [anon_sym_STAR_EQ] = ACTIONS(4412), + [anon_sym_SLASH_EQ] = ACTIONS(4412), + [anon_sym_PERCENT_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4412), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_BANGin] = ACTIONS(4412), + [anon_sym_is] = ACTIONS(4410), + [anon_sym_BANGis] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_SLASH] = ACTIONS(4410), + [anon_sym_PERCENT] = ACTIONS(4410), + [anon_sym_as_QMARK] = ACTIONS(4412), + [anon_sym_PLUS_PLUS] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4412), + [anon_sym_suspend] = ACTIONS(4410), + [anon_sym_sealed] = ACTIONS(4410), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_data] = ACTIONS(4410), + [anon_sym_inner] = ACTIONS(4410), + [anon_sym_override] = ACTIONS(4410), + [anon_sym_lateinit] = ACTIONS(4410), + [anon_sym_public] = ACTIONS(4410), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_internal] = ACTIONS(4410), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_tailrec] = ACTIONS(4410), + [anon_sym_operator] = ACTIONS(4410), + [anon_sym_infix] = ACTIONS(4410), + [anon_sym_inline] = ACTIONS(4410), + [anon_sym_external] = ACTIONS(4410), + [sym_property_modifier] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_final] = ACTIONS(4410), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_vararg] = ACTIONS(4410), + [anon_sym_noinline] = ACTIONS(4410), + [anon_sym_crossinline] = ACTIONS(4410), + [anon_sym_expect] = ACTIONS(4410), + [anon_sym_actual] = ACTIONS(4410), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4412), + [sym__automatic_semicolon] = ACTIONS(4412), + [sym_safe_nav] = ACTIONS(4412), [sym_multiline_comment] = ACTIONS(3), }, [3888] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6906), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_RBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6638), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_DASH_GT] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), }, [3889] = { - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [anon_sym_DASH_EQ] = ACTIONS(4110), + [anon_sym_STAR_EQ] = ACTIONS(4110), + [anon_sym_SLASH_EQ] = ACTIONS(4110), + [anon_sym_PERCENT_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), }, [3890] = { + [aux_sym_user_type_repeat1] = STATE(3890), + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_typealias] = ACTIONS(4223), + [anon_sym_class] = ACTIONS(4223), + [anon_sym_interface] = ACTIONS(4223), + [anon_sym_enum] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_val] = ACTIONS(4223), + [anon_sym_var] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(6926), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [sym_label] = ACTIONS(4223), + [anon_sym_for] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_do] = ACTIONS(4223), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), + }, + [3891] = { + [sym__alpha_identifier] = ACTIONS(4873), + [anon_sym_AT] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_where] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_get] = ACTIONS(4873), + [anon_sym_set] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [sym_label] = ACTIONS(4875), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_QMARK_COLON] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_else] = ACTIONS(4873), + [anon_sym_COLON_COLON] = ACTIONS(4875), + [anon_sym_PLUS_EQ] = ACTIONS(4875), + [anon_sym_DASH_EQ] = ACTIONS(4875), + [anon_sym_STAR_EQ] = ACTIONS(4875), + [anon_sym_SLASH_EQ] = ACTIONS(4875), + [anon_sym_PERCENT_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_BANGin] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4873), + [anon_sym_BANGis] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_as_QMARK] = ACTIONS(4875), + [anon_sym_PLUS_PLUS] = ACTIONS(4875), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_BANG_BANG] = ACTIONS(4875), + [anon_sym_suspend] = ACTIONS(4873), + [anon_sym_sealed] = ACTIONS(4873), + [anon_sym_annotation] = ACTIONS(4873), + [anon_sym_data] = ACTIONS(4873), + [anon_sym_inner] = ACTIONS(4873), + [anon_sym_override] = ACTIONS(4873), + [anon_sym_lateinit] = ACTIONS(4873), + [anon_sym_public] = ACTIONS(4873), + [anon_sym_private] = ACTIONS(4873), + [anon_sym_internal] = ACTIONS(4873), + [anon_sym_protected] = ACTIONS(4873), + [anon_sym_tailrec] = ACTIONS(4873), + [anon_sym_operator] = ACTIONS(4873), + [anon_sym_infix] = ACTIONS(4873), + [anon_sym_inline] = ACTIONS(4873), + [anon_sym_external] = ACTIONS(4873), + [sym_property_modifier] = ACTIONS(4873), + [anon_sym_abstract] = ACTIONS(4873), + [anon_sym_final] = ACTIONS(4873), + [anon_sym_open] = ACTIONS(4873), + [anon_sym_vararg] = ACTIONS(4873), + [anon_sym_noinline] = ACTIONS(4873), + [anon_sym_crossinline] = ACTIONS(4873), + [anon_sym_expect] = ACTIONS(4873), + [anon_sym_actual] = ACTIONS(4873), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4875), + [sym__automatic_semicolon] = ACTIONS(4875), + [sym_safe_nav] = ACTIONS(4875), + [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_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(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_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), + }, + [3894] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [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_DOT] = 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_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), + }, + [3895] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + }, + [3896] = { + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [3897] = { [sym__alpha_identifier] = ACTIONS(4770), [anon_sym_AT] = ACTIONS(4772), [anon_sym_LBRACK] = ACTIONS(4772), @@ -414036,13859 +414666,14066 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4772), [sym_multiline_comment] = ACTIONS(3), }, - [3891] = { - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), - [anon_sym_DASH_EQ] = ACTIONS(4049), - [anon_sym_STAR_EQ] = ACTIONS(4049), - [anon_sym_SLASH_EQ] = ACTIONS(4049), - [anon_sym_PERCENT_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4047), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - }, - [3892] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_RBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [3893] = { - [sym__alpha_identifier] = ACTIONS(4517), - [anon_sym_AT] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_as] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_COMMA] = ACTIONS(4519), - [anon_sym_LT] = ACTIONS(4517), - [anon_sym_GT] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4517), - [anon_sym_SEMI] = ACTIONS(4519), - [anon_sym_get] = ACTIONS(4517), - [anon_sym_set] = ACTIONS(4517), - [anon_sym_STAR] = ACTIONS(4517), - [sym_label] = ACTIONS(4519), - [anon_sym_in] = ACTIONS(4517), - [anon_sym_DOT_DOT] = ACTIONS(4519), - [anon_sym_QMARK_COLON] = ACTIONS(4519), - [anon_sym_AMP_AMP] = ACTIONS(4519), - [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_else] = ACTIONS(4517), - [anon_sym_COLON_COLON] = ACTIONS(4519), - [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(4517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), - [anon_sym_EQ_EQ] = ACTIONS(4517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), - [anon_sym_LT_EQ] = ACTIONS(4519), - [anon_sym_GT_EQ] = ACTIONS(4519), - [anon_sym_BANGin] = ACTIONS(4519), - [anon_sym_is] = ACTIONS(4517), - [anon_sym_BANGis] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_as_QMARK] = ACTIONS(4519), - [anon_sym_PLUS_PLUS] = ACTIONS(4519), - [anon_sym_DASH_DASH] = ACTIONS(4519), - [anon_sym_BANG_BANG] = ACTIONS(4519), - [anon_sym_suspend] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_annotation] = ACTIONS(4517), - [anon_sym_data] = ACTIONS(4517), - [anon_sym_inner] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_lateinit] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_tailrec] = ACTIONS(4517), - [anon_sym_operator] = ACTIONS(4517), - [anon_sym_infix] = ACTIONS(4517), - [anon_sym_inline] = ACTIONS(4517), - [anon_sym_external] = ACTIONS(4517), - [sym_property_modifier] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_final] = ACTIONS(4517), - [anon_sym_open] = ACTIONS(4517), - [anon_sym_vararg] = ACTIONS(4517), - [anon_sym_noinline] = ACTIONS(4517), - [anon_sym_crossinline] = ACTIONS(4517), - [anon_sym_expect] = ACTIONS(4517), - [anon_sym_actual] = ACTIONS(4517), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4519), - [sym__automatic_semicolon] = ACTIONS(4519), - [sym_safe_nav] = ACTIONS(4519), - [sym_multiline_comment] = ACTIONS(3), - }, - [3894] = { - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6654), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [3895] = { - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_RBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - }, - [3896] = { - [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_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), - }, - [3897] = { - [sym_function_body] = STATE(3332), - [sym__block] = STATE(3464), - [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(6623), - [anon_sym_LBRACE] = ACTIONS(6231), - [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(4487), - [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_COLON_COLON] = 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(4487), - [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_override] = ACTIONS(4485), - [anon_sym_lateinit] = ACTIONS(4485), - [anon_sym_public] = ACTIONS(4485), - [anon_sym_private] = ACTIONS(4485), - [anon_sym_internal] = ACTIONS(4485), - [anon_sym_protected] = ACTIONS(4485), - [anon_sym_tailrec] = ACTIONS(4485), - [anon_sym_operator] = ACTIONS(4485), - [anon_sym_infix] = ACTIONS(4485), - [anon_sym_inline] = ACTIONS(4485), - [anon_sym_external] = ACTIONS(4485), - [sym_property_modifier] = ACTIONS(4485), - [anon_sym_abstract] = ACTIONS(4485), - [anon_sym_final] = ACTIONS(4485), - [anon_sym_open] = ACTIONS(4485), - [anon_sym_vararg] = ACTIONS(4485), - [anon_sym_noinline] = ACTIONS(4485), - [anon_sym_crossinline] = ACTIONS(4485), - [anon_sym_expect] = ACTIONS(4485), - [anon_sym_actual] = ACTIONS(4485), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4487), - [sym_safe_nav] = ACTIONS(4487), - [sym_multiline_comment] = ACTIONS(3), - }, [3898] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(2064), - [sym__in_operator] = STATE(1691), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1828), - [sym__multiplicative_operator] = STATE(1968), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2056), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6840), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6842), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(6844), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(6846), - [anon_sym_QMARK_COLON] = ACTIONS(6848), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(6854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6856), - [anon_sym_EQ_EQ] = ACTIONS(6854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6856), - [anon_sym_LT_EQ] = ACTIONS(6858), - [anon_sym_GT_EQ] = ACTIONS(6858), - [anon_sym_BANGin] = ACTIONS(6860), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [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_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(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), [sym_multiline_comment] = ACTIONS(3), }, [3899] = { - [sym_type_constraints] = STATE(3989), - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [3900] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6910), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [anon_sym_DASH_GT] = ACTIONS(4144), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [3901] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [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_DOT] = 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_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), - }, - [3902] = { - [sym__alpha_identifier] = ACTIONS(5017), - [anon_sym_AT] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [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_DOT] = 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_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), - }, - [3903] = { - [sym_type_constraints] = STATE(4068), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6914), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - }, - [3904] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3905] = { - [sym_type_constraints] = STATE(3114), - [sym_enum_class_body] = STATE(3132), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_fun] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3212), - [anon_sym_super] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3212), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_when] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3216), - [anon_sym_continue_AT] = ACTIONS(3216), - [anon_sym_break_AT] = ACTIONS(3216), - [sym_real_literal] = ACTIONS(3216), - [sym_integer_literal] = ACTIONS(3212), - [sym_hex_literal] = ACTIONS(3216), - [sym_bin_literal] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3216), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3216), - }, - [3906] = { - [sym_class_body] = STATE(3216), - [sym_type_constraints] = STATE(3111), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6922), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3907] = { - [sym_function_body] = STATE(3364), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(6924), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_object] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_super] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_throw] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4326), - [anon_sym_continue_AT] = ACTIONS(4326), - [anon_sym_break_AT] = ACTIONS(4326), - [sym_real_literal] = ACTIONS(4326), - [sym_integer_literal] = ACTIONS(4324), - [sym_hex_literal] = ACTIONS(4326), - [sym_bin_literal] = ACTIONS(4326), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4326), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4326), - }, - [3908] = { - [sym_type_constraints] = STATE(3092), - [sym_enum_class_body] = STATE(3216), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(6926), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4184), - [anon_sym_fun] = ACTIONS(4184), - [anon_sym_DOT] = 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_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_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(4186), - [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_data] = ACTIONS(4184), - [anon_sym_inner] = 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), - [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), - }, - [3909] = { - [sym_class_body] = STATE(3322), - [sym_type_constraints] = STATE(3078), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3558), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [3910] = { - [sym__alpha_identifier] = ACTIONS(4394), - [anon_sym_AT] = ACTIONS(4396), - [anon_sym_COLON] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4396), - [anon_sym_constructor] = ACTIONS(4394), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_object] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_get] = ACTIONS(4394), - [anon_sym_set] = ACTIONS(4394), - [anon_sym_this] = ACTIONS(4394), - [anon_sym_super] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4396), - [sym_label] = ACTIONS(4394), - [anon_sym_in] = ACTIONS(4394), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_else] = ACTIONS(4394), - [anon_sym_when] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_BANGin] = ACTIONS(4396), - [anon_sym_is] = ACTIONS(4394), - [anon_sym_BANGis] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4394), - [anon_sym_suspend] = ACTIONS(4394), - [anon_sym_sealed] = ACTIONS(4394), - [anon_sym_annotation] = ACTIONS(4394), - [anon_sym_data] = ACTIONS(4394), - [anon_sym_inner] = ACTIONS(4394), - [anon_sym_override] = ACTIONS(4394), - [anon_sym_lateinit] = ACTIONS(4394), - [anon_sym_public] = ACTIONS(4394), - [anon_sym_private] = ACTIONS(4394), - [anon_sym_internal] = ACTIONS(4394), - [anon_sym_protected] = ACTIONS(4394), - [anon_sym_tailrec] = ACTIONS(4394), - [anon_sym_operator] = ACTIONS(4394), - [anon_sym_infix] = ACTIONS(4394), - [anon_sym_inline] = ACTIONS(4394), - [anon_sym_external] = ACTIONS(4394), - [sym_property_modifier] = ACTIONS(4394), - [anon_sym_abstract] = ACTIONS(4394), - [anon_sym_final] = ACTIONS(4394), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_vararg] = ACTIONS(4394), - [anon_sym_noinline] = ACTIONS(4394), - [anon_sym_crossinline] = ACTIONS(4394), - [anon_sym_expect] = ACTIONS(4394), - [anon_sym_actual] = ACTIONS(4394), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4396), - [anon_sym_continue_AT] = ACTIONS(4396), - [anon_sym_break_AT] = ACTIONS(4396), - [sym_real_literal] = ACTIONS(4396), - [sym_integer_literal] = ACTIONS(4394), - [sym_hex_literal] = ACTIONS(4396), - [sym_bin_literal] = ACTIONS(4396), - [anon_sym_true] = ACTIONS(4394), - [anon_sym_false] = ACTIONS(4394), - [anon_sym_SQUOTE] = ACTIONS(4396), - [sym__backtick_identifier] = ACTIONS(4396), - [sym__automatic_semicolon] = ACTIONS(4396), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4396), - }, - [3911] = { - [sym_type_constraints] = STATE(3054), - [sym_enum_class_body] = STATE(3322), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_fun] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_super] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [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(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [anon_sym_data] = ACTIONS(3186), - [anon_sym_inner] = ACTIONS(3186), - [anon_sym_expect] = ACTIONS(3186), - [anon_sym_actual] = ACTIONS(3186), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3190), - [anon_sym_continue_AT] = ACTIONS(3190), - [anon_sym_break_AT] = ACTIONS(3190), - [sym_real_literal] = ACTIONS(3190), - [sym_integer_literal] = ACTIONS(3186), - [sym_hex_literal] = ACTIONS(3190), - [sym_bin_literal] = ACTIONS(3190), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym__backtick_identifier] = ACTIONS(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3190), - }, - [3912] = { - [sym_class_body] = STATE(3472), - [sym_type_constraints] = STATE(3016), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_fun] = ACTIONS(3196), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3196), - [anon_sym_super] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3196), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_when] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3200), - [anon_sym_continue_AT] = ACTIONS(3200), - [anon_sym_break_AT] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3200), - [sym_integer_literal] = ACTIONS(3196), - [sym_hex_literal] = ACTIONS(3200), - [sym_bin_literal] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3196), - [anon_sym_false] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3200), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3200), - }, - [3913] = { - [sym_value_arguments] = STATE(4001), - [sym__alpha_identifier] = ACTIONS(6928), - [anon_sym_AT] = ACTIONS(6930), - [anon_sym_LBRACK] = ACTIONS(6930), - [anon_sym_typealias] = ACTIONS(6928), - [anon_sym_class] = ACTIONS(6928), - [anon_sym_interface] = ACTIONS(6928), - [anon_sym_enum] = ACTIONS(6928), - [anon_sym_LBRACE] = ACTIONS(6930), - [anon_sym_LPAREN] = ACTIONS(6932), - [anon_sym_val] = ACTIONS(6928), - [anon_sym_var] = ACTIONS(6928), - [anon_sym_object] = ACTIONS(6928), - [anon_sym_fun] = ACTIONS(6928), - [anon_sym_get] = ACTIONS(6928), - [anon_sym_set] = ACTIONS(6928), - [anon_sym_this] = ACTIONS(6928), - [anon_sym_super] = ACTIONS(6928), - [anon_sym_STAR] = ACTIONS(6930), - [sym_label] = ACTIONS(6928), - [anon_sym_for] = ACTIONS(6928), - [anon_sym_while] = ACTIONS(6928), - [anon_sym_do] = ACTIONS(6928), - [anon_sym_null] = ACTIONS(6928), - [anon_sym_if] = ACTIONS(6928), - [anon_sym_when] = ACTIONS(6928), - [anon_sym_try] = ACTIONS(6928), - [anon_sym_throw] = ACTIONS(6928), - [anon_sym_return] = ACTIONS(6928), - [anon_sym_continue] = ACTIONS(6928), - [anon_sym_break] = ACTIONS(6928), - [anon_sym_COLON_COLON] = ACTIONS(6930), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_PLUS_PLUS] = ACTIONS(6930), - [anon_sym_DASH_DASH] = ACTIONS(6930), - [anon_sym_BANG] = ACTIONS(6930), - [anon_sym_suspend] = ACTIONS(6928), - [anon_sym_sealed] = ACTIONS(6928), - [anon_sym_annotation] = ACTIONS(6928), - [anon_sym_data] = ACTIONS(6928), - [anon_sym_inner] = ACTIONS(6928), - [anon_sym_override] = ACTIONS(6928), - [anon_sym_lateinit] = ACTIONS(6928), - [anon_sym_public] = ACTIONS(6928), - [anon_sym_private] = ACTIONS(6928), - [anon_sym_internal] = ACTIONS(6928), - [anon_sym_protected] = ACTIONS(6928), - [anon_sym_tailrec] = ACTIONS(6928), - [anon_sym_operator] = ACTIONS(6928), - [anon_sym_infix] = ACTIONS(6928), - [anon_sym_inline] = ACTIONS(6928), - [anon_sym_external] = ACTIONS(6928), - [sym_property_modifier] = ACTIONS(6928), - [anon_sym_abstract] = ACTIONS(6928), - [anon_sym_final] = ACTIONS(6928), - [anon_sym_open] = ACTIONS(6928), - [anon_sym_vararg] = ACTIONS(6928), - [anon_sym_noinline] = ACTIONS(6928), - [anon_sym_crossinline] = ACTIONS(6928), - [anon_sym_expect] = ACTIONS(6928), - [anon_sym_actual] = ACTIONS(6928), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6930), - [anon_sym_continue_AT] = ACTIONS(6930), - [anon_sym_break_AT] = ACTIONS(6930), - [sym_real_literal] = ACTIONS(6930), - [sym_integer_literal] = ACTIONS(6928), - [sym_hex_literal] = ACTIONS(6930), - [sym_bin_literal] = ACTIONS(6930), - [anon_sym_true] = ACTIONS(6928), - [anon_sym_false] = ACTIONS(6928), - [anon_sym_SQUOTE] = ACTIONS(6930), - [sym__backtick_identifier] = ACTIONS(6930), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6930), - }, - [3914] = { - [sym_type_constraints] = STATE(4064), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - }, - [3915] = { - [sym_class_body] = STATE(3121), - [sym_type_constraints] = STATE(3047), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(3118), - [anon_sym_object] = ACTIONS(4301), - [anon_sym_fun] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_this] = ACTIONS(4301), - [anon_sym_super] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_try] = ACTIONS(4301), - [anon_sym_throw] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4303), - [anon_sym_continue_AT] = ACTIONS(4303), - [anon_sym_break_AT] = ACTIONS(4303), - [sym_real_literal] = ACTIONS(4303), - [sym_integer_literal] = ACTIONS(4301), - [sym_hex_literal] = ACTIONS(4303), - [sym_bin_literal] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4303), - }, - [3916] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3917] = { - [ts_builtin_sym_end] = ACTIONS(1417), - [sym__alpha_identifier] = ACTIONS(6959), - [anon_sym_AT] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_typealias] = ACTIONS(6959), - [anon_sym_class] = ACTIONS(6959), - [anon_sym_interface] = ACTIONS(6959), - [anon_sym_enum] = ACTIONS(6959), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_val] = ACTIONS(6959), - [anon_sym_var] = ACTIONS(6959), - [anon_sym_object] = ACTIONS(6959), - [anon_sym_fun] = ACTIONS(6959), - [anon_sym_get] = ACTIONS(6959), - [anon_sym_set] = ACTIONS(6959), - [anon_sym_this] = ACTIONS(6959), - [anon_sym_super] = ACTIONS(6959), - [anon_sym_STAR] = ACTIONS(1417), - [sym_label] = ACTIONS(6959), - [anon_sym_for] = ACTIONS(6959), - [anon_sym_while] = ACTIONS(6959), - [anon_sym_do] = ACTIONS(6959), - [anon_sym_null] = ACTIONS(6959), - [anon_sym_if] = ACTIONS(6959), - [anon_sym_when] = ACTIONS(6959), - [anon_sym_try] = ACTIONS(6959), - [anon_sym_throw] = ACTIONS(6959), - [anon_sym_return] = ACTIONS(6959), - [anon_sym_continue] = ACTIONS(6959), - [anon_sym_break] = ACTIONS(6959), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(6959), - [anon_sym_DASH] = ACTIONS(6959), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_suspend] = ACTIONS(6959), - [anon_sym_sealed] = ACTIONS(6959), - [anon_sym_annotation] = ACTIONS(6959), - [anon_sym_data] = ACTIONS(6959), - [anon_sym_inner] = ACTIONS(6959), - [anon_sym_override] = ACTIONS(6959), - [anon_sym_lateinit] = ACTIONS(6959), - [anon_sym_public] = ACTIONS(6959), - [anon_sym_private] = ACTIONS(6959), - [anon_sym_internal] = ACTIONS(6959), - [anon_sym_protected] = ACTIONS(6959), - [anon_sym_tailrec] = ACTIONS(6959), - [anon_sym_operator] = ACTIONS(6959), - [anon_sym_infix] = ACTIONS(6959), - [anon_sym_inline] = ACTIONS(6959), - [anon_sym_external] = ACTIONS(6959), - [sym_property_modifier] = ACTIONS(6959), - [anon_sym_abstract] = ACTIONS(6959), - [anon_sym_final] = ACTIONS(6959), - [anon_sym_open] = ACTIONS(6959), - [anon_sym_vararg] = ACTIONS(6959), - [anon_sym_noinline] = ACTIONS(6959), - [anon_sym_crossinline] = ACTIONS(6959), - [anon_sym_expect] = ACTIONS(6959), - [anon_sym_actual] = ACTIONS(6959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1417), - [anon_sym_continue_AT] = ACTIONS(1417), - [anon_sym_break_AT] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(6959), - [sym_hex_literal] = ACTIONS(1417), - [sym_bin_literal] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(6959), - [anon_sym_false] = ACTIONS(6959), - [anon_sym_SQUOTE] = ACTIONS(1417), - [sym__backtick_identifier] = ACTIONS(1417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1417), - }, - [3918] = { - [sym__alpha_identifier] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4272), - [anon_sym_typealias] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_interface] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym_val] = ACTIONS(4270), - [anon_sym_var] = ACTIONS(4270), - [anon_sym_object] = ACTIONS(4270), - [anon_sym_fun] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4270), - [anon_sym_set] = ACTIONS(4270), - [anon_sym_this] = ACTIONS(4270), - [anon_sym_super] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [sym_label] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_when] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_suspend] = ACTIONS(4270), - [anon_sym_sealed] = ACTIONS(4270), - [anon_sym_annotation] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4270), - [anon_sym_inner] = ACTIONS(4270), - [anon_sym_override] = ACTIONS(4270), - [anon_sym_lateinit] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_internal] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_tailrec] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_infix] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym_external] = ACTIONS(4270), - [sym_property_modifier] = ACTIONS(4270), - [anon_sym_abstract] = ACTIONS(4270), - [anon_sym_final] = ACTIONS(4270), - [anon_sym_open] = ACTIONS(4270), - [anon_sym_vararg] = ACTIONS(4270), - [anon_sym_noinline] = ACTIONS(4270), - [anon_sym_crossinline] = ACTIONS(4270), - [anon_sym_expect] = ACTIONS(4270), - [anon_sym_actual] = ACTIONS(4270), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4272), - [anon_sym_continue_AT] = ACTIONS(4272), - [anon_sym_break_AT] = ACTIONS(4272), - [sym_real_literal] = ACTIONS(4272), - [sym_integer_literal] = ACTIONS(4270), - [sym_hex_literal] = ACTIONS(4272), - [sym_bin_literal] = ACTIONS(4272), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [anon_sym_SQUOTE] = ACTIONS(4272), - [sym__backtick_identifier] = ACTIONS(4272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4272), - }, - [3919] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3920] = { - [sym_value_arguments] = STATE(3391), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6961), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), - }, - [3921] = { - [sym_type_constraints] = STATE(4118), - [sym_function_body] = STATE(3281), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6963), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_while] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - }, - [3922] = { - [sym_value_arguments] = STATE(3187), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_DASH_GT] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - }, - [3923] = { - [sym__alpha_identifier] = ACTIONS(4513), - [anon_sym_AT] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_typealias] = ACTIONS(4513), - [anon_sym_class] = ACTIONS(4513), - [anon_sym_interface] = ACTIONS(4513), - [anon_sym_enum] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_val] = ACTIONS(4513), - [anon_sym_var] = ACTIONS(4513), - [anon_sym_object] = ACTIONS(4513), - [anon_sym_fun] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_get] = ACTIONS(4513), - [anon_sym_set] = ACTIONS(4513), - [anon_sym_this] = ACTIONS(4513), - [anon_sym_super] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4515), - [sym_label] = ACTIONS(4513), - [anon_sym_for] = ACTIONS(4513), - [anon_sym_while] = ACTIONS(4513), - [anon_sym_do] = ACTIONS(4513), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_if] = ACTIONS(4513), - [anon_sym_when] = ACTIONS(4513), - [anon_sym_try] = ACTIONS(4513), - [anon_sym_throw] = ACTIONS(4513), - [anon_sym_return] = ACTIONS(4513), - [anon_sym_continue] = ACTIONS(4513), - [anon_sym_break] = ACTIONS(4513), - [anon_sym_COLON_COLON] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_suspend] = ACTIONS(4513), - [anon_sym_sealed] = ACTIONS(4513), - [anon_sym_annotation] = ACTIONS(4513), - [anon_sym_data] = ACTIONS(4513), - [anon_sym_inner] = ACTIONS(4513), - [anon_sym_override] = ACTIONS(4513), - [anon_sym_lateinit] = ACTIONS(4513), - [anon_sym_public] = ACTIONS(4513), - [anon_sym_private] = ACTIONS(4513), - [anon_sym_internal] = ACTIONS(4513), - [anon_sym_protected] = ACTIONS(4513), - [anon_sym_tailrec] = ACTIONS(4513), - [anon_sym_operator] = ACTIONS(4513), - [anon_sym_infix] = ACTIONS(4513), - [anon_sym_inline] = ACTIONS(4513), - [anon_sym_external] = ACTIONS(4513), - [sym_property_modifier] = ACTIONS(4513), - [anon_sym_abstract] = ACTIONS(4513), - [anon_sym_final] = ACTIONS(4513), - [anon_sym_open] = ACTIONS(4513), - [anon_sym_vararg] = ACTIONS(4513), - [anon_sym_noinline] = ACTIONS(4513), - [anon_sym_crossinline] = ACTIONS(4513), - [anon_sym_expect] = ACTIONS(4513), - [anon_sym_actual] = ACTIONS(4513), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4515), - [anon_sym_continue_AT] = ACTIONS(4515), - [anon_sym_break_AT] = ACTIONS(4515), - [sym_real_literal] = ACTIONS(4515), - [sym_integer_literal] = ACTIONS(4513), - [sym_hex_literal] = ACTIONS(4515), - [sym_bin_literal] = ACTIONS(4515), - [anon_sym_true] = ACTIONS(4513), - [anon_sym_false] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4515), - [sym__backtick_identifier] = ACTIONS(4515), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4515), - }, - [3924] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6969), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - }, - [3925] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6971), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - }, - [3926] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(6973), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_while] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), - }, - [3927] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_while] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - }, - [3928] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5105), - [anon_sym_RPAREN] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [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(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4141), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_PLUS_EQ] = ACTIONS(4104), + [anon_sym_DASH_EQ] = ACTIONS(4104), + [anon_sym_STAR_EQ] = ACTIONS(4104), + [anon_sym_SLASH_EQ] = ACTIONS(4104), + [anon_sym_PERCENT_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [3929] = { - [sym_function_body] = STATE(3205), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(6975), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_object] = ACTIONS(4196), - [anon_sym_fun] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_this] = ACTIONS(4196), - [anon_sym_super] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_when] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4198), - [anon_sym_continue_AT] = ACTIONS(4198), - [anon_sym_break_AT] = ACTIONS(4198), - [sym_real_literal] = ACTIONS(4198), - [sym_integer_literal] = ACTIONS(4196), - [sym_hex_literal] = ACTIONS(4198), - [sym_bin_literal] = ACTIONS(4198), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4198), - }, - [3930] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(6977), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [3931] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(6979), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_while] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [3900] = { + [sym__alpha_identifier] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_where] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_QMARK_COLON] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_PLUS_EQ] = ACTIONS(1754), + [anon_sym_DASH_EQ] = ACTIONS(1754), + [anon_sym_STAR_EQ] = ACTIONS(1754), + [anon_sym_SLASH_EQ] = ACTIONS(1754), + [anon_sym_PERCENT_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_BANGin] = ACTIONS(1754), + [anon_sym_is] = ACTIONS(1752), + [anon_sym_BANGis] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1754), + [anon_sym_suspend] = ACTIONS(1752), + [anon_sym_sealed] = ACTIONS(1752), + [anon_sym_annotation] = ACTIONS(1752), + [anon_sym_data] = ACTIONS(1752), + [anon_sym_inner] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_lateinit] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_internal] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_tailrec] = ACTIONS(1752), + [anon_sym_operator] = ACTIONS(1752), + [anon_sym_infix] = ACTIONS(1752), + [anon_sym_inline] = ACTIONS(1752), + [anon_sym_external] = ACTIONS(1752), + [sym_property_modifier] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_final] = ACTIONS(1752), + [anon_sym_open] = ACTIONS(1752), + [anon_sym_vararg] = ACTIONS(1752), + [anon_sym_noinline] = ACTIONS(1752), + [anon_sym_crossinline] = ACTIONS(1752), + [anon_sym_expect] = ACTIONS(1752), + [anon_sym_actual] = ACTIONS(1752), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1754), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym_safe_nav] = ACTIONS(1754), [sym_multiline_comment] = ACTIONS(3), }, - [3932] = { - [sym__alpha_identifier] = ACTIONS(4458), - [anon_sym_AT] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_constructor] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_object] = ACTIONS(4458), - [anon_sym_fun] = ACTIONS(4458), - [anon_sym_get] = ACTIONS(4458), - [anon_sym_set] = ACTIONS(4458), - [anon_sym_this] = ACTIONS(4458), - [anon_sym_super] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [sym_label] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_null] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_else] = ACTIONS(4458), - [anon_sym_when] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_BANGin] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4458), - [anon_sym_BANGis] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_suspend] = ACTIONS(4458), - [anon_sym_sealed] = ACTIONS(4458), - [anon_sym_annotation] = ACTIONS(4458), - [anon_sym_data] = ACTIONS(4458), - [anon_sym_inner] = ACTIONS(4458), - [anon_sym_override] = ACTIONS(4458), - [anon_sym_lateinit] = ACTIONS(4458), - [anon_sym_public] = ACTIONS(4458), - [anon_sym_private] = ACTIONS(4458), - [anon_sym_internal] = ACTIONS(4458), - [anon_sym_protected] = ACTIONS(4458), - [anon_sym_tailrec] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_infix] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym_external] = ACTIONS(4458), - [sym_property_modifier] = ACTIONS(4458), - [anon_sym_abstract] = ACTIONS(4458), - [anon_sym_final] = ACTIONS(4458), - [anon_sym_open] = ACTIONS(4458), - [anon_sym_vararg] = ACTIONS(4458), - [anon_sym_noinline] = ACTIONS(4458), - [anon_sym_crossinline] = ACTIONS(4458), - [anon_sym_expect] = ACTIONS(4458), - [anon_sym_actual] = ACTIONS(4458), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4460), - [anon_sym_continue_AT] = ACTIONS(4460), - [anon_sym_break_AT] = ACTIONS(4460), - [sym_real_literal] = ACTIONS(4460), - [sym_integer_literal] = ACTIONS(4458), - [sym_hex_literal] = ACTIONS(4460), - [sym_bin_literal] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4458), - [anon_sym_false] = ACTIONS(4458), - [anon_sym_SQUOTE] = ACTIONS(4460), - [sym__backtick_identifier] = ACTIONS(4460), - [sym__automatic_semicolon] = ACTIONS(4460), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4460), + [3901] = { + [sym_function_body] = STATE(3450), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), }, - [3933] = { - [sym_class_body] = STATE(3272), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(6981), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_RBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_RPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [anon_sym_DASH_GT] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_while] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [3902] = { + [sym__alpha_identifier] = ACTIONS(4921), + [anon_sym_AT] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_as] = ACTIONS(4921), + [anon_sym_EQ] = ACTIONS(4921), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_where] = ACTIONS(4921), + [anon_sym_DOT] = ACTIONS(4921), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_get] = ACTIONS(4921), + [anon_sym_set] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [sym_label] = ACTIONS(4923), + [anon_sym_in] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4923), + [anon_sym_QMARK_COLON] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [anon_sym_else] = ACTIONS(4921), + [anon_sym_COLON_COLON] = ACTIONS(4923), + [anon_sym_PLUS_EQ] = ACTIONS(4923), + [anon_sym_DASH_EQ] = ACTIONS(4923), + [anon_sym_STAR_EQ] = ACTIONS(4923), + [anon_sym_SLASH_EQ] = ACTIONS(4923), + [anon_sym_PERCENT_EQ] = ACTIONS(4923), + [anon_sym_BANG_EQ] = ACTIONS(4921), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4923), + [anon_sym_EQ_EQ] = ACTIONS(4921), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4923), + [anon_sym_LT_EQ] = ACTIONS(4923), + [anon_sym_GT_EQ] = ACTIONS(4923), + [anon_sym_BANGin] = ACTIONS(4923), + [anon_sym_is] = ACTIONS(4921), + [anon_sym_BANGis] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_as_QMARK] = ACTIONS(4923), + [anon_sym_PLUS_PLUS] = ACTIONS(4923), + [anon_sym_DASH_DASH] = ACTIONS(4923), + [anon_sym_BANG_BANG] = ACTIONS(4923), + [anon_sym_suspend] = ACTIONS(4921), + [anon_sym_sealed] = ACTIONS(4921), + [anon_sym_annotation] = ACTIONS(4921), + [anon_sym_data] = ACTIONS(4921), + [anon_sym_inner] = ACTIONS(4921), + [anon_sym_override] = ACTIONS(4921), + [anon_sym_lateinit] = ACTIONS(4921), + [anon_sym_public] = ACTIONS(4921), + [anon_sym_private] = ACTIONS(4921), + [anon_sym_internal] = ACTIONS(4921), + [anon_sym_protected] = ACTIONS(4921), + [anon_sym_tailrec] = ACTIONS(4921), + [anon_sym_operator] = ACTIONS(4921), + [anon_sym_infix] = ACTIONS(4921), + [anon_sym_inline] = ACTIONS(4921), + [anon_sym_external] = ACTIONS(4921), + [sym_property_modifier] = ACTIONS(4921), + [anon_sym_abstract] = ACTIONS(4921), + [anon_sym_final] = ACTIONS(4921), + [anon_sym_open] = ACTIONS(4921), + [anon_sym_vararg] = ACTIONS(4921), + [anon_sym_noinline] = ACTIONS(4921), + [anon_sym_crossinline] = ACTIONS(4921), + [anon_sym_expect] = ACTIONS(4921), + [anon_sym_actual] = ACTIONS(4921), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4923), + [sym__automatic_semicolon] = ACTIONS(4923), + [sym_safe_nav] = ACTIONS(4923), [sym_multiline_comment] = ACTIONS(3), }, - [3934] = { - [sym_type_constraints] = STATE(4063), - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(6983), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [3903] = { + [sym_type_constraints] = STATE(4065), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6929), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [3935] = { - [sym__alpha_identifier] = ACTIONS(4489), - [anon_sym_AT] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_typealias] = ACTIONS(4489), - [anon_sym_class] = ACTIONS(4489), - [anon_sym_interface] = ACTIONS(4489), - [anon_sym_enum] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_val] = ACTIONS(4489), - [anon_sym_var] = ACTIONS(4489), - [anon_sym_object] = ACTIONS(4489), - [anon_sym_fun] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(4489), - [anon_sym_set] = ACTIONS(4489), - [anon_sym_this] = ACTIONS(4489), - [anon_sym_super] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4491), - [sym_label] = ACTIONS(4489), - [anon_sym_for] = ACTIONS(4489), - [anon_sym_while] = ACTIONS(4489), - [anon_sym_do] = ACTIONS(4489), - [anon_sym_null] = ACTIONS(4489), - [anon_sym_if] = 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] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4491), - [anon_sym_DASH_DASH] = ACTIONS(4491), - [anon_sym_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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4491), + [3904] = { + [sym__alpha_identifier] = ACTIONS(4432), + [anon_sym_AT] = ACTIONS(4434), + [anon_sym_COLON] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4434), + [anon_sym_constructor] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym_where] = ACTIONS(4432), + [anon_sym_object] = ACTIONS(4432), + [anon_sym_fun] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4432), + [anon_sym_set] = ACTIONS(4432), + [anon_sym_this] = ACTIONS(4432), + [anon_sym_super] = ACTIONS(4432), + [anon_sym_STAR] = ACTIONS(4434), + [sym_label] = ACTIONS(4432), + [anon_sym_in] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4432), + [anon_sym_if] = ACTIONS(4432), + [anon_sym_else] = ACTIONS(4432), + [anon_sym_when] = ACTIONS(4432), + [anon_sym_try] = ACTIONS(4432), + [anon_sym_throw] = ACTIONS(4432), + [anon_sym_return] = ACTIONS(4432), + [anon_sym_continue] = ACTIONS(4432), + [anon_sym_break] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_BANGin] = ACTIONS(4434), + [anon_sym_is] = ACTIONS(4432), + [anon_sym_BANGis] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(4432), + [anon_sym_PLUS_PLUS] = ACTIONS(4434), + [anon_sym_DASH_DASH] = ACTIONS(4434), + [anon_sym_BANG] = ACTIONS(4432), + [anon_sym_suspend] = ACTIONS(4432), + [anon_sym_sealed] = ACTIONS(4432), + [anon_sym_annotation] = ACTIONS(4432), + [anon_sym_data] = ACTIONS(4432), + [anon_sym_inner] = ACTIONS(4432), + [anon_sym_override] = ACTIONS(4432), + [anon_sym_lateinit] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_internal] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_tailrec] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_infix] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym_external] = ACTIONS(4432), + [sym_property_modifier] = ACTIONS(4432), + [anon_sym_abstract] = ACTIONS(4432), + [anon_sym_final] = ACTIONS(4432), + [anon_sym_open] = ACTIONS(4432), + [anon_sym_vararg] = ACTIONS(4432), + [anon_sym_noinline] = ACTIONS(4432), + [anon_sym_crossinline] = ACTIONS(4432), + [anon_sym_expect] = ACTIONS(4432), + [anon_sym_actual] = ACTIONS(4432), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4434), + [anon_sym_continue_AT] = ACTIONS(4434), + [anon_sym_break_AT] = ACTIONS(4434), + [sym_real_literal] = ACTIONS(4434), + [sym_integer_literal] = ACTIONS(4432), + [sym_hex_literal] = ACTIONS(4434), + [sym_bin_literal] = ACTIONS(4434), + [anon_sym_true] = ACTIONS(4432), + [anon_sym_false] = ACTIONS(4432), + [anon_sym_SQUOTE] = ACTIONS(4434), + [sym__backtick_identifier] = ACTIONS(4434), + [sym__automatic_semicolon] = ACTIONS(4434), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4434), }, - [3936] = { - [sym_type_constraints] = STATE(4097), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(6985), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [3905] = { + [sym__alpha_identifier] = ACTIONS(4464), + [anon_sym_AT] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_typealias] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_interface] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_val] = ACTIONS(4464), + [anon_sym_var] = ACTIONS(4464), + [anon_sym_object] = ACTIONS(4464), + [anon_sym_fun] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4464), + [anon_sym_set] = ACTIONS(4464), + [anon_sym_this] = ACTIONS(4464), + [anon_sym_super] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4466), + [sym_label] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_when] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_suspend] = ACTIONS(4464), + [anon_sym_sealed] = ACTIONS(4464), + [anon_sym_annotation] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4464), + [anon_sym_inner] = ACTIONS(4464), + [anon_sym_override] = ACTIONS(4464), + [anon_sym_lateinit] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_internal] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_tailrec] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_infix] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym_external] = ACTIONS(4464), + [sym_property_modifier] = ACTIONS(4464), + [anon_sym_abstract] = ACTIONS(4464), + [anon_sym_final] = ACTIONS(4464), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_vararg] = ACTIONS(4464), + [anon_sym_noinline] = ACTIONS(4464), + [anon_sym_crossinline] = ACTIONS(4464), + [anon_sym_expect] = ACTIONS(4464), + [anon_sym_actual] = ACTIONS(4464), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4466), + [anon_sym_continue_AT] = ACTIONS(4466), + [anon_sym_break_AT] = ACTIONS(4466), + [sym_real_literal] = ACTIONS(4466), + [sym_integer_literal] = ACTIONS(4464), + [sym_hex_literal] = ACTIONS(4466), + [sym_bin_literal] = ACTIONS(4466), + [anon_sym_true] = ACTIONS(4464), + [anon_sym_false] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4466), + [sym__backtick_identifier] = ACTIONS(4466), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4466), + }, + [3906] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(6933), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_while] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), [sym_multiline_comment] = ACTIONS(3), }, - [3937] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3907] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(2984), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(2986), + [anon_sym_DASH_EQ] = ACTIONS(2986), + [anon_sym_STAR_EQ] = ACTIONS(2986), + [anon_sym_SLASH_EQ] = ACTIONS(2986), + [anon_sym_PERCENT_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3938] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3908] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6959), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + }, + [3909] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5849), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_while] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + }, + [3910] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6961), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + }, + [3911] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3039), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3939] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3912] = { + [sym_type_constraints] = STATE(4094), + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6963), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + }, + [3913] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3059), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3940] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3914] = { + [sym_type_constraints] = STATE(4116), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [3915] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3047), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3941] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(6716), + [3916] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_RPAREN] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), [sym_multiline_comment] = ACTIONS(3), }, - [3942] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3917] = { + [ts_builtin_sym_end] = ACTIONS(1423), + [sym__alpha_identifier] = ACTIONS(6969), + [anon_sym_AT] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_typealias] = ACTIONS(6969), + [anon_sym_class] = ACTIONS(6969), + [anon_sym_interface] = ACTIONS(6969), + [anon_sym_enum] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_val] = ACTIONS(6969), + [anon_sym_var] = ACTIONS(6969), + [anon_sym_object] = ACTIONS(6969), + [anon_sym_fun] = ACTIONS(6969), + [anon_sym_get] = ACTIONS(6969), + [anon_sym_set] = ACTIONS(6969), + [anon_sym_this] = ACTIONS(6969), + [anon_sym_super] = ACTIONS(6969), + [anon_sym_STAR] = ACTIONS(1423), + [sym_label] = ACTIONS(6969), + [anon_sym_for] = ACTIONS(6969), + [anon_sym_while] = ACTIONS(6969), + [anon_sym_do] = ACTIONS(6969), + [anon_sym_null] = ACTIONS(6969), + [anon_sym_if] = ACTIONS(6969), + [anon_sym_when] = ACTIONS(6969), + [anon_sym_try] = ACTIONS(6969), + [anon_sym_throw] = ACTIONS(6969), + [anon_sym_return] = ACTIONS(6969), + [anon_sym_continue] = ACTIONS(6969), + [anon_sym_break] = ACTIONS(6969), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_suspend] = ACTIONS(6969), + [anon_sym_sealed] = ACTIONS(6969), + [anon_sym_annotation] = ACTIONS(6969), + [anon_sym_data] = ACTIONS(6969), + [anon_sym_inner] = ACTIONS(6969), + [anon_sym_override] = ACTIONS(6969), + [anon_sym_lateinit] = ACTIONS(6969), + [anon_sym_public] = ACTIONS(6969), + [anon_sym_private] = ACTIONS(6969), + [anon_sym_internal] = ACTIONS(6969), + [anon_sym_protected] = ACTIONS(6969), + [anon_sym_tailrec] = ACTIONS(6969), + [anon_sym_operator] = ACTIONS(6969), + [anon_sym_infix] = ACTIONS(6969), + [anon_sym_inline] = ACTIONS(6969), + [anon_sym_external] = ACTIONS(6969), + [sym_property_modifier] = ACTIONS(6969), + [anon_sym_abstract] = ACTIONS(6969), + [anon_sym_final] = ACTIONS(6969), + [anon_sym_open] = ACTIONS(6969), + [anon_sym_vararg] = ACTIONS(6969), + [anon_sym_noinline] = ACTIONS(6969), + [anon_sym_crossinline] = ACTIONS(6969), + [anon_sym_expect] = ACTIONS(6969), + [anon_sym_actual] = ACTIONS(6969), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1423), + [anon_sym_continue_AT] = ACTIONS(1423), + [anon_sym_break_AT] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(6969), + [sym_hex_literal] = ACTIONS(1423), + [sym_bin_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(6969), + [anon_sym_false] = ACTIONS(6969), + [anon_sym_SQUOTE] = ACTIONS(1423), + [sym__backtick_identifier] = ACTIONS(1423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1423), + }, + [3918] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3943] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3022), + [3919] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3024), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3944] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3011), + [3920] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3017), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3017), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3945] = { - [sym_type_constraints] = STATE(4101), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(6987), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3921] = { + [sym_type_constraints] = STATE(4051), + [sym_function_body] = STATE(3806), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(6971), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), [sym_multiline_comment] = ACTIONS(3), }, - [3946] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(2992), + [3922] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3006), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3947] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3923] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(2988), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(2990), + [anon_sym_DASH_EQ] = ACTIONS(2990), + [anon_sym_STAR_EQ] = ACTIONS(2990), + [anon_sym_SLASH_EQ] = ACTIONS(2990), + [anon_sym_PERCENT_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3948] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5824), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_while] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - }, - [3949] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5828), - [anon_sym_RPAREN] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [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(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4141), - [sym_multiline_comment] = ACTIONS(3), - }, - [3950] = { - [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_RPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_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(6989), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), - }, - [3951] = { - [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_RPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_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(6989), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3952] = { - [sym__alpha_identifier] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_typealias] = ACTIONS(4469), - [anon_sym_class] = ACTIONS(4469), - [anon_sym_interface] = ACTIONS(4469), - [anon_sym_enum] = ACTIONS(4469), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_val] = ACTIONS(4469), - [anon_sym_var] = ACTIONS(4469), - [anon_sym_object] = ACTIONS(4469), - [anon_sym_fun] = ACTIONS(4469), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_get] = ACTIONS(4469), - [anon_sym_set] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_super] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4471), - [sym_label] = ACTIONS(4469), - [anon_sym_for] = ACTIONS(4469), - [anon_sym_while] = ACTIONS(4469), - [anon_sym_do] = ACTIONS(4469), - [anon_sym_null] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_when] = ACTIONS(4469), - [anon_sym_try] = ACTIONS(4469), - [anon_sym_throw] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_COLON_COLON] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_PLUS_PLUS] = ACTIONS(4471), - [anon_sym_DASH_DASH] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_suspend] = ACTIONS(4469), - [anon_sym_sealed] = ACTIONS(4469), - [anon_sym_annotation] = ACTIONS(4469), - [anon_sym_data] = ACTIONS(4469), - [anon_sym_inner] = ACTIONS(4469), - [anon_sym_override] = ACTIONS(4469), - [anon_sym_lateinit] = ACTIONS(4469), - [anon_sym_public] = ACTIONS(4469), - [anon_sym_private] = ACTIONS(4469), - [anon_sym_internal] = ACTIONS(4469), - [anon_sym_protected] = ACTIONS(4469), - [anon_sym_tailrec] = ACTIONS(4469), - [anon_sym_operator] = ACTIONS(4469), - [anon_sym_infix] = ACTIONS(4469), - [anon_sym_inline] = ACTIONS(4469), - [anon_sym_external] = ACTIONS(4469), - [sym_property_modifier] = ACTIONS(4469), - [anon_sym_abstract] = ACTIONS(4469), - [anon_sym_final] = ACTIONS(4469), - [anon_sym_open] = ACTIONS(4469), - [anon_sym_vararg] = ACTIONS(4469), - [anon_sym_noinline] = ACTIONS(4469), - [anon_sym_crossinline] = ACTIONS(4469), - [anon_sym_expect] = ACTIONS(4469), - [anon_sym_actual] = ACTIONS(4469), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4471), - [anon_sym_continue_AT] = ACTIONS(4471), - [anon_sym_break_AT] = ACTIONS(4471), - [sym_real_literal] = ACTIONS(4471), - [sym_integer_literal] = ACTIONS(4469), - [sym_hex_literal] = ACTIONS(4471), - [sym_bin_literal] = ACTIONS(4471), - [anon_sym_true] = ACTIONS(4469), - [anon_sym_false] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4471), - [sym__backtick_identifier] = ACTIONS(4471), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4471), - }, - [3953] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3924] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3013), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3954] = { - [sym_type_constraints] = STATE(4061), - [sym_function_body] = STATE(3891), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(6993), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - }, - [3955] = { - [sym_class_body] = STATE(3337), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(6995), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_RBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_RPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [anon_sym_DASH_GT] = ACTIONS(4386), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_while] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - }, - [3956] = { - [sym_type_constraints] = STATE(4105), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(6997), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3957] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3925] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3043), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3958] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3926] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3002), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3959] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(2227), - [sym__comparison_operator] = STATE(2245), - [sym__in_operator] = STATE(2361), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2282), - [sym__multiplicative_operator] = STATE(1900), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [3927] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(6939), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(6918), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6941), - [anon_sym_DOT_DOT] = ACTIONS(6943), - [anon_sym_QMARK_COLON] = ACTIONS(6945), - [anon_sym_AMP_AMP] = ACTIONS(6947), - [anon_sym_PIPE_PIPE] = ACTIONS(6949), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6953), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6953), - [anon_sym_LT_EQ] = ACTIONS(6955), - [anon_sym_GT_EQ] = ACTIONS(6955), - [anon_sym_BANGin] = ACTIONS(6957), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_SLASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [3960] = { - [sym_type_constraints] = STATE(3110), - [sym_enum_class_body] = STATE(3141), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(6999), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym_LT] = ACTIONS(4229), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(3118), - [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_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), - [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), - }, - [3961] = { - [sym_type_constraints] = STATE(4078), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(7001), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3962] = { - [sym_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), - }, - [3963] = { - [sym_class_body] = STATE(3344), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), - }, - [3964] = { - [sym_type_constraints] = STATE(4110), - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(7007), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3965] = { - [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_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(7009), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(7011), - [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_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), + [3928] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3966] = { - [sym_function_body] = STATE(3268), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_object] = ACTIONS(4047), - [anon_sym_fun] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_this] = ACTIONS(4047), - [anon_sym_super] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4047), - [anon_sym_throw] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [anon_sym_data] = ACTIONS(4047), - [anon_sym_inner] = ACTIONS(4047), - [anon_sym_expect] = ACTIONS(4047), - [anon_sym_actual] = ACTIONS(4047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4049), - [anon_sym_continue_AT] = ACTIONS(4049), - [anon_sym_break_AT] = ACTIONS(4049), - [sym_real_literal] = ACTIONS(4049), - [sym_integer_literal] = ACTIONS(4047), - [sym_hex_literal] = ACTIONS(4049), - [sym_bin_literal] = ACTIONS(4049), - [anon_sym_true] = ACTIONS(4047), - [anon_sym_false] = ACTIONS(4047), - [anon_sym_SQUOTE] = ACTIONS(4049), - [sym__backtick_identifier] = ACTIONS(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4049), - }, - [3967] = { - [sym_type_constraints] = STATE(4114), - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [3929] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3968] = { - [sym__alpha_identifier] = ACTIONS(7013), - [anon_sym_AT] = ACTIONS(7015), - [anon_sym_LBRACK] = ACTIONS(7015), - [anon_sym_typealias] = ACTIONS(7013), - [anon_sym_class] = ACTIONS(7013), - [anon_sym_interface] = ACTIONS(7013), - [anon_sym_enum] = ACTIONS(7013), - [anon_sym_LBRACE] = ACTIONS(7015), - [anon_sym_LPAREN] = ACTIONS(7015), - [anon_sym_val] = ACTIONS(7013), - [anon_sym_var] = ACTIONS(7013), - [anon_sym_object] = ACTIONS(7013), - [anon_sym_fun] = ACTIONS(7013), - [anon_sym_get] = ACTIONS(7013), - [anon_sym_set] = ACTIONS(7013), - [anon_sym_this] = ACTIONS(7013), - [anon_sym_super] = ACTIONS(7013), - [anon_sym_STAR] = ACTIONS(7015), - [sym_label] = ACTIONS(7013), - [anon_sym_for] = ACTIONS(7013), - [anon_sym_while] = ACTIONS(7013), - [anon_sym_do] = ACTIONS(7013), - [anon_sym_null] = ACTIONS(7013), - [anon_sym_if] = ACTIONS(7013), - [anon_sym_when] = ACTIONS(7013), - [anon_sym_try] = ACTIONS(7013), - [anon_sym_throw] = ACTIONS(7013), - [anon_sym_return] = ACTIONS(7013), - [anon_sym_continue] = ACTIONS(7013), - [anon_sym_break] = ACTIONS(7013), - [anon_sym_COLON_COLON] = ACTIONS(7015), - [anon_sym_PLUS] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7015), - [anon_sym_DASH_DASH] = ACTIONS(7015), - [anon_sym_BANG] = ACTIONS(7015), - [anon_sym_suspend] = ACTIONS(7013), - [anon_sym_sealed] = ACTIONS(7013), - [anon_sym_annotation] = ACTIONS(7013), - [anon_sym_data] = ACTIONS(7013), - [anon_sym_inner] = ACTIONS(7013), - [anon_sym_override] = ACTIONS(7013), - [anon_sym_lateinit] = ACTIONS(7013), - [anon_sym_public] = ACTIONS(7013), - [anon_sym_private] = ACTIONS(7013), - [anon_sym_internal] = ACTIONS(7013), - [anon_sym_protected] = ACTIONS(7013), - [anon_sym_tailrec] = ACTIONS(7013), - [anon_sym_operator] = ACTIONS(7013), - [anon_sym_infix] = ACTIONS(7013), - [anon_sym_inline] = ACTIONS(7013), - [anon_sym_external] = ACTIONS(7013), - [sym_property_modifier] = ACTIONS(7013), - [anon_sym_abstract] = ACTIONS(7013), - [anon_sym_final] = ACTIONS(7013), - [anon_sym_open] = ACTIONS(7013), - [anon_sym_vararg] = ACTIONS(7013), - [anon_sym_noinline] = ACTIONS(7013), - [anon_sym_crossinline] = ACTIONS(7013), - [anon_sym_expect] = ACTIONS(7013), - [anon_sym_actual] = ACTIONS(7013), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7015), - [anon_sym_continue_AT] = ACTIONS(7015), - [anon_sym_break_AT] = ACTIONS(7015), - [sym_real_literal] = ACTIONS(7015), - [sym_integer_literal] = ACTIONS(7013), - [sym_hex_literal] = ACTIONS(7015), - [sym_bin_literal] = ACTIONS(7015), - [anon_sym_true] = ACTIONS(7013), - [anon_sym_false] = ACTIONS(7013), - [anon_sym_SQUOTE] = ACTIONS(7015), - [sym__backtick_identifier] = ACTIONS(7015), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7015), - }, - [3969] = { - [sym_type_constraints] = STATE(4105), - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3930] = { + [sym_type_constraints] = STATE(4046), + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(6973), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, - [3970] = { - [sym_function_body] = STATE(3153), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_object] = ACTIONS(4099), - [anon_sym_fun] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_this] = ACTIONS(4099), - [anon_sym_super] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4099), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_when] = ACTIONS(4099), - [anon_sym_try] = ACTIONS(4099), - [anon_sym_throw] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4101), - [anon_sym_continue_AT] = ACTIONS(4101), - [anon_sym_break_AT] = ACTIONS(4101), - [sym_real_literal] = ACTIONS(4101), - [sym_integer_literal] = ACTIONS(4099), - [sym_hex_literal] = ACTIONS(4101), - [sym_bin_literal] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [anon_sym_SQUOTE] = ACTIONS(4101), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4101), - }, - [3971] = { - [sym_function_body] = STATE(3168), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_object] = ACTIONS(4085), - [anon_sym_fun] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_this] = ACTIONS(4085), - [anon_sym_super] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4085), - [anon_sym_if] = ACTIONS(4085), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_when] = ACTIONS(4085), - [anon_sym_try] = ACTIONS(4085), - [anon_sym_throw] = ACTIONS(4085), - [anon_sym_return] = ACTIONS(4085), - [anon_sym_continue] = ACTIONS(4085), - [anon_sym_break] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4085), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4087), - [anon_sym_continue_AT] = ACTIONS(4087), - [anon_sym_break_AT] = ACTIONS(4087), - [sym_real_literal] = ACTIONS(4087), - [sym_integer_literal] = ACTIONS(4085), - [sym_hex_literal] = ACTIONS(4087), - [sym_bin_literal] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4087), - }, - [3972] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3972), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(7017), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_get] = ACTIONS(4625), - [anon_sym_set] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4627), - [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_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(4627), - [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_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), + [3931] = { + [sym_type_constraints] = STATE(4050), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(6975), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, - [3973] = { - [sym_type_constraints] = STATE(4101), - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3932] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3974] = { - [sym__alpha_identifier] = ACTIONS(7020), - [anon_sym_AT] = ACTIONS(7022), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_typealias] = ACTIONS(7020), - [anon_sym_class] = ACTIONS(7020), - [anon_sym_interface] = ACTIONS(7020), - [anon_sym_enum] = ACTIONS(7020), - [anon_sym_LBRACE] = ACTIONS(7022), - [anon_sym_LPAREN] = ACTIONS(7022), - [anon_sym_val] = ACTIONS(7020), - [anon_sym_var] = ACTIONS(7020), - [anon_sym_object] = ACTIONS(7020), - [anon_sym_fun] = ACTIONS(7020), - [anon_sym_get] = ACTIONS(7020), - [anon_sym_set] = ACTIONS(7020), - [anon_sym_this] = ACTIONS(7020), - [anon_sym_super] = ACTIONS(7020), - [anon_sym_STAR] = ACTIONS(7022), - [sym_label] = ACTIONS(7020), - [anon_sym_for] = ACTIONS(7020), - [anon_sym_while] = ACTIONS(7020), - [anon_sym_do] = ACTIONS(7020), - [anon_sym_null] = ACTIONS(7020), - [anon_sym_if] = ACTIONS(7020), - [anon_sym_when] = ACTIONS(7020), - [anon_sym_try] = ACTIONS(7020), - [anon_sym_throw] = ACTIONS(7020), - [anon_sym_return] = ACTIONS(7020), - [anon_sym_continue] = ACTIONS(7020), - [anon_sym_break] = ACTIONS(7020), - [anon_sym_COLON_COLON] = ACTIONS(7022), - [anon_sym_PLUS] = ACTIONS(7020), - [anon_sym_DASH] = ACTIONS(7020), - [anon_sym_PLUS_PLUS] = ACTIONS(7022), - [anon_sym_DASH_DASH] = ACTIONS(7022), - [anon_sym_BANG] = ACTIONS(7022), - [anon_sym_suspend] = ACTIONS(7020), - [anon_sym_sealed] = ACTIONS(7020), - [anon_sym_annotation] = ACTIONS(7020), - [anon_sym_data] = ACTIONS(7020), - [anon_sym_inner] = ACTIONS(7020), - [anon_sym_override] = ACTIONS(7020), - [anon_sym_lateinit] = ACTIONS(7020), - [anon_sym_public] = ACTIONS(7020), - [anon_sym_private] = ACTIONS(7020), - [anon_sym_internal] = ACTIONS(7020), - [anon_sym_protected] = ACTIONS(7020), - [anon_sym_tailrec] = ACTIONS(7020), - [anon_sym_operator] = ACTIONS(7020), - [anon_sym_infix] = ACTIONS(7020), - [anon_sym_inline] = ACTIONS(7020), - [anon_sym_external] = ACTIONS(7020), - [sym_property_modifier] = ACTIONS(7020), - [anon_sym_abstract] = ACTIONS(7020), - [anon_sym_final] = ACTIONS(7020), - [anon_sym_open] = ACTIONS(7020), - [anon_sym_vararg] = ACTIONS(7020), - [anon_sym_noinline] = ACTIONS(7020), - [anon_sym_crossinline] = ACTIONS(7020), - [anon_sym_expect] = ACTIONS(7020), - [anon_sym_actual] = ACTIONS(7020), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7022), - [anon_sym_continue_AT] = ACTIONS(7022), - [anon_sym_break_AT] = ACTIONS(7022), - [sym_real_literal] = ACTIONS(7022), - [sym_integer_literal] = ACTIONS(7020), - [sym_hex_literal] = ACTIONS(7022), - [sym_bin_literal] = ACTIONS(7022), - [anon_sym_true] = ACTIONS(7020), - [anon_sym_false] = ACTIONS(7020), - [anon_sym_SQUOTE] = ACTIONS(7022), - [sym__backtick_identifier] = ACTIONS(7022), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7022), + [3933] = { + [sym_class_body] = STATE(3253), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(6977), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), }, - [3975] = { - [sym_type_constraints] = STATE(4163), - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(7024), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [3934] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(6979), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_while] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), }, - [3976] = { - [sym_function_body] = STATE(3166), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_object] = ACTIONS(4258), - [anon_sym_fun] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_this] = ACTIONS(4258), - [anon_sym_super] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_when] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4260), - [anon_sym_continue_AT] = ACTIONS(4260), - [anon_sym_break_AT] = ACTIONS(4260), - [sym_real_literal] = ACTIONS(4260), - [sym_integer_literal] = ACTIONS(4258), - [sym_hex_literal] = ACTIONS(4260), - [sym_bin_literal] = ACTIONS(4260), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [anon_sym_SQUOTE] = ACTIONS(4260), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4260), - }, - [3977] = { - [sym_function_body] = STATE(3259), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_object] = ACTIONS(4208), - [anon_sym_fun] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_this] = ACTIONS(4208), - [anon_sym_super] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4210), - [anon_sym_continue_AT] = ACTIONS(4210), - [anon_sym_break_AT] = ACTIONS(4210), - [sym_real_literal] = ACTIONS(4210), - [sym_integer_literal] = ACTIONS(4208), - [sym_hex_literal] = ACTIONS(4210), - [sym_bin_literal] = ACTIONS(4210), - [anon_sym_true] = ACTIONS(4208), - [anon_sym_false] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4210), - }, - [3978] = { - [sym_type_constraints] = STATE(4096), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [3935] = { + [sym_type_constraints] = STATE(3117), + [sym_enum_class_body] = STATE(3130), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3196), + [anon_sym_super] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_when] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [sym_real_literal] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3196), + [sym_hex_literal] = ACTIONS(3200), + [sym_bin_literal] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, - [3979] = { - [sym_function_body] = STATE(3293), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_object] = ACTIONS(4420), - [anon_sym_fun] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_this] = ACTIONS(4420), - [anon_sym_super] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4420), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_try] = ACTIONS(4420), - [anon_sym_throw] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4422), - [anon_sym_continue_AT] = ACTIONS(4422), - [anon_sym_break_AT] = ACTIONS(4422), - [sym_real_literal] = ACTIONS(4422), - [sym_integer_literal] = ACTIONS(4420), - [sym_hex_literal] = ACTIONS(4422), - [sym_bin_literal] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4420), - [anon_sym_false] = ACTIONS(4420), - [anon_sym_SQUOTE] = ACTIONS(4422), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4422), + [3936] = { + [sym__alpha_identifier] = ACTIONS(4223), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_typealias] = ACTIONS(4223), + [anon_sym_class] = ACTIONS(4223), + [anon_sym_interface] = ACTIONS(4223), + [anon_sym_enum] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_val] = ACTIONS(4223), + [anon_sym_var] = ACTIONS(4223), + [anon_sym_object] = ACTIONS(4223), + [anon_sym_fun] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_get] = ACTIONS(4223), + [anon_sym_set] = ACTIONS(4223), + [anon_sym_this] = ACTIONS(4223), + [anon_sym_super] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [sym_label] = ACTIONS(4223), + [anon_sym_for] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_do] = ACTIONS(4223), + [anon_sym_null] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_when] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_suspend] = ACTIONS(4223), + [anon_sym_sealed] = ACTIONS(4223), + [anon_sym_annotation] = ACTIONS(4223), + [anon_sym_data] = ACTIONS(4223), + [anon_sym_inner] = ACTIONS(4223), + [anon_sym_override] = ACTIONS(4223), + [anon_sym_lateinit] = ACTIONS(4223), + [anon_sym_public] = ACTIONS(4223), + [anon_sym_private] = ACTIONS(4223), + [anon_sym_internal] = ACTIONS(4223), + [anon_sym_protected] = ACTIONS(4223), + [anon_sym_tailrec] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_infix] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym_external] = ACTIONS(4223), + [sym_property_modifier] = ACTIONS(4223), + [anon_sym_abstract] = ACTIONS(4223), + [anon_sym_final] = ACTIONS(4223), + [anon_sym_open] = ACTIONS(4223), + [anon_sym_vararg] = ACTIONS(4223), + [anon_sym_noinline] = ACTIONS(4223), + [anon_sym_crossinline] = ACTIONS(4223), + [anon_sym_expect] = ACTIONS(4223), + [anon_sym_actual] = ACTIONS(4223), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4225), + [anon_sym_continue_AT] = ACTIONS(4225), + [anon_sym_break_AT] = ACTIONS(4225), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4223), + [anon_sym_false] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4225), + [sym__backtick_identifier] = ACTIONS(4225), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4225), }, - [3980] = { - [sym__alpha_identifier] = ACTIONS(7028), - [anon_sym_AT] = ACTIONS(7030), - [anon_sym_LBRACK] = ACTIONS(7030), - [anon_sym_typealias] = ACTIONS(7028), - [anon_sym_class] = ACTIONS(7028), - [anon_sym_interface] = ACTIONS(7028), - [anon_sym_enum] = ACTIONS(7028), - [anon_sym_LBRACE] = ACTIONS(7030), - [anon_sym_LPAREN] = ACTIONS(7030), - [anon_sym_val] = ACTIONS(7028), - [anon_sym_var] = ACTIONS(7028), - [anon_sym_object] = ACTIONS(7028), - [anon_sym_fun] = ACTIONS(7028), - [anon_sym_get] = ACTIONS(7028), - [anon_sym_set] = ACTIONS(7028), - [anon_sym_this] = ACTIONS(7028), - [anon_sym_super] = ACTIONS(7028), - [anon_sym_STAR] = ACTIONS(7030), - [sym_label] = ACTIONS(7028), - [anon_sym_for] = ACTIONS(7028), - [anon_sym_while] = ACTIONS(7028), - [anon_sym_do] = ACTIONS(7028), - [anon_sym_null] = ACTIONS(7028), - [anon_sym_if] = ACTIONS(7028), - [anon_sym_when] = ACTIONS(7028), - [anon_sym_try] = ACTIONS(7028), - [anon_sym_throw] = ACTIONS(7028), - [anon_sym_return] = ACTIONS(7028), - [anon_sym_continue] = ACTIONS(7028), - [anon_sym_break] = ACTIONS(7028), - [anon_sym_COLON_COLON] = ACTIONS(7030), - [anon_sym_PLUS] = ACTIONS(7028), - [anon_sym_DASH] = ACTIONS(7028), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_BANG] = ACTIONS(7030), - [anon_sym_suspend] = ACTIONS(7028), - [anon_sym_sealed] = ACTIONS(7028), - [anon_sym_annotation] = ACTIONS(7028), - [anon_sym_data] = ACTIONS(7028), - [anon_sym_inner] = ACTIONS(7028), - [anon_sym_override] = ACTIONS(7028), - [anon_sym_lateinit] = ACTIONS(7028), - [anon_sym_public] = ACTIONS(7028), - [anon_sym_private] = ACTIONS(7028), - [anon_sym_internal] = ACTIONS(7028), - [anon_sym_protected] = ACTIONS(7028), - [anon_sym_tailrec] = ACTIONS(7028), - [anon_sym_operator] = ACTIONS(7028), - [anon_sym_infix] = ACTIONS(7028), - [anon_sym_inline] = ACTIONS(7028), - [anon_sym_external] = ACTIONS(7028), - [sym_property_modifier] = ACTIONS(7028), - [anon_sym_abstract] = ACTIONS(7028), - [anon_sym_final] = ACTIONS(7028), - [anon_sym_open] = ACTIONS(7028), - [anon_sym_vararg] = ACTIONS(7028), - [anon_sym_noinline] = ACTIONS(7028), - [anon_sym_crossinline] = ACTIONS(7028), - [anon_sym_expect] = ACTIONS(7028), - [anon_sym_actual] = ACTIONS(7028), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7030), - [anon_sym_continue_AT] = ACTIONS(7030), - [anon_sym_break_AT] = ACTIONS(7030), - [sym_real_literal] = ACTIONS(7030), - [sym_integer_literal] = ACTIONS(7028), - [sym_hex_literal] = ACTIONS(7030), - [sym_bin_literal] = ACTIONS(7030), - [anon_sym_true] = ACTIONS(7028), - [anon_sym_false] = ACTIONS(7028), - [anon_sym_SQUOTE] = ACTIONS(7030), - [sym__backtick_identifier] = ACTIONS(7030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7030), + [3937] = { + [sym_function_body] = STATE(3362), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6981), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), }, - [3981] = { - [sym_type_constraints] = STATE(4097), - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), + [3938] = { + [sym_type_constraints] = STATE(4102), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [3982] = { - [sym_type_constraints] = STATE(4161), - [sym_function_body] = STATE(3891), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4041), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_get] = ACTIONS(4041), - [anon_sym_set] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [sym_label] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_QMARK_COLON] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_COLON_COLON] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_BANGin] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_BANGis] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_as_QMARK] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_BANG_BANG] = ACTIONS(4043), - [anon_sym_suspend] = ACTIONS(4041), - [anon_sym_sealed] = ACTIONS(4041), - [anon_sym_annotation] = ACTIONS(4041), - [anon_sym_data] = ACTIONS(4041), - [anon_sym_inner] = ACTIONS(4041), - [anon_sym_override] = ACTIONS(4041), - [anon_sym_lateinit] = ACTIONS(4041), - [anon_sym_public] = ACTIONS(4041), - [anon_sym_private] = ACTIONS(4041), - [anon_sym_internal] = ACTIONS(4041), - [anon_sym_protected] = ACTIONS(4041), - [anon_sym_tailrec] = ACTIONS(4041), - [anon_sym_operator] = ACTIONS(4041), - [anon_sym_infix] = ACTIONS(4041), - [anon_sym_inline] = ACTIONS(4041), - [anon_sym_external] = ACTIONS(4041), - [sym_property_modifier] = ACTIONS(4041), - [anon_sym_abstract] = ACTIONS(4041), - [anon_sym_final] = ACTIONS(4041), - [anon_sym_open] = ACTIONS(4041), - [anon_sym_vararg] = ACTIONS(4041), - [anon_sym_noinline] = ACTIONS(4041), - [anon_sym_crossinline] = ACTIONS(4041), - [anon_sym_expect] = ACTIONS(4041), - [anon_sym_actual] = ACTIONS(4041), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4043), - [sym__automatic_semicolon] = ACTIONS(4043), - [sym_safe_nav] = ACTIONS(4043), - [sym_multiline_comment] = ACTIONS(3), - }, - [3983] = { - [sym_function_body] = STATE(3171), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_object] = ACTIONS(4254), - [anon_sym_fun] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_this] = ACTIONS(4254), - [anon_sym_super] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4254), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_when] = ACTIONS(4254), - [anon_sym_try] = ACTIONS(4254), - [anon_sym_throw] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4256), - [anon_sym_continue_AT] = ACTIONS(4256), - [anon_sym_break_AT] = ACTIONS(4256), - [sym_real_literal] = ACTIONS(4256), - [sym_integer_literal] = ACTIONS(4254), - [sym_hex_literal] = ACTIONS(4256), - [sym_bin_literal] = ACTIONS(4256), - [anon_sym_true] = ACTIONS(4254), - [anon_sym_false] = ACTIONS(4254), - [anon_sym_SQUOTE] = ACTIONS(4256), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4256), - }, - [3984] = { - [sym_function_body] = STATE(3133), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_object] = ACTIONS(4031), - [anon_sym_fun] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4031), - [anon_sym_super] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4031), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_try] = ACTIONS(4031), - [anon_sym_throw] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4033), - [anon_sym_continue_AT] = ACTIONS(4033), - [anon_sym_break_AT] = ACTIONS(4033), - [sym_real_literal] = ACTIONS(4033), - [sym_integer_literal] = ACTIONS(4031), - [sym_hex_literal] = ACTIONS(4033), - [sym_bin_literal] = ACTIONS(4033), - [anon_sym_true] = ACTIONS(4031), - [anon_sym_false] = ACTIONS(4031), - [anon_sym_SQUOTE] = ACTIONS(4033), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4033), - }, - [3985] = { - [sym_function_body] = STATE(3308), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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(4426), - [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_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(4426), - [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_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), - [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), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4426), }, - [3986] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3972), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_RBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_RPAREN] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [anon_sym_DASH_GT] = ACTIONS(4664), - [sym_label] = ACTIONS(4664), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_while] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [3939] = { + [sym_type_constraints] = STATE(4119), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6985), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, - [3987] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3992), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [3940] = { + [sym_value_arguments] = STATE(3394), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(6987), + [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_DOT] = 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(4527), + [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_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(4527), + [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_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [anon_sym_return_AT] = ACTIONS(4527), + [anon_sym_continue_AT] = ACTIONS(4527), + [anon_sym_break_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(4664), + [sym__string_start] = ACTIONS(4527), }, - [3988] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3987), - [sym__alpha_identifier] = ACTIONS(4656), - [anon_sym_AT] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4656), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(4656), - [anon_sym_GT] = ACTIONS(4656), - [anon_sym_where] = ACTIONS(4656), - [anon_sym_object] = ACTIONS(4656), - [anon_sym_fun] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(4658), - [anon_sym_get] = ACTIONS(4656), - [anon_sym_set] = ACTIONS(4656), - [anon_sym_this] = ACTIONS(4656), - [anon_sym_super] = ACTIONS(4656), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4656), - [anon_sym_in] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4658), - [anon_sym_QMARK_COLON] = ACTIONS(4658), - [anon_sym_AMP_AMP] = ACTIONS(4658), - [anon_sym_PIPE_PIPE] = ACTIONS(4658), - [anon_sym_null] = ACTIONS(4656), - [anon_sym_if] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_when] = ACTIONS(4656), - [anon_sym_try] = ACTIONS(4656), - [anon_sym_throw] = ACTIONS(4656), - [anon_sym_return] = ACTIONS(4656), - [anon_sym_continue] = ACTIONS(4656), - [anon_sym_break] = ACTIONS(4656), - [anon_sym_COLON_COLON] = ACTIONS(4658), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4658), - [anon_sym_LT_EQ] = ACTIONS(4658), - [anon_sym_GT_EQ] = ACTIONS(4658), - [anon_sym_BANGin] = ACTIONS(4658), - [anon_sym_is] = ACTIONS(4656), - [anon_sym_BANGis] = ACTIONS(4658), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_SLASH] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4658), - [anon_sym_PLUS_PLUS] = ACTIONS(4658), - [anon_sym_DASH_DASH] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(4656), - [anon_sym_BANG_BANG] = ACTIONS(4658), - [anon_sym_data] = ACTIONS(4656), - [anon_sym_inner] = ACTIONS(4656), - [anon_sym_expect] = ACTIONS(4656), - [anon_sym_actual] = ACTIONS(4656), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4658), - [anon_sym_continue_AT] = ACTIONS(4658), - [anon_sym_break_AT] = ACTIONS(4658), - [sym_real_literal] = ACTIONS(4658), - [sym_integer_literal] = ACTIONS(4656), - [sym_hex_literal] = ACTIONS(4658), - [sym_bin_literal] = ACTIONS(4658), - [anon_sym_true] = ACTIONS(4656), - [anon_sym_false] = ACTIONS(4656), - [anon_sym_SQUOTE] = ACTIONS(4658), - [sym__backtick_identifier] = ACTIONS(4658), - [sym__automatic_semicolon] = ACTIONS(4658), - [sym_safe_nav] = ACTIONS(4658), + [3941] = { + [sym_type_constraints] = STATE(3102), + [sym_enum_class_body] = STATE(3146), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4326), + [anon_sym_fun] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_this] = ACTIONS(4326), + [anon_sym_super] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4326), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_throw] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4328), + [anon_sym_continue_AT] = ACTIONS(4328), + [anon_sym_break_AT] = ACTIONS(4328), + [sym_real_literal] = ACTIONS(4328), + [sym_integer_literal] = ACTIONS(4326), + [sym_hex_literal] = ACTIONS(4328), + [sym_bin_literal] = ACTIONS(4328), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4328), + }, + [3942] = { + [sym_type_constraints] = STATE(4082), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(6991), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4658), }, - [3989] = { - [sym_function_body] = STATE(3176), - [sym__block] = STATE(3334), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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(4487), - [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_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_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(4487), - [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_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), - [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), + [3943] = { + [sym_class_body] = STATE(3162), + [sym_type_constraints] = STATE(3114), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(6993), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), }, - [3990] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), + [3944] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(6995), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [3945] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(6997), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(6995), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [3946] = { + [sym__alpha_identifier] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_constructor] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_where] = ACTIONS(4418), + [anon_sym_object] = ACTIONS(4418), + [anon_sym_fun] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4418), + [anon_sym_set] = ACTIONS(4418), + [anon_sym_this] = ACTIONS(4418), + [anon_sym_super] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4420), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4418), + [anon_sym_if] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4418), + [anon_sym_when] = ACTIONS(4418), + [anon_sym_try] = ACTIONS(4418), + [anon_sym_throw] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4418), + [anon_sym_continue] = ACTIONS(4418), + [anon_sym_break] = ACTIONS(4418), + [anon_sym_COLON_COLON] = ACTIONS(4420), + [anon_sym_BANGin] = ACTIONS(4420), + [anon_sym_is] = ACTIONS(4418), + [anon_sym_BANGis] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4420), + [anon_sym_DASH_DASH] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4418), + [anon_sym_sealed] = ACTIONS(4418), + [anon_sym_annotation] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4418), + [anon_sym_inner] = ACTIONS(4418), + [anon_sym_override] = ACTIONS(4418), + [anon_sym_lateinit] = ACTIONS(4418), + [anon_sym_public] = ACTIONS(4418), + [anon_sym_private] = ACTIONS(4418), + [anon_sym_internal] = ACTIONS(4418), + [anon_sym_protected] = ACTIONS(4418), + [anon_sym_tailrec] = ACTIONS(4418), + [anon_sym_operator] = ACTIONS(4418), + [anon_sym_infix] = ACTIONS(4418), + [anon_sym_inline] = ACTIONS(4418), + [anon_sym_external] = ACTIONS(4418), + [sym_property_modifier] = ACTIONS(4418), + [anon_sym_abstract] = ACTIONS(4418), + [anon_sym_final] = ACTIONS(4418), + [anon_sym_open] = ACTIONS(4418), + [anon_sym_vararg] = ACTIONS(4418), + [anon_sym_noinline] = ACTIONS(4418), + [anon_sym_crossinline] = ACTIONS(4418), + [anon_sym_expect] = ACTIONS(4418), + [anon_sym_actual] = ACTIONS(4418), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4420), + [anon_sym_continue_AT] = ACTIONS(4420), + [anon_sym_break_AT] = ACTIONS(4420), + [sym_real_literal] = ACTIONS(4420), + [sym_integer_literal] = ACTIONS(4418), + [sym_hex_literal] = ACTIONS(4420), + [sym_bin_literal] = ACTIONS(4420), + [anon_sym_true] = ACTIONS(4418), + [anon_sym_false] = ACTIONS(4418), + [anon_sym_SQUOTE] = ACTIONS(4420), + [sym__backtick_identifier] = ACTIONS(4420), + [sym__automatic_semicolon] = ACTIONS(4420), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4420), + }, + [3947] = { + [sym_function_body] = STATE(3439), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(6999), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_object] = ACTIONS(4162), + [anon_sym_fun] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_this] = ACTIONS(4162), + [anon_sym_super] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4162), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_when] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4164), + [anon_sym_continue_AT] = ACTIONS(4164), + [anon_sym_break_AT] = ACTIONS(4164), + [sym_real_literal] = ACTIONS(4164), + [sym_integer_literal] = ACTIONS(4162), + [sym_hex_literal] = ACTIONS(4164), + [sym_bin_literal] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4164), + }, + [3948] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [3949] = { + [sym__alpha_identifier] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_typealias] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_interface] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_val] = ACTIONS(4448), + [anon_sym_var] = ACTIONS(4448), + [anon_sym_object] = ACTIONS(4448), + [anon_sym_fun] = ACTIONS(4448), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_get] = ACTIONS(4448), + [anon_sym_set] = ACTIONS(4448), + [anon_sym_this] = ACTIONS(4448), + [anon_sym_super] = ACTIONS(4448), + [anon_sym_STAR] = ACTIONS(4450), + [sym_label] = ACTIONS(4448), + [anon_sym_for] = ACTIONS(4448), + [anon_sym_while] = ACTIONS(4448), + [anon_sym_do] = ACTIONS(4448), + [anon_sym_null] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4448), + [anon_sym_when] = ACTIONS(4448), + [anon_sym_try] = ACTIONS(4448), + [anon_sym_throw] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4448), + [anon_sym_continue] = ACTIONS(4448), + [anon_sym_break] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_PLUS_PLUS] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4450), + [anon_sym_suspend] = ACTIONS(4448), + [anon_sym_sealed] = ACTIONS(4448), + [anon_sym_annotation] = ACTIONS(4448), + [anon_sym_data] = ACTIONS(4448), + [anon_sym_inner] = ACTIONS(4448), + [anon_sym_override] = ACTIONS(4448), + [anon_sym_lateinit] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_internal] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_tailrec] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_infix] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym_external] = ACTIONS(4448), + [sym_property_modifier] = ACTIONS(4448), + [anon_sym_abstract] = ACTIONS(4448), + [anon_sym_final] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4448), + [anon_sym_vararg] = ACTIONS(4448), + [anon_sym_noinline] = ACTIONS(4448), + [anon_sym_crossinline] = ACTIONS(4448), + [anon_sym_expect] = ACTIONS(4448), + [anon_sym_actual] = ACTIONS(4448), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4450), + [anon_sym_continue_AT] = ACTIONS(4450), + [anon_sym_break_AT] = ACTIONS(4450), + [sym_real_literal] = ACTIONS(4450), + [sym_integer_literal] = ACTIONS(4448), + [sym_hex_literal] = ACTIONS(4450), + [sym_bin_literal] = ACTIONS(4450), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [anon_sym_SQUOTE] = ACTIONS(4450), + [sym__backtick_identifier] = ACTIONS(4450), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4450), + }, + [3950] = { + [sym_type_constraints] = STATE(3095), + [sym_enum_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4332), + [anon_sym_fun] = ACTIONS(4332), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_this] = ACTIONS(4332), + [anon_sym_super] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4332), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_try] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4334), + [anon_sym_continue_AT] = ACTIONS(4334), + [anon_sym_break_AT] = ACTIONS(4334), + [sym_real_literal] = ACTIONS(4334), + [sym_integer_literal] = ACTIONS(4332), + [sym_hex_literal] = ACTIONS(4334), + [sym_bin_literal] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4332), + [anon_sym_false] = ACTIONS(4332), + [anon_sym_SQUOTE] = ACTIONS(4334), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4334), + }, + [3951] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2223), + [sym__in_operator] = STATE(2224), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2230), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2231), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3065), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(6937), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(6939), + [anon_sym_DOT_DOT] = ACTIONS(6941), + [anon_sym_QMARK_COLON] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE_PIPE] = ACTIONS(6947), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6951), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_BANGin] = ACTIONS(6955), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_SLASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [3991] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3992), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_object] = ACTIONS(4662), - [anon_sym_fun] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_super] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4662), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), - [anon_sym_if] = ACTIONS(4662), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_try] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_return] = ACTIONS(4662), - [anon_sym_continue] = ACTIONS(4662), - [anon_sym_break] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), + [3952] = { + [sym_class_body] = STATE(3230), + [sym_type_constraints] = STATE(3081), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [3953] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(4293), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + }, + [3954] = { + [sym_class_body] = STATE(3189), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(7005), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_RBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_DASH_GT] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_hex_literal] = ACTIONS(4664), - [sym_bin_literal] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [sym__backtick_identifier] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4664), }, - [3992] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3992), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(7062), - [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_DOT] = 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(4627), - [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_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(4627), - [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_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), - [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), + [3955] = { + [sym_value_arguments] = STATE(3985), + [sym__alpha_identifier] = ACTIONS(7007), + [anon_sym_AT] = ACTIONS(7009), + [anon_sym_LBRACK] = ACTIONS(7009), + [anon_sym_typealias] = ACTIONS(7007), + [anon_sym_class] = ACTIONS(7007), + [anon_sym_interface] = ACTIONS(7007), + [anon_sym_enum] = ACTIONS(7007), + [anon_sym_LBRACE] = ACTIONS(7009), + [anon_sym_LPAREN] = ACTIONS(7011), + [anon_sym_val] = ACTIONS(7007), + [anon_sym_var] = ACTIONS(7007), + [anon_sym_object] = ACTIONS(7007), + [anon_sym_fun] = ACTIONS(7007), + [anon_sym_get] = ACTIONS(7007), + [anon_sym_set] = ACTIONS(7007), + [anon_sym_this] = ACTIONS(7007), + [anon_sym_super] = ACTIONS(7007), + [anon_sym_STAR] = ACTIONS(7009), + [sym_label] = ACTIONS(7007), + [anon_sym_for] = ACTIONS(7007), + [anon_sym_while] = ACTIONS(7007), + [anon_sym_do] = ACTIONS(7007), + [anon_sym_null] = ACTIONS(7007), + [anon_sym_if] = ACTIONS(7007), + [anon_sym_when] = ACTIONS(7007), + [anon_sym_try] = ACTIONS(7007), + [anon_sym_throw] = ACTIONS(7007), + [anon_sym_return] = ACTIONS(7007), + [anon_sym_continue] = ACTIONS(7007), + [anon_sym_break] = ACTIONS(7007), + [anon_sym_COLON_COLON] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7007), + [anon_sym_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG] = ACTIONS(7009), + [anon_sym_suspend] = ACTIONS(7007), + [anon_sym_sealed] = ACTIONS(7007), + [anon_sym_annotation] = ACTIONS(7007), + [anon_sym_data] = ACTIONS(7007), + [anon_sym_inner] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_lateinit] = ACTIONS(7007), + [anon_sym_public] = ACTIONS(7007), + [anon_sym_private] = ACTIONS(7007), + [anon_sym_internal] = ACTIONS(7007), + [anon_sym_protected] = ACTIONS(7007), + [anon_sym_tailrec] = ACTIONS(7007), + [anon_sym_operator] = ACTIONS(7007), + [anon_sym_infix] = ACTIONS(7007), + [anon_sym_inline] = ACTIONS(7007), + [anon_sym_external] = ACTIONS(7007), + [sym_property_modifier] = ACTIONS(7007), + [anon_sym_abstract] = ACTIONS(7007), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_open] = ACTIONS(7007), + [anon_sym_vararg] = ACTIONS(7007), + [anon_sym_noinline] = ACTIONS(7007), + [anon_sym_crossinline] = ACTIONS(7007), + [anon_sym_expect] = ACTIONS(7007), + [anon_sym_actual] = ACTIONS(7007), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7009), + [anon_sym_continue_AT] = ACTIONS(7009), + [anon_sym_break_AT] = ACTIONS(7009), + [sym_real_literal] = ACTIONS(7009), + [sym_integer_literal] = ACTIONS(7007), + [sym_hex_literal] = ACTIONS(7009), + [sym_bin_literal] = ACTIONS(7009), + [anon_sym_true] = ACTIONS(7007), + [anon_sym_false] = ACTIONS(7007), + [anon_sym_SQUOTE] = ACTIONS(7009), + [sym__backtick_identifier] = ACTIONS(7009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7009), }, - [3993] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7065), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_PLUS_EQ] = ACTIONS(4289), - [anon_sym_DASH_EQ] = ACTIONS(4289), - [anon_sym_STAR_EQ] = ACTIONS(4289), - [anon_sym_SLASH_EQ] = ACTIONS(4289), - [anon_sym_PERCENT_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [3956] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_while] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), [sym_multiline_comment] = ACTIONS(3), }, - [3994] = { - [sym_function_body] = STATE(3794), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), + [3957] = { + [sym_class_body] = STATE(3293), + [sym_type_constraints] = STATE(3019), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3190), + [anon_sym_fun] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_super] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_when] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3194), + [anon_sym_continue_AT] = ACTIONS(3194), + [anon_sym_break_AT] = ACTIONS(3194), + [sym_real_literal] = ACTIONS(3194), + [sym_integer_literal] = ACTIONS(3190), + [sym_hex_literal] = ACTIONS(3194), + [sym_bin_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3194), + }, + [3958] = { + [sym_type_constraints] = STATE(4097), + [sym_function_body] = STATE(3260), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_RPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), [sym_multiline_comment] = ACTIONS(3), }, - [3995] = { - [sym_type_constraints] = STATE(4162), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(7069), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3959] = { + [sym_type_constraints] = STATE(3057), + [sym_enum_class_body] = STATE(3230), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_fun] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3204), + [anon_sym_super] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_when] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3208), + [anon_sym_continue_AT] = ACTIONS(3208), + [anon_sym_break_AT] = ACTIONS(3208), + [sym_real_literal] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3204), + [sym_hex_literal] = ACTIONS(3208), + [sym_bin_literal] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3208), + }, + [3960] = { + [sym__alpha_identifier] = ACTIONS(4486), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_typealias] = ACTIONS(4486), + [anon_sym_class] = ACTIONS(4486), + [anon_sym_interface] = ACTIONS(4486), + [anon_sym_enum] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym_val] = ACTIONS(4486), + [anon_sym_var] = ACTIONS(4486), + [anon_sym_object] = ACTIONS(4486), + [anon_sym_fun] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_get] = ACTIONS(4486), + [anon_sym_set] = ACTIONS(4486), + [anon_sym_this] = ACTIONS(4486), + [anon_sym_super] = ACTIONS(4486), + [anon_sym_STAR] = ACTIONS(4488), + [sym_label] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_do] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_when] = ACTIONS(4486), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_throw] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_COLON_COLON] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4488), + [anon_sym_suspend] = ACTIONS(4486), + [anon_sym_sealed] = ACTIONS(4486), + [anon_sym_annotation] = ACTIONS(4486), + [anon_sym_data] = ACTIONS(4486), + [anon_sym_inner] = ACTIONS(4486), + [anon_sym_override] = ACTIONS(4486), + [anon_sym_lateinit] = ACTIONS(4486), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_private] = ACTIONS(4486), + [anon_sym_internal] = ACTIONS(4486), + [anon_sym_protected] = ACTIONS(4486), + [anon_sym_tailrec] = ACTIONS(4486), + [anon_sym_operator] = ACTIONS(4486), + [anon_sym_infix] = ACTIONS(4486), + [anon_sym_inline] = ACTIONS(4486), + [anon_sym_external] = ACTIONS(4486), + [sym_property_modifier] = ACTIONS(4486), + [anon_sym_abstract] = ACTIONS(4486), + [anon_sym_final] = ACTIONS(4486), + [anon_sym_open] = ACTIONS(4486), + [anon_sym_vararg] = ACTIONS(4486), + [anon_sym_noinline] = ACTIONS(4486), + [anon_sym_crossinline] = ACTIONS(4486), + [anon_sym_expect] = ACTIONS(4486), + [anon_sym_actual] = ACTIONS(4486), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4488), + [anon_sym_continue_AT] = ACTIONS(4488), + [anon_sym_break_AT] = ACTIONS(4488), + [sym_real_literal] = ACTIONS(4488), + [sym_integer_literal] = ACTIONS(4486), + [sym_hex_literal] = ACTIONS(4488), + [sym_bin_literal] = ACTIONS(4488), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4488), + [sym__backtick_identifier] = ACTIONS(4488), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4488), + }, + [3961] = { + [sym_class_body] = STATE(3305), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(7016), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), }, - [3996] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3069), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [3962] = { + [sym_value_arguments] = STATE(3190), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [anon_sym_as] = 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_by] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4527), + [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_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(4527), + [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_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(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__backtick_identifier] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), [sym_multiline_comment] = ACTIONS(3), }, - [3997] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7071), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [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(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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), + [3963] = { + [sym_class_body] = STATE(3235), + [sym_type_constraints] = STATE(3050), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4342), + [anon_sym_fun] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_this] = ACTIONS(4342), + [anon_sym_super] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4344), + [anon_sym_continue_AT] = ACTIONS(4344), + [anon_sym_break_AT] = ACTIONS(4344), + [sym_real_literal] = ACTIONS(4344), + [sym_integer_literal] = ACTIONS(4342), + [sym_hex_literal] = ACTIONS(4344), + [sym_bin_literal] = ACTIONS(4344), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4344), + }, + [3964] = { + [sym_class_body] = STATE(3286), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(7022), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_RBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_DASH_GT] = ACTIONS(4404), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + }, + [3965] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), + [sym_multiline_comment] = ACTIONS(3), + }, + [3966] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), }, - [3998] = { - [sym_type_constraints] = STATE(4064), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [3967] = { + [sym__alpha_identifier] = ACTIONS(4981), + [anon_sym_AT] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_typealias] = ACTIONS(4981), + [anon_sym_class] = ACTIONS(4981), + [anon_sym_interface] = ACTIONS(4981), + [anon_sym_enum] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_val] = ACTIONS(4981), + [anon_sym_var] = ACTIONS(4981), + [anon_sym_object] = ACTIONS(4981), + [anon_sym_fun] = ACTIONS(4981), + [anon_sym_get] = ACTIONS(4981), + [anon_sym_set] = ACTIONS(4981), + [anon_sym_this] = ACTIONS(4981), + [anon_sym_super] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4983), + [sym_label] = ACTIONS(4981), + [anon_sym_for] = ACTIONS(4981), + [anon_sym_while] = ACTIONS(4981), + [anon_sym_do] = ACTIONS(4981), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_if] = ACTIONS(4981), + [anon_sym_when] = ACTIONS(4981), + [anon_sym_try] = ACTIONS(4981), + [anon_sym_throw] = ACTIONS(4981), + [anon_sym_return] = ACTIONS(4981), + [anon_sym_continue] = ACTIONS(4981), + [anon_sym_break] = ACTIONS(4981), + [anon_sym_COLON_COLON] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_suspend] = ACTIONS(4981), + [anon_sym_sealed] = ACTIONS(4981), + [anon_sym_annotation] = ACTIONS(4981), + [anon_sym_data] = ACTIONS(4981), + [anon_sym_inner] = ACTIONS(4981), + [anon_sym_override] = ACTIONS(4981), + [anon_sym_lateinit] = ACTIONS(4981), + [anon_sym_public] = ACTIONS(4981), + [anon_sym_private] = ACTIONS(4981), + [anon_sym_internal] = ACTIONS(4981), + [anon_sym_protected] = ACTIONS(4981), + [anon_sym_tailrec] = ACTIONS(4981), + [anon_sym_operator] = ACTIONS(4981), + [anon_sym_infix] = ACTIONS(4981), + [anon_sym_inline] = ACTIONS(4981), + [anon_sym_external] = ACTIONS(4981), + [sym_property_modifier] = ACTIONS(4981), + [anon_sym_abstract] = ACTIONS(4981), + [anon_sym_final] = ACTIONS(4981), + [anon_sym_open] = ACTIONS(4981), + [anon_sym_vararg] = ACTIONS(4981), + [anon_sym_noinline] = ACTIONS(4981), + [anon_sym_crossinline] = ACTIONS(4981), + [anon_sym_expect] = ACTIONS(4981), + [anon_sym_actual] = ACTIONS(4981), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4983), + [anon_sym_continue_AT] = ACTIONS(4983), + [anon_sym_break_AT] = ACTIONS(4983), + [sym_real_literal] = ACTIONS(4983), + [sym_integer_literal] = ACTIONS(4981), + [sym_hex_literal] = ACTIONS(4983), + [sym_bin_literal] = ACTIONS(4983), + [anon_sym_true] = ACTIONS(4981), + [anon_sym_false] = ACTIONS(4981), + [anon_sym_SQUOTE] = ACTIONS(4983), + [sym__backtick_identifier] = ACTIONS(4983), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4983), }, - [3999] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7073), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_PLUS_EQ] = ACTIONS(4955), - [anon_sym_DASH_EQ] = ACTIONS(4955), - [anon_sym_STAR_EQ] = ACTIONS(4955), - [anon_sym_SLASH_EQ] = ACTIONS(4955), - [anon_sym_PERCENT_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), + [3968] = { + [sym__alpha_identifier] = ACTIONS(4967), + [anon_sym_AT] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_typealias] = ACTIONS(4967), + [anon_sym_class] = ACTIONS(4967), + [anon_sym_interface] = ACTIONS(4967), + [anon_sym_enum] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_val] = ACTIONS(4967), + [anon_sym_var] = ACTIONS(4967), + [anon_sym_object] = ACTIONS(4967), + [anon_sym_fun] = ACTIONS(4967), + [anon_sym_get] = ACTIONS(4967), + [anon_sym_set] = ACTIONS(4967), + [anon_sym_this] = ACTIONS(4967), + [anon_sym_super] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4969), + [sym_label] = ACTIONS(4967), + [anon_sym_for] = ACTIONS(4967), + [anon_sym_while] = ACTIONS(4967), + [anon_sym_do] = ACTIONS(4967), + [anon_sym_null] = ACTIONS(4967), + [anon_sym_if] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_try] = ACTIONS(4967), + [anon_sym_throw] = ACTIONS(4967), + [anon_sym_return] = ACTIONS(4967), + [anon_sym_continue] = ACTIONS(4967), + [anon_sym_break] = ACTIONS(4967), + [anon_sym_COLON_COLON] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_suspend] = ACTIONS(4967), + [anon_sym_sealed] = ACTIONS(4967), + [anon_sym_annotation] = ACTIONS(4967), + [anon_sym_data] = ACTIONS(4967), + [anon_sym_inner] = ACTIONS(4967), + [anon_sym_override] = ACTIONS(4967), + [anon_sym_lateinit] = ACTIONS(4967), + [anon_sym_public] = ACTIONS(4967), + [anon_sym_private] = ACTIONS(4967), + [anon_sym_internal] = ACTIONS(4967), + [anon_sym_protected] = ACTIONS(4967), + [anon_sym_tailrec] = ACTIONS(4967), + [anon_sym_operator] = ACTIONS(4967), + [anon_sym_infix] = ACTIONS(4967), + [anon_sym_inline] = ACTIONS(4967), + [anon_sym_external] = ACTIONS(4967), + [sym_property_modifier] = ACTIONS(4967), + [anon_sym_abstract] = ACTIONS(4967), + [anon_sym_final] = ACTIONS(4967), + [anon_sym_open] = ACTIONS(4967), + [anon_sym_vararg] = ACTIONS(4967), + [anon_sym_noinline] = ACTIONS(4967), + [anon_sym_crossinline] = ACTIONS(4967), + [anon_sym_expect] = ACTIONS(4967), + [anon_sym_actual] = ACTIONS(4967), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4969), + [anon_sym_continue_AT] = ACTIONS(4969), + [anon_sym_break_AT] = ACTIONS(4969), + [sym_real_literal] = ACTIONS(4969), + [sym_integer_literal] = ACTIONS(4967), + [sym_hex_literal] = ACTIONS(4969), + [sym_bin_literal] = ACTIONS(4969), + [anon_sym_true] = ACTIONS(4967), + [anon_sym_false] = ACTIONS(4967), + [anon_sym_SQUOTE] = ACTIONS(4969), + [sym__backtick_identifier] = ACTIONS(4969), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4969), + }, + [3969] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [anon_sym_as] = 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_by] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4527), + [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_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(4527), + [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_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), + }, + [3970] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4006), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = 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(4654), + [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_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(4654), + [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_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), + [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), + }, + [3971] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [3972] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(6987), + [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_DOT] = 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(4527), + [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_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(4527), + [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_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), + [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), + }, + [3973] = { + [sym__alpha_identifier] = ACTIONS(4985), + [anon_sym_AT] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_typealias] = ACTIONS(4985), + [anon_sym_class] = ACTIONS(4985), + [anon_sym_interface] = ACTIONS(4985), + [anon_sym_enum] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_val] = ACTIONS(4985), + [anon_sym_var] = ACTIONS(4985), + [anon_sym_object] = ACTIONS(4985), + [anon_sym_fun] = ACTIONS(4985), + [anon_sym_get] = ACTIONS(4985), + [anon_sym_set] = ACTIONS(4985), + [anon_sym_this] = ACTIONS(4985), + [anon_sym_super] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4987), + [sym_label] = ACTIONS(4985), + [anon_sym_for] = ACTIONS(4985), + [anon_sym_while] = ACTIONS(4985), + [anon_sym_do] = ACTIONS(4985), + [anon_sym_null] = ACTIONS(4985), + [anon_sym_if] = ACTIONS(4985), + [anon_sym_when] = ACTIONS(4985), + [anon_sym_try] = ACTIONS(4985), + [anon_sym_throw] = ACTIONS(4985), + [anon_sym_return] = ACTIONS(4985), + [anon_sym_continue] = ACTIONS(4985), + [anon_sym_break] = ACTIONS(4985), + [anon_sym_COLON_COLON] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_suspend] = ACTIONS(4985), + [anon_sym_sealed] = ACTIONS(4985), + [anon_sym_annotation] = ACTIONS(4985), + [anon_sym_data] = ACTIONS(4985), + [anon_sym_inner] = ACTIONS(4985), + [anon_sym_override] = ACTIONS(4985), + [anon_sym_lateinit] = ACTIONS(4985), + [anon_sym_public] = ACTIONS(4985), + [anon_sym_private] = ACTIONS(4985), + [anon_sym_internal] = ACTIONS(4985), + [anon_sym_protected] = ACTIONS(4985), + [anon_sym_tailrec] = ACTIONS(4985), + [anon_sym_operator] = ACTIONS(4985), + [anon_sym_infix] = ACTIONS(4985), + [anon_sym_inline] = ACTIONS(4985), + [anon_sym_external] = ACTIONS(4985), + [sym_property_modifier] = ACTIONS(4985), + [anon_sym_abstract] = ACTIONS(4985), + [anon_sym_final] = ACTIONS(4985), + [anon_sym_open] = ACTIONS(4985), + [anon_sym_vararg] = ACTIONS(4985), + [anon_sym_noinline] = ACTIONS(4985), + [anon_sym_crossinline] = ACTIONS(4985), + [anon_sym_expect] = ACTIONS(4985), + [anon_sym_actual] = ACTIONS(4985), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [anon_sym_return_AT] = ACTIONS(4987), + [anon_sym_continue_AT] = ACTIONS(4987), + [anon_sym_break_AT] = ACTIONS(4987), + [sym_real_literal] = ACTIONS(4987), + [sym_integer_literal] = ACTIONS(4985), + [sym_hex_literal] = ACTIONS(4987), + [sym_bin_literal] = ACTIONS(4987), + [anon_sym_true] = ACTIONS(4985), + [anon_sym_false] = ACTIONS(4985), + [anon_sym_SQUOTE] = ACTIONS(4987), + [sym__backtick_identifier] = ACTIONS(4987), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4987), }, - [4000] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_DASH_GT] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [3974] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4304), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_DOT_DOT] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_PLUS_EQ] = ACTIONS(4307), + [anon_sym_DASH_EQ] = ACTIONS(4307), + [anon_sym_STAR_EQ] = ACTIONS(4307), + [anon_sym_SLASH_EQ] = ACTIONS(4307), + [anon_sym_PERCENT_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_BANGin] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_BANGis] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_as_QMARK] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4307), + [anon_sym_suspend] = ACTIONS(4304), + [anon_sym_sealed] = ACTIONS(4304), + [anon_sym_annotation] = ACTIONS(4304), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_override] = ACTIONS(4304), + [anon_sym_lateinit] = ACTIONS(4304), + [anon_sym_public] = ACTIONS(4304), + [anon_sym_private] = ACTIONS(4304), + [anon_sym_internal] = ACTIONS(4304), + [anon_sym_protected] = ACTIONS(4304), + [anon_sym_tailrec] = ACTIONS(4304), + [anon_sym_operator] = ACTIONS(4304), + [anon_sym_infix] = ACTIONS(4304), + [anon_sym_inline] = ACTIONS(4304), + [anon_sym_external] = ACTIONS(4304), + [sym_property_modifier] = ACTIONS(4304), + [anon_sym_abstract] = ACTIONS(4304), + [anon_sym_final] = ACTIONS(4304), + [anon_sym_open] = ACTIONS(4304), + [anon_sym_vararg] = ACTIONS(4304), + [anon_sym_noinline] = ACTIONS(4304), + [anon_sym_crossinline] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4307), [sym_multiline_comment] = ACTIONS(3), }, - [4001] = { - [sym__alpha_identifier] = ACTIONS(4891), - [anon_sym_AT] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4893), - [anon_sym_typealias] = ACTIONS(4891), - [anon_sym_class] = ACTIONS(4891), - [anon_sym_interface] = ACTIONS(4891), - [anon_sym_enum] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4893), - [anon_sym_LPAREN] = ACTIONS(4893), - [anon_sym_val] = ACTIONS(4891), - [anon_sym_var] = ACTIONS(4891), - [anon_sym_object] = ACTIONS(4891), - [anon_sym_fun] = ACTIONS(4891), - [anon_sym_get] = ACTIONS(4891), - [anon_sym_set] = ACTIONS(4891), - [anon_sym_this] = ACTIONS(4891), - [anon_sym_super] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4893), - [sym_label] = ACTIONS(4891), - [anon_sym_for] = ACTIONS(4891), - [anon_sym_while] = ACTIONS(4891), - [anon_sym_do] = ACTIONS(4891), - [anon_sym_null] = ACTIONS(4891), - [anon_sym_if] = ACTIONS(4891), - [anon_sym_when] = ACTIONS(4891), - [anon_sym_try] = ACTIONS(4891), - [anon_sym_throw] = ACTIONS(4891), - [anon_sym_return] = ACTIONS(4891), - [anon_sym_continue] = ACTIONS(4891), - [anon_sym_break] = ACTIONS(4891), - [anon_sym_COLON_COLON] = ACTIONS(4893), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4893), - [anon_sym_DASH_DASH] = ACTIONS(4893), - [anon_sym_BANG] = ACTIONS(4893), - [anon_sym_suspend] = ACTIONS(4891), - [anon_sym_sealed] = ACTIONS(4891), - [anon_sym_annotation] = ACTIONS(4891), - [anon_sym_data] = ACTIONS(4891), - [anon_sym_inner] = ACTIONS(4891), - [anon_sym_override] = ACTIONS(4891), - [anon_sym_lateinit] = ACTIONS(4891), - [anon_sym_public] = ACTIONS(4891), - [anon_sym_private] = ACTIONS(4891), - [anon_sym_internal] = ACTIONS(4891), - [anon_sym_protected] = ACTIONS(4891), - [anon_sym_tailrec] = ACTIONS(4891), - [anon_sym_operator] = ACTIONS(4891), - [anon_sym_infix] = ACTIONS(4891), - [anon_sym_inline] = ACTIONS(4891), - [anon_sym_external] = ACTIONS(4891), - [sym_property_modifier] = ACTIONS(4891), - [anon_sym_abstract] = ACTIONS(4891), - [anon_sym_final] = ACTIONS(4891), - [anon_sym_open] = ACTIONS(4891), - [anon_sym_vararg] = ACTIONS(4891), - [anon_sym_noinline] = ACTIONS(4891), - [anon_sym_crossinline] = ACTIONS(4891), - [anon_sym_expect] = ACTIONS(4891), - [anon_sym_actual] = ACTIONS(4891), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4893), - [anon_sym_continue_AT] = ACTIONS(4893), - [anon_sym_break_AT] = ACTIONS(4893), - [sym_real_literal] = ACTIONS(4893), - [sym_integer_literal] = ACTIONS(4891), - [sym_hex_literal] = ACTIONS(4893), - [sym_bin_literal] = ACTIONS(4893), - [anon_sym_true] = ACTIONS(4891), - [anon_sym_false] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4893), - [sym__backtick_identifier] = ACTIONS(4893), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4893), - }, - [4002] = { - [sym__alpha_identifier] = ACTIONS(7075), - [anon_sym_AT] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_typealias] = ACTIONS(7075), - [anon_sym_class] = ACTIONS(7075), - [anon_sym_interface] = ACTIONS(7075), - [anon_sym_enum] = ACTIONS(7075), - [anon_sym_LBRACE] = ACTIONS(7077), - [anon_sym_LPAREN] = ACTIONS(7077), - [anon_sym_val] = ACTIONS(7075), - [anon_sym_var] = ACTIONS(7075), - [anon_sym_object] = ACTIONS(7075), - [anon_sym_fun] = ACTIONS(7075), - [anon_sym_get] = ACTIONS(7075), - [anon_sym_set] = ACTIONS(7075), - [anon_sym_this] = ACTIONS(7075), - [anon_sym_super] = ACTIONS(7075), - [anon_sym_STAR] = ACTIONS(7077), - [sym_label] = ACTIONS(7075), - [anon_sym_for] = ACTIONS(7075), - [anon_sym_while] = ACTIONS(7075), - [anon_sym_do] = ACTIONS(7075), - [anon_sym_null] = ACTIONS(7075), - [anon_sym_if] = ACTIONS(7075), - [anon_sym_when] = ACTIONS(7075), - [anon_sym_try] = ACTIONS(7075), - [anon_sym_throw] = ACTIONS(7075), - [anon_sym_return] = ACTIONS(7075), - [anon_sym_continue] = ACTIONS(7075), - [anon_sym_break] = ACTIONS(7075), - [anon_sym_COLON_COLON] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7075), - [anon_sym_DASH] = ACTIONS(7075), - [anon_sym_PLUS_PLUS] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7077), - [anon_sym_BANG] = ACTIONS(7077), - [anon_sym_suspend] = ACTIONS(7075), - [anon_sym_sealed] = ACTIONS(7075), - [anon_sym_annotation] = ACTIONS(7075), - [anon_sym_data] = ACTIONS(7075), - [anon_sym_inner] = ACTIONS(7075), - [anon_sym_override] = ACTIONS(7075), - [anon_sym_lateinit] = ACTIONS(7075), - [anon_sym_public] = ACTIONS(7075), - [anon_sym_private] = ACTIONS(7075), - [anon_sym_internal] = ACTIONS(7075), - [anon_sym_protected] = ACTIONS(7075), - [anon_sym_tailrec] = ACTIONS(7075), - [anon_sym_operator] = ACTIONS(7075), - [anon_sym_infix] = ACTIONS(7075), - [anon_sym_inline] = ACTIONS(7075), - [anon_sym_external] = ACTIONS(7075), - [sym_property_modifier] = ACTIONS(7075), - [anon_sym_abstract] = ACTIONS(7075), - [anon_sym_final] = ACTIONS(7075), - [anon_sym_open] = ACTIONS(7075), - [anon_sym_vararg] = ACTIONS(7075), - [anon_sym_noinline] = ACTIONS(7075), - [anon_sym_crossinline] = ACTIONS(7075), - [anon_sym_expect] = ACTIONS(7075), - [anon_sym_actual] = ACTIONS(7075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7077), - [anon_sym_continue_AT] = ACTIONS(7077), - [anon_sym_break_AT] = ACTIONS(7077), - [sym_real_literal] = ACTIONS(7077), - [sym_integer_literal] = ACTIONS(7075), - [sym_hex_literal] = ACTIONS(7077), - [sym_bin_literal] = ACTIONS(7077), - [anon_sym_true] = ACTIONS(7075), - [anon_sym_false] = ACTIONS(7075), - [anon_sym_SQUOTE] = ACTIONS(7077), - [sym__backtick_identifier] = ACTIONS(7077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7077), - }, - [4003] = { - [sym__alpha_identifier] = ACTIONS(7079), - [anon_sym_AT] = ACTIONS(7081), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_typealias] = ACTIONS(7079), - [anon_sym_class] = ACTIONS(7079), - [anon_sym_interface] = ACTIONS(7079), - [anon_sym_enum] = ACTIONS(7079), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_LPAREN] = ACTIONS(7081), - [anon_sym_val] = ACTIONS(7079), - [anon_sym_var] = ACTIONS(7079), - [anon_sym_object] = ACTIONS(7079), - [anon_sym_fun] = ACTIONS(7079), - [anon_sym_get] = ACTIONS(7079), - [anon_sym_set] = ACTIONS(7079), - [anon_sym_this] = ACTIONS(7079), - [anon_sym_super] = ACTIONS(7079), - [anon_sym_STAR] = ACTIONS(7081), - [sym_label] = ACTIONS(7079), - [anon_sym_for] = ACTIONS(7079), - [anon_sym_while] = ACTIONS(7079), - [anon_sym_do] = ACTIONS(7079), - [anon_sym_null] = ACTIONS(7079), - [anon_sym_if] = ACTIONS(7079), - [anon_sym_when] = ACTIONS(7079), - [anon_sym_try] = ACTIONS(7079), - [anon_sym_throw] = ACTIONS(7079), - [anon_sym_return] = ACTIONS(7079), - [anon_sym_continue] = ACTIONS(7079), - [anon_sym_break] = ACTIONS(7079), - [anon_sym_COLON_COLON] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_BANG] = ACTIONS(7081), - [anon_sym_suspend] = ACTIONS(7079), - [anon_sym_sealed] = ACTIONS(7079), - [anon_sym_annotation] = ACTIONS(7079), - [anon_sym_data] = ACTIONS(7079), - [anon_sym_inner] = ACTIONS(7079), - [anon_sym_override] = ACTIONS(7079), - [anon_sym_lateinit] = ACTIONS(7079), - [anon_sym_public] = ACTIONS(7079), - [anon_sym_private] = ACTIONS(7079), - [anon_sym_internal] = ACTIONS(7079), - [anon_sym_protected] = ACTIONS(7079), - [anon_sym_tailrec] = ACTIONS(7079), - [anon_sym_operator] = ACTIONS(7079), - [anon_sym_infix] = ACTIONS(7079), - [anon_sym_inline] = ACTIONS(7079), - [anon_sym_external] = ACTIONS(7079), - [sym_property_modifier] = ACTIONS(7079), - [anon_sym_abstract] = ACTIONS(7079), - [anon_sym_final] = ACTIONS(7079), - [anon_sym_open] = ACTIONS(7079), - [anon_sym_vararg] = ACTIONS(7079), - [anon_sym_noinline] = ACTIONS(7079), - [anon_sym_crossinline] = ACTIONS(7079), - [anon_sym_expect] = ACTIONS(7079), - [anon_sym_actual] = ACTIONS(7079), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7081), - [anon_sym_continue_AT] = ACTIONS(7081), - [anon_sym_break_AT] = ACTIONS(7081), - [sym_real_literal] = ACTIONS(7081), - [sym_integer_literal] = ACTIONS(7079), - [sym_hex_literal] = ACTIONS(7081), - [sym_bin_literal] = ACTIONS(7081), - [anon_sym_true] = ACTIONS(7079), - [anon_sym_false] = ACTIONS(7079), - [anon_sym_SQUOTE] = ACTIONS(7081), - [sym__backtick_identifier] = ACTIONS(7081), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7081), - }, - [4004] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7083), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [3975] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_DASH_GT] = ACTIONS(3019), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4005] = { - [sym_type_constraints] = STATE(4158), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3976] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_PLUS_EQ] = ACTIONS(4310), + [anon_sym_DASH_EQ] = ACTIONS(4310), + [anon_sym_STAR_EQ] = ACTIONS(4310), + [anon_sym_SLASH_EQ] = ACTIONS(4310), + [anon_sym_PERCENT_EQ] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4312), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), [sym_multiline_comment] = ACTIONS(3), }, - [4006] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3977] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_RPAREN] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3073), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3088), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4007] = { - [sym__alpha_identifier] = ACTIONS(4867), - [anon_sym_AT] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_typealias] = ACTIONS(4867), - [anon_sym_class] = ACTIONS(4867), - [anon_sym_interface] = ACTIONS(4867), - [anon_sym_enum] = ACTIONS(4867), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_val] = ACTIONS(4867), - [anon_sym_var] = ACTIONS(4867), - [anon_sym_object] = ACTIONS(4867), - [anon_sym_fun] = ACTIONS(4867), - [anon_sym_get] = ACTIONS(4867), - [anon_sym_set] = ACTIONS(4867), - [anon_sym_this] = ACTIONS(4867), - [anon_sym_super] = ACTIONS(4867), - [anon_sym_STAR] = ACTIONS(4869), - [sym_label] = ACTIONS(4867), - [anon_sym_for] = ACTIONS(4867), - [anon_sym_while] = ACTIONS(4867), - [anon_sym_do] = ACTIONS(4867), - [anon_sym_null] = ACTIONS(4867), - [anon_sym_if] = ACTIONS(4867), - [anon_sym_when] = ACTIONS(4867), - [anon_sym_try] = ACTIONS(4867), - [anon_sym_throw] = ACTIONS(4867), - [anon_sym_return] = ACTIONS(4867), - [anon_sym_continue] = ACTIONS(4867), - [anon_sym_break] = ACTIONS(4867), - [anon_sym_COLON_COLON] = ACTIONS(4869), - [anon_sym_PLUS] = ACTIONS(4867), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_PLUS_PLUS] = ACTIONS(4869), - [anon_sym_DASH_DASH] = ACTIONS(4869), - [anon_sym_BANG] = ACTIONS(4869), - [anon_sym_suspend] = ACTIONS(4867), - [anon_sym_sealed] = ACTIONS(4867), - [anon_sym_annotation] = ACTIONS(4867), - [anon_sym_data] = ACTIONS(4867), - [anon_sym_inner] = ACTIONS(4867), - [anon_sym_override] = ACTIONS(4867), - [anon_sym_lateinit] = ACTIONS(4867), - [anon_sym_public] = ACTIONS(4867), - [anon_sym_private] = ACTIONS(4867), - [anon_sym_internal] = ACTIONS(4867), - [anon_sym_protected] = ACTIONS(4867), - [anon_sym_tailrec] = ACTIONS(4867), - [anon_sym_operator] = ACTIONS(4867), - [anon_sym_infix] = ACTIONS(4867), - [anon_sym_inline] = ACTIONS(4867), - [anon_sym_external] = ACTIONS(4867), - [sym_property_modifier] = ACTIONS(4867), - [anon_sym_abstract] = ACTIONS(4867), - [anon_sym_final] = ACTIONS(4867), - [anon_sym_open] = ACTIONS(4867), - [anon_sym_vararg] = ACTIONS(4867), - [anon_sym_noinline] = ACTIONS(4867), - [anon_sym_crossinline] = ACTIONS(4867), - [anon_sym_expect] = ACTIONS(4867), - [anon_sym_actual] = ACTIONS(4867), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4869), - [anon_sym_continue_AT] = ACTIONS(4869), - [anon_sym_break_AT] = ACTIONS(4869), - [sym_real_literal] = ACTIONS(4869), - [sym_integer_literal] = ACTIONS(4867), - [sym_hex_literal] = ACTIONS(4869), - [sym_bin_literal] = ACTIONS(4869), - [anon_sym_true] = ACTIONS(4867), - [anon_sym_false] = ACTIONS(4867), - [anon_sym_SQUOTE] = ACTIONS(4869), - [sym__backtick_identifier] = ACTIONS(4869), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4869), - }, - [4008] = { - [sym__alpha_identifier] = ACTIONS(4859), - [anon_sym_AT] = ACTIONS(4861), - [anon_sym_LBRACK] = ACTIONS(4861), - [anon_sym_typealias] = ACTIONS(4859), - [anon_sym_class] = ACTIONS(4859), - [anon_sym_interface] = ACTIONS(4859), - [anon_sym_enum] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4861), - [anon_sym_val] = ACTIONS(4859), - [anon_sym_var] = ACTIONS(4859), - [anon_sym_object] = ACTIONS(4859), - [anon_sym_fun] = ACTIONS(4859), - [anon_sym_get] = ACTIONS(4859), - [anon_sym_set] = ACTIONS(4859), - [anon_sym_this] = ACTIONS(4859), - [anon_sym_super] = ACTIONS(4859), - [anon_sym_STAR] = ACTIONS(4861), - [sym_label] = ACTIONS(4859), - [anon_sym_for] = ACTIONS(4859), - [anon_sym_while] = ACTIONS(4859), - [anon_sym_do] = ACTIONS(4859), - [anon_sym_null] = ACTIONS(4859), - [anon_sym_if] = ACTIONS(4859), - [anon_sym_when] = ACTIONS(4859), - [anon_sym_try] = ACTIONS(4859), - [anon_sym_throw] = ACTIONS(4859), - [anon_sym_return] = ACTIONS(4859), - [anon_sym_continue] = ACTIONS(4859), - [anon_sym_break] = ACTIONS(4859), - [anon_sym_COLON_COLON] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4859), - [anon_sym_DASH] = ACTIONS(4859), - [anon_sym_PLUS_PLUS] = ACTIONS(4861), - [anon_sym_DASH_DASH] = ACTIONS(4861), - [anon_sym_BANG] = ACTIONS(4861), - [anon_sym_suspend] = ACTIONS(4859), - [anon_sym_sealed] = ACTIONS(4859), - [anon_sym_annotation] = ACTIONS(4859), - [anon_sym_data] = ACTIONS(4859), - [anon_sym_inner] = ACTIONS(4859), - [anon_sym_override] = ACTIONS(4859), - [anon_sym_lateinit] = ACTIONS(4859), - [anon_sym_public] = ACTIONS(4859), - [anon_sym_private] = ACTIONS(4859), - [anon_sym_internal] = ACTIONS(4859), - [anon_sym_protected] = ACTIONS(4859), - [anon_sym_tailrec] = ACTIONS(4859), - [anon_sym_operator] = ACTIONS(4859), - [anon_sym_infix] = ACTIONS(4859), - [anon_sym_inline] = ACTIONS(4859), - [anon_sym_external] = ACTIONS(4859), - [sym_property_modifier] = ACTIONS(4859), - [anon_sym_abstract] = ACTIONS(4859), - [anon_sym_final] = ACTIONS(4859), - [anon_sym_open] = ACTIONS(4859), - [anon_sym_vararg] = ACTIONS(4859), - [anon_sym_noinline] = ACTIONS(4859), - [anon_sym_crossinline] = ACTIONS(4859), - [anon_sym_expect] = ACTIONS(4859), - [anon_sym_actual] = ACTIONS(4859), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4861), - [anon_sym_continue_AT] = ACTIONS(4861), - [anon_sym_break_AT] = ACTIONS(4861), - [sym_real_literal] = ACTIONS(4861), - [sym_integer_literal] = ACTIONS(4859), - [sym_hex_literal] = ACTIONS(4861), - [sym_bin_literal] = ACTIONS(4861), - [anon_sym_true] = ACTIONS(4859), - [anon_sym_false] = ACTIONS(4859), - [anon_sym_SQUOTE] = ACTIONS(4861), - [sym__backtick_identifier] = ACTIONS(4861), + [3978] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7054), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4861), - }, - [4009] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(6961), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_object] = ACTIONS(4414), - [anon_sym_fun] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_this] = ACTIONS(4414), - [anon_sym_super] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [sym_label] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_throw] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4416), - [anon_sym_continue_AT] = ACTIONS(4416), - [anon_sym_break_AT] = ACTIONS(4416), - [sym_real_literal] = ACTIONS(4416), - [sym_integer_literal] = ACTIONS(4414), - [sym_hex_literal] = ACTIONS(4416), - [sym_bin_literal] = ACTIONS(4416), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4416), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4416), }, - [4010] = { - [sym_type_constraints] = STATE(4068), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [3979] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3008), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4011] = { - [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_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4790), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(7011), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), + [3980] = { + [sym__alpha_identifier] = ACTIONS(7056), + [anon_sym_AT] = ACTIONS(7058), + [anon_sym_LBRACK] = ACTIONS(7058), + [anon_sym_typealias] = ACTIONS(7056), + [anon_sym_class] = ACTIONS(7056), + [anon_sym_interface] = ACTIONS(7056), + [anon_sym_enum] = ACTIONS(7056), + [anon_sym_LBRACE] = ACTIONS(7058), + [anon_sym_LPAREN] = ACTIONS(7058), + [anon_sym_val] = ACTIONS(7056), + [anon_sym_var] = ACTIONS(7056), + [anon_sym_object] = ACTIONS(7056), + [anon_sym_fun] = ACTIONS(7056), + [anon_sym_get] = ACTIONS(7056), + [anon_sym_set] = ACTIONS(7056), + [anon_sym_this] = ACTIONS(7056), + [anon_sym_super] = ACTIONS(7056), + [anon_sym_STAR] = ACTIONS(7058), + [sym_label] = ACTIONS(7056), + [anon_sym_for] = ACTIONS(7056), + [anon_sym_while] = ACTIONS(7056), + [anon_sym_do] = ACTIONS(7056), + [anon_sym_null] = ACTIONS(7056), + [anon_sym_if] = ACTIONS(7056), + [anon_sym_when] = ACTIONS(7056), + [anon_sym_try] = ACTIONS(7056), + [anon_sym_throw] = ACTIONS(7056), + [anon_sym_return] = ACTIONS(7056), + [anon_sym_continue] = ACTIONS(7056), + [anon_sym_break] = ACTIONS(7056), + [anon_sym_COLON_COLON] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(7056), + [anon_sym_DASH] = ACTIONS(7056), + [anon_sym_PLUS_PLUS] = ACTIONS(7058), + [anon_sym_DASH_DASH] = ACTIONS(7058), + [anon_sym_BANG] = ACTIONS(7058), + [anon_sym_suspend] = ACTIONS(7056), + [anon_sym_sealed] = ACTIONS(7056), + [anon_sym_annotation] = ACTIONS(7056), + [anon_sym_data] = ACTIONS(7056), + [anon_sym_inner] = ACTIONS(7056), + [anon_sym_override] = ACTIONS(7056), + [anon_sym_lateinit] = ACTIONS(7056), + [anon_sym_public] = ACTIONS(7056), + [anon_sym_private] = ACTIONS(7056), + [anon_sym_internal] = ACTIONS(7056), + [anon_sym_protected] = ACTIONS(7056), + [anon_sym_tailrec] = ACTIONS(7056), + [anon_sym_operator] = ACTIONS(7056), + [anon_sym_infix] = ACTIONS(7056), + [anon_sym_inline] = ACTIONS(7056), + [anon_sym_external] = ACTIONS(7056), + [sym_property_modifier] = ACTIONS(7056), + [anon_sym_abstract] = ACTIONS(7056), + [anon_sym_final] = ACTIONS(7056), + [anon_sym_open] = ACTIONS(7056), + [anon_sym_vararg] = ACTIONS(7056), + [anon_sym_noinline] = ACTIONS(7056), + [anon_sym_crossinline] = ACTIONS(7056), + [anon_sym_expect] = ACTIONS(7056), + [anon_sym_actual] = ACTIONS(7056), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7058), + [anon_sym_continue_AT] = ACTIONS(7058), + [anon_sym_break_AT] = ACTIONS(7058), + [sym_real_literal] = ACTIONS(7058), + [sym_integer_literal] = ACTIONS(7056), + [sym_hex_literal] = ACTIONS(7058), + [sym_bin_literal] = ACTIONS(7058), + [anon_sym_true] = ACTIONS(7056), + [anon_sym_false] = ACTIONS(7056), + [anon_sym_SQUOTE] = ACTIONS(7058), + [sym__backtick_identifier] = ACTIONS(7058), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7058), }, - [4012] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), + [3981] = { + [sym_type_constraints] = STATE(4165), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(7060), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, - [4013] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3982] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RPAREN] = ACTIONS(3072), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3084), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3072), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4014] = { - [sym__alpha_identifier] = ACTIONS(4863), - [anon_sym_AT] = ACTIONS(4865), - [anon_sym_LBRACK] = ACTIONS(4865), - [anon_sym_typealias] = ACTIONS(4863), - [anon_sym_class] = ACTIONS(4863), - [anon_sym_interface] = ACTIONS(4863), - [anon_sym_enum] = ACTIONS(4863), - [anon_sym_LBRACE] = ACTIONS(4865), - [anon_sym_LPAREN] = ACTIONS(4865), - [anon_sym_val] = ACTIONS(4863), - [anon_sym_var] = ACTIONS(4863), - [anon_sym_object] = ACTIONS(4863), - [anon_sym_fun] = ACTIONS(4863), - [anon_sym_get] = ACTIONS(4863), - [anon_sym_set] = ACTIONS(4863), - [anon_sym_this] = ACTIONS(4863), - [anon_sym_super] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [sym_label] = ACTIONS(4863), - [anon_sym_for] = ACTIONS(4863), - [anon_sym_while] = ACTIONS(4863), - [anon_sym_do] = ACTIONS(4863), - [anon_sym_null] = ACTIONS(4863), - [anon_sym_if] = ACTIONS(4863), - [anon_sym_when] = ACTIONS(4863), - [anon_sym_try] = ACTIONS(4863), - [anon_sym_throw] = ACTIONS(4863), - [anon_sym_return] = ACTIONS(4863), - [anon_sym_continue] = ACTIONS(4863), - [anon_sym_break] = ACTIONS(4863), - [anon_sym_COLON_COLON] = ACTIONS(4865), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_PLUS_PLUS] = ACTIONS(4865), - [anon_sym_DASH_DASH] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(4865), - [anon_sym_suspend] = ACTIONS(4863), - [anon_sym_sealed] = ACTIONS(4863), - [anon_sym_annotation] = ACTIONS(4863), - [anon_sym_data] = ACTIONS(4863), - [anon_sym_inner] = ACTIONS(4863), - [anon_sym_override] = ACTIONS(4863), - [anon_sym_lateinit] = ACTIONS(4863), - [anon_sym_public] = ACTIONS(4863), - [anon_sym_private] = ACTIONS(4863), - [anon_sym_internal] = ACTIONS(4863), - [anon_sym_protected] = ACTIONS(4863), - [anon_sym_tailrec] = ACTIONS(4863), - [anon_sym_operator] = ACTIONS(4863), - [anon_sym_infix] = ACTIONS(4863), - [anon_sym_inline] = ACTIONS(4863), - [anon_sym_external] = ACTIONS(4863), - [sym_property_modifier] = ACTIONS(4863), - [anon_sym_abstract] = ACTIONS(4863), - [anon_sym_final] = ACTIONS(4863), - [anon_sym_open] = ACTIONS(4863), - [anon_sym_vararg] = ACTIONS(4863), - [anon_sym_noinline] = ACTIONS(4863), - [anon_sym_crossinline] = ACTIONS(4863), - [anon_sym_expect] = ACTIONS(4863), - [anon_sym_actual] = ACTIONS(4863), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4865), - [anon_sym_continue_AT] = ACTIONS(4865), - [anon_sym_break_AT] = ACTIONS(4865), - [sym_real_literal] = ACTIONS(4865), - [sym_integer_literal] = ACTIONS(4863), - [sym_hex_literal] = ACTIONS(4865), - [sym_bin_literal] = ACTIONS(4865), - [anon_sym_true] = ACTIONS(4863), - [anon_sym_false] = ACTIONS(4863), - [anon_sym_SQUOTE] = ACTIONS(4865), - [sym__backtick_identifier] = ACTIONS(4865), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4865), - }, - [4015] = { - [sym__alpha_identifier] = ACTIONS(4883), - [anon_sym_AT] = ACTIONS(4885), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_typealias] = ACTIONS(4883), - [anon_sym_class] = ACTIONS(4883), - [anon_sym_interface] = ACTIONS(4883), - [anon_sym_enum] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_val] = ACTIONS(4883), - [anon_sym_var] = ACTIONS(4883), - [anon_sym_object] = ACTIONS(4883), - [anon_sym_fun] = ACTIONS(4883), - [anon_sym_get] = ACTIONS(4883), - [anon_sym_set] = ACTIONS(4883), - [anon_sym_this] = ACTIONS(4883), - [anon_sym_super] = ACTIONS(4883), - [anon_sym_STAR] = ACTIONS(4885), - [sym_label] = ACTIONS(4883), - [anon_sym_for] = ACTIONS(4883), - [anon_sym_while] = ACTIONS(4883), - [anon_sym_do] = ACTIONS(4883), - [anon_sym_null] = ACTIONS(4883), - [anon_sym_if] = ACTIONS(4883), - [anon_sym_when] = ACTIONS(4883), - [anon_sym_try] = ACTIONS(4883), - [anon_sym_throw] = ACTIONS(4883), - [anon_sym_return] = ACTIONS(4883), - [anon_sym_continue] = ACTIONS(4883), - [anon_sym_break] = ACTIONS(4883), - [anon_sym_COLON_COLON] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_PLUS_PLUS] = ACTIONS(4885), - [anon_sym_DASH_DASH] = ACTIONS(4885), - [anon_sym_BANG] = ACTIONS(4885), - [anon_sym_suspend] = ACTIONS(4883), - [anon_sym_sealed] = ACTIONS(4883), - [anon_sym_annotation] = ACTIONS(4883), - [anon_sym_data] = ACTIONS(4883), - [anon_sym_inner] = ACTIONS(4883), - [anon_sym_override] = ACTIONS(4883), - [anon_sym_lateinit] = ACTIONS(4883), - [anon_sym_public] = ACTIONS(4883), - [anon_sym_private] = ACTIONS(4883), - [anon_sym_internal] = ACTIONS(4883), - [anon_sym_protected] = ACTIONS(4883), - [anon_sym_tailrec] = ACTIONS(4883), - [anon_sym_operator] = ACTIONS(4883), - [anon_sym_infix] = ACTIONS(4883), - [anon_sym_inline] = ACTIONS(4883), - [anon_sym_external] = ACTIONS(4883), - [sym_property_modifier] = ACTIONS(4883), - [anon_sym_abstract] = ACTIONS(4883), - [anon_sym_final] = ACTIONS(4883), - [anon_sym_open] = ACTIONS(4883), - [anon_sym_vararg] = ACTIONS(4883), - [anon_sym_noinline] = ACTIONS(4883), - [anon_sym_crossinline] = ACTIONS(4883), - [anon_sym_expect] = ACTIONS(4883), - [anon_sym_actual] = ACTIONS(4883), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4885), - [anon_sym_continue_AT] = ACTIONS(4885), - [anon_sym_break_AT] = ACTIONS(4885), - [sym_real_literal] = ACTIONS(4885), - [sym_integer_literal] = ACTIONS(4883), - [sym_hex_literal] = ACTIONS(4885), - [sym_bin_literal] = ACTIONS(4885), - [anon_sym_true] = ACTIONS(4883), - [anon_sym_false] = ACTIONS(4883), - [anon_sym_SQUOTE] = ACTIONS(4885), - [sym__backtick_identifier] = ACTIONS(4885), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4885), + [3983] = { + [sym__alpha_identifier] = ACTIONS(4977), + [anon_sym_AT] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_typealias] = ACTIONS(4977), + [anon_sym_class] = ACTIONS(4977), + [anon_sym_interface] = ACTIONS(4977), + [anon_sym_enum] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_val] = ACTIONS(4977), + [anon_sym_var] = ACTIONS(4977), + [anon_sym_object] = ACTIONS(4977), + [anon_sym_fun] = ACTIONS(4977), + [anon_sym_get] = ACTIONS(4977), + [anon_sym_set] = ACTIONS(4977), + [anon_sym_this] = ACTIONS(4977), + [anon_sym_super] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4979), + [sym_label] = ACTIONS(4977), + [anon_sym_for] = ACTIONS(4977), + [anon_sym_while] = ACTIONS(4977), + [anon_sym_do] = ACTIONS(4977), + [anon_sym_null] = ACTIONS(4977), + [anon_sym_if] = ACTIONS(4977), + [anon_sym_when] = ACTIONS(4977), + [anon_sym_try] = ACTIONS(4977), + [anon_sym_throw] = ACTIONS(4977), + [anon_sym_return] = ACTIONS(4977), + [anon_sym_continue] = ACTIONS(4977), + [anon_sym_break] = ACTIONS(4977), + [anon_sym_COLON_COLON] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_BANG] = ACTIONS(4979), + [anon_sym_suspend] = ACTIONS(4977), + [anon_sym_sealed] = ACTIONS(4977), + [anon_sym_annotation] = ACTIONS(4977), + [anon_sym_data] = ACTIONS(4977), + [anon_sym_inner] = ACTIONS(4977), + [anon_sym_override] = ACTIONS(4977), + [anon_sym_lateinit] = ACTIONS(4977), + [anon_sym_public] = ACTIONS(4977), + [anon_sym_private] = ACTIONS(4977), + [anon_sym_internal] = ACTIONS(4977), + [anon_sym_protected] = ACTIONS(4977), + [anon_sym_tailrec] = ACTIONS(4977), + [anon_sym_operator] = ACTIONS(4977), + [anon_sym_infix] = ACTIONS(4977), + [anon_sym_inline] = ACTIONS(4977), + [anon_sym_external] = ACTIONS(4977), + [sym_property_modifier] = ACTIONS(4977), + [anon_sym_abstract] = ACTIONS(4977), + [anon_sym_final] = ACTIONS(4977), + [anon_sym_open] = ACTIONS(4977), + [anon_sym_vararg] = ACTIONS(4977), + [anon_sym_noinline] = ACTIONS(4977), + [anon_sym_crossinline] = ACTIONS(4977), + [anon_sym_expect] = ACTIONS(4977), + [anon_sym_actual] = ACTIONS(4977), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4979), + [anon_sym_continue_AT] = ACTIONS(4979), + [anon_sym_break_AT] = ACTIONS(4979), + [sym_real_literal] = ACTIONS(4979), + [sym_integer_literal] = ACTIONS(4977), + [sym_hex_literal] = ACTIONS(4979), + [sym_bin_literal] = ACTIONS(4979), + [anon_sym_true] = ACTIONS(4977), + [anon_sym_false] = ACTIONS(4977), + [anon_sym_SQUOTE] = ACTIONS(4979), + [sym__backtick_identifier] = ACTIONS(4979), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4979), }, - [4016] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3075), + [3984] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(2990), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3077), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(2990), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4017] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3985] = { + [sym__alpha_identifier] = ACTIONS(4963), + [anon_sym_AT] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_typealias] = ACTIONS(4963), + [anon_sym_class] = ACTIONS(4963), + [anon_sym_interface] = ACTIONS(4963), + [anon_sym_enum] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_val] = ACTIONS(4963), + [anon_sym_var] = ACTIONS(4963), + [anon_sym_object] = ACTIONS(4963), + [anon_sym_fun] = ACTIONS(4963), + [anon_sym_get] = ACTIONS(4963), + [anon_sym_set] = ACTIONS(4963), + [anon_sym_this] = ACTIONS(4963), + [anon_sym_super] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4965), + [sym_label] = ACTIONS(4963), + [anon_sym_for] = ACTIONS(4963), + [anon_sym_while] = ACTIONS(4963), + [anon_sym_do] = ACTIONS(4963), + [anon_sym_null] = ACTIONS(4963), + [anon_sym_if] = ACTIONS(4963), + [anon_sym_when] = ACTIONS(4963), + [anon_sym_try] = ACTIONS(4963), + [anon_sym_throw] = ACTIONS(4963), + [anon_sym_return] = ACTIONS(4963), + [anon_sym_continue] = ACTIONS(4963), + [anon_sym_break] = ACTIONS(4963), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_BANG] = ACTIONS(4965), + [anon_sym_suspend] = ACTIONS(4963), + [anon_sym_sealed] = ACTIONS(4963), + [anon_sym_annotation] = ACTIONS(4963), + [anon_sym_data] = ACTIONS(4963), + [anon_sym_inner] = ACTIONS(4963), + [anon_sym_override] = ACTIONS(4963), + [anon_sym_lateinit] = ACTIONS(4963), + [anon_sym_public] = ACTIONS(4963), + [anon_sym_private] = ACTIONS(4963), + [anon_sym_internal] = ACTIONS(4963), + [anon_sym_protected] = ACTIONS(4963), + [anon_sym_tailrec] = ACTIONS(4963), + [anon_sym_operator] = ACTIONS(4963), + [anon_sym_infix] = ACTIONS(4963), + [anon_sym_inline] = ACTIONS(4963), + [anon_sym_external] = ACTIONS(4963), + [sym_property_modifier] = ACTIONS(4963), + [anon_sym_abstract] = ACTIONS(4963), + [anon_sym_final] = ACTIONS(4963), + [anon_sym_open] = ACTIONS(4963), + [anon_sym_vararg] = ACTIONS(4963), + [anon_sym_noinline] = ACTIONS(4963), + [anon_sym_crossinline] = ACTIONS(4963), + [anon_sym_expect] = ACTIONS(4963), + [anon_sym_actual] = ACTIONS(4963), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4965), + [anon_sym_continue_AT] = ACTIONS(4965), + [anon_sym_break_AT] = ACTIONS(4965), + [sym_real_literal] = ACTIONS(4965), + [sym_integer_literal] = ACTIONS(4963), + [sym_hex_literal] = ACTIONS(4965), + [sym_bin_literal] = ACTIONS(4965), + [anon_sym_true] = ACTIONS(4963), + [anon_sym_false] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4965), + [sym__backtick_identifier] = ACTIONS(4965), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4965), + }, + [3986] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3005), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3061), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4018] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3987] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3054), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3015), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4019] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3988] = { + [sym__alpha_identifier] = ACTIONS(7064), + [anon_sym_AT] = ACTIONS(7066), + [anon_sym_LBRACK] = ACTIONS(7066), + [anon_sym_typealias] = ACTIONS(7064), + [anon_sym_class] = ACTIONS(7064), + [anon_sym_interface] = ACTIONS(7064), + [anon_sym_enum] = ACTIONS(7064), + [anon_sym_LBRACE] = ACTIONS(7066), + [anon_sym_LPAREN] = ACTIONS(7066), + [anon_sym_val] = ACTIONS(7064), + [anon_sym_var] = ACTIONS(7064), + [anon_sym_object] = ACTIONS(7064), + [anon_sym_fun] = ACTIONS(7064), + [anon_sym_get] = ACTIONS(7064), + [anon_sym_set] = ACTIONS(7064), + [anon_sym_this] = ACTIONS(7064), + [anon_sym_super] = ACTIONS(7064), + [anon_sym_STAR] = ACTIONS(7066), + [sym_label] = ACTIONS(7064), + [anon_sym_for] = ACTIONS(7064), + [anon_sym_while] = ACTIONS(7064), + [anon_sym_do] = ACTIONS(7064), + [anon_sym_null] = ACTIONS(7064), + [anon_sym_if] = ACTIONS(7064), + [anon_sym_when] = ACTIONS(7064), + [anon_sym_try] = ACTIONS(7064), + [anon_sym_throw] = ACTIONS(7064), + [anon_sym_return] = ACTIONS(7064), + [anon_sym_continue] = ACTIONS(7064), + [anon_sym_break] = ACTIONS(7064), + [anon_sym_COLON_COLON] = ACTIONS(7066), + [anon_sym_PLUS] = ACTIONS(7064), + [anon_sym_DASH] = ACTIONS(7064), + [anon_sym_PLUS_PLUS] = ACTIONS(7066), + [anon_sym_DASH_DASH] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(7066), + [anon_sym_suspend] = ACTIONS(7064), + [anon_sym_sealed] = ACTIONS(7064), + [anon_sym_annotation] = ACTIONS(7064), + [anon_sym_data] = ACTIONS(7064), + [anon_sym_inner] = ACTIONS(7064), + [anon_sym_override] = ACTIONS(7064), + [anon_sym_lateinit] = ACTIONS(7064), + [anon_sym_public] = ACTIONS(7064), + [anon_sym_private] = ACTIONS(7064), + [anon_sym_internal] = ACTIONS(7064), + [anon_sym_protected] = ACTIONS(7064), + [anon_sym_tailrec] = ACTIONS(7064), + [anon_sym_operator] = ACTIONS(7064), + [anon_sym_infix] = ACTIONS(7064), + [anon_sym_inline] = ACTIONS(7064), + [anon_sym_external] = ACTIONS(7064), + [sym_property_modifier] = ACTIONS(7064), + [anon_sym_abstract] = ACTIONS(7064), + [anon_sym_final] = ACTIONS(7064), + [anon_sym_open] = ACTIONS(7064), + [anon_sym_vararg] = ACTIONS(7064), + [anon_sym_noinline] = ACTIONS(7064), + [anon_sym_crossinline] = ACTIONS(7064), + [anon_sym_expect] = ACTIONS(7064), + [anon_sym_actual] = ACTIONS(7064), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7066), + [anon_sym_continue_AT] = ACTIONS(7066), + [anon_sym_break_AT] = ACTIONS(7066), + [sym_real_literal] = ACTIONS(7066), + [sym_integer_literal] = ACTIONS(7064), + [sym_hex_literal] = ACTIONS(7066), + [sym_bin_literal] = ACTIONS(7066), + [anon_sym_true] = ACTIONS(7064), + [anon_sym_false] = ACTIONS(7064), + [anon_sym_SQUOTE] = ACTIONS(7066), + [sym__backtick_identifier] = ACTIONS(7066), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7066), + }, + [3989] = { + [sym_type_constraints] = STATE(4162), + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(7068), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + }, + [3990] = { + [sym_function_body] = STATE(3124), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_object] = ACTIONS(4108), + [anon_sym_fun] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_this] = ACTIONS(4108), + [anon_sym_super] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_null] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4110), + [anon_sym_continue_AT] = ACTIONS(4110), + [anon_sym_break_AT] = ACTIONS(4110), + [sym_real_literal] = ACTIONS(4110), + [sym_integer_literal] = ACTIONS(4108), + [sym_hex_literal] = ACTIONS(4110), + [sym_bin_literal] = ACTIONS(4110), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4110), + }, + [3991] = { + [sym_function_body] = STATE(3886), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7070), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3992] = { + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(7072), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3993] = { + [sym_function_body] = STATE(3179), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_object] = ACTIONS(4452), + [anon_sym_fun] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_this] = ACTIONS(4452), + [anon_sym_super] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4452), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_null] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_when] = ACTIONS(4452), + [anon_sym_try] = ACTIONS(4452), + [anon_sym_throw] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4454), + [anon_sym_continue_AT] = ACTIONS(4454), + [anon_sym_break_AT] = ACTIONS(4454), + [sym_real_literal] = ACTIONS(4454), + [sym_integer_literal] = ACTIONS(4452), + [sym_hex_literal] = ACTIONS(4454), + [sym_bin_literal] = ACTIONS(4454), + [anon_sym_true] = ACTIONS(4452), + [anon_sym_false] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4454), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4454), + }, + [3994] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3050), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3045), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4020] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3995] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3046), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3076), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4021] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3996] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3042), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3084), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4022] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [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(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [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), + [3997] = { + [sym__alpha_identifier] = ACTIONS(7074), + [anon_sym_AT] = ACTIONS(7076), + [anon_sym_LBRACK] = ACTIONS(7076), + [anon_sym_typealias] = ACTIONS(7074), + [anon_sym_class] = ACTIONS(7074), + [anon_sym_interface] = ACTIONS(7074), + [anon_sym_enum] = ACTIONS(7074), + [anon_sym_LBRACE] = ACTIONS(7076), + [anon_sym_LPAREN] = ACTIONS(7076), + [anon_sym_val] = ACTIONS(7074), + [anon_sym_var] = ACTIONS(7074), + [anon_sym_object] = ACTIONS(7074), + [anon_sym_fun] = ACTIONS(7074), + [anon_sym_get] = ACTIONS(7074), + [anon_sym_set] = ACTIONS(7074), + [anon_sym_this] = ACTIONS(7074), + [anon_sym_super] = ACTIONS(7074), + [anon_sym_STAR] = ACTIONS(7076), + [sym_label] = ACTIONS(7074), + [anon_sym_for] = ACTIONS(7074), + [anon_sym_while] = ACTIONS(7074), + [anon_sym_do] = ACTIONS(7074), + [anon_sym_null] = ACTIONS(7074), + [anon_sym_if] = ACTIONS(7074), + [anon_sym_when] = ACTIONS(7074), + [anon_sym_try] = ACTIONS(7074), + [anon_sym_throw] = ACTIONS(7074), + [anon_sym_return] = ACTIONS(7074), + [anon_sym_continue] = ACTIONS(7074), + [anon_sym_break] = ACTIONS(7074), + [anon_sym_COLON_COLON] = ACTIONS(7076), + [anon_sym_PLUS] = ACTIONS(7074), + [anon_sym_DASH] = ACTIONS(7074), + [anon_sym_PLUS_PLUS] = ACTIONS(7076), + [anon_sym_DASH_DASH] = ACTIONS(7076), + [anon_sym_BANG] = ACTIONS(7076), + [anon_sym_suspend] = ACTIONS(7074), + [anon_sym_sealed] = ACTIONS(7074), + [anon_sym_annotation] = ACTIONS(7074), + [anon_sym_data] = ACTIONS(7074), + [anon_sym_inner] = ACTIONS(7074), + [anon_sym_override] = ACTIONS(7074), + [anon_sym_lateinit] = ACTIONS(7074), + [anon_sym_public] = ACTIONS(7074), + [anon_sym_private] = ACTIONS(7074), + [anon_sym_internal] = ACTIONS(7074), + [anon_sym_protected] = ACTIONS(7074), + [anon_sym_tailrec] = ACTIONS(7074), + [anon_sym_operator] = ACTIONS(7074), + [anon_sym_infix] = ACTIONS(7074), + [anon_sym_inline] = ACTIONS(7074), + [anon_sym_external] = ACTIONS(7074), + [sym_property_modifier] = ACTIONS(7074), + [anon_sym_abstract] = ACTIONS(7074), + [anon_sym_final] = ACTIONS(7074), + [anon_sym_open] = ACTIONS(7074), + [anon_sym_vararg] = ACTIONS(7074), + [anon_sym_noinline] = ACTIONS(7074), + [anon_sym_crossinline] = ACTIONS(7074), + [anon_sym_expect] = ACTIONS(7074), + [anon_sym_actual] = ACTIONS(7074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7076), + [anon_sym_continue_AT] = ACTIONS(7076), + [anon_sym_break_AT] = ACTIONS(7076), + [sym_real_literal] = ACTIONS(7076), + [sym_integer_literal] = ACTIONS(7074), + [sym_hex_literal] = ACTIONS(7076), + [sym_bin_literal] = ACTIONS(7076), + [anon_sym_true] = ACTIONS(7074), + [anon_sym_false] = ACTIONS(7074), + [anon_sym_SQUOTE] = ACTIONS(7076), + [sym__backtick_identifier] = ACTIONS(7076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7076), }, - [4023] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3998] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_RPAREN] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(2986), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4024] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [3999] = { + [sym_function_body] = STATE(3715), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(7078), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), + }, + [4000] = { + [sym_type_constraints] = STATE(4090), + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + }, + [4001] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4006), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(7080), + [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(4654), + [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_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(4654), + [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_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), + [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), + }, + [4002] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_object] = ACTIONS(4102), + [anon_sym_fun] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_this] = ACTIONS(4102), + [anon_sym_super] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4102), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4104), + [anon_sym_continue_AT] = ACTIONS(4104), + [anon_sym_break_AT] = ACTIONS(4104), + [sym_real_literal] = ACTIONS(4104), + [sym_integer_literal] = ACTIONS(4102), + [sym_hex_literal] = ACTIONS(4104), + [sym_bin_literal] = ACTIONS(4104), + [anon_sym_true] = ACTIONS(4102), + [anon_sym_false] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4104), + }, + [4003] = { + [sym_function_body] = STATE(3211), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_object] = ACTIONS(4114), + [anon_sym_fun] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_this] = ACTIONS(4114), + [anon_sym_super] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4114), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_null] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_when] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4116), + [anon_sym_continue_AT] = ACTIONS(4116), + [anon_sym_break_AT] = ACTIONS(4116), + [sym_real_literal] = ACTIONS(4116), + [sym_integer_literal] = ACTIONS(4114), + [sym_hex_literal] = ACTIONS(4116), + [sym_bin_literal] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4116), + }, + [4004] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3031), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3041), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4025] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4005] = { + [sym_type_constraints] = STATE(4087), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + }, + [4006] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4006), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(7082), + [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_DOT] = 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(4637), + [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_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(4637), + [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_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), + [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), + }, + [4007] = { + [sym_type_constraints] = STATE(4133), + [sym_function_body] = STATE(3806), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4081), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_as] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_SEMI] = ACTIONS(4081), + [anon_sym_get] = ACTIONS(4079), + [anon_sym_set] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4081), + [sym_label] = ACTIONS(4081), + [anon_sym_in] = ACTIONS(4079), + [anon_sym_DOT_DOT] = ACTIONS(4081), + [anon_sym_QMARK_COLON] = ACTIONS(4081), + [anon_sym_AMP_AMP] = ACTIONS(4081), + [anon_sym_PIPE_PIPE] = ACTIONS(4081), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_COLON_COLON] = ACTIONS(4081), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4081), + [anon_sym_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4081), + [anon_sym_LT_EQ] = ACTIONS(4081), + [anon_sym_GT_EQ] = ACTIONS(4081), + [anon_sym_BANGin] = ACTIONS(4081), + [anon_sym_is] = ACTIONS(4079), + [anon_sym_BANGis] = ACTIONS(4081), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4081), + [anon_sym_as_QMARK] = ACTIONS(4081), + [anon_sym_PLUS_PLUS] = ACTIONS(4081), + [anon_sym_DASH_DASH] = ACTIONS(4081), + [anon_sym_BANG_BANG] = ACTIONS(4081), + [anon_sym_suspend] = ACTIONS(4079), + [anon_sym_sealed] = ACTIONS(4079), + [anon_sym_annotation] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4079), + [anon_sym_inner] = ACTIONS(4079), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_lateinit] = ACTIONS(4079), + [anon_sym_public] = ACTIONS(4079), + [anon_sym_private] = ACTIONS(4079), + [anon_sym_internal] = ACTIONS(4079), + [anon_sym_protected] = ACTIONS(4079), + [anon_sym_tailrec] = ACTIONS(4079), + [anon_sym_operator] = ACTIONS(4079), + [anon_sym_infix] = ACTIONS(4079), + [anon_sym_inline] = ACTIONS(4079), + [anon_sym_external] = ACTIONS(4079), + [sym_property_modifier] = ACTIONS(4079), + [anon_sym_abstract] = ACTIONS(4079), + [anon_sym_final] = ACTIONS(4079), + [anon_sym_open] = ACTIONS(4079), + [anon_sym_vararg] = ACTIONS(4079), + [anon_sym_noinline] = ACTIONS(4079), + [anon_sym_crossinline] = ACTIONS(4079), + [anon_sym_expect] = ACTIONS(4079), + [anon_sym_actual] = ACTIONS(4079), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4081), + [sym__automatic_semicolon] = ACTIONS(4081), + [sym_safe_nav] = ACTIONS(4081), + [sym_multiline_comment] = ACTIONS(3), + }, + [4008] = { + [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(7089), + [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_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), + [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), + }, + [4009] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(3871), + [anon_sym_DASH_EQ] = ACTIONS(3871), + [anon_sym_STAR_EQ] = ACTIONS(3871), + [anon_sym_SLASH_EQ] = ACTIONS(3871), + [anon_sym_PERCENT_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + }, + [4010] = { + [sym_type_constraints] = STATE(4082), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [4011] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_RPAREN] = ACTIONS(3004), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3009), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3004), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4026] = { - [sym_function_body] = STATE(3679), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7087), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_COMMA] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_where] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [4012] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [4013] = { + [sym_type_constraints] = STATE(4128), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(7091), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [4027] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3022), + [4014] = { + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_object] = ACTIONS(4286), + [anon_sym_fun] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_this] = ACTIONS(4286), + [anon_sym_super] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4286), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_when] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4288), + [anon_sym_continue_AT] = ACTIONS(4288), + [anon_sym_break_AT] = ACTIONS(4288), + [sym_real_literal] = ACTIONS(4288), + [sym_integer_literal] = ACTIONS(4286), + [sym_hex_literal] = ACTIONS(4288), + [sym_bin_literal] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4286), + [anon_sym_false] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4288), + }, + [4015] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4017), + [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_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(4654), + [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_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(4654), + [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_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), + }, + [4016] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3024), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3092), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4028] = { - [sym_type_constraints] = STATE(4152), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [4017] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4017), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_RBRACK] = ACTIONS(4637), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_RPAREN] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4637), + [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_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(4637), + [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_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), }, - [4029] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4018] = { + [sym_function_body] = STATE(3174), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_object] = ACTIONS(4318), + [anon_sym_fun] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_this] = ACTIONS(4318), + [anon_sym_super] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4318), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4320), + [anon_sym_continue_AT] = ACTIONS(4320), + [anon_sym_break_AT] = ACTIONS(4320), + [sym_real_literal] = ACTIONS(4320), + [sym_integer_literal] = ACTIONS(4318), + [sym_hex_literal] = ACTIONS(4320), + [sym_bin_literal] = ACTIONS(4320), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_SQUOTE] = ACTIONS(4320), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4320), + }, + [4019] = { + [sym_function_body] = STATE(3419), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [4020] = { + [sym_type_constraints] = STATE(4116), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [4021] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3061), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(2997), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4030] = { + [4022] = { + [sym_type_constraints] = STATE(4122), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_COLON] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [4023] = { + [sym_function_body] = STATE(3450), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_object] = ACTIONS(4438), + [anon_sym_fun] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_this] = ACTIONS(4438), + [anon_sym_super] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4438), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_when] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4440), + [anon_sym_continue_AT] = ACTIONS(4440), + [anon_sym_break_AT] = ACTIONS(4440), + [sym_real_literal] = ACTIONS(4440), + [sym_integer_literal] = ACTIONS(4438), + [sym_hex_literal] = ACTIONS(4440), + [sym_bin_literal] = ACTIONS(4440), + [anon_sym_true] = ACTIONS(4438), + [anon_sym_false] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4440), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4440), + }, + [4024] = { + [sym_type_constraints] = STATE(4065), [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(7091), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, - [4031] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3011), + [4025] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3065), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4026] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4290), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(4290), + [anon_sym_GT] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4293), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [sym_label] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4290), + [anon_sym_DOT_DOT] = ACTIONS(4293), + [anon_sym_QMARK_COLON] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4293), + [anon_sym_PIPE_PIPE] = ACTIONS(4293), + [anon_sym_else] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_PLUS_EQ] = ACTIONS(4293), + [anon_sym_DASH_EQ] = ACTIONS(4293), + [anon_sym_STAR_EQ] = ACTIONS(4293), + [anon_sym_SLASH_EQ] = ACTIONS(4293), + [anon_sym_PERCENT_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4293), + [anon_sym_EQ_EQ] = ACTIONS(4290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_BANGin] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4290), + [anon_sym_BANGis] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_as_QMARK] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG_BANG] = ACTIONS(4293), + [anon_sym_suspend] = ACTIONS(4290), + [anon_sym_sealed] = ACTIONS(4290), + [anon_sym_annotation] = ACTIONS(4290), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_override] = ACTIONS(4290), + [anon_sym_lateinit] = ACTIONS(4290), + [anon_sym_public] = ACTIONS(4290), + [anon_sym_private] = ACTIONS(4290), + [anon_sym_internal] = ACTIONS(4290), + [anon_sym_protected] = ACTIONS(4290), + [anon_sym_tailrec] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_infix] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym_external] = ACTIONS(4290), + [sym_property_modifier] = ACTIONS(4290), + [anon_sym_abstract] = ACTIONS(4290), + [anon_sym_final] = ACTIONS(4290), + [anon_sym_open] = ACTIONS(4290), + [anon_sym_vararg] = ACTIONS(4290), + [anon_sym_noinline] = ACTIONS(4290), + [anon_sym_crossinline] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4293), + [sym_multiline_comment] = ACTIONS(3), + }, + [4027] = { + [sym_type_constraints] = STATE(4050), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [4028] = { + [sym_type_constraints] = STATE(4115), + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), + [sym_multiline_comment] = ACTIONS(3), + }, + [4029] = { + [sym_type_constraints] = STATE(4102), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + }, + [4030] = { + [sym__alpha_identifier] = ACTIONS(7098), + [anon_sym_AT] = ACTIONS(7100), + [anon_sym_LBRACK] = ACTIONS(7100), + [anon_sym_typealias] = ACTIONS(7098), + [anon_sym_class] = ACTIONS(7098), + [anon_sym_interface] = ACTIONS(7098), + [anon_sym_enum] = ACTIONS(7098), + [anon_sym_LBRACE] = ACTIONS(7100), + [anon_sym_LPAREN] = ACTIONS(7100), + [anon_sym_val] = ACTIONS(7098), + [anon_sym_var] = ACTIONS(7098), + [anon_sym_object] = ACTIONS(7098), + [anon_sym_fun] = ACTIONS(7098), + [anon_sym_get] = ACTIONS(7098), + [anon_sym_set] = ACTIONS(7098), + [anon_sym_this] = ACTIONS(7098), + [anon_sym_super] = ACTIONS(7098), + [anon_sym_STAR] = ACTIONS(7100), + [sym_label] = ACTIONS(7098), + [anon_sym_for] = ACTIONS(7098), + [anon_sym_while] = ACTIONS(7098), + [anon_sym_do] = ACTIONS(7098), + [anon_sym_null] = ACTIONS(7098), + [anon_sym_if] = ACTIONS(7098), + [anon_sym_when] = ACTIONS(7098), + [anon_sym_try] = ACTIONS(7098), + [anon_sym_throw] = ACTIONS(7098), + [anon_sym_return] = ACTIONS(7098), + [anon_sym_continue] = ACTIONS(7098), + [anon_sym_break] = ACTIONS(7098), + [anon_sym_COLON_COLON] = ACTIONS(7100), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7098), + [anon_sym_PLUS_PLUS] = ACTIONS(7100), + [anon_sym_DASH_DASH] = ACTIONS(7100), + [anon_sym_BANG] = ACTIONS(7100), + [anon_sym_suspend] = ACTIONS(7098), + [anon_sym_sealed] = ACTIONS(7098), + [anon_sym_annotation] = ACTIONS(7098), + [anon_sym_data] = ACTIONS(7098), + [anon_sym_inner] = ACTIONS(7098), + [anon_sym_override] = ACTIONS(7098), + [anon_sym_lateinit] = ACTIONS(7098), + [anon_sym_public] = ACTIONS(7098), + [anon_sym_private] = ACTIONS(7098), + [anon_sym_internal] = ACTIONS(7098), + [anon_sym_protected] = ACTIONS(7098), + [anon_sym_tailrec] = ACTIONS(7098), + [anon_sym_operator] = ACTIONS(7098), + [anon_sym_infix] = ACTIONS(7098), + [anon_sym_inline] = ACTIONS(7098), + [anon_sym_external] = ACTIONS(7098), + [sym_property_modifier] = ACTIONS(7098), + [anon_sym_abstract] = ACTIONS(7098), + [anon_sym_final] = ACTIONS(7098), + [anon_sym_open] = ACTIONS(7098), + [anon_sym_vararg] = ACTIONS(7098), + [anon_sym_noinline] = ACTIONS(7098), + [anon_sym_crossinline] = ACTIONS(7098), + [anon_sym_expect] = ACTIONS(7098), + [anon_sym_actual] = ACTIONS(7098), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7100), + [anon_sym_continue_AT] = ACTIONS(7100), + [anon_sym_break_AT] = ACTIONS(7100), + [sym_real_literal] = ACTIONS(7100), + [sym_integer_literal] = ACTIONS(7098), + [sym_hex_literal] = ACTIONS(7100), + [sym_bin_literal] = ACTIONS(7100), + [anon_sym_true] = ACTIONS(7098), + [anon_sym_false] = ACTIONS(7098), + [anon_sym_SQUOTE] = ACTIONS(7100), + [sym__backtick_identifier] = ACTIONS(7100), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7100), + }, + [4031] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7102), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4032] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(2994), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6423), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_PLUS_EQ] = ACTIONS(4879), + [anon_sym_DASH_EQ] = ACTIONS(4879), + [anon_sym_STAR_EQ] = ACTIONS(4879), + [anon_sym_SLASH_EQ] = ACTIONS(4879), + [anon_sym_PERCENT_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4033] = { - [sym_type_constraints] = STATE(4040), - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3473), + [sym__block] = STATE(3192), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_object] = ACTIONS(4442), + [anon_sym_fun] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_this] = ACTIONS(4442), + [anon_sym_super] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4442), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_when] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4444), + [anon_sym_continue_AT] = ACTIONS(4444), + [anon_sym_break_AT] = ACTIONS(4444), + [sym_real_literal] = ACTIONS(4444), + [sym_integer_literal] = ACTIONS(4442), + [sym_hex_literal] = ACTIONS(4444), + [sym_bin_literal] = ACTIONS(4444), + [anon_sym_true] = ACTIONS(4442), + [anon_sym_false] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4444), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4444), }, [4034] = { - [sym_type_constraints] = STATE(4078), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [sym_type_constraints] = STATE(4118), + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [4035] = { - [sym_type_constraints] = STATE(4082), - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [sym_type_constraints] = STATE(4119), + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [4036] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(5976), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [sym_label] = ACTIONS(4141), - [anon_sym_in] = ACTIONS(4138), - [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(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4138), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), - [anon_sym_EQ_EQ] = ACTIONS(4138), - [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(4138), - [anon_sym_BANGis] = ACTIONS(4141), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [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(4138), - [anon_sym_sealed] = ACTIONS(4138), - [anon_sym_annotation] = ACTIONS(4138), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_override] = ACTIONS(4138), - [anon_sym_lateinit] = ACTIONS(4138), - [anon_sym_public] = ACTIONS(4138), - [anon_sym_private] = ACTIONS(4138), - [anon_sym_internal] = ACTIONS(4138), - [anon_sym_protected] = ACTIONS(4138), - [anon_sym_tailrec] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_infix] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym_external] = ACTIONS(4138), - [sym_property_modifier] = ACTIONS(4138), - [anon_sym_abstract] = ACTIONS(4138), - [anon_sym_final] = ACTIONS(4138), - [anon_sym_open] = ACTIONS(4138), - [anon_sym_vararg] = ACTIONS(4138), - [anon_sym_noinline] = ACTIONS(4138), - [anon_sym_crossinline] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [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), + [aux_sym__delegation_specifiers_repeat1] = STATE(4001), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(7080), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_object] = ACTIONS(4646), + [anon_sym_fun] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_this] = ACTIONS(4646), + [anon_sym_super] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4646), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4646), + [anon_sym_if] = ACTIONS(4646), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_when] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4646), + [anon_sym_throw] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4646), + [anon_sym_continue] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4648), + [anon_sym_continue_AT] = ACTIONS(4648), + [anon_sym_break_AT] = ACTIONS(4648), + [sym_real_literal] = ACTIONS(4648), + [sym_integer_literal] = ACTIONS(4646), + [sym_hex_literal] = ACTIONS(4648), + [sym_bin_literal] = ACTIONS(4648), + [anon_sym_true] = ACTIONS(4646), + [anon_sym_false] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4648), + [sym__automatic_semicolon] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4648), }, [4037] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(4283), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [sym_label] = ACTIONS(4286), - [anon_sym_in] = ACTIONS(4283), - [anon_sym_DOT_DOT] = ACTIONS(4286), - [anon_sym_QMARK_COLON] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_else] = ACTIONS(4283), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(3948), - [anon_sym_DASH_EQ] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3948), - [anon_sym_SLASH_EQ] = ACTIONS(3948), - [anon_sym_PERCENT_EQ] = ACTIONS(3948), - [anon_sym_BANG_EQ] = ACTIONS(4283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4286), - [anon_sym_EQ_EQ] = ACTIONS(4283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4286), - [anon_sym_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_EQ] = ACTIONS(4286), - [anon_sym_BANGin] = ACTIONS(4286), - [anon_sym_is] = ACTIONS(4283), - [anon_sym_BANGis] = ACTIONS(4286), - [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(4286), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG_BANG] = ACTIONS(4286), - [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_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(4286), - [sym__automatic_semicolon] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4286), - [sym_multiline_comment] = ACTIONS(3), - }, - [4038] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(3001), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(3049), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4039] = { - [sym_type_constraints] = STATE(3664), - [sym_enum_class_body] = STATE(3727), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(7093), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5413), - [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(5364), - [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_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), + [4038] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7106), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_PLUS_EQ] = ACTIONS(4843), + [anon_sym_DASH_EQ] = ACTIONS(4843), + [anon_sym_STAR_EQ] = ACTIONS(4843), + [anon_sym_SLASH_EQ] = ACTIONS(4843), + [anon_sym_PERCENT_EQ] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), [sym_multiline_comment] = ACTIONS(3), }, + [4039] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7108), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), + }, [4040] = { - [sym_function_body] = STATE(3730), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [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(4487), - [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_COLON_COLON] = 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(4487), - [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_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), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6548), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, [4041] = { - [sym_class_body] = STATE(3270), - [sym_type_constraints] = STATE(3068), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(7095), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [sym_class_body] = STATE(3305), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), }, [4042] = { - [sym_class_body] = STATE(3319), - [sym_type_constraints] = STATE(3055), - [sym__alpha_identifier] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(6028), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_DOT_DOT] = ACTIONS(3200), - [anon_sym_QMARK_COLON] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_BANGin] = ACTIONS(3200), - [anon_sym_is] = ACTIONS(3196), - [anon_sym_BANGis] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3196), - [anon_sym_sealed] = ACTIONS(3196), - [anon_sym_annotation] = ACTIONS(3196), - [anon_sym_data] = ACTIONS(3196), - [anon_sym_inner] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_lateinit] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_internal] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_tailrec] = ACTIONS(3196), - [anon_sym_operator] = ACTIONS(3196), - [anon_sym_infix] = ACTIONS(3196), - [anon_sym_inline] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3196), - [sym_property_modifier] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_final] = ACTIONS(3196), - [anon_sym_open] = ACTIONS(3196), - [anon_sym_vararg] = ACTIONS(3196), - [anon_sym_noinline] = ACTIONS(3196), - [anon_sym_crossinline] = ACTIONS(3196), - [anon_sym_expect] = ACTIONS(3196), - [anon_sym_actual] = ACTIONS(3196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym_type_constraints] = STATE(4122), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [4043] = { - [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_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(4792), - [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(7097), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym_type_constraints] = STATE(4159), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [4044] = { - [sym_type_constraints] = STATE(4158), - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [sym_function_body] = STATE(3902), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_where] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, [4045] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_RBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7099), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [anon_sym_DASH_GT] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_type_constraints] = STATE(4165), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, [4046] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7101), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), }, [4047] = { - [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_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(7105), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [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(7097), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym_type_constraints] = STATE(3080), + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(7112), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), - }, - [4048] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7107), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), - }, - [4049] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(4144), - [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_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_this] = ACTIONS(4146), - [anon_sym_super] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4146), - [anon_sym_inner] = ACTIONS(4146), - [anon_sym_expect] = ACTIONS(4146), - [anon_sym_actual] = ACTIONS(4146), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + }, + [4048] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7114), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), + }, + [4049] = { + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(7116), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), }, [4050] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7111), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), }, [4051] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7113), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_where] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), }, [4052] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_COMMA] = ACTIONS(4426), - [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(4426), - [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_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(4426), - [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_override] = ACTIONS(4424), - [anon_sym_lateinit] = ACTIONS(4424), - [anon_sym_public] = ACTIONS(4424), - [anon_sym_private] = ACTIONS(4424), - [anon_sym_internal] = ACTIONS(4424), - [anon_sym_protected] = ACTIONS(4424), - [anon_sym_tailrec] = ACTIONS(4424), - [anon_sym_operator] = ACTIONS(4424), - [anon_sym_infix] = ACTIONS(4424), - [anon_sym_inline] = ACTIONS(4424), - [anon_sym_external] = ACTIONS(4424), - [sym_property_modifier] = ACTIONS(4424), - [anon_sym_abstract] = ACTIONS(4424), - [anon_sym_final] = ACTIONS(4424), - [anon_sym_open] = ACTIONS(4424), - [anon_sym_vararg] = ACTIONS(4424), - [anon_sym_noinline] = ACTIONS(4424), - [anon_sym_crossinline] = ACTIONS(4424), - [anon_sym_expect] = ACTIONS(4424), - [anon_sym_actual] = ACTIONS(4424), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4426), - [sym__automatic_semicolon] = ACTIONS(4426), - [sym_safe_nav] = ACTIONS(4426), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3253), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(7118), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_object] = ACTIONS(4402), + [anon_sym_fun] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_this] = ACTIONS(4402), + [anon_sym_super] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4402), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_when] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4404), + [anon_sym_continue_AT] = ACTIONS(4404), + [anon_sym_break_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [anon_sym_SQUOTE] = ACTIONS(4404), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4404), }, [4053] = { - [sym_function_body] = STATE(3365), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7115), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_RPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_class_body] = STATE(3208), + [sym_type_constraints] = STATE(3037), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, [4054] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6617), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(4283), - [anon_sym_super] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7120), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [4055] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6605), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym_class_body] = STATE(3455), + [sym_type_constraints] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7124), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), }, [4056] = { - [sym_class_body] = STATE(3261), - [sym_type_constraints] = STATE(3076), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_type_constraints] = STATE(3554), + [sym_enum_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, [4057] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7117), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_DASH_GT] = ACTIONS(4144), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_RBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_DASH_GT] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7128), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4058] = { - [sym_function_body] = STATE(3193), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(7119), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), + [sym_type_constraints] = STATE(3012), + [sym_enum_class_body] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7130), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_while] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, [4059] = { - [sym_function_body] = STATE(3745), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), + [sym_function_body] = STATE(3171), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7132), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), [sym_multiline_comment] = ACTIONS(3), }, [4060] = { - [sym_type_constraints] = STATE(4125), - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [sym_class_body] = STATE(3317), + [sym_type_constraints] = STATE(3020), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, [4061] = { - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_RBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7134), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_DASH_GT] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7128), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4062] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = 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(7121), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_this] = ACTIONS(4790), - [anon_sym_super] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [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(7123), - [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_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(4792), - [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_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_RBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7136), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_DASH_GT] = ACTIONS(4861), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_while] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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__backtick_identifier] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), }, [4063] = { - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7138), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_DASH_GT] = ACTIONS(4843), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_while] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), [sym_multiline_comment] = ACTIONS(3), }, [4064] = { - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7140), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), }, [4065] = { - [sym_type_constraints] = STATE(4162), - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [4066] = { - [sym_class_body] = STATE(3235), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(7125), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_object] = ACTIONS(4384), - [anon_sym_fun] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_this] = ACTIONS(4384), - [anon_sym_super] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4384), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_when] = ACTIONS(4384), - [anon_sym_try] = ACTIONS(4384), - [anon_sym_throw] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4386), - [anon_sym_continue_AT] = ACTIONS(4386), - [anon_sym_break_AT] = ACTIONS(4386), - [sym_real_literal] = ACTIONS(4386), - [sym_integer_literal] = ACTIONS(4384), - [sym_hex_literal] = ACTIONS(4386), - [sym_bin_literal] = ACTIONS(4386), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4386), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4386), + [sym_function_body] = STATE(3246), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), + [sym_multiline_comment] = ACTIONS(3), }, [4067] = { - [sym_type_constraints] = STATE(3093), - [sym_enum_class_body] = STATE(3209), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(7127), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = 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_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(4186), - [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_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_class_body] = STATE(3825), + [sym_type_constraints] = STATE(3604), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, [4068] = { - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_COMMA] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [sym_class_body] = STATE(3296), + [sym_type_constraints] = STATE(3008), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, [4069] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7129), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(7146), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [4070] = { - [sym_class_body] = STATE(3786), - [sym_type_constraints] = STATE(3631), + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [4071] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6544), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, + [4072] = { + [sym_class_body] = STATE(3794), + [sym_type_constraints] = STATE(3666), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(7148), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), + [sym_multiline_comment] = ACTIONS(3), + }, + [4073] = { + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [4074] = { + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [4075] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [anon_sym_DASH_GT] = ACTIONS(4310), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + }, + [4076] = { + [sym_class_body] = STATE(3776), + [sym_type_constraints] = STATE(3580), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), + [sym_multiline_comment] = ACTIONS(3), + }, + [4077] = { + [sym_type_constraints] = STATE(4128), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), + [sym_multiline_comment] = ACTIONS(3), + }, + [4078] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7152), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [anon_sym_DASH_GT] = ACTIONS(4296), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + }, + [4079] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7154), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(7146), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), + }, + [4080] = { + [sym_type_constraints] = STATE(3112), + [sym_enum_class_body] = STATE(3436), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_COLON] = ACTIONS(6135), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5133), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5137), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -427896,6 +428733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3200), [sym_label] = ACTIONS(3200), [anon_sym_in] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), [anon_sym_DOT_DOT] = ACTIONS(3200), [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), @@ -427946,2369 +428784,933 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [4071] = { - [sym_class_body] = STATE(3743), - [sym_type_constraints] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(7133), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), - [sym_multiline_comment] = ACTIONS(3), - }, - [4072] = { - [sym_class_body] = STATE(3209), - [sym_type_constraints] = STATE(3098), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(7135), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = 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_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(4186), - [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_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), - }, - [4073] = { - [sym_type_constraints] = STATE(3099), - [sym_enum_class_body] = STATE(3181), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(6110), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), - [sym_multiline_comment] = ACTIONS(3), - }, - [4074] = { - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(6024), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [4075] = { - [sym_type_constraints] = STATE(3071), - [sym_enum_class_body] = STATE(3261), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(6074), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [4076] = { - [sym_class_body] = STATE(3796), - [sym_type_constraints] = STATE(3661), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(6040), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), - [sym_multiline_comment] = ACTIONS(3), - }, - [4077] = { - [sym_type_constraints] = STATE(3629), - [sym_enum_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(7137), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [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_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(4186), - [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_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), - }, - [4078] = { - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [4079] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_COMMA] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - }, - [4080] = { - [sym_type_constraints] = STATE(3117), - [sym_enum_class_body] = STATE(3127), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(7139), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5169), - [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_where] = ACTIONS(5173), - [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_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), - }, [4081] = { - [sym_class_body] = STATE(3833), - [sym_type_constraints] = STATE(3654), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(7141), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_COMMA] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [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_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(4186), - [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_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), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7156), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [4082] = { - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_COMMA] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_where] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_where] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [4083] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(7143), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [sym_class_body] = STATE(3711), + [sym_type_constraints] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), [sym_multiline_comment] = ACTIONS(3), }, [4084] = { - [sym_class_body] = STATE(3344), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(7145), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_object] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_this] = ACTIONS(4408), - [anon_sym_super] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4408), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_when] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_throw] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4410), - [anon_sym_continue_AT] = ACTIONS(4410), - [anon_sym_break_AT] = ACTIONS(4410), - [sym_real_literal] = ACTIONS(4410), - [sym_integer_literal] = ACTIONS(4408), - [sym_hex_literal] = ACTIONS(4410), - [sym_bin_literal] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4408), - [anon_sym_false] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4410), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4410), + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [sym_label] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3196), + [anon_sym_DOT_DOT] = ACTIONS(3200), + [anon_sym_QMARK_COLON] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3196), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_as_QMARK] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_BANG_BANG] = ACTIONS(3200), + [anon_sym_suspend] = ACTIONS(3196), + [anon_sym_sealed] = ACTIONS(3196), + [anon_sym_annotation] = ACTIONS(3196), + [anon_sym_data] = ACTIONS(3196), + [anon_sym_inner] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_lateinit] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_internal] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_tailrec] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_infix] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym_external] = ACTIONS(3196), + [sym_property_modifier] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_final] = ACTIONS(3196), + [anon_sym_open] = ACTIONS(3196), + [anon_sym_vararg] = ACTIONS(3196), + [anon_sym_noinline] = ACTIONS(3196), + [anon_sym_crossinline] = ACTIONS(3196), + [anon_sym_expect] = ACTIONS(3196), + [anon_sym_actual] = ACTIONS(3196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), }, [4085] = { - [sym_type_constraints] = STATE(4144), - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [sym_function_body] = STATE(3774), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_where] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, [4086] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = 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(4792), - [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(7123), - [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_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(4792), - [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_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), - [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_type_constraints] = STATE(3639), + [sym_enum_class_body] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(7162), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), }, [4087] = { - [sym_type_constraints] = STATE(4152), - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_COMMA] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, [4088] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7147), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_while] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7164), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4861), }, [4089] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_RBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7149), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_DASH_GT] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_while] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [sym_type_constraints] = STATE(4141), + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, [4090] = { - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(6082), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [sym_function_body] = STATE(3700), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_where] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, [4091] = { - [sym_class_body] = STATE(3833), - [sym_type_constraints] = STATE(3654), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(7151), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [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_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(4186), - [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_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_function_body] = STATE(3254), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, [4092] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4095), - [sym__alpha_identifier] = ACTIONS(4656), - [anon_sym_AT] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4656), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(7153), - [anon_sym_RPAREN] = ACTIONS(4658), - [anon_sym_LT] = ACTIONS(4656), - [anon_sym_GT] = ACTIONS(4656), - [anon_sym_where] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(4658), - [anon_sym_get] = ACTIONS(4656), - [anon_sym_set] = ACTIONS(4656), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4658), - [anon_sym_in] = ACTIONS(4656), - [anon_sym_while] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4658), - [anon_sym_QMARK_COLON] = ACTIONS(4658), - [anon_sym_AMP_AMP] = ACTIONS(4658), - [anon_sym_PIPE_PIPE] = ACTIONS(4658), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_COLON_COLON] = ACTIONS(4658), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4658), - [anon_sym_LT_EQ] = ACTIONS(4658), - [anon_sym_GT_EQ] = ACTIONS(4658), - [anon_sym_BANGin] = ACTIONS(4658), - [anon_sym_is] = ACTIONS(4656), - [anon_sym_BANGis] = ACTIONS(4658), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_SLASH] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4658), - [anon_sym_PLUS_PLUS] = ACTIONS(4658), - [anon_sym_DASH_DASH] = ACTIONS(4658), - [anon_sym_BANG_BANG] = ACTIONS(4658), - [anon_sym_suspend] = ACTIONS(4656), - [anon_sym_sealed] = ACTIONS(4656), - [anon_sym_annotation] = ACTIONS(4656), - [anon_sym_data] = ACTIONS(4656), - [anon_sym_inner] = ACTIONS(4656), - [anon_sym_override] = ACTIONS(4656), - [anon_sym_lateinit] = ACTIONS(4656), - [anon_sym_public] = ACTIONS(4656), - [anon_sym_private] = ACTIONS(4656), - [anon_sym_internal] = ACTIONS(4656), - [anon_sym_protected] = ACTIONS(4656), - [anon_sym_tailrec] = ACTIONS(4656), - [anon_sym_operator] = ACTIONS(4656), - [anon_sym_infix] = ACTIONS(4656), - [anon_sym_inline] = ACTIONS(4656), - [anon_sym_external] = ACTIONS(4656), - [sym_property_modifier] = ACTIONS(4656), - [anon_sym_abstract] = ACTIONS(4656), - [anon_sym_final] = ACTIONS(4656), - [anon_sym_open] = ACTIONS(4656), - [anon_sym_vararg] = ACTIONS(4656), - [anon_sym_noinline] = ACTIONS(4656), - [anon_sym_crossinline] = ACTIONS(4656), - [anon_sym_expect] = ACTIONS(4656), - [anon_sym_actual] = ACTIONS(4656), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4658), - [sym_safe_nav] = ACTIONS(4658), + [aux_sym__delegation_specifiers_repeat1] = STATE(4120), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(7166), + [anon_sym_RPAREN] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_while] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4646), + [anon_sym_sealed] = ACTIONS(4646), + [anon_sym_annotation] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_lateinit] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_protected] = ACTIONS(4646), + [anon_sym_tailrec] = ACTIONS(4646), + [anon_sym_operator] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_inline] = ACTIONS(4646), + [anon_sym_external] = ACTIONS(4646), + [sym_property_modifier] = ACTIONS(4646), + [anon_sym_abstract] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_vararg] = ACTIONS(4646), + [anon_sym_noinline] = ACTIONS(4646), + [anon_sym_crossinline] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), [sym_multiline_comment] = ACTIONS(3), }, [4093] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7155), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [4094] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7159), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [4095] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3972), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(7153), - [anon_sym_RPAREN] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4664), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_while] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), - [sym_multiline_comment] = ACTIONS(3), - }, - [4096] = { - [sym_function_body] = STATE(3317), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_while] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), - [sym_multiline_comment] = ACTIONS(3), - }, - [4097] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), - [sym_multiline_comment] = ACTIONS(3), - }, - [4098] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_COLON] = ACTIONS(7163), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - }, - [4099] = { - [sym_function_body] = STATE(3305), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), - [sym_multiline_comment] = ACTIONS(3), - }, - [4100] = { - [sym_type_constraints] = STATE(3629), - [sym_enum_class_body] = STATE(3833), - [sym__alpha_identifier] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4186), - [anon_sym_COLON] = ACTIONS(7165), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_LT] = ACTIONS(4184), - [anon_sym_GT] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym_get] = ACTIONS(4184), - [anon_sym_set] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [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_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(4186), - [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_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), - }, - [4101] = { - [sym_function_body] = STATE(3202), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_while] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), - [sym_multiline_comment] = ACTIONS(3), - }, - [4102] = { - [sym_class_body] = STATE(3786), - [sym_type_constraints] = STATE(3631), + [sym_type_constraints] = STATE(3651), + [sym_enum_class_body] = STATE(3876), [sym__alpha_identifier] = ACTIONS(3196), [anon_sym_AT] = ACTIONS(3200), - [anon_sym_COLON] = ACTIONS(6192), + [anon_sym_COLON] = ACTIONS(6163), [anon_sym_LBRACK] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(5358), + [anon_sym_LBRACE] = ACTIONS(5447), [anon_sym_RBRACE] = ACTIONS(3200), [anon_sym_LPAREN] = ACTIONS(3200), [anon_sym_LT] = ACTIONS(3196), [anon_sym_GT] = ACTIONS(3196), - [anon_sym_where] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5443), [anon_sym_DOT] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3200), [anon_sym_get] = ACTIONS(3196), @@ -430365,6932 +429767,7613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3196), [anon_sym_actual] = ACTIONS(3196), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3200), - [sym__automatic_semicolon] = ACTIONS(3200), - [sym_safe_nav] = ACTIONS(3200), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [4094] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), + [sym_multiline_comment] = ACTIONS(3), + }, + [4095] = { + [sym_class_body] = STATE(3711), + [sym_type_constraints] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7168), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [4096] = { + [sym_function_body] = STATE(3256), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), + [sym_multiline_comment] = ACTIONS(3), + }, + [4097] = { + [sym_function_body] = STATE(3402), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), + [sym_multiline_comment] = ACTIONS(3), + }, + [4098] = { + [sym_value_arguments] = STATE(3753), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(7170), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4527), + [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_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(4527), + [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_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), }, - [4103] = { - [sym_class_body] = STATE(3743), - [sym_type_constraints] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4301), - [anon_sym_AT] = ACTIONS(4303), - [anon_sym_COLON] = ACTIONS(7167), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_get] = ACTIONS(4301), - [anon_sym_set] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4303), - [sym_label] = ACTIONS(4303), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4303), - [anon_sym_QMARK_COLON] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4303), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_is] = ACTIONS(4301), - [anon_sym_BANGis] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(4301), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_as_QMARK] = ACTIONS(4303), - [anon_sym_PLUS_PLUS] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_BANG_BANG] = ACTIONS(4303), - [anon_sym_suspend] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_annotation] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4301), - [anon_sym_inner] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_lateinit] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_tailrec] = ACTIONS(4301), - [anon_sym_operator] = ACTIONS(4301), - [anon_sym_infix] = ACTIONS(4301), - [anon_sym_inline] = ACTIONS(4301), - [anon_sym_external] = ACTIONS(4301), - [sym_property_modifier] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_final] = ACTIONS(4301), - [anon_sym_open] = ACTIONS(4301), - [anon_sym_vararg] = ACTIONS(4301), - [anon_sym_noinline] = ACTIONS(4301), - [anon_sym_crossinline] = ACTIONS(4301), - [anon_sym_expect] = ACTIONS(4301), - [anon_sym_actual] = ACTIONS(4301), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4303), - [sym__automatic_semicolon] = ACTIONS(4303), - [sym_safe_nav] = ACTIONS(4303), + [4099] = { + [sym_function_body] = STATE(3886), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7172), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), [sym_multiline_comment] = ACTIONS(3), }, - [4104] = { - [sym_type_constraints] = STATE(3656), - [sym_enum_class_body] = STATE(3752), - [sym__alpha_identifier] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(6150), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_STAR] = ACTIONS(3216), - [sym_label] = ACTIONS(3216), - [anon_sym_in] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3216), - [anon_sym_QMARK_COLON] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3216), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_BANGin] = ACTIONS(3216), - [anon_sym_is] = ACTIONS(3212), - [anon_sym_BANGis] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_as_QMARK] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_BANG_BANG] = ACTIONS(3216), - [anon_sym_suspend] = ACTIONS(3212), - [anon_sym_sealed] = ACTIONS(3212), - [anon_sym_annotation] = ACTIONS(3212), - [anon_sym_data] = ACTIONS(3212), - [anon_sym_inner] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_lateinit] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_internal] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_tailrec] = ACTIONS(3212), - [anon_sym_operator] = ACTIONS(3212), - [anon_sym_infix] = ACTIONS(3212), - [anon_sym_inline] = ACTIONS(3212), - [anon_sym_external] = ACTIONS(3212), - [sym_property_modifier] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_final] = ACTIONS(3212), - [anon_sym_open] = ACTIONS(3212), - [anon_sym_vararg] = ACTIONS(3212), - [anon_sym_noinline] = ACTIONS(3212), - [anon_sym_crossinline] = ACTIONS(3212), - [anon_sym_expect] = ACTIONS(3212), - [anon_sym_actual] = ACTIONS(3212), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3216), - [sym__automatic_semicolon] = ACTIONS(3216), - [sym_safe_nav] = ACTIONS(3216), + [4100] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), [sym_multiline_comment] = ACTIONS(3), }, - [4105] = { - [sym_function_body] = STATE(3139), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), + [4101] = { + [sym_type_constraints] = STATE(3554), + [sym_enum_class_body] = STATE(3711), + [sym__alpha_identifier] = ACTIONS(4332), + [anon_sym_AT] = ACTIONS(4334), + [anon_sym_COLON] = ACTIONS(7174), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_get] = ACTIONS(4332), + [anon_sym_set] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4334), + [sym_label] = ACTIONS(4334), + [anon_sym_in] = ACTIONS(4332), + [anon_sym_DOT_DOT] = ACTIONS(4334), + [anon_sym_QMARK_COLON] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_else] = ACTIONS(4332), + [anon_sym_COLON_COLON] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_BANGin] = ACTIONS(4334), + [anon_sym_is] = ACTIONS(4332), + [anon_sym_BANGis] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_SLASH] = ACTIONS(4332), + [anon_sym_PERCENT] = ACTIONS(4334), + [anon_sym_as_QMARK] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_BANG_BANG] = ACTIONS(4334), + [anon_sym_suspend] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_annotation] = ACTIONS(4332), + [anon_sym_data] = ACTIONS(4332), + [anon_sym_inner] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_lateinit] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_tailrec] = ACTIONS(4332), + [anon_sym_operator] = ACTIONS(4332), + [anon_sym_infix] = ACTIONS(4332), + [anon_sym_inline] = ACTIONS(4332), + [anon_sym_external] = ACTIONS(4332), + [sym_property_modifier] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_final] = ACTIONS(4332), + [anon_sym_open] = ACTIONS(4332), + [anon_sym_vararg] = ACTIONS(4332), + [anon_sym_noinline] = ACTIONS(4332), + [anon_sym_crossinline] = ACTIONS(4332), + [anon_sym_expect] = ACTIONS(4332), + [anon_sym_actual] = ACTIONS(4332), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4334), + [sym__automatic_semicolon] = ACTIONS(4334), + [sym_safe_nav] = ACTIONS(4334), + [sym_multiline_comment] = ACTIONS(3), + }, + [4102] = { + [sym_function_body] = STATE(3398), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_RPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_while] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [4103] = { + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7176), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [4104] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7180), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [4105] = { + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3360), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), [sym_multiline_comment] = ACTIONS(3), }, [4106] = { - [sym_function_body] = STATE(3794), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(7169), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_get] = ACTIONS(4324), - [anon_sym_set] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [sym_label] = ACTIONS(4326), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_QMARK_COLON] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [anon_sym_else] = ACTIONS(4324), - [anon_sym_COLON_COLON] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_BANGin] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_BANGis] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_as_QMARK] = ACTIONS(4326), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_BANG_BANG] = ACTIONS(4326), - [anon_sym_suspend] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_annotation] = ACTIONS(4324), - [anon_sym_data] = ACTIONS(4324), - [anon_sym_inner] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_lateinit] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_tailrec] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_infix] = ACTIONS(4324), - [anon_sym_inline] = ACTIONS(4324), - [anon_sym_external] = ACTIONS(4324), - [sym_property_modifier] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_final] = ACTIONS(4324), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_vararg] = ACTIONS(4324), - [anon_sym_noinline] = ACTIONS(4324), - [anon_sym_crossinline] = ACTIONS(4324), - [anon_sym_expect] = ACTIONS(4324), - [anon_sym_actual] = ACTIONS(4324), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4326), - [sym__automatic_semicolon] = ACTIONS(4326), - [sym_safe_nav] = ACTIONS(4326), + [sym_class_body] = STATE(3872), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(7184), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), [sym_multiline_comment] = ACTIONS(3), }, [4107] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_RPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_while] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), + [sym_function_body] = STATE(3715), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4162), + [anon_sym_AT] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(7186), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4162), + [anon_sym_GT] = ACTIONS(4162), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_get] = ACTIONS(4162), + [anon_sym_set] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4162), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_QMARK_COLON] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_BANGin] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4162), + [anon_sym_BANGis] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_SLASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4162), + [anon_sym_sealed] = ACTIONS(4162), + [anon_sym_annotation] = ACTIONS(4162), + [anon_sym_data] = ACTIONS(4162), + [anon_sym_inner] = ACTIONS(4162), + [anon_sym_override] = ACTIONS(4162), + [anon_sym_lateinit] = ACTIONS(4162), + [anon_sym_public] = ACTIONS(4162), + [anon_sym_private] = ACTIONS(4162), + [anon_sym_internal] = ACTIONS(4162), + [anon_sym_protected] = ACTIONS(4162), + [anon_sym_tailrec] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_infix] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym_external] = ACTIONS(4162), + [sym_property_modifier] = ACTIONS(4162), + [anon_sym_abstract] = ACTIONS(4162), + [anon_sym_final] = ACTIONS(4162), + [anon_sym_open] = ACTIONS(4162), + [anon_sym_vararg] = ACTIONS(4162), + [anon_sym_noinline] = ACTIONS(4162), + [anon_sym_crossinline] = ACTIONS(4162), + [anon_sym_expect] = ACTIONS(4162), + [anon_sym_actual] = ACTIONS(4162), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4164), + [sym__automatic_semicolon] = ACTIONS(4164), + [sym_safe_nav] = ACTIONS(4164), [sym_multiline_comment] = ACTIONS(3), }, [4108] = { - [sym_function_body] = STATE(3418), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_RPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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(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_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(4426), - [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_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_type_constraints] = STATE(3639), + [sym_enum_class_body] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4326), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(7188), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4326), + [anon_sym_GT] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_get] = ACTIONS(4326), + [anon_sym_set] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [sym_label] = ACTIONS(4328), + [anon_sym_in] = ACTIONS(4326), + [anon_sym_DOT_DOT] = ACTIONS(4328), + [anon_sym_QMARK_COLON] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_else] = ACTIONS(4326), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4328), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_BANGin] = ACTIONS(4328), + [anon_sym_is] = ACTIONS(4326), + [anon_sym_BANGis] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_SLASH] = ACTIONS(4326), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_as_QMARK] = ACTIONS(4328), + [anon_sym_PLUS_PLUS] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4328), + [anon_sym_BANG_BANG] = ACTIONS(4328), + [anon_sym_suspend] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_annotation] = ACTIONS(4326), + [anon_sym_data] = ACTIONS(4326), + [anon_sym_inner] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_lateinit] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_tailrec] = ACTIONS(4326), + [anon_sym_operator] = ACTIONS(4326), + [anon_sym_infix] = ACTIONS(4326), + [anon_sym_inline] = ACTIONS(4326), + [anon_sym_external] = ACTIONS(4326), + [sym_property_modifier] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_final] = ACTIONS(4326), + [anon_sym_open] = ACTIONS(4326), + [anon_sym_vararg] = ACTIONS(4326), + [anon_sym_noinline] = ACTIONS(4326), + [anon_sym_crossinline] = ACTIONS(4326), + [anon_sym_expect] = ACTIONS(4326), + [anon_sym_actual] = ACTIONS(4326), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4328), + [sym__automatic_semicolon] = ACTIONS(4328), + [sym_safe_nav] = ACTIONS(4328), [sym_multiline_comment] = ACTIONS(3), }, [4109] = { - [sym_type_constraints] = STATE(3570), - [sym_enum_class_body] = STATE(3796), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_class_body] = STATE(3825), + [sym_type_constraints] = STATE(3604), + [sym__alpha_identifier] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_QMARK_COLON] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3190), + [anon_sym_sealed] = ACTIONS(3190), + [anon_sym_annotation] = ACTIONS(3190), + [anon_sym_data] = ACTIONS(3190), + [anon_sym_inner] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_lateinit] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_internal] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_tailrec] = ACTIONS(3190), + [anon_sym_operator] = ACTIONS(3190), + [anon_sym_infix] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_external] = ACTIONS(3190), + [sym_property_modifier] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_open] = ACTIONS(3190), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3190), + [anon_sym_actual] = ACTIONS(3190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3194), + [sym__automatic_semicolon] = ACTIONS(3194), + [sym_safe_nav] = ACTIONS(3194), [sym_multiline_comment] = ACTIONS(3), }, [4110] = { - [sym_function_body] = STATE(3198), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_while] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), + [sym_class_body] = STATE(3776), + [sym_type_constraints] = STATE(3580), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, [4111] = { - [sym_class_body] = STATE(3751), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(7171), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_COMMA] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_where] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [sym_class_body] = STATE(3740), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(7190), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), }, [4112] = { - [sym_class_body] = STATE(3796), - [sym_type_constraints] = STATE(3661), - [sym__alpha_identifier] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_COLON] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_as] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_where] = ACTIONS(5364), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [sym_label] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_DOT_DOT] = ACTIONS(3190), - [anon_sym_QMARK_COLON] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3190), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3190), - [anon_sym_BANGin] = ACTIONS(3190), - [anon_sym_is] = ACTIONS(3186), - [anon_sym_BANGis] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3190), - [anon_sym_as_QMARK] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_BANG_BANG] = ACTIONS(3190), - [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_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(3190), - [sym__automatic_semicolon] = ACTIONS(3190), - [sym_safe_nav] = ACTIONS(3190), + [sym_type_constraints] = STATE(3630), + [sym_enum_class_body] = STATE(3776), + [sym__alpha_identifier] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_as] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(5447), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [sym_label] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [anon_sym_QMARK_COLON] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_COLON_COLON] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_is] = ACTIONS(3204), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_as_QMARK] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_BANG_BANG] = ACTIONS(3208), + [anon_sym_suspend] = ACTIONS(3204), + [anon_sym_sealed] = ACTIONS(3204), + [anon_sym_annotation] = ACTIONS(3204), + [anon_sym_data] = ACTIONS(3204), + [anon_sym_inner] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_lateinit] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_internal] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_tailrec] = ACTIONS(3204), + [anon_sym_operator] = ACTIONS(3204), + [anon_sym_infix] = ACTIONS(3204), + [anon_sym_inline] = ACTIONS(3204), + [anon_sym_external] = ACTIONS(3204), + [sym_property_modifier] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_final] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3204), + [anon_sym_vararg] = ACTIONS(3204), + [anon_sym_noinline] = ACTIONS(3204), + [anon_sym_crossinline] = ACTIONS(3204), + [anon_sym_expect] = ACTIONS(3204), + [anon_sym_actual] = ACTIONS(3204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3208), + [sym__automatic_semicolon] = ACTIONS(3208), + [sym_safe_nav] = ACTIONS(3208), [sym_multiline_comment] = ACTIONS(3), }, [4113] = { - [sym_class_body] = STATE(3813), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(7173), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_COMMA] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_where] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), + [sym_class_body] = STATE(3794), + [sym_type_constraints] = STATE(3666), + [sym__alpha_identifier] = ACTIONS(4342), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(7192), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(5443), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_get] = ACTIONS(4342), + [anon_sym_set] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [sym_label] = ACTIONS(4344), + [anon_sym_in] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4344), + [anon_sym_QMARK_COLON] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_BANG_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_BANGin] = ACTIONS(4344), + [anon_sym_is] = ACTIONS(4342), + [anon_sym_BANGis] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_as_QMARK] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_BANG_BANG] = ACTIONS(4344), + [anon_sym_suspend] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_annotation] = ACTIONS(4342), + [anon_sym_data] = ACTIONS(4342), + [anon_sym_inner] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_lateinit] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_tailrec] = ACTIONS(4342), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_infix] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym_external] = ACTIONS(4342), + [sym_property_modifier] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_final] = ACTIONS(4342), + [anon_sym_open] = ACTIONS(4342), + [anon_sym_vararg] = ACTIONS(4342), + [anon_sym_noinline] = ACTIONS(4342), + [anon_sym_crossinline] = ACTIONS(4342), + [anon_sym_expect] = ACTIONS(4342), + [anon_sym_actual] = ACTIONS(4342), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4344), + [sym__automatic_semicolon] = ACTIONS(4344), + [sym_safe_nav] = ACTIONS(4344), [sym_multiline_comment] = ACTIONS(3), }, [4114] = { - [sym_function_body] = STATE(3332), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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(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_COLON_COLON] = 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(4487), - [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_override] = ACTIONS(4485), - [anon_sym_lateinit] = ACTIONS(4485), - [anon_sym_public] = ACTIONS(4485), - [anon_sym_private] = ACTIONS(4485), - [anon_sym_internal] = ACTIONS(4485), - [anon_sym_protected] = ACTIONS(4485), - [anon_sym_tailrec] = ACTIONS(4485), - [anon_sym_operator] = ACTIONS(4485), - [anon_sym_infix] = ACTIONS(4485), - [anon_sym_inline] = ACTIONS(4485), - [anon_sym_external] = ACTIONS(4485), - [sym_property_modifier] = ACTIONS(4485), - [anon_sym_abstract] = ACTIONS(4485), - [anon_sym_final] = ACTIONS(4485), - [anon_sym_open] = ACTIONS(4485), - [anon_sym_vararg] = ACTIONS(4485), - [anon_sym_noinline] = ACTIONS(4485), - [anon_sym_crossinline] = ACTIONS(4485), - [anon_sym_expect] = ACTIONS(4485), - [anon_sym_actual] = ACTIONS(4485), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4487), - [sym_safe_nav] = ACTIONS(4487), + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(7194), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), [sym_multiline_comment] = ACTIONS(3), }, [4115] = { - [sym_type_constraints] = STATE(3664), - [sym_enum_class_body] = STATE(3727), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), - [anon_sym_COLON] = ACTIONS(7175), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_as] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym_LT] = ACTIONS(4229), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(5364), - [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_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_function_body] = STATE(3350), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_RPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, [4116] = { - [sym_value_arguments] = STATE(3821), - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(7177), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [sym_function_body] = STATE(3423), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [4117] = { - [sym_function_body] = STATE(3679), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4198), - [anon_sym_COLON] = ACTIONS(7179), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_as] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_LT] = ACTIONS(4196), - [anon_sym_GT] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_get] = ACTIONS(4196), - [anon_sym_set] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [sym_label] = ACTIONS(4198), - [anon_sym_in] = ACTIONS(4196), - [anon_sym_DOT_DOT] = ACTIONS(4198), - [anon_sym_QMARK_COLON] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_else] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_BANG_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), - [anon_sym_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), - [anon_sym_LT_EQ] = ACTIONS(4198), - [anon_sym_GT_EQ] = ACTIONS(4198), - [anon_sym_BANGin] = ACTIONS(4198), - [anon_sym_is] = ACTIONS(4196), - [anon_sym_BANGis] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_SLASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_as_QMARK] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_BANG_BANG] = ACTIONS(4198), - [anon_sym_suspend] = ACTIONS(4196), - [anon_sym_sealed] = ACTIONS(4196), - [anon_sym_annotation] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4196), - [anon_sym_inner] = ACTIONS(4196), - [anon_sym_override] = ACTIONS(4196), - [anon_sym_lateinit] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_internal] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_tailrec] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_infix] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym_external] = ACTIONS(4196), - [sym_property_modifier] = ACTIONS(4196), - [anon_sym_abstract] = ACTIONS(4196), - [anon_sym_final] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4196), - [anon_sym_vararg] = ACTIONS(4196), - [anon_sym_noinline] = ACTIONS(4196), - [anon_sym_crossinline] = ACTIONS(4196), - [anon_sym_expect] = ACTIONS(4196), - [anon_sym_actual] = ACTIONS(4196), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4198), - [sym__automatic_semicolon] = ACTIONS(4198), - [sym_safe_nav] = ACTIONS(4198), + [sym_function_body] = STATE(3238), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), [sym_multiline_comment] = ACTIONS(3), }, [4118] = { - [sym_function_body] = STATE(3248), - [sym__block] = STATE(3464), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), + [sym_function_body] = STATE(3377), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), [anon_sym_EQ] = ACTIONS(6965), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_while] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym_safe_nav] = ACTIONS(4049), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, [4119] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_where] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6716), + [sym_function_body] = STATE(3383), + [sym__block] = STATE(3265), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(6965), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), }, [4120] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4120), - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(7187), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_get] = ACTIONS(4625), - [anon_sym_set] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4627), - [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_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(4627), - [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_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), + [aux_sym__delegation_specifiers_repeat1] = STATE(4017), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(7166), + [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(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_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(4654), + [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_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), }, [4121] = { - [sym_class_body] = STATE(3272), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(7190), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_RPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_while] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [aux_sym__delegation_specifiers_repeat1] = STATE(4142), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(7196), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4646), + [anon_sym_DOT_DOT] = ACTIONS(4648), + [anon_sym_QMARK_COLON] = ACTIONS(4648), + [anon_sym_AMP_AMP] = ACTIONS(4648), + [anon_sym_PIPE_PIPE] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4646), + [anon_sym_COLON_COLON] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4646), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_BANGin] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_BANGis] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_SLASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4646), + [anon_sym_sealed] = ACTIONS(4646), + [anon_sym_annotation] = ACTIONS(4646), + [anon_sym_data] = ACTIONS(4646), + [anon_sym_inner] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_lateinit] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_protected] = ACTIONS(4646), + [anon_sym_tailrec] = ACTIONS(4646), + [anon_sym_operator] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_inline] = ACTIONS(4646), + [anon_sym_external] = ACTIONS(4646), + [sym_property_modifier] = ACTIONS(4646), + [anon_sym_abstract] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_vararg] = ACTIONS(4646), + [anon_sym_noinline] = ACTIONS(4646), + [anon_sym_crossinline] = ACTIONS(4646), + [anon_sym_expect] = ACTIONS(4646), + [anon_sym_actual] = ACTIONS(4646), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4648), + [sym__automatic_semicolon] = ACTIONS(4648), + [sym_safe_nav] = ACTIONS(4648), [sym_multiline_comment] = ACTIONS(3), }, [4122] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7192), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym_function_body] = STATE(3716), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4286), + [anon_sym_AT] = ACTIONS(4288), + [anon_sym_LBRACK] = ACTIONS(4288), + [anon_sym_as] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_LPAREN] = ACTIONS(4288), + [anon_sym_LT] = ACTIONS(4286), + [anon_sym_GT] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_get] = ACTIONS(4286), + [anon_sym_set] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [sym_label] = ACTIONS(4288), + [anon_sym_in] = ACTIONS(4286), + [anon_sym_DOT_DOT] = ACTIONS(4288), + [anon_sym_QMARK_COLON] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_else] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4288), + [anon_sym_EQ_EQ] = ACTIONS(4286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4288), + [anon_sym_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_EQ] = ACTIONS(4288), + [anon_sym_BANGin] = ACTIONS(4288), + [anon_sym_is] = ACTIONS(4286), + [anon_sym_BANGis] = ACTIONS(4288), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_as_QMARK] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_BANG_BANG] = ACTIONS(4288), + [anon_sym_suspend] = ACTIONS(4286), + [anon_sym_sealed] = ACTIONS(4286), + [anon_sym_annotation] = ACTIONS(4286), + [anon_sym_data] = ACTIONS(4286), + [anon_sym_inner] = ACTIONS(4286), + [anon_sym_override] = ACTIONS(4286), + [anon_sym_lateinit] = ACTIONS(4286), + [anon_sym_public] = ACTIONS(4286), + [anon_sym_private] = ACTIONS(4286), + [anon_sym_internal] = ACTIONS(4286), + [anon_sym_protected] = ACTIONS(4286), + [anon_sym_tailrec] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_infix] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym_external] = ACTIONS(4286), + [sym_property_modifier] = ACTIONS(4286), + [anon_sym_abstract] = ACTIONS(4286), + [anon_sym_final] = ACTIONS(4286), + [anon_sym_open] = ACTIONS(4286), + [anon_sym_vararg] = ACTIONS(4286), + [anon_sym_noinline] = ACTIONS(4286), + [anon_sym_crossinline] = ACTIONS(4286), + [anon_sym_expect] = ACTIONS(4286), + [anon_sym_actual] = ACTIONS(4286), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4288), + [sym__automatic_semicolon] = ACTIONS(4288), + [sym_safe_nav] = ACTIONS(4288), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), }, [4123] = { - [sym_class_body] = STATE(3337), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_RPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_while] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_where] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4124] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7198), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_object] = ACTIONS(4959), - [anon_sym_fun] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_this] = ACTIONS(4959), - [anon_sym_super] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_null] = ACTIONS(4959), - [anon_sym_if] = ACTIONS(4959), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_when] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_return] = ACTIONS(4959), - [anon_sym_continue] = ACTIONS(4959), - [anon_sym_break] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4961), - [anon_sym_continue_AT] = ACTIONS(4961), - [anon_sym_break_AT] = ACTIONS(4961), - [sym_real_literal] = ACTIONS(4961), - [sym_integer_literal] = ACTIONS(4959), - [sym_hex_literal] = ACTIONS(4961), - [sym_bin_literal] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4959), - [anon_sym_false] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4961), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4961), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7202), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_object] = ACTIONS(4859), + [anon_sym_fun] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_this] = ACTIONS(4859), + [anon_sym_super] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4859), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_if] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_when] = ACTIONS(4859), + [anon_sym_try] = ACTIONS(4859), + [anon_sym_throw] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_continue] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4859), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4861), + [anon_sym_continue_AT] = ACTIONS(4861), + [anon_sym_break_AT] = ACTIONS(4861), + [sym_real_literal] = ACTIONS(4861), + [sym_integer_literal] = ACTIONS(4859), + [sym_hex_literal] = ACTIONS(4861), + [sym_bin_literal] = ACTIONS(4861), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4861), }, [4125] = { - [sym_function_body] = STATE(3730), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4485), - [anon_sym_AT] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4485), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4485), - [anon_sym_GT] = 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(4487), - [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_COLON_COLON] = 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(4487), - [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_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), + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7204), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_object] = ACTIONS(4841), + [anon_sym_fun] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_this] = ACTIONS(4841), + [anon_sym_super] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4841), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_null] = ACTIONS(4841), + [anon_sym_if] = ACTIONS(4841), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_try] = ACTIONS(4841), + [anon_sym_throw] = ACTIONS(4841), + [anon_sym_return] = ACTIONS(4841), + [anon_sym_continue] = ACTIONS(4841), + [anon_sym_break] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4843), + [anon_sym_continue_AT] = ACTIONS(4843), + [anon_sym_break_AT] = ACTIONS(4843), + [sym_real_literal] = ACTIONS(4843), + [sym_integer_literal] = ACTIONS(4841), + [sym_hex_literal] = ACTIONS(4843), + [sym_bin_literal] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4841), + [anon_sym_false] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4843), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4843), }, [4126] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4656), - [anon_sym_AT] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4656), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_RBRACE] = ACTIONS(4658), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_COMMA] = ACTIONS(7200), - [anon_sym_LT] = ACTIONS(4656), - [anon_sym_GT] = ACTIONS(4656), - [anon_sym_where] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(4658), - [anon_sym_get] = ACTIONS(4656), - [anon_sym_set] = ACTIONS(4656), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4658), - [anon_sym_in] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4658), - [anon_sym_QMARK_COLON] = ACTIONS(4658), - [anon_sym_AMP_AMP] = ACTIONS(4658), - [anon_sym_PIPE_PIPE] = ACTIONS(4658), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_COLON_COLON] = ACTIONS(4658), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4658), - [anon_sym_LT_EQ] = ACTIONS(4658), - [anon_sym_GT_EQ] = ACTIONS(4658), - [anon_sym_BANGin] = ACTIONS(4658), - [anon_sym_is] = ACTIONS(4656), - [anon_sym_BANGis] = ACTIONS(4658), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_SLASH] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4658), - [anon_sym_PLUS_PLUS] = ACTIONS(4658), - [anon_sym_DASH_DASH] = ACTIONS(4658), - [anon_sym_BANG_BANG] = ACTIONS(4658), - [anon_sym_suspend] = ACTIONS(4656), - [anon_sym_sealed] = ACTIONS(4656), - [anon_sym_annotation] = ACTIONS(4656), - [anon_sym_data] = ACTIONS(4656), - [anon_sym_inner] = ACTIONS(4656), - [anon_sym_override] = ACTIONS(4656), - [anon_sym_lateinit] = ACTIONS(4656), - [anon_sym_public] = ACTIONS(4656), - [anon_sym_private] = ACTIONS(4656), - [anon_sym_internal] = ACTIONS(4656), - [anon_sym_protected] = ACTIONS(4656), - [anon_sym_tailrec] = ACTIONS(4656), - [anon_sym_operator] = ACTIONS(4656), - [anon_sym_infix] = ACTIONS(4656), - [anon_sym_inline] = ACTIONS(4656), - [anon_sym_external] = ACTIONS(4656), - [sym_property_modifier] = ACTIONS(4656), - [anon_sym_abstract] = ACTIONS(4656), - [anon_sym_final] = ACTIONS(4656), - [anon_sym_open] = ACTIONS(4656), - [anon_sym_vararg] = ACTIONS(4656), - [anon_sym_noinline] = ACTIONS(4656), - [anon_sym_crossinline] = ACTIONS(4656), - [anon_sym_expect] = ACTIONS(4656), - [anon_sym_actual] = ACTIONS(4656), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4658), - [sym__automatic_semicolon] = ACTIONS(4658), - [sym_safe_nav] = ACTIONS(4658), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7206), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4312), + [anon_sym_fun] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_this] = ACTIONS(4312), + [anon_sym_super] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4312), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_if] = ACTIONS(4312), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_try] = ACTIONS(4312), + [anon_sym_throw] = ACTIONS(4312), + [anon_sym_return] = ACTIONS(4312), + [anon_sym_continue] = ACTIONS(4312), + [anon_sym_break] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4310), + [anon_sym_continue_AT] = ACTIONS(4310), + [anon_sym_break_AT] = ACTIONS(4310), + [sym_real_literal] = ACTIONS(4310), + [sym_integer_literal] = ACTIONS(4312), + [sym_hex_literal] = ACTIONS(4310), + [sym_bin_literal] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4310), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4310), }, [4127] = { - [sym__alpha_identifier] = ACTIONS(4138), - [anon_sym_AT] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(6694), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4138), - [anon_sym_fun] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4138), - [anon_sym_set] = ACTIONS(4138), - [anon_sym_this] = ACTIONS(4138), - [anon_sym_super] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [sym_label] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4138), - [anon_sym_inner] = ACTIONS(4138), - [anon_sym_expect] = ACTIONS(4138), - [anon_sym_actual] = ACTIONS(4138), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4141), - [anon_sym_continue_AT] = ACTIONS(4141), - [anon_sym_break_AT] = ACTIONS(4141), - [sym_real_literal] = ACTIONS(4141), - [sym_integer_literal] = ACTIONS(4138), - [sym_hex_literal] = ACTIONS(4141), - [sym_bin_literal] = ACTIONS(4141), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4141), - [sym__backtick_identifier] = ACTIONS(4141), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4141), + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7208), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_fun] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_this] = ACTIONS(4298), + [anon_sym_super] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4298), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4298), + [anon_sym_try] = ACTIONS(4298), + [anon_sym_throw] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4296), + [anon_sym_continue_AT] = ACTIONS(4296), + [anon_sym_break_AT] = ACTIONS(4296), + [sym_real_literal] = ACTIONS(4296), + [sym_integer_literal] = ACTIONS(4298), + [sym_hex_literal] = ACTIONS(4296), + [sym_bin_literal] = ACTIONS(4296), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_false] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4296), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4296), }, [4128] = { - [sym__alpha_identifier] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(7177), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_get] = ACTIONS(4414), - [anon_sym_set] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [sym_label] = ACTIONS(4416), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_QMARK_COLON] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [anon_sym_else] = ACTIONS(4414), - [anon_sym_COLON_COLON] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4414), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_BANGin] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_BANGis] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_as_QMARK] = ACTIONS(4416), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_BANG_BANG] = ACTIONS(4416), - [anon_sym_suspend] = ACTIONS(4414), - [anon_sym_sealed] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4414), - [anon_sym_data] = ACTIONS(4414), - [anon_sym_inner] = ACTIONS(4414), - [anon_sym_override] = ACTIONS(4414), - [anon_sym_lateinit] = ACTIONS(4414), - [anon_sym_public] = ACTIONS(4414), - [anon_sym_private] = ACTIONS(4414), - [anon_sym_internal] = ACTIONS(4414), - [anon_sym_protected] = ACTIONS(4414), - [anon_sym_tailrec] = ACTIONS(4414), - [anon_sym_operator] = ACTIONS(4414), - [anon_sym_infix] = ACTIONS(4414), - [anon_sym_inline] = ACTIONS(4414), - [anon_sym_external] = ACTIONS(4414), - [sym_property_modifier] = ACTIONS(4414), - [anon_sym_abstract] = ACTIONS(4414), - [anon_sym_final] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4414), - [anon_sym_vararg] = ACTIONS(4414), - [anon_sym_noinline] = ACTIONS(4414), - [anon_sym_crossinline] = ACTIONS(4414), - [anon_sym_expect] = ACTIONS(4414), - [anon_sym_actual] = ACTIONS(4414), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4416), - [sym__automatic_semicolon] = ACTIONS(4416), - [sym_safe_nav] = ACTIONS(4416), + [sym_function_body] = STATE(3732), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), [sym_multiline_comment] = ACTIONS(3), }, [4129] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4283), - [anon_sym_fun] = ACTIONS(4283), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(4283), - [anon_sym_super] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_else] = ACTIONS(4291), - [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(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4286), - [anon_sym_continue_AT] = ACTIONS(4286), - [anon_sym_break_AT] = ACTIONS(4286), - [sym_real_literal] = ACTIONS(4286), - [sym_integer_literal] = ACTIONS(4283), - [sym_hex_literal] = ACTIONS(4286), - [sym_bin_literal] = ACTIONS(4286), - [anon_sym_true] = ACTIONS(4283), - [anon_sym_false] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4286), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4286), + [aux_sym__delegation_specifiers_repeat1] = STATE(4129), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(7210), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4637), + [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_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(4637), + [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_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), }, [4130] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_class_body] = STATE(3286), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(7213), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), + }, + [4131] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_where] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4131] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4120), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(4664), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4664), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4132] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4120), - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_as] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_COMMA] = ACTIONS(7200), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_DOT] = ACTIONS(4662), - [anon_sym_SEMI] = ACTIONS(4664), - [anon_sym_get] = ACTIONS(4662), - [anon_sym_set] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [sym_label] = ACTIONS(4664), - [anon_sym_in] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_QMARK_COLON] = ACTIONS(4664), - [anon_sym_AMP_AMP] = ACTIONS(4664), - [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_else] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_BANG_EQ] = ACTIONS(4662), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), - [anon_sym_EQ_EQ] = ACTIONS(4662), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), - [anon_sym_LT_EQ] = ACTIONS(4664), - [anon_sym_GT_EQ] = ACTIONS(4664), - [anon_sym_BANGin] = ACTIONS(4664), - [anon_sym_is] = ACTIONS(4662), - [anon_sym_BANGis] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_SLASH] = ACTIONS(4662), - [anon_sym_PERCENT] = ACTIONS(4664), - [anon_sym_as_QMARK] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_BANG_BANG] = ACTIONS(4664), - [anon_sym_suspend] = ACTIONS(4662), - [anon_sym_sealed] = ACTIONS(4662), - [anon_sym_annotation] = ACTIONS(4662), - [anon_sym_data] = ACTIONS(4662), - [anon_sym_inner] = ACTIONS(4662), - [anon_sym_override] = ACTIONS(4662), - [anon_sym_lateinit] = ACTIONS(4662), - [anon_sym_public] = ACTIONS(4662), - [anon_sym_private] = ACTIONS(4662), - [anon_sym_internal] = ACTIONS(4662), - [anon_sym_protected] = ACTIONS(4662), - [anon_sym_tailrec] = ACTIONS(4662), - [anon_sym_operator] = ACTIONS(4662), - [anon_sym_infix] = ACTIONS(4662), - [anon_sym_inline] = ACTIONS(4662), - [anon_sym_external] = ACTIONS(4662), - [sym_property_modifier] = ACTIONS(4662), - [anon_sym_abstract] = ACTIONS(4662), - [anon_sym_final] = ACTIONS(4662), - [anon_sym_open] = ACTIONS(4662), - [anon_sym_vararg] = ACTIONS(4662), - [anon_sym_noinline] = ACTIONS(4662), - [anon_sym_crossinline] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), - [sym_multiline_comment] = ACTIONS(3), - }, - [4133] = { - [sym__alpha_identifier] = ACTIONS(4283), - [anon_sym_AT] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7222), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4283), - [anon_sym_set] = ACTIONS(4283), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(4286), - [sym_label] = ACTIONS(4283), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4283), - [anon_sym_inner] = ACTIONS(4283), - [anon_sym_expect] = ACTIONS(4283), - [anon_sym_actual] = ACTIONS(4283), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(4286), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), - }, - [4134] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [4133] = { + [sym_function_body] = STATE(3829), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4114), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4114), + [anon_sym_GT] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(4114), + [anon_sym_set] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [sym_label] = ACTIONS(4116), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_QMARK_COLON] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_else] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_BANGin] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4114), + [anon_sym_BANGis] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4114), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_as_QMARK] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_BANG_BANG] = ACTIONS(4116), + [anon_sym_suspend] = ACTIONS(4114), + [anon_sym_sealed] = ACTIONS(4114), + [anon_sym_annotation] = ACTIONS(4114), + [anon_sym_data] = ACTIONS(4114), + [anon_sym_inner] = ACTIONS(4114), + [anon_sym_override] = ACTIONS(4114), + [anon_sym_lateinit] = ACTIONS(4114), + [anon_sym_public] = ACTIONS(4114), + [anon_sym_private] = ACTIONS(4114), + [anon_sym_internal] = ACTIONS(4114), + [anon_sym_protected] = ACTIONS(4114), + [anon_sym_tailrec] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_infix] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_external] = ACTIONS(4114), + [sym_property_modifier] = ACTIONS(4114), + [anon_sym_abstract] = ACTIONS(4114), + [anon_sym_final] = ACTIONS(4114), + [anon_sym_open] = ACTIONS(4114), + [anon_sym_vararg] = ACTIONS(4114), + [anon_sym_noinline] = ACTIONS(4114), + [anon_sym_crossinline] = ACTIONS(4114), + [anon_sym_expect] = ACTIONS(4114), + [anon_sym_actual] = ACTIONS(4114), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4116), + [sym__automatic_semicolon] = ACTIONS(4116), + [sym_safe_nav] = ACTIONS(4116), [sym_multiline_comment] = ACTIONS(3), }, + [4134] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7233), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, [4135] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_where] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6716), + [sym_function_body] = STATE(3902), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_as] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym_LT] = ACTIONS(4442), + [anon_sym_GT] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_get] = ACTIONS(4442), + [anon_sym_set] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4444), + [sym_label] = ACTIONS(4444), + [anon_sym_in] = ACTIONS(4442), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_QMARK_COLON] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4444), + [anon_sym_EQ_EQ] = ACTIONS(4442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4444), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4444), + [anon_sym_BANGin] = ACTIONS(4444), + [anon_sym_is] = ACTIONS(4442), + [anon_sym_BANGis] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_SLASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_as_QMARK] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_BANG_BANG] = ACTIONS(4444), + [anon_sym_suspend] = ACTIONS(4442), + [anon_sym_sealed] = ACTIONS(4442), + [anon_sym_annotation] = ACTIONS(4442), + [anon_sym_data] = ACTIONS(4442), + [anon_sym_inner] = ACTIONS(4442), + [anon_sym_override] = ACTIONS(4442), + [anon_sym_lateinit] = ACTIONS(4442), + [anon_sym_public] = ACTIONS(4442), + [anon_sym_private] = ACTIONS(4442), + [anon_sym_internal] = ACTIONS(4442), + [anon_sym_protected] = ACTIONS(4442), + [anon_sym_tailrec] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_infix] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym_external] = ACTIONS(4442), + [sym_property_modifier] = ACTIONS(4442), + [anon_sym_abstract] = ACTIONS(4442), + [anon_sym_final] = ACTIONS(4442), + [anon_sym_open] = ACTIONS(4442), + [anon_sym_vararg] = ACTIONS(4442), + [anon_sym_noinline] = ACTIONS(4442), + [anon_sym_crossinline] = ACTIONS(4442), + [anon_sym_expect] = ACTIONS(4442), + [anon_sym_actual] = ACTIONS(4442), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4444), + [sym__automatic_semicolon] = ACTIONS(4444), + [sym_safe_nav] = ACTIONS(4444), [sym_multiline_comment] = ACTIONS(3), }, [4136] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_where] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7237), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [4137] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3022), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_where] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4138] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = 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(4792), - [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(7226), - [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_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(4792), - [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_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), - [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), - }, - [4139] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_object] = ACTIONS(4790), - [anon_sym_fun] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(7228), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_this] = ACTIONS(4790), - [anon_sym_super] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [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(7226), - [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_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(4792), - [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_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4792), - [anon_sym_continue_AT] = ACTIONS(4792), - [anon_sym_break_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__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3061), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4792), }, - [4140] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4138] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_where] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4141] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4139] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4142] = { - [sym_function_body] = STATE(3776), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4424), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_LT] = ACTIONS(4424), - [anon_sym_GT] = 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(4426), - [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_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(4426), - [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_override] = ACTIONS(4424), - [anon_sym_lateinit] = ACTIONS(4424), - [anon_sym_public] = ACTIONS(4424), - [anon_sym_private] = ACTIONS(4424), - [anon_sym_internal] = ACTIONS(4424), - [anon_sym_protected] = ACTIONS(4424), - [anon_sym_tailrec] = ACTIONS(4424), - [anon_sym_operator] = ACTIONS(4424), - [anon_sym_infix] = ACTIONS(4424), - [anon_sym_inline] = ACTIONS(4424), - [anon_sym_external] = ACTIONS(4424), - [sym_property_modifier] = ACTIONS(4424), - [anon_sym_abstract] = ACTIONS(4424), - [anon_sym_final] = ACTIONS(4424), - [anon_sym_open] = ACTIONS(4424), - [anon_sym_vararg] = ACTIONS(4424), - [anon_sym_noinline] = ACTIONS(4424), - [anon_sym_crossinline] = ACTIONS(4424), - [anon_sym_expect] = ACTIONS(4424), - [anon_sym_actual] = ACTIONS(4424), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4426), - [sym__automatic_semicolon] = ACTIONS(4426), - [sym_safe_nav] = ACTIONS(4426), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4143] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4140] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3072), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4144] = { - [sym_function_body] = STATE(3709), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4254), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4254), - [anon_sym_set] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_QMARK_COLON] = ACTIONS(4256), - [anon_sym_AMP_AMP] = ACTIONS(4256), - [anon_sym_PIPE_PIPE] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4254), - [anon_sym_COLON_COLON] = ACTIONS(4256), - [anon_sym_BANG_EQ] = ACTIONS(4254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ] = ACTIONS(4254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), - [anon_sym_LT_EQ] = ACTIONS(4256), - [anon_sym_GT_EQ] = ACTIONS(4256), - [anon_sym_BANGin] = ACTIONS(4256), - [anon_sym_is] = ACTIONS(4254), - [anon_sym_BANGis] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4254), - [anon_sym_sealed] = ACTIONS(4254), - [anon_sym_annotation] = ACTIONS(4254), - [anon_sym_data] = ACTIONS(4254), - [anon_sym_inner] = ACTIONS(4254), - [anon_sym_override] = ACTIONS(4254), - [anon_sym_lateinit] = ACTIONS(4254), - [anon_sym_public] = ACTIONS(4254), - [anon_sym_private] = ACTIONS(4254), - [anon_sym_internal] = ACTIONS(4254), - [anon_sym_protected] = ACTIONS(4254), - [anon_sym_tailrec] = ACTIONS(4254), - [anon_sym_operator] = ACTIONS(4254), - [anon_sym_infix] = ACTIONS(4254), - [anon_sym_inline] = ACTIONS(4254), - [anon_sym_external] = ACTIONS(4254), - [sym_property_modifier] = ACTIONS(4254), - [anon_sym_abstract] = ACTIONS(4254), - [anon_sym_final] = ACTIONS(4254), - [anon_sym_open] = ACTIONS(4254), - [anon_sym_vararg] = ACTIONS(4254), - [anon_sym_noinline] = ACTIONS(4254), - [anon_sym_crossinline] = ACTIONS(4254), - [anon_sym_expect] = ACTIONS(4254), - [anon_sym_actual] = ACTIONS(4254), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4256), - [sym__automatic_semicolon] = ACTIONS(4256), - [sym_safe_nav] = ACTIONS(4256), + [4141] = { + [sym_function_body] = STATE(3700), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4452), + [anon_sym_AT] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_as] = ACTIONS(4452), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_LT] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(4452), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym_get] = ACTIONS(4452), + [anon_sym_set] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4454), + [sym_label] = ACTIONS(4454), + [anon_sym_in] = ACTIONS(4452), + [anon_sym_DOT_DOT] = ACTIONS(4454), + [anon_sym_QMARK_COLON] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_PIPE_PIPE] = ACTIONS(4454), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_BANG_EQ] = ACTIONS(4452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4454), + [anon_sym_EQ_EQ] = ACTIONS(4452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4454), + [anon_sym_LT_EQ] = ACTIONS(4454), + [anon_sym_GT_EQ] = ACTIONS(4454), + [anon_sym_BANGin] = ACTIONS(4454), + [anon_sym_is] = ACTIONS(4452), + [anon_sym_BANGis] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_SLASH] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_as_QMARK] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_BANG_BANG] = ACTIONS(4454), + [anon_sym_suspend] = ACTIONS(4452), + [anon_sym_sealed] = ACTIONS(4452), + [anon_sym_annotation] = ACTIONS(4452), + [anon_sym_data] = ACTIONS(4452), + [anon_sym_inner] = ACTIONS(4452), + [anon_sym_override] = ACTIONS(4452), + [anon_sym_lateinit] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_internal] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_tailrec] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_infix] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym_external] = ACTIONS(4452), + [sym_property_modifier] = ACTIONS(4452), + [anon_sym_abstract] = ACTIONS(4452), + [anon_sym_final] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4452), + [anon_sym_vararg] = ACTIONS(4452), + [anon_sym_noinline] = ACTIONS(4452), + [anon_sym_crossinline] = ACTIONS(4452), + [anon_sym_expect] = ACTIONS(4452), + [anon_sym_actual] = ACTIONS(4452), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4454), + [sym__automatic_semicolon] = ACTIONS(4454), + [sym_safe_nav] = ACTIONS(4454), [sym_multiline_comment] = ACTIONS(3), }, - [4145] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4142] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4129), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(7196), + [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(4654), + [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_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(4654), + [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_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + }, + [4143] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_where] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4146] = { - [sym_function_body] = STATE(3745), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4420), - [anon_sym_AT] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_get] = ACTIONS(4420), - [anon_sym_set] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4422), - [sym_label] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4422), - [anon_sym_QMARK_COLON] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4422), - [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_else] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4422), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4422), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4422), - [anon_sym_LT_EQ] = ACTIONS(4422), - [anon_sym_GT_EQ] = ACTIONS(4422), - [anon_sym_BANGin] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_BANGis] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4420), - [anon_sym_PERCENT] = ACTIONS(4422), - [anon_sym_as_QMARK] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_BANG_BANG] = ACTIONS(4422), - [anon_sym_suspend] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_annotation] = ACTIONS(4420), - [anon_sym_data] = ACTIONS(4420), - [anon_sym_inner] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_lateinit] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_tailrec] = ACTIONS(4420), - [anon_sym_operator] = ACTIONS(4420), - [anon_sym_infix] = ACTIONS(4420), - [anon_sym_inline] = ACTIONS(4420), - [anon_sym_external] = ACTIONS(4420), - [sym_property_modifier] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_final] = ACTIONS(4420), - [anon_sym_open] = ACTIONS(4420), - [anon_sym_vararg] = ACTIONS(4420), - [anon_sym_noinline] = ACTIONS(4420), - [anon_sym_crossinline] = ACTIONS(4420), - [anon_sym_expect] = ACTIONS(4420), - [anon_sym_actual] = ACTIONS(4420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4422), - [sym__automatic_semicolon] = ACTIONS(4422), - [sym_safe_nav] = ACTIONS(4422), + [4144] = { + [sym_function_body] = STATE(3746), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), [sym_multiline_comment] = ACTIONS(3), }, - [4147] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4145] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3004), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4148] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4146] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_where] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym__automatic_semicolon] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [4147] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3084), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3048), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4149] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4148] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_where] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4150] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4149] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [4150] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4151] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_where] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [4152] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3067), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_BANGin] = ACTIONS(7231), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4152] = { - [sym_function_body] = STATE(3707), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4258), - [anon_sym_GT] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_get] = ACTIONS(4258), - [anon_sym_set] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4258), - [anon_sym_DOT_DOT] = ACTIONS(4260), - [anon_sym_QMARK_COLON] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_PIPE_PIPE] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_BANG_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4260), - [anon_sym_GT_EQ] = ACTIONS(4260), - [anon_sym_BANGin] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4258), - [anon_sym_BANGis] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_SLASH] = ACTIONS(4258), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4260), - [anon_sym_suspend] = ACTIONS(4258), - [anon_sym_sealed] = ACTIONS(4258), - [anon_sym_annotation] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4258), - [anon_sym_inner] = ACTIONS(4258), - [anon_sym_override] = ACTIONS(4258), - [anon_sym_lateinit] = ACTIONS(4258), - [anon_sym_public] = ACTIONS(4258), - [anon_sym_private] = ACTIONS(4258), - [anon_sym_internal] = ACTIONS(4258), - [anon_sym_protected] = ACTIONS(4258), - [anon_sym_tailrec] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_infix] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym_external] = ACTIONS(4258), - [sym_property_modifier] = ACTIONS(4258), - [anon_sym_abstract] = ACTIONS(4258), - [anon_sym_final] = ACTIONS(4258), - [anon_sym_open] = ACTIONS(4258), - [anon_sym_vararg] = ACTIONS(4258), - [anon_sym_noinline] = ACTIONS(4258), - [anon_sym_crossinline] = ACTIONS(4258), - [anon_sym_expect] = ACTIONS(4258), - [anon_sym_actual] = ACTIONS(4258), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4260), - [sym__automatic_semicolon] = ACTIONS(4260), - [sym_safe_nav] = ACTIONS(4260), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4153] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_where] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4154] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_object] = ACTIONS(4953), - [anon_sym_fun] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_this] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4953), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_null] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_try] = ACTIONS(4953), - [anon_sym_throw] = ACTIONS(4953), - [anon_sym_return] = ACTIONS(4953), - [anon_sym_continue] = ACTIONS(4953), - [anon_sym_break] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4955), - [anon_sym_continue_AT] = ACTIONS(4955), - [anon_sym_break_AT] = ACTIONS(4955), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4955), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4955), - }, - [4155] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2078), + [sym__in_operator] = STATE(2079), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2081), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2082), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_COMMA] = ACTIONS(3088), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(7221), + [anon_sym_where] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3088), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7198), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7223), + [anon_sym_DOT_DOT] = ACTIONS(7215), + [anon_sym_QMARK_COLON] = ACTIONS(7217), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7243), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [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(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3088), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, + [4155] = { + [sym__alpha_identifier] = ACTIONS(4304), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(6758), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_object] = ACTIONS(4304), + [anon_sym_fun] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4304), + [anon_sym_set] = ACTIONS(4304), + [anon_sym_this] = ACTIONS(4304), + [anon_sym_super] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4304), + [anon_sym_if] = ACTIONS(4304), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4304), + [anon_sym_try] = ACTIONS(4304), + [anon_sym_throw] = ACTIONS(4304), + [anon_sym_return] = ACTIONS(4304), + [anon_sym_continue] = ACTIONS(4304), + [anon_sym_break] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_data] = ACTIONS(4304), + [anon_sym_inner] = ACTIONS(4304), + [anon_sym_expect] = ACTIONS(4304), + [anon_sym_actual] = ACTIONS(4304), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4307), + [anon_sym_continue_AT] = ACTIONS(4307), + [anon_sym_break_AT] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4307), + [sym_integer_literal] = ACTIONS(4304), + [sym_hex_literal] = ACTIONS(4307), + [sym_bin_literal] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4304), + [anon_sym_false] = ACTIONS(4304), + [anon_sym_SQUOTE] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4307), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4307), + }, [4156] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7232), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_object] = ACTIONS(4146), - [anon_sym_fun] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_this] = ACTIONS(4146), - [anon_sym_super] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [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_throw] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [anon_sym_data] = ACTIONS(4146), - [anon_sym_inner] = ACTIONS(4146), - [anon_sym_expect] = ACTIONS(4146), - [anon_sym_actual] = ACTIONS(4146), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4144), - [anon_sym_continue_AT] = ACTIONS(4144), - [anon_sym_break_AT] = ACTIONS(4144), - [sym_real_literal] = ACTIONS(4144), - [sym_integer_literal] = ACTIONS(4146), - [sym_hex_literal] = ACTIONS(4144), - [sym_bin_literal] = ACTIONS(4144), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4144), - [sym__backtick_identifier] = ACTIONS(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4144), + [sym__alpha_identifier] = ACTIONS(4290), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(6754), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4290), + [anon_sym_fun] = ACTIONS(4290), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4290), + [anon_sym_set] = ACTIONS(4290), + [anon_sym_this] = ACTIONS(4290), + [anon_sym_super] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4293), + [sym_label] = ACTIONS(4290), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_when] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_data] = ACTIONS(4290), + [anon_sym_inner] = ACTIONS(4290), + [anon_sym_expect] = ACTIONS(4290), + [anon_sym_actual] = ACTIONS(4290), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4293), + [anon_sym_continue_AT] = ACTIONS(4293), + [anon_sym_break_AT] = ACTIONS(4293), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4290), + [sym_hex_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [anon_sym_SQUOTE] = ACTIONS(4293), + [sym__backtick_identifier] = ACTIONS(4293), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4293), }, [4157] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7234), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_object] = ACTIONS(4291), - [anon_sym_fun] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_this] = ACTIONS(4291), - [anon_sym_super] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_throw] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4289), - [anon_sym_continue_AT] = ACTIONS(4289), - [anon_sym_break_AT] = ACTIONS(4289), - [sym_real_literal] = ACTIONS(4289), - [sym_integer_literal] = ACTIONS(4291), - [sym_hex_literal] = ACTIONS(4289), - [sym_bin_literal] = ACTIONS(4289), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4289), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4289), + [aux_sym__delegation_specifiers_repeat1] = STATE(4129), + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_as] = 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(4654), + [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_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(4654), + [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_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), }, [4158] = { - [sym_function_body] = STATE(3788), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4101), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_as] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_LT] = ACTIONS(4099), - [anon_sym_GT] = ACTIONS(4099), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_get] = ACTIONS(4099), - [anon_sym_set] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4101), - [sym_label] = ACTIONS(4101), - [anon_sym_in] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_QMARK_COLON] = ACTIONS(4101), - [anon_sym_AMP_AMP] = ACTIONS(4101), - [anon_sym_PIPE_PIPE] = ACTIONS(4101), - [anon_sym_else] = ACTIONS(4099), - [anon_sym_COLON_COLON] = ACTIONS(4101), - [anon_sym_BANG_EQ] = ACTIONS(4099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4101), - [anon_sym_EQ_EQ] = ACTIONS(4099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4101), - [anon_sym_LT_EQ] = ACTIONS(4101), - [anon_sym_GT_EQ] = ACTIONS(4101), - [anon_sym_BANGin] = ACTIONS(4101), - [anon_sym_is] = ACTIONS(4099), - [anon_sym_BANGis] = ACTIONS(4101), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(4099), - [anon_sym_PERCENT] = ACTIONS(4101), - [anon_sym_as_QMARK] = ACTIONS(4101), - [anon_sym_PLUS_PLUS] = ACTIONS(4101), - [anon_sym_DASH_DASH] = ACTIONS(4101), - [anon_sym_BANG_BANG] = ACTIONS(4101), - [anon_sym_suspend] = ACTIONS(4099), - [anon_sym_sealed] = ACTIONS(4099), - [anon_sym_annotation] = ACTIONS(4099), - [anon_sym_data] = ACTIONS(4099), - [anon_sym_inner] = ACTIONS(4099), - [anon_sym_override] = ACTIONS(4099), - [anon_sym_lateinit] = ACTIONS(4099), - [anon_sym_public] = ACTIONS(4099), - [anon_sym_private] = ACTIONS(4099), - [anon_sym_internal] = ACTIONS(4099), - [anon_sym_protected] = ACTIONS(4099), - [anon_sym_tailrec] = ACTIONS(4099), - [anon_sym_operator] = ACTIONS(4099), - [anon_sym_infix] = ACTIONS(4099), - [anon_sym_inline] = ACTIONS(4099), - [anon_sym_external] = ACTIONS(4099), - [sym_property_modifier] = ACTIONS(4099), - [anon_sym_abstract] = ACTIONS(4099), - [anon_sym_final] = ACTIONS(4099), - [anon_sym_open] = ACTIONS(4099), - [anon_sym_vararg] = ACTIONS(4099), - [anon_sym_noinline] = ACTIONS(4099), - [anon_sym_crossinline] = ACTIONS(4099), - [anon_sym_expect] = ACTIONS(4099), - [anon_sym_actual] = ACTIONS(4099), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4101), - [sym__automatic_semicolon] = ACTIONS(4101), - [sym_safe_nav] = ACTIONS(4101), + [sym_function_body] = STATE(3774), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_as] = ACTIONS(4438), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym_LT] = ACTIONS(4438), + [anon_sym_GT] = ACTIONS(4438), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym_get] = ACTIONS(4438), + [anon_sym_set] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4440), + [sym_label] = ACTIONS(4440), + [anon_sym_in] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_QMARK_COLON] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_else] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_BANG_EQ] = ACTIONS(4438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4440), + [anon_sym_EQ_EQ] = ACTIONS(4438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4440), + [anon_sym_LT_EQ] = ACTIONS(4440), + [anon_sym_GT_EQ] = ACTIONS(4440), + [anon_sym_BANGin] = ACTIONS(4440), + [anon_sym_is] = ACTIONS(4438), + [anon_sym_BANGis] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_SLASH] = ACTIONS(4438), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_as_QMARK] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_BANG_BANG] = ACTIONS(4440), + [anon_sym_suspend] = ACTIONS(4438), + [anon_sym_sealed] = ACTIONS(4438), + [anon_sym_annotation] = ACTIONS(4438), + [anon_sym_data] = ACTIONS(4438), + [anon_sym_inner] = ACTIONS(4438), + [anon_sym_override] = ACTIONS(4438), + [anon_sym_lateinit] = ACTIONS(4438), + [anon_sym_public] = ACTIONS(4438), + [anon_sym_private] = ACTIONS(4438), + [anon_sym_internal] = ACTIONS(4438), + [anon_sym_protected] = ACTIONS(4438), + [anon_sym_tailrec] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_infix] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym_external] = ACTIONS(4438), + [sym_property_modifier] = ACTIONS(4438), + [anon_sym_abstract] = ACTIONS(4438), + [anon_sym_final] = ACTIONS(4438), + [anon_sym_open] = ACTIONS(4438), + [anon_sym_vararg] = ACTIONS(4438), + [anon_sym_noinline] = ACTIONS(4438), + [anon_sym_crossinline] = ACTIONS(4438), + [anon_sym_expect] = ACTIONS(4438), + [anon_sym_actual] = ACTIONS(4438), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4440), + [sym__automatic_semicolon] = ACTIONS(4440), + [sym_safe_nav] = ACTIONS(4440), [sym_multiline_comment] = ACTIONS(3), }, [4159] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1996), - [sym__comparison_operator] = STATE(1999), - [sym__in_operator] = STATE(2000), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(2001), - [sym__multiplicative_operator] = STATE(2002), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_where] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7181), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7204), - [anon_sym_DOT_DOT] = ACTIONS(7206), - [anon_sym_QMARK_COLON] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7216), - [anon_sym_EQ_EQ] = ACTIONS(7214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7216), - [anon_sym_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7218), - [anon_sym_BANGin] = ACTIONS(7220), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7181), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3001), - [sym_safe_nav] = ACTIONS(6716), + [sym_function_body] = STATE(3722), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4318), + [anon_sym_AT] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_as] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(4318), + [anon_sym_GT] = ACTIONS(4318), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_get] = ACTIONS(4318), + [anon_sym_set] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4320), + [sym_label] = ACTIONS(4320), + [anon_sym_in] = ACTIONS(4318), + [anon_sym_DOT_DOT] = ACTIONS(4320), + [anon_sym_QMARK_COLON] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [anon_sym_else] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_BANG_EQ] = ACTIONS(4318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4320), + [anon_sym_EQ_EQ] = ACTIONS(4318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4320), + [anon_sym_LT_EQ] = ACTIONS(4320), + [anon_sym_GT_EQ] = ACTIONS(4320), + [anon_sym_BANGin] = ACTIONS(4320), + [anon_sym_is] = ACTIONS(4318), + [anon_sym_BANGis] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4320), + [anon_sym_as_QMARK] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_BANG_BANG] = ACTIONS(4320), + [anon_sym_suspend] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_annotation] = ACTIONS(4318), + [anon_sym_data] = ACTIONS(4318), + [anon_sym_inner] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_lateinit] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_tailrec] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_infix] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym_external] = ACTIONS(4318), + [sym_property_modifier] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_final] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4318), + [anon_sym_vararg] = ACTIONS(4318), + [anon_sym_noinline] = ACTIONS(4318), + [anon_sym_crossinline] = ACTIONS(4318), + [anon_sym_expect] = ACTIONS(4318), + [anon_sym_actual] = ACTIONS(4318), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4320), + [sym__automatic_semicolon] = ACTIONS(4320), + [sym_safe_nav] = ACTIONS(4320), [sym_multiline_comment] = ACTIONS(3), }, [4160] = { - [sym_function_body] = STATE(3793), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4208), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_GT] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_get] = ACTIONS(4208), - [anon_sym_set] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [sym_label] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4210), - [anon_sym_QMARK_COLON] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_else] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4210), - [anon_sym_LT_EQ] = ACTIONS(4210), - [anon_sym_GT_EQ] = ACTIONS(4210), - [anon_sym_BANGin] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_BANGis] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_as_QMARK] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_BANG_BANG] = ACTIONS(4210), - [anon_sym_suspend] = ACTIONS(4208), - [anon_sym_sealed] = ACTIONS(4208), - [anon_sym_annotation] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4208), - [anon_sym_inner] = ACTIONS(4208), - [anon_sym_override] = ACTIONS(4208), - [anon_sym_lateinit] = ACTIONS(4208), - [anon_sym_public] = ACTIONS(4208), - [anon_sym_private] = ACTIONS(4208), - [anon_sym_internal] = ACTIONS(4208), - [anon_sym_protected] = ACTIONS(4208), - [anon_sym_tailrec] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_infix] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym_external] = ACTIONS(4208), - [sym_property_modifier] = ACTIONS(4208), - [anon_sym_abstract] = ACTIONS(4208), - [anon_sym_final] = ACTIONS(4208), - [anon_sym_open] = ACTIONS(4208), - [anon_sym_vararg] = ACTIONS(4208), - [anon_sym_noinline] = ACTIONS(4208), - [anon_sym_crossinline] = ACTIONS(4208), - [anon_sym_expect] = ACTIONS(4208), - [anon_sym_actual] = ACTIONS(4208), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4210), - [sym__automatic_semicolon] = ACTIONS(4210), - [sym_safe_nav] = ACTIONS(4210), + [sym_class_body] = STATE(3189), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(7245), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), }, [4161] = { - [sym_function_body] = STATE(3837), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_get] = ACTIONS(4047), - [anon_sym_set] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [sym_label] = ACTIONS(4049), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_QMARK_COLON] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_else] = ACTIONS(4047), - [anon_sym_COLON_COLON] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_BANGin] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_BANGis] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_as_QMARK] = ACTIONS(4049), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_BANG_BANG] = ACTIONS(4049), - [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_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(4049), - [sym__automatic_semicolon] = ACTIONS(4049), - [sym_safe_nav] = ACTIONS(4049), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(7170), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4527), + [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_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(4527), + [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_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), }, [4162] = { - [sym_function_body] = STATE(3705), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4031), - [anon_sym_GT] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4033), - [anon_sym_get] = ACTIONS(4031), - [anon_sym_set] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4033), - [sym_label] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4033), - [anon_sym_QMARK_COLON] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4033), - [anon_sym_PIPE_PIPE] = ACTIONS(4033), - [anon_sym_else] = ACTIONS(4031), - [anon_sym_COLON_COLON] = ACTIONS(4033), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4033), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4033), - [anon_sym_LT_EQ] = ACTIONS(4033), - [anon_sym_GT_EQ] = ACTIONS(4033), - [anon_sym_BANGin] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_BANGis] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_as_QMARK] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(4033), - [anon_sym_BANG_BANG] = ACTIONS(4033), - [anon_sym_suspend] = ACTIONS(4031), - [anon_sym_sealed] = ACTIONS(4031), - [anon_sym_annotation] = ACTIONS(4031), - [anon_sym_data] = ACTIONS(4031), - [anon_sym_inner] = ACTIONS(4031), - [anon_sym_override] = ACTIONS(4031), - [anon_sym_lateinit] = ACTIONS(4031), - [anon_sym_public] = ACTIONS(4031), - [anon_sym_private] = ACTIONS(4031), - [anon_sym_internal] = ACTIONS(4031), - [anon_sym_protected] = ACTIONS(4031), - [anon_sym_tailrec] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(4031), - [anon_sym_infix] = ACTIONS(4031), - [anon_sym_inline] = ACTIONS(4031), - [anon_sym_external] = ACTIONS(4031), - [sym_property_modifier] = ACTIONS(4031), - [anon_sym_abstract] = ACTIONS(4031), - [anon_sym_final] = ACTIONS(4031), - [anon_sym_open] = ACTIONS(4031), - [anon_sym_vararg] = ACTIONS(4031), - [anon_sym_noinline] = ACTIONS(4031), - [anon_sym_crossinline] = ACTIONS(4031), - [anon_sym_expect] = ACTIONS(4031), - [anon_sym_actual] = ACTIONS(4031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4033), - [sym__automatic_semicolon] = ACTIONS(4033), - [sym_safe_nav] = ACTIONS(4033), + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4108), + [anon_sym_AT] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_get] = ACTIONS(4108), + [anon_sym_set] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_QMARK_COLON] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_BANGin] = ACTIONS(4110), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_BANGis] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4110), + [anon_sym_suspend] = ACTIONS(4108), + [anon_sym_sealed] = ACTIONS(4108), + [anon_sym_annotation] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4108), + [anon_sym_inner] = ACTIONS(4108), + [anon_sym_override] = ACTIONS(4108), + [anon_sym_lateinit] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_internal] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_tailrec] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_infix] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_external] = ACTIONS(4108), + [sym_property_modifier] = ACTIONS(4108), + [anon_sym_abstract] = ACTIONS(4108), + [anon_sym_final] = ACTIONS(4108), + [anon_sym_open] = ACTIONS(4108), + [anon_sym_vararg] = ACTIONS(4108), + [anon_sym_noinline] = ACTIONS(4108), + [anon_sym_crossinline] = ACTIONS(4108), + [anon_sym_expect] = ACTIONS(4108), + [anon_sym_actual] = ACTIONS(4108), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4110), + [sym__automatic_semicolon] = ACTIONS(4110), + [sym_safe_nav] = ACTIONS(4110), [sym_multiline_comment] = ACTIONS(3), }, [4163] = { - [sym_function_body] = STATE(3872), - [sym__block] = STATE(3738), - [sym__alpha_identifier] = ACTIONS(4085), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_as] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(7026), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4085), - [anon_sym_GT] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4087), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_STAR] = ACTIONS(4087), - [sym_label] = ACTIONS(4087), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [anon_sym_QMARK_COLON] = ACTIONS(4087), - [anon_sym_AMP_AMP] = ACTIONS(4087), - [anon_sym_PIPE_PIPE] = ACTIONS(4087), - [anon_sym_else] = ACTIONS(4085), - [anon_sym_COLON_COLON] = ACTIONS(4087), - [anon_sym_BANG_EQ] = ACTIONS(4085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), - [anon_sym_EQ_EQ] = ACTIONS(4085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), - [anon_sym_LT_EQ] = ACTIONS(4087), - [anon_sym_GT_EQ] = ACTIONS(4087), - [anon_sym_BANGin] = ACTIONS(4087), - [anon_sym_is] = ACTIONS(4085), - [anon_sym_BANGis] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4085), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_SLASH] = ACTIONS(4085), - [anon_sym_PERCENT] = ACTIONS(4087), - [anon_sym_as_QMARK] = ACTIONS(4087), - [anon_sym_PLUS_PLUS] = ACTIONS(4087), - [anon_sym_DASH_DASH] = ACTIONS(4087), - [anon_sym_BANG_BANG] = ACTIONS(4087), - [anon_sym_suspend] = ACTIONS(4085), - [anon_sym_sealed] = ACTIONS(4085), - [anon_sym_annotation] = ACTIONS(4085), - [anon_sym_data] = ACTIONS(4085), - [anon_sym_inner] = ACTIONS(4085), - [anon_sym_override] = ACTIONS(4085), - [anon_sym_lateinit] = ACTIONS(4085), - [anon_sym_public] = ACTIONS(4085), - [anon_sym_private] = ACTIONS(4085), - [anon_sym_internal] = ACTIONS(4085), - [anon_sym_protected] = ACTIONS(4085), - [anon_sym_tailrec] = ACTIONS(4085), - [anon_sym_operator] = ACTIONS(4085), - [anon_sym_infix] = ACTIONS(4085), - [anon_sym_inline] = ACTIONS(4085), - [anon_sym_external] = ACTIONS(4085), - [sym_property_modifier] = ACTIONS(4085), - [anon_sym_abstract] = ACTIONS(4085), - [anon_sym_final] = ACTIONS(4085), - [anon_sym_open] = ACTIONS(4085), - [anon_sym_vararg] = ACTIONS(4085), - [anon_sym_noinline] = ACTIONS(4085), - [anon_sym_crossinline] = ACTIONS(4085), - [anon_sym_expect] = ACTIONS(4085), - [anon_sym_actual] = ACTIONS(4085), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4087), - [sym__automatic_semicolon] = ACTIONS(4087), - [sym_safe_nav] = ACTIONS(4087), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(7247), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [4164] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_object] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7249), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_this] = ACTIONS(4877), + [anon_sym_super] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4877), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(4877), + [anon_sym_if] = ACTIONS(4877), + [anon_sym_else] = ACTIONS(7247), + [anon_sym_when] = ACTIONS(4877), + [anon_sym_try] = ACTIONS(4877), + [anon_sym_throw] = ACTIONS(4877), + [anon_sym_return] = ACTIONS(4877), + [anon_sym_continue] = ACTIONS(4877), + [anon_sym_break] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4879), + [anon_sym_continue_AT] = ACTIONS(4879), + [anon_sym_break_AT] = ACTIONS(4879), + [sym_real_literal] = ACTIONS(4879), + [sym_integer_literal] = ACTIONS(4877), + [sym_hex_literal] = ACTIONS(4879), + [sym_bin_literal] = ACTIONS(4879), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4879), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4879), }, [4165] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7244), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [sym_function_body] = STATE(3793), + [sym__block] = STATE(3734), + [sym__alpha_identifier] = ACTIONS(4102), + [anon_sym_AT] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(6404), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4102), + [anon_sym_set] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_QMARK_COLON] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_BANGin] = ACTIONS(4104), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_BANGis] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4102), + [anon_sym_sealed] = ACTIONS(4102), + [anon_sym_annotation] = ACTIONS(4102), + [anon_sym_data] = ACTIONS(4102), + [anon_sym_inner] = ACTIONS(4102), + [anon_sym_override] = ACTIONS(4102), + [anon_sym_lateinit] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_internal] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_tailrec] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_infix] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym_external] = ACTIONS(4102), + [sym_property_modifier] = ACTIONS(4102), + [anon_sym_abstract] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4102), + [anon_sym_vararg] = ACTIONS(4102), + [anon_sym_noinline] = ACTIONS(4102), + [anon_sym_crossinline] = ACTIONS(4102), + [anon_sym_expect] = ACTIONS(4102), + [anon_sym_actual] = ACTIONS(4102), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4104), + [sym__automatic_semicolon] = ACTIONS(4104), + [sym_safe_nav] = ACTIONS(4104), [sym_multiline_comment] = ACTIONS(3), }, [4166] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4167] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4167] = { - [sym_class_body] = STATE(3813), - [sym__alpha_identifier] = ACTIONS(4384), - [anon_sym_AT] = ACTIONS(4386), - [anon_sym_COLON] = ACTIONS(7264), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_as] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_LT] = ACTIONS(4384), - [anon_sym_GT] = ACTIONS(4384), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4386), - [anon_sym_get] = ACTIONS(4384), - [anon_sym_set] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4386), - [sym_label] = ACTIONS(4386), - [anon_sym_in] = ACTIONS(4384), - [anon_sym_DOT_DOT] = ACTIONS(4386), - [anon_sym_QMARK_COLON] = ACTIONS(4386), - [anon_sym_AMP_AMP] = ACTIONS(4386), - [anon_sym_PIPE_PIPE] = ACTIONS(4386), - [anon_sym_else] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4386), - [anon_sym_BANG_EQ] = ACTIONS(4384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4386), - [anon_sym_EQ_EQ] = ACTIONS(4384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4386), - [anon_sym_LT_EQ] = ACTIONS(4386), - [anon_sym_GT_EQ] = ACTIONS(4386), - [anon_sym_BANGin] = ACTIONS(4386), - [anon_sym_is] = ACTIONS(4384), - [anon_sym_BANGis] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_SLASH] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_as_QMARK] = ACTIONS(4386), - [anon_sym_PLUS_PLUS] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4386), - [anon_sym_BANG_BANG] = ACTIONS(4386), - [anon_sym_suspend] = ACTIONS(4384), - [anon_sym_sealed] = ACTIONS(4384), - [anon_sym_annotation] = ACTIONS(4384), - [anon_sym_data] = ACTIONS(4384), - [anon_sym_inner] = ACTIONS(4384), - [anon_sym_override] = ACTIONS(4384), - [anon_sym_lateinit] = ACTIONS(4384), - [anon_sym_public] = ACTIONS(4384), - [anon_sym_private] = ACTIONS(4384), - [anon_sym_internal] = ACTIONS(4384), - [anon_sym_protected] = ACTIONS(4384), - [anon_sym_tailrec] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4384), - [anon_sym_infix] = ACTIONS(4384), - [anon_sym_inline] = ACTIONS(4384), - [anon_sym_external] = ACTIONS(4384), - [sym_property_modifier] = ACTIONS(4384), - [anon_sym_abstract] = ACTIONS(4384), - [anon_sym_final] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4384), - [anon_sym_vararg] = ACTIONS(4384), - [anon_sym_noinline] = ACTIONS(4384), - [anon_sym_crossinline] = ACTIONS(4384), - [anon_sym_expect] = ACTIONS(4384), - [anon_sym_actual] = ACTIONS(4384), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4386), - [sym__automatic_semicolon] = ACTIONS(4386), - [sym_safe_nav] = ACTIONS(4386), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4168] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3072), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4169] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4170] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3004), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4171] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(7266), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(7268), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), - }, - [4172] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(7268), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4173] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4170] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3045), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4174] = { - [sym_class_body] = STATE(3751), - [sym__alpha_identifier] = ACTIONS(4408), - [anon_sym_AT] = ACTIONS(4410), - [anon_sym_COLON] = ACTIONS(7270), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_LT] = ACTIONS(4408), - [anon_sym_GT] = ACTIONS(4408), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_SEMI] = ACTIONS(4410), - [anon_sym_get] = ACTIONS(4408), - [anon_sym_set] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4410), - [sym_label] = ACTIONS(4410), - [anon_sym_in] = ACTIONS(4408), - [anon_sym_DOT_DOT] = ACTIONS(4410), - [anon_sym_QMARK_COLON] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_PIPE_PIPE] = ACTIONS(4410), - [anon_sym_else] = ACTIONS(4408), - [anon_sym_COLON_COLON] = ACTIONS(4410), - [anon_sym_BANG_EQ] = ACTIONS(4408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4410), - [anon_sym_EQ_EQ] = ACTIONS(4408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4410), - [anon_sym_LT_EQ] = ACTIONS(4410), - [anon_sym_GT_EQ] = ACTIONS(4410), - [anon_sym_BANGin] = ACTIONS(4410), - [anon_sym_is] = ACTIONS(4408), - [anon_sym_BANGis] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_as_QMARK] = ACTIONS(4410), - [anon_sym_PLUS_PLUS] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_BANG_BANG] = ACTIONS(4410), - [anon_sym_suspend] = ACTIONS(4408), - [anon_sym_sealed] = ACTIONS(4408), - [anon_sym_annotation] = ACTIONS(4408), - [anon_sym_data] = ACTIONS(4408), - [anon_sym_inner] = ACTIONS(4408), - [anon_sym_override] = ACTIONS(4408), - [anon_sym_lateinit] = ACTIONS(4408), - [anon_sym_public] = ACTIONS(4408), - [anon_sym_private] = ACTIONS(4408), - [anon_sym_internal] = ACTIONS(4408), - [anon_sym_protected] = ACTIONS(4408), - [anon_sym_tailrec] = ACTIONS(4408), - [anon_sym_operator] = ACTIONS(4408), - [anon_sym_infix] = ACTIONS(4408), - [anon_sym_inline] = ACTIONS(4408), - [anon_sym_external] = ACTIONS(4408), - [sym_property_modifier] = ACTIONS(4408), - [anon_sym_abstract] = ACTIONS(4408), - [anon_sym_final] = ACTIONS(4408), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_vararg] = ACTIONS(4408), - [anon_sym_noinline] = ACTIONS(4408), - [anon_sym_crossinline] = ACTIONS(4408), - [anon_sym_expect] = ACTIONS(4408), - [anon_sym_actual] = ACTIONS(4408), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4410), - [sym__automatic_semicolon] = ACTIONS(4410), - [sym_safe_nav] = ACTIONS(4410), + [4171] = { + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_where] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), }, - [4175] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4172] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3015), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4176] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4173] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(2986), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4177] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4174] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(2990), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4178] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7272), - [anon_sym_COMMA] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [4175] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4179] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7274), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [4176] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7279), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7281), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, - [4180] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4177] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_where] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7281), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [4178] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3061), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4179] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7283), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), + [sym_multiline_comment] = ACTIONS(3), + }, + [4180] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3063), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3063), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4181] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4182] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4183] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_where] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + }, + [4184] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3092), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4184] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4185] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3049), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4185] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7276), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4186] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6423), + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), [sym_multiline_comment] = ACTIONS(3), }, [4187] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4188] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4189] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4188] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_safe_nav] = ACTIONS(6716), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4189] = { + [sym_class_body] = STATE(3740), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), [sym_multiline_comment] = ACTIONS(3), }, [4190] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7304), - [anon_sym_RPAREN] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [sym_class_body] = STATE(3872), + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(5439), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4402), + [anon_sym_GT] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_get] = ACTIONS(4402), + [anon_sym_set] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4404), + [sym_label] = ACTIONS(4404), + [anon_sym_in] = ACTIONS(4402), + [anon_sym_DOT_DOT] = ACTIONS(4404), + [anon_sym_QMARK_COLON] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_else] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_BANG_EQ] = ACTIONS(4402), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4404), + [anon_sym_EQ_EQ] = ACTIONS(4402), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4404), + [anon_sym_LT_EQ] = ACTIONS(4404), + [anon_sym_GT_EQ] = ACTIONS(4404), + [anon_sym_BANGin] = ACTIONS(4404), + [anon_sym_is] = ACTIONS(4402), + [anon_sym_BANGis] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_SLASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_as_QMARK] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_BANG_BANG] = ACTIONS(4404), + [anon_sym_suspend] = ACTIONS(4402), + [anon_sym_sealed] = ACTIONS(4402), + [anon_sym_annotation] = ACTIONS(4402), + [anon_sym_data] = ACTIONS(4402), + [anon_sym_inner] = ACTIONS(4402), + [anon_sym_override] = ACTIONS(4402), + [anon_sym_lateinit] = ACTIONS(4402), + [anon_sym_public] = ACTIONS(4402), + [anon_sym_private] = ACTIONS(4402), + [anon_sym_internal] = ACTIONS(4402), + [anon_sym_protected] = ACTIONS(4402), + [anon_sym_tailrec] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_infix] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym_external] = ACTIONS(4402), + [sym_property_modifier] = ACTIONS(4402), + [anon_sym_abstract] = ACTIONS(4402), + [anon_sym_final] = ACTIONS(4402), + [anon_sym_open] = ACTIONS(4402), + [anon_sym_vararg] = ACTIONS(4402), + [anon_sym_noinline] = ACTIONS(4402), + [anon_sym_crossinline] = ACTIONS(4402), + [anon_sym_expect] = ACTIONS(4402), + [anon_sym_actual] = ACTIONS(4402), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), [sym_multiline_comment] = ACTIONS(3), }, [4191] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_QMARK_COLON] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3022), - [anon_sym_inner] = ACTIONS(3022), - [anon_sym_expect] = ACTIONS(3022), - [anon_sym_actual] = ACTIONS(3022), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3024), - [sym__automatic_semicolon] = ACTIONS(3024), - [sym_safe_nav] = ACTIONS(6716), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_while] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), [sym_multiline_comment] = ACTIONS(3), }, [4192] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3006), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3036), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3038), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_QMARK_COLON] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3006), + [anon_sym_inner] = ACTIONS(3006), + [anon_sym_expect] = ACTIONS(3006), + [anon_sym_actual] = ACTIONS(3006), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4193] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_safe_nav] = ACTIONS(6716), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7299), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4194] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3024), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3005), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3024), + [anon_sym_inner] = ACTIONS(3024), + [anon_sym_expect] = ACTIONS(3024), + [anon_sym_actual] = ACTIONS(3024), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3026), + [sym__automatic_semicolon] = ACTIONS(3026), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4195] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7306), - [anon_sym_RPAREN] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_while] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4196] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), [anon_sym_SEMI] = ACTIONS(3061), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), [anon_sym_else] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), @@ -437298,17028 +437381,16890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), [sym__automatic_semicolon] = ACTIONS(3061), - [sym_safe_nav] = ACTIONS(6716), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4197] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), + [sym_multiline_comment] = ACTIONS(3), + }, + [4198] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2986), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), - [anon_sym_else] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3069), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4198] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7308), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_while] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [sym__automatic_semicolon] = ACTIONS(2986), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4199] = { - [sym__type] = STATE(8816), - [sym__type_reference] = STATE(7537), - [sym_nullable_type] = STATE(8816), - [sym_user_type] = STATE(7537), - [sym__simple_user_type] = STATE(7618), - [sym_type_projection] = STATE(8408), - [sym_type_projection_modifiers] = STATE(5803), - [sym__type_projection_modifier] = STATE(6929), - [sym_function_type] = STATE(8816), - [sym_function_type_parameters] = STATE(9397), - [sym_parenthesized_type] = STATE(7537), - [sym_type_modifiers] = STATE(6550), - [sym__type_modifier] = STATE(6931), - [sym_variance_modifier] = STATE(6929), - [sym_annotation] = STATE(6931), - [sym__single_annotation] = STATE(5546), - [sym__multi_annotation] = STATE(5546), - [sym_simple_identifier] = STATE(7487), - [sym__lexical_identifier] = STATE(4533), - [aux_sym_type_projection_modifiers_repeat1] = STATE(6929), - [aux_sym_type_modifiers_repeat1] = STATE(6931), - [sym__alpha_identifier] = ACTIONS(7310), - [anon_sym_AT] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7316), - [anon_sym_LBRACE] = ACTIONS(7316), - [anon_sym_LPAREN] = ACTIONS(7318), - [anon_sym_object] = ACTIONS(7321), - [anon_sym_fun] = ACTIONS(7321), - [anon_sym_get] = ACTIONS(7310), - [anon_sym_set] = ACTIONS(7310), - [anon_sym_this] = ACTIONS(7321), - [anon_sym_super] = ACTIONS(7321), - [anon_sym_dynamic] = ACTIONS(7323), - [anon_sym_STAR] = ACTIONS(7325), - [sym_label] = ACTIONS(7321), - [anon_sym_in] = ACTIONS(7328), - [anon_sym_null] = ACTIONS(7321), - [anon_sym_if] = ACTIONS(7321), - [anon_sym_when] = ACTIONS(7321), - [anon_sym_try] = ACTIONS(7321), - [anon_sym_throw] = ACTIONS(7321), - [anon_sym_return] = ACTIONS(7321), - [anon_sym_continue] = ACTIONS(7321), - [anon_sym_break] = ACTIONS(7321), - [anon_sym_COLON_COLON] = ACTIONS(7316), - [anon_sym_PLUS] = ACTIONS(7321), - [anon_sym_DASH] = ACTIONS(7321), - [anon_sym_PLUS_PLUS] = ACTIONS(7316), - [anon_sym_DASH_DASH] = ACTIONS(7316), - [anon_sym_BANG] = ACTIONS(7316), - [anon_sym_suspend] = ACTIONS(7330), - [anon_sym_data] = ACTIONS(7310), - [anon_sym_inner] = ACTIONS(7310), - [anon_sym_out] = ACTIONS(7328), - [anon_sym_expect] = ACTIONS(7310), - [anon_sym_actual] = ACTIONS(7310), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7316), - [anon_sym_continue_AT] = ACTIONS(7316), - [anon_sym_break_AT] = ACTIONS(7316), - [sym_real_literal] = ACTIONS(7316), - [sym_integer_literal] = ACTIONS(7321), - [sym_hex_literal] = ACTIONS(7316), - [sym_bin_literal] = ACTIONS(7316), - [anon_sym_true] = ACTIONS(7321), - [anon_sym_false] = ACTIONS(7321), - [anon_sym_SQUOTE] = ACTIONS(7316), - [sym__backtick_identifier] = ACTIONS(7332), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7316), - }, - [4200] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3076), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3009), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3076), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [4200] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_get] = ACTIONS(3017), + [anon_sym_set] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3019), + [anon_sym_QMARK_COLON] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3017), + [anon_sym_inner] = ACTIONS(3017), + [anon_sym_expect] = ACTIONS(3017), + [anon_sym_actual] = ACTIONS(3017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3019), + [sym__automatic_semicolon] = ACTIONS(3019), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4201] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym__type] = STATE(8741), + [sym__type_reference] = STATE(7523), + [sym_nullable_type] = STATE(8741), + [sym_user_type] = STATE(7523), + [sym__simple_user_type] = STATE(7721), + [sym_type_projection] = STATE(8482), + [sym_type_projection_modifiers] = STATE(6167), + [sym__type_projection_modifier] = STATE(6930), + [sym_function_type] = STATE(8741), + [sym_function_type_parameters] = STATE(9258), + [sym_parenthesized_type] = STATE(7523), + [sym_type_modifiers] = STATE(6782), + [sym__type_modifier] = STATE(6934), + [sym_variance_modifier] = STATE(6930), + [sym_annotation] = STATE(6934), + [sym__single_annotation] = STATE(5551), + [sym__multi_annotation] = STATE(5551), + [sym_simple_identifier] = STATE(7518), + [sym__lexical_identifier] = STATE(4522), + [aux_sym_type_projection_modifiers_repeat1] = STATE(6930), + [aux_sym_type_modifiers_repeat1] = STATE(6934), + [sym__alpha_identifier] = ACTIONS(7325), + [anon_sym_AT] = ACTIONS(7328), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_LPAREN] = ACTIONS(7333), + [anon_sym_object] = ACTIONS(7336), + [anon_sym_fun] = ACTIONS(7336), + [anon_sym_get] = ACTIONS(7325), + [anon_sym_set] = ACTIONS(7325), + [anon_sym_this] = ACTIONS(7336), + [anon_sym_super] = ACTIONS(7336), + [anon_sym_dynamic] = ACTIONS(7338), + [anon_sym_STAR] = ACTIONS(7340), + [sym_label] = ACTIONS(7336), + [anon_sym_in] = ACTIONS(7343), + [anon_sym_null] = ACTIONS(7336), + [anon_sym_if] = ACTIONS(7336), + [anon_sym_when] = ACTIONS(7336), + [anon_sym_try] = ACTIONS(7336), + [anon_sym_throw] = ACTIONS(7336), + [anon_sym_return] = ACTIONS(7336), + [anon_sym_continue] = ACTIONS(7336), + [anon_sym_break] = ACTIONS(7336), + [anon_sym_COLON_COLON] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7336), + [anon_sym_DASH] = ACTIONS(7336), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_BANG] = ACTIONS(7331), + [anon_sym_suspend] = ACTIONS(7345), + [anon_sym_data] = ACTIONS(7325), + [anon_sym_inner] = ACTIONS(7325), + [anon_sym_out] = ACTIONS(7343), + [anon_sym_expect] = ACTIONS(7325), + [anon_sym_actual] = ACTIONS(7325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7331), + [anon_sym_continue_AT] = ACTIONS(7331), + [anon_sym_break_AT] = ACTIONS(7331), + [sym_real_literal] = ACTIONS(7331), + [sym_integer_literal] = ACTIONS(7336), + [sym_hex_literal] = ACTIONS(7331), + [sym_bin_literal] = ACTIONS(7331), + [anon_sym_true] = ACTIONS(7336), + [anon_sym_false] = ACTIONS(7336), + [anon_sym_SQUOTE] = ACTIONS(7331), + [sym__backtick_identifier] = ACTIONS(7347), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7331), + }, + [4202] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3049), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3031), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3049), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4202] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [4203] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), - [anon_sym_else] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3073), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4203] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = 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(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(7335), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [4204] = { + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7350), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_while] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), [sym_multiline_comment] = ACTIONS(3), }, - [4204] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(1686), + [4205] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(3063), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(6707), [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(7290), + [anon_sym_get] = ACTIONS(3063), + [anon_sym_set] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_QMARK_COLON] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3063), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(3063), + [anon_sym_inner] = ACTIONS(3063), + [anon_sym_expect] = ACTIONS(3063), + [anon_sym_actual] = ACTIONS(3063), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3065), [sym__automatic_semicolon] = ACTIONS(3065), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4205] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(7337), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = 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(7335), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4206] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_QMARK_COLON] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3075), - [anon_sym_inner] = ACTIONS(3075), - [anon_sym_expect] = ACTIONS(3075), - [anon_sym_actual] = ACTIONS(3075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3077), - [sym__automatic_semicolon] = ACTIONS(3077), - [sym_safe_nav] = ACTIONS(6716), + [sym_indexing_suffix] = STATE(5658), + [sym_navigation_suffix] = STATE(5658), + [sym_call_suffix_without_type_arguments] = STATE(5658), + [sym_annotated_lambda] = STATE(6927), + [sym_value_arguments] = STATE(6378), + [sym_lambda_literal] = STATE(4736), + [sym__postfix_unary_operator] = STATE(5658), + [sym__member_access_operator] = STATE(7413), + [sym__postfix_unary_suffix] = STATE(5658), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym__postfix_unary_expression_repeat1] = STATE(5658), + [sym__alpha_identifier] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_where] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [sym_label] = ACTIONS(5802), + [anon_sym_in] = ACTIONS(3346), + [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(3346), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3360), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [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(3346), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_as_QMARK] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_BANG_BANG] = ACTIONS(3377), + [anon_sym_data] = ACTIONS(3346), + [anon_sym_inner] = ACTIONS(3346), + [anon_sym_expect] = ACTIONS(3346), + [anon_sym_actual] = ACTIONS(3346), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3360), + [sym__automatic_semicolon] = ACTIONS(3360), + [sym_safe_nav] = ACTIONS(3371), [sym_multiline_comment] = ACTIONS(3), }, [4207] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(2997), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4208] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3092), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3092), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4209] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7339), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(2990), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4210] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3041), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(7286), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3044), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7294), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7294), - [anon_sym_LT_EQ] = ACTIONS(7296), - [anon_sym_GT_EQ] = ACTIONS(7296), - [anon_sym_BANGin] = ACTIONS(7298), - [anon_sym_is] = ACTIONS(6742), - [anon_sym_BANGis] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym__automatic_semicolon] = ACTIONS(3046), - [sym_safe_nav] = ACTIONS(6716), + [sym__automatic_semicolon] = ACTIONS(3041), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4211] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(2992), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), + [sym_annotation] = STATE(7889), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(7280), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(7284), - [anon_sym_QMARK_COLON] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2992), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(2992), - [anon_sym_inner] = ACTIONS(2992), - [anon_sym_expect] = ACTIONS(2992), - [anon_sym_actual] = ACTIONS(2992), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(2994), - [sym__automatic_semicolon] = ACTIONS(2994), - [sym_safe_nav] = ACTIONS(6716), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(3004), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4212] = { - [sym_indexing_suffix] = STATE(4986), - [sym_navigation_suffix] = STATE(5006), - [sym_call_suffix] = STATE(5077), - [sym_annotated_lambda] = STATE(4993), - [sym_type_arguments] = STATE(7551), - [sym_value_arguments] = STATE(4451), - [sym_lambda_literal] = STATE(4995), - [sym__equality_operator] = STATE(1860), - [sym__comparison_operator] = STATE(1852), - [sym__in_operator] = STATE(1848), - [sym__is_operator] = STATE(5776), - [sym__additive_operator] = STATE(1847), - [sym__multiplicative_operator] = STATE(1846), - [sym__as_operator] = STATE(5777), - [sym__postfix_unary_operator] = STATE(5000), - [sym__member_access_operator] = STATE(7402), - [sym_annotation] = STATE(7890), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1843), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7890), - [sym__alpha_identifier] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6700), - [anon_sym_as] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(6704), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_get] = ACTIONS(3011), - [anon_sym_set] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [sym_label] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3013), - [anon_sym_QMARK_COLON] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(6716), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_as_QMARK] = ACTIONS(6720), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_BANG_BANG] = ACTIONS(6722), - [anon_sym_data] = ACTIONS(3011), - [anon_sym_inner] = ACTIONS(3011), - [anon_sym_expect] = ACTIONS(3011), - [anon_sym_actual] = ACTIONS(3011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3013), - [sym__automatic_semicolon] = ACTIONS(3013), - [sym_safe_nav] = ACTIONS(6716), - [sym_multiline_comment] = ACTIONS(3), - }, - [4213] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8389), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7341), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3015), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__automatic_semicolon] = ACTIONS(3015), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, - [4214] = { - [sym__alpha_identifier] = ACTIONS(4291), - [anon_sym_AT] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4289), - [anon_sym_get] = ACTIONS(4291), - [anon_sym_set] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_QMARK_COLON] = ACTIONS(4289), - [anon_sym_AMP_AMP] = ACTIONS(4289), - [anon_sym_PIPE_PIPE] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), - [anon_sym_LT_EQ] = ACTIONS(4289), - [anon_sym_GT_EQ] = ACTIONS(4289), - [anon_sym_BANGin] = ACTIONS(4289), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_BANGis] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4289), - [anon_sym_PLUS_PLUS] = ACTIONS(4289), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4289), - [anon_sym_suspend] = ACTIONS(4291), - [anon_sym_sealed] = ACTIONS(4291), - [anon_sym_annotation] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4291), - [anon_sym_inner] = ACTIONS(4291), - [anon_sym_override] = ACTIONS(4291), - [anon_sym_lateinit] = ACTIONS(4291), - [anon_sym_public] = ACTIONS(4291), - [anon_sym_private] = ACTIONS(4291), - [anon_sym_internal] = ACTIONS(4291), - [anon_sym_protected] = ACTIONS(4291), - [anon_sym_tailrec] = ACTIONS(4291), - [anon_sym_operator] = ACTIONS(4291), - [anon_sym_infix] = ACTIONS(4291), - [anon_sym_inline] = ACTIONS(4291), - [anon_sym_external] = ACTIONS(4291), - [sym_property_modifier] = ACTIONS(4291), - [anon_sym_abstract] = ACTIONS(4291), - [anon_sym_final] = ACTIONS(4291), - [anon_sym_open] = ACTIONS(4291), - [anon_sym_vararg] = ACTIONS(4291), - [anon_sym_noinline] = ACTIONS(4291), - [anon_sym_crossinline] = ACTIONS(4291), - [anon_sym_expect] = ACTIONS(4291), - [anon_sym_actual] = ACTIONS(4291), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4289), - [sym__automatic_semicolon] = ACTIONS(4289), - [sym_safe_nav] = ACTIONS(4289), + [4213] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7352), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), [sym_multiline_comment] = ACTIONS(3), }, - [4215] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), + [4214] = { + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8369), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7347), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3072), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__automatic_semicolon] = ACTIONS(3072), + [sym_safe_nav] = ACTIONS(6723), + [sym_multiline_comment] = ACTIONS(3), + }, + [4215] = { + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7354), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_while] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), [sym_multiline_comment] = ACTIONS(3), }, [4216] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), + [sym_indexing_suffix] = STATE(4959), + [sym_navigation_suffix] = STATE(4901), + [sym_call_suffix] = STATE(4902), + [sym_annotated_lambda] = STATE(4903), + [sym_type_arguments] = STATE(7588), + [sym_value_arguments] = STATE(4450), + [sym_lambda_literal] = STATE(4904), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2032), + [sym__is_operator] = STATE(6283), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2045), + [sym__as_operator] = STATE(6271), + [sym__postfix_unary_operator] = STATE(4905), + [sym__member_access_operator] = STATE(7229), [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2051), + [sym__lexical_identifier] = STATE(3751), [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8575), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7349), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6699), + [anon_sym_as] = ACTIONS(6701), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(6703), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_DOT] = ACTIONS(6707), + [anon_sym_SEMI] = ACTIONS(3045), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6711), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7303), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(6723), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6733), + [anon_sym_BANGis] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7297), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6739), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_BANG_BANG] = ACTIONS(6741), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym__automatic_semicolon] = ACTIONS(3045), + [sym_safe_nav] = ACTIONS(6723), [sym_multiline_comment] = ACTIONS(3), }, [4217] = { - [sym__alpha_identifier] = ACTIONS(4146), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_get] = ACTIONS(4146), - [anon_sym_set] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4144), - [sym_label] = ACTIONS(4144), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_QMARK_COLON] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_else] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_BANGin] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_BANGis] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_as_QMARK] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_BANG_BANG] = ACTIONS(4144), - [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_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(4144), - [sym__automatic_semicolon] = ACTIONS(4144), - [sym_safe_nav] = ACTIONS(4144), - [sym_multiline_comment] = ACTIONS(3), - }, - [4218] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8387), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8493), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7353), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7356), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4218] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(7360), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7362), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), [sym_multiline_comment] = ACTIONS(3), }, [4219] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8524), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8580), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7355), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7364), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4220] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8553), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8474), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7357), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7366), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4221] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8569), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8431), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7359), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7368), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4222] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8395), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8560), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7361), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7370), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4223] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8403), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8473), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7363), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7372), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4224] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8336), + [sym__alpha_identifier] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(7374), + [anon_sym_LT] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_get] = ACTIONS(4312), + [anon_sym_set] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4310), + [sym_label] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4310), + [anon_sym_QMARK_COLON] = ACTIONS(4310), + [anon_sym_AMP_AMP] = ACTIONS(4310), + [anon_sym_PIPE_PIPE] = ACTIONS(4310), + [anon_sym_else] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(4310), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4310), + [anon_sym_LT_EQ] = ACTIONS(4310), + [anon_sym_GT_EQ] = ACTIONS(4310), + [anon_sym_BANGin] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_BANGis] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_SLASH] = ACTIONS(4312), + [anon_sym_PERCENT] = ACTIONS(4310), + [anon_sym_as_QMARK] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_BANG_BANG] = ACTIONS(4310), + [anon_sym_suspend] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_annotation] = ACTIONS(4312), + [anon_sym_data] = ACTIONS(4312), + [anon_sym_inner] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_lateinit] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_tailrec] = ACTIONS(4312), + [anon_sym_operator] = ACTIONS(4312), + [anon_sym_infix] = ACTIONS(4312), + [anon_sym_inline] = ACTIONS(4312), + [anon_sym_external] = ACTIONS(4312), + [sym_property_modifier] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_final] = ACTIONS(4312), + [anon_sym_open] = ACTIONS(4312), + [anon_sym_vararg] = ACTIONS(4312), + [anon_sym_noinline] = ACTIONS(4312), + [anon_sym_crossinline] = ACTIONS(4312), + [anon_sym_expect] = ACTIONS(4312), + [anon_sym_actual] = ACTIONS(4312), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4310), + [sym__automatic_semicolon] = ACTIONS(4310), + [sym_safe_nav] = ACTIONS(4310), + [sym_multiline_comment] = ACTIONS(3), + }, + [4225] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8423), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7365), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7376), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4225] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(7367), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_get] = ACTIONS(4959), - [anon_sym_set] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [sym_label] = ACTIONS(4961), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_QMARK_COLON] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_else] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_BANGin] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4959), - [anon_sym_BANGis] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_as_QMARK] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_BANG_BANG] = ACTIONS(4961), - [anon_sym_suspend] = ACTIONS(4959), - [anon_sym_sealed] = ACTIONS(4959), - [anon_sym_annotation] = ACTIONS(4959), - [anon_sym_data] = ACTIONS(4959), - [anon_sym_inner] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_lateinit] = ACTIONS(4959), - [anon_sym_public] = ACTIONS(4959), - [anon_sym_private] = ACTIONS(4959), - [anon_sym_internal] = ACTIONS(4959), - [anon_sym_protected] = ACTIONS(4959), - [anon_sym_tailrec] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_infix] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym_external] = ACTIONS(4959), - [sym_property_modifier] = ACTIONS(4959), - [anon_sym_abstract] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_open] = ACTIONS(4959), - [anon_sym_vararg] = ACTIONS(4959), - [anon_sym_noinline] = ACTIONS(4959), - [anon_sym_crossinline] = ACTIONS(4959), - [anon_sym_expect] = ACTIONS(4959), - [anon_sym_actual] = ACTIONS(4959), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4961), - [sym__automatic_semicolon] = ACTIONS(4961), - [sym_safe_nav] = ACTIONS(4961), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4226] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8587), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8379), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7369), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7378), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4227] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [aux_sym_indexing_suffix_repeat1] = STATE(8425), + [sym__alpha_identifier] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_as] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(7380), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_get] = ACTIONS(4859), + [anon_sym_set] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [sym_label] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_QMARK_COLON] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_BANGin] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_BANGis] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_as_QMARK] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_BANG_BANG] = ACTIONS(4861), + [anon_sym_suspend] = ACTIONS(4859), + [anon_sym_sealed] = ACTIONS(4859), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_data] = ACTIONS(4859), + [anon_sym_inner] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_lateinit] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_tailrec] = ACTIONS(4859), + [anon_sym_operator] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_inline] = ACTIONS(4859), + [anon_sym_external] = ACTIONS(4859), + [sym_property_modifier] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_vararg] = ACTIONS(4859), + [anon_sym_noinline] = ACTIONS(4859), + [anon_sym_crossinline] = ACTIONS(4859), + [anon_sym_expect] = ACTIONS(4859), + [anon_sym_actual] = ACTIONS(4859), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4861), + [sym__automatic_semicolon] = ACTIONS(4861), + [sym_safe_nav] = ACTIONS(4861), + [sym_multiline_comment] = ACTIONS(3), + }, + [4228] = { + [sym__alpha_identifier] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_as] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_DOT] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_get] = ACTIONS(4877), + [anon_sym_set] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4879), + [sym_label] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_QMARK_COLON] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4879), + [anon_sym_PIPE_PIPE] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(7362), + [anon_sym_COLON_COLON] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4879), + [anon_sym_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_BANGin] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_BANGis] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4879), + [anon_sym_as_QMARK] = ACTIONS(4879), + [anon_sym_PLUS_PLUS] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4879), + [anon_sym_BANG_BANG] = ACTIONS(4879), + [anon_sym_suspend] = ACTIONS(4877), + [anon_sym_sealed] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_data] = ACTIONS(4877), + [anon_sym_inner] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_lateinit] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_protected] = ACTIONS(4877), + [anon_sym_tailrec] = ACTIONS(4877), + [anon_sym_operator] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_inline] = ACTIONS(4877), + [anon_sym_external] = ACTIONS(4877), + [sym_property_modifier] = ACTIONS(4877), + [anon_sym_abstract] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_vararg] = ACTIONS(4877), + [anon_sym_noinline] = ACTIONS(4877), + [anon_sym_crossinline] = ACTIONS(4877), + [anon_sym_expect] = ACTIONS(4877), + [anon_sym_actual] = ACTIONS(4877), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4879), + [sym__automatic_semicolon] = ACTIONS(4879), + [sym_safe_nav] = ACTIONS(4879), + [sym_multiline_comment] = ACTIONS(3), + }, + [4229] = { + [sym__alpha_identifier] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_as] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(7382), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4296), + [sym_label] = ACTIONS(4296), + [anon_sym_in] = ACTIONS(4298), + [anon_sym_DOT_DOT] = ACTIONS(4296), + [anon_sym_QMARK_COLON] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_else] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4296), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4296), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_BANGin] = ACTIONS(4296), + [anon_sym_is] = ACTIONS(4298), + [anon_sym_BANGis] = ACTIONS(4296), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4296), + [anon_sym_as_QMARK] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_BANG_BANG] = ACTIONS(4296), + [anon_sym_suspend] = ACTIONS(4298), + [anon_sym_sealed] = ACTIONS(4298), + [anon_sym_annotation] = ACTIONS(4298), + [anon_sym_data] = ACTIONS(4298), + [anon_sym_inner] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_lateinit] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_internal] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_tailrec] = ACTIONS(4298), + [anon_sym_operator] = ACTIONS(4298), + [anon_sym_infix] = ACTIONS(4298), + [anon_sym_inline] = ACTIONS(4298), + [anon_sym_external] = ACTIONS(4298), + [sym_property_modifier] = ACTIONS(4298), + [anon_sym_abstract] = ACTIONS(4298), + [anon_sym_final] = ACTIONS(4298), + [anon_sym_open] = ACTIONS(4298), + [anon_sym_vararg] = ACTIONS(4298), + [anon_sym_noinline] = ACTIONS(4298), + [anon_sym_crossinline] = ACTIONS(4298), + [anon_sym_expect] = ACTIONS(4298), + [anon_sym_actual] = ACTIONS(4298), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4296), + [sym__automatic_semicolon] = ACTIONS(4296), + [sym_safe_nav] = ACTIONS(4296), + [sym_multiline_comment] = ACTIONS(3), + }, + [4230] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8570), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7371), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7384), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4228] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_SEMI] = ACTIONS(7373), - [anon_sym_get] = ACTIONS(4790), - [anon_sym_set] = ACTIONS(4790), - [anon_sym_STAR] = ACTIONS(4792), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(7375), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), - }, - [4229] = { - [sym__alpha_identifier] = ACTIONS(4790), - [anon_sym_AT] = ACTIONS(4792), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_LBRACE] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4790), - [anon_sym_GT] = 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(4792), - [sym_label] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4792), - [anon_sym_QMARK_COLON] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(7375), - [anon_sym_COLON_COLON] = 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(4792), - [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_override] = ACTIONS(4790), - [anon_sym_lateinit] = ACTIONS(4790), - [anon_sym_public] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4790), - [anon_sym_internal] = ACTIONS(4790), - [anon_sym_protected] = ACTIONS(4790), - [anon_sym_tailrec] = ACTIONS(4790), - [anon_sym_operator] = ACTIONS(4790), - [anon_sym_infix] = ACTIONS(4790), - [anon_sym_inline] = ACTIONS(4790), - [anon_sym_external] = ACTIONS(4790), - [sym_property_modifier] = ACTIONS(4790), - [anon_sym_abstract] = ACTIONS(4790), - [anon_sym_final] = ACTIONS(4790), - [anon_sym_open] = ACTIONS(4790), - [anon_sym_vararg] = ACTIONS(4790), - [anon_sym_noinline] = ACTIONS(4790), - [anon_sym_crossinline] = ACTIONS(4790), - [anon_sym_expect] = ACTIONS(4790), - [anon_sym_actual] = ACTIONS(4790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4792), - [sym__automatic_semicolon] = ACTIONS(4792), - [sym_safe_nav] = ACTIONS(4792), - [sym_multiline_comment] = ACTIONS(3), - }, - [4230] = { - [sym__alpha_identifier] = ACTIONS(4953), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(7377), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4953), - [anon_sym_DOT_DOT] = ACTIONS(4955), - [anon_sym_QMARK_COLON] = ACTIONS(4955), - [anon_sym_AMP_AMP] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4953), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_BANGin] = ACTIONS(4955), - [anon_sym_is] = ACTIONS(4953), - [anon_sym_BANGis] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4955), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4955), - [anon_sym_suspend] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_annotation] = ACTIONS(4953), - [anon_sym_data] = ACTIONS(4953), - [anon_sym_inner] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_lateinit] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_tailrec] = ACTIONS(4953), - [anon_sym_operator] = ACTIONS(4953), - [anon_sym_infix] = ACTIONS(4953), - [anon_sym_inline] = ACTIONS(4953), - [anon_sym_external] = ACTIONS(4953), - [sym_property_modifier] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_open] = ACTIONS(4953), - [anon_sym_vararg] = ACTIONS(4953), - [anon_sym_noinline] = ACTIONS(4953), - [anon_sym_crossinline] = ACTIONS(4953), - [anon_sym_expect] = ACTIONS(4953), - [anon_sym_actual] = ACTIONS(4953), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4955), - [sym__automatic_semicolon] = ACTIONS(4955), - [sym_safe_nav] = ACTIONS(4955), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4231] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7387), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_as] = ACTIONS(4841), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_get] = ACTIONS(4841), + [anon_sym_set] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4843), + [sym_label] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_QMARK_COLON] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4841), + [anon_sym_COLON_COLON] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4843), + [anon_sym_LT_EQ] = ACTIONS(4843), + [anon_sym_GT_EQ] = ACTIONS(4843), + [anon_sym_BANGin] = ACTIONS(4843), + [anon_sym_is] = ACTIONS(4841), + [anon_sym_BANGis] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4843), + [anon_sym_as_QMARK] = ACTIONS(4843), + [anon_sym_PLUS_PLUS] = ACTIONS(4843), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_BANG_BANG] = ACTIONS(4843), + [anon_sym_suspend] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_annotation] = ACTIONS(4841), + [anon_sym_data] = ACTIONS(4841), + [anon_sym_inner] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_lateinit] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_tailrec] = ACTIONS(4841), + [anon_sym_operator] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_inline] = ACTIONS(4841), + [anon_sym_external] = ACTIONS(4841), + [sym_property_modifier] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_vararg] = ACTIONS(4841), + [anon_sym_noinline] = ACTIONS(4841), + [anon_sym_crossinline] = ACTIONS(4841), + [anon_sym_expect] = ACTIONS(4841), + [anon_sym_actual] = ACTIONS(4841), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4843), + [sym__automatic_semicolon] = ACTIONS(4843), + [sym_safe_nav] = ACTIONS(4843), [sym_multiline_comment] = ACTIONS(3), }, [4232] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7417), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8537), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7388), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4233] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8509), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7390), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4234] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7419), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [aux_sym_indexing_suffix_repeat1] = STATE(8376), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7392), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7358), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4235] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7421), - [anon_sym_RPAREN] = ACTIONS(7421), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7394), + [anon_sym_RPAREN] = ACTIONS(7394), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4236] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7423), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7396), + [anon_sym_RPAREN] = ACTIONS(7396), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4237] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4241), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7423), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4245), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7406), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4238] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4244), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7425), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4242), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7436), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4239] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4247), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7427), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7436), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4240] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7429), - [anon_sym_RPAREN] = ACTIONS(7429), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4241] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7432), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4242] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_RBRACK] = ACTIONS(7438), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7438), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4242] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7440), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4243] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7434), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4239), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7442), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4244] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7436), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7444), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4245] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7438), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(7438), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7446), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), [sym_multiline_comment] = ACTIONS(3), }, [4246] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4269), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7436), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7448), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4247] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7440), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4293), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7450), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4248] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(7442), - [anon_sym_typealias] = ACTIONS(7445), - [anon_sym_class] = ACTIONS(7448), - [anon_sym_interface] = ACTIONS(7448), - [anon_sym_enum] = ACTIONS(7451), - [anon_sym_constructor] = ACTIONS(7454), - [anon_sym_RBRACE] = ACTIONS(7457), - [anon_sym_val] = ACTIONS(7459), - [anon_sym_var] = ACTIONS(7462), - [anon_sym_init] = ACTIONS(7465), - [anon_sym_companion] = ACTIONS(7468), - [anon_sym_object] = ACTIONS(7471), - [anon_sym_fun] = ACTIONS(7474), - [anon_sym_get] = ACTIONS(7477), - [anon_sym_set] = ACTIONS(7480), - [anon_sym_suspend] = ACTIONS(7483), - [anon_sym_sealed] = ACTIONS(7486), - [anon_sym_annotation] = ACTIONS(7486), - [anon_sym_data] = ACTIONS(7486), - [anon_sym_inner] = ACTIONS(7486), - [anon_sym_override] = ACTIONS(7489), - [anon_sym_lateinit] = ACTIONS(7489), - [anon_sym_public] = ACTIONS(7492), - [anon_sym_private] = ACTIONS(7492), - [anon_sym_internal] = ACTIONS(7492), - [anon_sym_protected] = ACTIONS(7492), - [anon_sym_tailrec] = ACTIONS(7483), - [anon_sym_operator] = ACTIONS(7483), - [anon_sym_infix] = ACTIONS(7483), - [anon_sym_inline] = ACTIONS(7483), - [anon_sym_external] = ACTIONS(7483), - [sym_property_modifier] = ACTIONS(7495), - [anon_sym_abstract] = ACTIONS(7498), - [anon_sym_final] = ACTIONS(7498), - [anon_sym_open] = ACTIONS(7498), - [anon_sym_vararg] = ACTIONS(7501), - [anon_sym_noinline] = ACTIONS(7501), - [anon_sym_crossinline] = ACTIONS(7501), - [anon_sym_expect] = ACTIONS(7504), - [anon_sym_actual] = ACTIONS(7504), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4250), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7452), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4249] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4236), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7507), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4250] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(7509), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7509), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7456), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), [sym_multiline_comment] = ACTIONS(3), }, [4251] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7511), - [anon_sym_RPAREN] = ACTIONS(7511), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4244), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), [sym_multiline_comment] = ACTIONS(3), }, [4252] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4254), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7456), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4253] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7513), - [anon_sym_RPAREN] = ACTIONS(7513), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7458), + [anon_sym_RPAREN] = ACTIONS(7458), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4253] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4257), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7515), - [anon_sym_val] = ACTIONS(7389), + [4254] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7460), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4254] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7517), - [anon_sym_RPAREN] = ACTIONS(7517), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [4255] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4256), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7462), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), [sym_multiline_comment] = ACTIONS(3), }, - [4255] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4258), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7519), - [anon_sym_val] = ACTIONS(7389), + [4256] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7464), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4256] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4257] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4259), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7466), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4258] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7468), + [anon_sym_RPAREN] = ACTIONS(7468), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4257] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7521), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4258] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7523), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4259] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4261), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7523), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7471), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4260] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4264), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7521), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4249), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7473), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4261] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7525), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4262), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7471), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4262] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4274), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7527), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7475), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4263] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4234), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7529), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4264), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7477), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4264] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7531), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7479), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4265] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4243), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7533), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4266), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7481), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4266] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7535), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7483), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4267] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4268), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7483), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4268] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7485), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4269] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7487), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4270] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4246), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7489), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4271] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4279), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7491), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4272] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7537), - [anon_sym_RPAREN] = ACTIONS(7537), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4268] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4273] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7539), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_RPAREN] = ACTIONS(7493), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(7539), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, - [4269] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7541), - [anon_sym_val] = ACTIONS(7389), + [4274] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4280), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7495), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4270] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [4275] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4276] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7543), - [anon_sym_RPAREN] = ACTIONS(7543), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7499), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(7499), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4271] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4231), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7545), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4272] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4266), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7547), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4273] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4274] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7551), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4275] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4284), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7553), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4276] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7547), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4277] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4288), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7555), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4269), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7501), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4278] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4273), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7557), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4279] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7557), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), - }, - [4280] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_RPAREN] = ACTIONS(7503), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), + }, + [4279] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7505), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4280] = { + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7507), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4281] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4279), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7559), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4283), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7507), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4282] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7561), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7509), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4283] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4276), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7511), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4284] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7565), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4275), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7513), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4285] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_RPAREN] = ACTIONS(7567), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4286] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4298), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7569), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4282), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7515), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4287] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4292), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7571), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7515), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4288] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7573), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7517), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4289] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4296), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7575), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7519), + [anon_sym_RPAREN] = ACTIONS(7519), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4290] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4294), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7577), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4287), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4291] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4282), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7579), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4294), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7523), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4292] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7581), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4297), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7525), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4293] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4295), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7581), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7513), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4294] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7583), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7527), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4295] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7585), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7523), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4296] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7587), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7529), + [anon_sym_RPAREN] = ACTIONS(7529), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4297] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4299), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7573), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7531), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4298] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7589), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(7533), + [anon_sym_typealias] = ACTIONS(7536), + [anon_sym_class] = ACTIONS(7539), + [anon_sym_interface] = ACTIONS(7539), + [anon_sym_enum] = ACTIONS(7542), + [anon_sym_constructor] = ACTIONS(7545), + [anon_sym_RBRACE] = ACTIONS(7548), + [anon_sym_val] = ACTIONS(7550), + [anon_sym_var] = ACTIONS(7553), + [anon_sym_init] = ACTIONS(7556), + [anon_sym_companion] = ACTIONS(7559), + [anon_sym_object] = ACTIONS(7562), + [anon_sym_fun] = ACTIONS(7565), + [anon_sym_get] = ACTIONS(7568), + [anon_sym_set] = ACTIONS(7571), + [anon_sym_suspend] = ACTIONS(7574), + [anon_sym_sealed] = ACTIONS(7577), + [anon_sym_annotation] = ACTIONS(7577), + [anon_sym_data] = ACTIONS(7577), + [anon_sym_inner] = ACTIONS(7577), + [anon_sym_override] = ACTIONS(7580), + [anon_sym_lateinit] = ACTIONS(7580), + [anon_sym_public] = ACTIONS(7583), + [anon_sym_private] = ACTIONS(7583), + [anon_sym_internal] = ACTIONS(7583), + [anon_sym_protected] = ACTIONS(7583), + [anon_sym_tailrec] = ACTIONS(7574), + [anon_sym_operator] = ACTIONS(7574), + [anon_sym_infix] = ACTIONS(7574), + [anon_sym_inline] = ACTIONS(7574), + [anon_sym_external] = ACTIONS(7574), + [sym_property_modifier] = ACTIONS(7586), + [anon_sym_abstract] = ACTIONS(7589), + [anon_sym_final] = ACTIONS(7589), + [anon_sym_open] = ACTIONS(7589), + [anon_sym_vararg] = ACTIONS(7592), + [anon_sym_noinline] = ACTIONS(7592), + [anon_sym_crossinline] = ACTIONS(7592), + [anon_sym_expect] = ACTIONS(7595), + [anon_sym_actual] = ACTIONS(7595), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4299] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4248), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7591), - [anon_sym_val] = ACTIONS(7389), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4288), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7598), + [anon_sym_val] = ACTIONS(7408), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4300] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(1850), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1845), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(1842), - [sym__multiplicative_operator] = STATE(1841), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1838), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4298), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7600), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4301] = { + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(7593), - [anon_sym_RPAREN] = ACTIONS(7593), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7602), [anon_sym_LT] = ACTIONS(1700), [anon_sym_GT] = ACTIONS(7036), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7038), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7040), - [anon_sym_DOT_DOT] = ACTIONS(7042), - [anon_sym_QMARK_COLON] = ACTIONS(7044), - [anon_sym_AMP_AMP] = ACTIONS(7046), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7054), - [anon_sym_GT_EQ] = ACTIONS(7054), - [anon_sym_BANGin] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), - [sym_multiline_comment] = ACTIONS(3), - }, - [4301] = { - [sym_type_alias] = STATE(8631), - [sym__declaration] = STATE(8631), - [sym_class_declaration] = STATE(8631), - [aux_sym__class_member_declarations] = STATE(4232), - [sym__class_member_declaration] = STATE(8631), - [sym_anonymous_initializer] = STATE(8631), - [sym_companion_object] = STATE(8631), - [sym_function_declaration] = STATE(8631), - [sym_property_declaration] = STATE(8631), - [sym_getter] = STATE(8631), - [sym_setter] = STATE(8631), - [sym_object_declaration] = STATE(8631), - [sym_secondary_constructor] = STATE(8631), - [sym_modifiers] = STATE(7426), - [sym__modifier] = STATE(5318), - [sym_class_modifier] = STATE(5318), - [sym_member_modifier] = STATE(5318), - [sym_visibility_modifier] = STATE(5318), - [sym_function_modifier] = STATE(5318), - [sym_inheritance_modifier] = STATE(5318), - [sym_parameter_modifier] = STATE(5318), - [sym_platform_modifier] = STATE(5318), - [sym_annotation] = STATE(5318), - [sym__single_annotation] = STATE(5571), - [sym__multi_annotation] = STATE(5571), - [aux_sym_modifiers_repeat1] = STATE(5318), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_typealias] = ACTIONS(7379), - [anon_sym_class] = ACTIONS(7381), - [anon_sym_interface] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7383), - [anon_sym_constructor] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7589), - [anon_sym_val] = ACTIONS(7389), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7391), - [anon_sym_companion] = ACTIONS(7393), - [anon_sym_object] = ACTIONS(7395), - [anon_sym_fun] = ACTIONS(7397), - [anon_sym_get] = ACTIONS(7399), - [anon_sym_set] = ACTIONS(7401), - [anon_sym_suspend] = ACTIONS(7403), - [anon_sym_sealed] = ACTIONS(7405), - [anon_sym_annotation] = ACTIONS(7405), - [anon_sym_data] = ACTIONS(7405), - [anon_sym_inner] = ACTIONS(7405), - [anon_sym_override] = ACTIONS(7407), - [anon_sym_lateinit] = ACTIONS(7407), - [anon_sym_public] = ACTIONS(7409), - [anon_sym_private] = ACTIONS(7409), - [anon_sym_internal] = ACTIONS(7409), - [anon_sym_protected] = ACTIONS(7409), - [anon_sym_tailrec] = ACTIONS(7403), - [anon_sym_operator] = ACTIONS(7403), - [anon_sym_infix] = ACTIONS(7403), - [anon_sym_inline] = ACTIONS(7403), - [anon_sym_external] = ACTIONS(7403), - [sym_property_modifier] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(7411), - [anon_sym_final] = ACTIONS(7411), - [anon_sym_open] = ACTIONS(7411), - [anon_sym_vararg] = ACTIONS(7413), - [anon_sym_noinline] = ACTIONS(7413), - [anon_sym_crossinline] = ACTIONS(7413), - [anon_sym_expect] = ACTIONS(7415), - [anon_sym_actual] = ACTIONS(7415), - [sym_line_comment] = ACTIONS(3), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4302] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7595), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_RPAREN] = ACTIONS(7604), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4303] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4300), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7606), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), [sym_multiline_comment] = ACTIONS(3), }, [4304] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), - [anon_sym_data] = ACTIONS(1686), - [anon_sym_inner] = ACTIONS(1686), - [anon_sym_expect] = ACTIONS(1686), - [anon_sym_actual] = ACTIONS(1686), + [sym_type_alias] = STATE(8766), + [sym__declaration] = STATE(8766), + [sym_class_declaration] = STATE(8766), + [aux_sym__class_member_declarations] = STATE(4295), + [sym__class_member_declaration] = STATE(8766), + [sym_anonymous_initializer] = STATE(8766), + [sym_companion_object] = STATE(8766), + [sym_function_declaration] = STATE(8766), + [sym_property_declaration] = STATE(8766), + [sym_getter] = STATE(8766), + [sym_setter] = STATE(8766), + [sym_object_declaration] = STATE(8766), + [sym_secondary_constructor] = STATE(8766), + [sym_modifiers] = STATE(7420), + [sym__modifier] = STATE(5329), + [sym_class_modifier] = STATE(5329), + [sym_member_modifier] = STATE(5329), + [sym_visibility_modifier] = STATE(5329), + [sym_function_modifier] = STATE(5329), + [sym_inheritance_modifier] = STATE(5329), + [sym_parameter_modifier] = STATE(5329), + [sym_platform_modifier] = STATE(5329), + [sym_annotation] = STATE(5329), + [sym__single_annotation] = STATE(5572), + [sym__multi_annotation] = STATE(5572), + [aux_sym_modifiers_repeat1] = STATE(5329), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_typealias] = ACTIONS(7398), + [anon_sym_class] = ACTIONS(7400), + [anon_sym_interface] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7402), + [anon_sym_constructor] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7608), + [anon_sym_val] = ACTIONS(7408), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7410), + [anon_sym_companion] = ACTIONS(7412), + [anon_sym_object] = ACTIONS(7414), + [anon_sym_fun] = ACTIONS(7416), + [anon_sym_get] = ACTIONS(7418), + [anon_sym_set] = ACTIONS(7420), + [anon_sym_suspend] = ACTIONS(7422), + [anon_sym_sealed] = ACTIONS(7424), + [anon_sym_annotation] = ACTIONS(7424), + [anon_sym_data] = ACTIONS(7424), + [anon_sym_inner] = ACTIONS(7424), + [anon_sym_override] = ACTIONS(7426), + [anon_sym_lateinit] = ACTIONS(7426), + [anon_sym_public] = ACTIONS(7428), + [anon_sym_private] = ACTIONS(7428), + [anon_sym_internal] = ACTIONS(7428), + [anon_sym_protected] = ACTIONS(7428), + [anon_sym_tailrec] = ACTIONS(7422), + [anon_sym_operator] = ACTIONS(7422), + [anon_sym_infix] = ACTIONS(7422), + [anon_sym_inline] = ACTIONS(7422), + [anon_sym_external] = ACTIONS(7422), + [sym_property_modifier] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(7430), + [anon_sym_final] = ACTIONS(7430), + [anon_sym_open] = ACTIONS(7430), + [anon_sym_vararg] = ACTIONS(7432), + [anon_sym_noinline] = ACTIONS(7432), + [anon_sym_crossinline] = ACTIONS(7432), + [anon_sym_expect] = ACTIONS(7434), + [anon_sym_actual] = ACTIONS(7434), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), [sym_multiline_comment] = ACTIONS(3), }, [4305] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1678), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1711), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(1749), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7601), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7026), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_DOT_DOT] = ACTIONS(7028), + [anon_sym_QMARK_COLON] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7044), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7048), + [anon_sym_EQ_EQ] = ACTIONS(7046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7048), + [anon_sym_LT_EQ] = ACTIONS(7050), + [anon_sym_GT_EQ] = ACTIONS(7050), + [anon_sym_BANGin] = ACTIONS(7052), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_SLASH] = ACTIONS(7032), + [anon_sym_PERCENT] = ACTIONS(7026), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4306] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7603), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7610), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4307] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7605), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7612), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4308] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7607), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7614), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4309] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7616), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4310] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7611), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7618), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4311] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7613), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7620), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4312] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7615), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7622), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4313] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7617), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7624), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4314] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7619), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7626), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4315] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7621), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7628), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4316] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7630), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4317] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7625), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7632), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4318] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7634), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4319] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7629), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7636), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4320] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7638), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4321] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7633), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7640), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4322] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7635), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7642), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4323] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7637), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7644), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4324] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7639), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7646), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4325] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7641), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7648), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4326] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7643), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7650), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4327] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7645), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7652), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4328] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7654), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4329] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7649), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7656), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4330] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7658), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4331] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7660), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4332] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7655), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7662), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4333] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7657), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7664), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4334] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7659), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7666), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4335] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7668), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4336] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7663), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7670), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4337] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7665), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7672), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4338] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7667), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7674), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4339] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7669), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7676), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4340] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7671), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7678), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4341] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7673), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7680), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4342] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7675), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7682), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4343] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7677), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7684), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4344] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7679), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7686), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4345] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7681), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7688), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4346] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7683), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7690), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4347] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7685), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7692), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4348] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7687), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7694), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4349] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7689), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7696), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4350] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7691), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7698), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4351] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7693), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7700), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4352] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7702), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4353] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7697), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7704), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4354] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7699), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7706), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4355] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7701), + [anon_sym_RBRACE] = ACTIONS(7708), + [anon_sym_LPAREN] = ACTIONS(6412), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4356] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7703), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7710), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4357] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7705), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7712), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4358] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7707), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7714), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4359] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7709), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7716), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4360] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7711), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7718), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4361] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7713), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7720), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4362] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7715), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7722), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4363] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7717), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7724), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4364] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7726), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4365] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7721), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7728), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4366] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7723), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7730), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4367] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7732), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4368] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7727), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7734), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4369] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7736), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4370] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7731), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7738), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4371] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7740), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4372] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7735), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7742), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4373] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7744), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4374] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7739), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7746), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4375] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7748), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4376] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7743), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7750), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4377] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7752), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4378] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7747), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7754), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4379] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7756), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4380] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7751), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7758), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4381] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7760), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4382] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7755), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7762), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4383] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7764), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4384] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7759), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7766), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4385] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7761), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7768), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4386] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7763), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7770), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4387] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7765), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7772), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4388] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7767), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7774), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4389] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7769), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7776), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4390] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7771), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7778), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4391] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7773), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7780), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4392] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7775), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7782), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4393] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7777), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7784), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4394] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7779), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7786), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4395] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7781), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7788), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4396] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7783), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7790), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4397] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7792), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4398] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7787), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7794), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4399] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7789), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7796), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4400] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7798), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4401] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7793), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7800), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4402] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7795), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7802), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4403] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7797), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7804), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4404] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7799), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7806), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4405] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7801), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7808), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4406] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7803), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7810), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4407] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7805), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7812), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4408] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7807), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7814), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4409] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7809), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7816), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4410] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7811), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7818), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4411] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7813), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7820), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4412] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7815), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7822), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4413] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7817), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7824), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4414] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7819), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7826), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4415] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7821), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7828), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4416] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7823), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7830), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4417] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7825), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7832), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4418] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7827), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7834), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4419] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7829), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7836), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4420] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7831), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7838), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4421] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7833), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7840), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4422] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7835), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7842), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4423] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7837), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7844), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4424] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7839), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7846), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4425] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(7841), - [anon_sym_LPAREN] = ACTIONS(6403), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7848), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4426] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7843), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7850), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4427] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7845), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7852), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4428] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7847), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7854), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4429] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7849), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7856), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4430] = { - [sym_indexing_suffix] = STATE(4644), - [sym_navigation_suffix] = STATE(4645), - [sym_call_suffix] = STATE(4646), - [sym_annotated_lambda] = STATE(4649), - [sym_type_arguments] = STATE(7563), - [sym_value_arguments] = STATE(4436), - [sym_lambda_literal] = STATE(4654), - [sym__equality_operator] = STATE(2118), - [sym__comparison_operator] = STATE(2319), - [sym__in_operator] = STATE(2331), - [sym__is_operator] = STATE(5872), - [sym__additive_operator] = STATE(2333), - [sym__multiplicative_operator] = STATE(1622), - [sym__as_operator] = STATE(5873), - [sym__postfix_unary_operator] = STATE(4655), - [sym__member_access_operator] = STATE(7345), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [sym_simple_identifier] = STATE(1653), - [sym__lexical_identifier] = STATE(3789), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), [sym__alpha_identifier] = ACTIONS(1686), [anon_sym_AT] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_as] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(7851), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7858), [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_DOT] = ACTIONS(6407), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), [anon_sym_get] = ACTIONS(1686), [anon_sym_set] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(7236), - [sym_label] = ACTIONS(6411), - [anon_sym_in] = ACTIONS(7248), - [anon_sym_DOT_DOT] = ACTIONS(7238), - [anon_sym_QMARK_COLON] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7254), - [anon_sym_COLON_COLON] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7258), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_BANGin] = ACTIONS(7262), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_BANGis] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_as_QMARK] = ACTIONS(6439), - [anon_sym_PLUS_PLUS] = ACTIONS(6441), - [anon_sym_DASH_DASH] = ACTIONS(6441), - [anon_sym_BANG_BANG] = ACTIONS(6441), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), [anon_sym_data] = ACTIONS(1686), [anon_sym_inner] = ACTIONS(1686), [anon_sym_expect] = ACTIONS(1686), [anon_sym_actual] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1750), - [sym_safe_nav] = ACTIONS(6423), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4431] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_get] = ACTIONS(3952), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3948), - [sym_label] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3950), - [anon_sym_sealed] = ACTIONS(3950), - [anon_sym_annotation] = ACTIONS(3950), - [anon_sym_data] = ACTIONS(3952), - [anon_sym_inner] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3950), - [anon_sym_lateinit] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_internal] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_tailrec] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_infix] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym_external] = ACTIONS(3950), - [sym_property_modifier] = ACTIONS(3950), - [anon_sym_abstract] = ACTIONS(3950), - [anon_sym_final] = ACTIONS(3950), - [anon_sym_open] = ACTIONS(3950), - [anon_sym_vararg] = ACTIONS(3950), - [anon_sym_noinline] = ACTIONS(3950), - [anon_sym_crossinline] = ACTIONS(3950), - [anon_sym_expect] = ACTIONS(3952), - [anon_sym_actual] = ACTIONS(3952), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), }, [4432] = { - [sym__alpha_identifier] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3948), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_object] = ACTIONS(3943), - [anon_sym_fun] = ACTIONS(3943), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_this] = ACTIONS(3943), - [anon_sym_super] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3948), - [sym_label] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_suspend] = ACTIONS(3958), - [anon_sym_sealed] = ACTIONS(3958), - [anon_sym_annotation] = ACTIONS(3958), - [anon_sym_data] = ACTIONS(3960), - [anon_sym_inner] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3958), - [anon_sym_lateinit] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_internal] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_tailrec] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_infix] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym_external] = ACTIONS(3958), - [sym_property_modifier] = ACTIONS(3958), - [anon_sym_abstract] = ACTIONS(3958), - [anon_sym_final] = ACTIONS(3958), - [anon_sym_open] = ACTIONS(3958), - [anon_sym_vararg] = ACTIONS(3958), - [anon_sym_noinline] = ACTIONS(3958), - [anon_sym_crossinline] = ACTIONS(3958), - [anon_sym_expect] = ACTIONS(3960), - [anon_sym_actual] = ACTIONS(3960), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3948), - [anon_sym_continue_AT] = ACTIONS(3948), - [anon_sym_break_AT] = ACTIONS(3948), - [sym_real_literal] = ACTIONS(3948), - [sym_integer_literal] = ACTIONS(3943), - [sym_hex_literal] = ACTIONS(3948), - [sym_bin_literal] = ACTIONS(3948), - [anon_sym_true] = ACTIONS(3943), - [anon_sym_false] = ACTIONS(3943), - [anon_sym_SQUOTE] = ACTIONS(3948), - [sym__backtick_identifier] = ACTIONS(3948), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3948), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), + [sym_multiline_comment] = ACTIONS(3), }, [4433] = { - [sym_annotated_lambda] = STATE(4745), - [sym_lambda_literal] = STATE(4654), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(4005), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_get] = ACTIONS(4005), - [anon_sym_set] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [sym_label] = ACTIONS(4007), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_while] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_QMARK_COLON] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_else] = ACTIONS(4005), - [anon_sym_COLON_COLON] = ACTIONS(4007), - [anon_sym_PLUS_EQ] = ACTIONS(4007), - [anon_sym_DASH_EQ] = ACTIONS(4007), - [anon_sym_STAR_EQ] = ACTIONS(4007), - [anon_sym_SLASH_EQ] = ACTIONS(4007), - [anon_sym_PERCENT_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_BANGin] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_BANGis] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_as_QMARK] = ACTIONS(4007), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_BANG_BANG] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4005), - [anon_sym_inner] = ACTIONS(4005), - [anon_sym_expect] = ACTIONS(4005), - [anon_sym_actual] = ACTIONS(4005), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4007), - [sym_safe_nav] = ACTIONS(4007), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4434] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_RPAREN] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3971), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(3985), - [anon_sym_DASH_EQ] = ACTIONS(3985), - [anon_sym_STAR_EQ] = ACTIONS(3985), - [anon_sym_SLASH_EQ] = ACTIONS(3985), - [anon_sym_PERCENT_EQ] = ACTIONS(3985), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), + [sym_indexing_suffix] = STATE(4742), + [sym_navigation_suffix] = STATE(4739), + [sym_call_suffix] = STATE(4738), + [sym_annotated_lambda] = STATE(4737), + [sym_type_arguments] = STATE(7552), + [sym_value_arguments] = STATE(4437), + [sym_lambda_literal] = STATE(4736), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2254), + [sym__in_operator] = STATE(2256), + [sym__is_operator] = STATE(5857), + [sym__additive_operator] = STATE(2257), + [sym__multiplicative_operator] = STATE(2259), + [sym__as_operator] = STATE(5858), + [sym__postfix_unary_operator] = STATE(4735), + [sym__member_access_operator] = STATE(7413), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [sym_simple_identifier] = STATE(2260), + [sym__lexical_identifier] = STATE(3751), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(6408), + [anon_sym_as] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(6412), + [anon_sym_RPAREN] = ACTIONS(7866), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(6416), + [anon_sym_get] = ACTIONS(1686), + [anon_sym_set] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(7251), + [sym_label] = ACTIONS(6420), + [anon_sym_in] = ACTIONS(7261), + [anon_sym_DOT_DOT] = ACTIONS(7253), + [anon_sym_QMARK_COLON] = ACTIONS(7263), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7267), + [anon_sym_COLON_COLON] = ACTIONS(6432), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_BANGin] = ACTIONS(7275), + [anon_sym_is] = ACTIONS(6442), + [anon_sym_BANGis] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_as_QMARK] = ACTIONS(6448), + [anon_sym_PLUS_PLUS] = ACTIONS(6450), + [anon_sym_DASH_DASH] = ACTIONS(6450), + [anon_sym_BANG_BANG] = ACTIONS(6450), + [anon_sym_data] = ACTIONS(1686), + [anon_sym_inner] = ACTIONS(1686), + [anon_sym_expect] = ACTIONS(1686), + [anon_sym_actual] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1750), + [sym_safe_nav] = ACTIONS(6432), [sym_multiline_comment] = ACTIONS(3), }, [4435] = { - [sym_indexing_suffix] = STATE(6609), - [sym_navigation_suffix] = STATE(6609), - [sym__postfix_unary_operator] = STATE(6609), - [sym__member_access_operator] = STATE(7345), - [sym__postfix_unary_suffix] = STATE(6609), - [aux_sym__postfix_unary_expression_repeat1] = STATE(6609), - [sym__alpha_identifier] = ACTIONS(3969), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym_COMMA] = ACTIONS(3971), - [anon_sym_RPAREN] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3969), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_where] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3971), - [anon_sym_get] = ACTIONS(3969), - [anon_sym_set] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3971), - [sym_label] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3969), - [anon_sym_while] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3971), - [anon_sym_QMARK_COLON] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_else] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3982), - [anon_sym_PLUS_EQ] = ACTIONS(4011), - [anon_sym_DASH_EQ] = ACTIONS(4011), - [anon_sym_STAR_EQ] = ACTIONS(4011), - [anon_sym_SLASH_EQ] = ACTIONS(4011), - [anon_sym_PERCENT_EQ] = ACTIONS(4011), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), - [anon_sym_LT_EQ] = ACTIONS(3971), - [anon_sym_GT_EQ] = ACTIONS(3971), - [anon_sym_BANGin] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3969), - [anon_sym_BANGis] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_as_QMARK] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3969), - [anon_sym_inner] = ACTIONS(3969), - [anon_sym_expect] = ACTIONS(3969), - [anon_sym_actual] = ACTIONS(3969), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3971), - [sym_safe_nav] = ACTIONS(3982), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3875), + [anon_sym_set] = ACTIONS(3875), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3871), + [sym_label] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3873), + [anon_sym_sealed] = ACTIONS(3873), + [anon_sym_annotation] = ACTIONS(3873), + [anon_sym_data] = ACTIONS(3875), + [anon_sym_inner] = ACTIONS(3875), + [anon_sym_override] = ACTIONS(3873), + [anon_sym_lateinit] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_internal] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_tailrec] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_infix] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym_external] = ACTIONS(3873), + [sym_property_modifier] = ACTIONS(3873), + [anon_sym_abstract] = ACTIONS(3873), + [anon_sym_final] = ACTIONS(3873), + [anon_sym_open] = ACTIONS(3873), + [anon_sym_vararg] = ACTIONS(3873), + [anon_sym_noinline] = ACTIONS(3873), + [anon_sym_crossinline] = ACTIONS(3873), + [anon_sym_expect] = ACTIONS(3875), + [anon_sym_actual] = ACTIONS(3875), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), }, [4436] = { - [sym_annotated_lambda] = STATE(4706), - [sym_lambda_literal] = STATE(4654), - [sym_annotation] = STATE(7889), - [sym__single_annotation] = STATE(5733), - [sym__multi_annotation] = STATE(5733), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7889), - [sym__alpha_identifier] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4019), - [anon_sym_set] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4021), - [sym_label] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_while] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_QMARK_COLON] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [anon_sym_else] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(4021), - [anon_sym_PLUS_EQ] = ACTIONS(4021), - [anon_sym_DASH_EQ] = ACTIONS(4021), - [anon_sym_STAR_EQ] = ACTIONS(4021), - [anon_sym_SLASH_EQ] = ACTIONS(4021), - [anon_sym_PERCENT_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_BANGin] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_BANGis] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_as_QMARK] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_BANG_BANG] = ACTIONS(4021), - [anon_sym_data] = ACTIONS(4019), - [anon_sym_inner] = ACTIONS(4019), - [anon_sym_expect] = ACTIONS(4019), - [anon_sym_actual] = ACTIONS(4019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4021), - [sym_safe_nav] = ACTIONS(4021), + [sym__alpha_identifier] = ACTIONS(3866), + [anon_sym_AT] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3871), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_object] = ACTIONS(3866), + [anon_sym_fun] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3899), + [anon_sym_set] = ACTIONS(3899), + [anon_sym_this] = ACTIONS(3866), + [anon_sym_super] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(3871), + [sym_label] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [anon_sym_if] = ACTIONS(3866), + [anon_sym_when] = ACTIONS(3866), + [anon_sym_try] = ACTIONS(3866), + [anon_sym_throw] = ACTIONS(3866), + [anon_sym_return] = ACTIONS(3866), + [anon_sym_continue] = ACTIONS(3866), + [anon_sym_break] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_suspend] = ACTIONS(3897), + [anon_sym_sealed] = ACTIONS(3897), + [anon_sym_annotation] = ACTIONS(3897), + [anon_sym_data] = ACTIONS(3899), + [anon_sym_inner] = ACTIONS(3899), + [anon_sym_override] = ACTIONS(3897), + [anon_sym_lateinit] = ACTIONS(3897), + [anon_sym_public] = ACTIONS(3897), + [anon_sym_private] = ACTIONS(3897), + [anon_sym_internal] = ACTIONS(3897), + [anon_sym_protected] = ACTIONS(3897), + [anon_sym_tailrec] = ACTIONS(3897), + [anon_sym_operator] = ACTIONS(3897), + [anon_sym_infix] = ACTIONS(3897), + [anon_sym_inline] = ACTIONS(3897), + [anon_sym_external] = ACTIONS(3897), + [sym_property_modifier] = ACTIONS(3897), + [anon_sym_abstract] = ACTIONS(3897), + [anon_sym_final] = ACTIONS(3897), + [anon_sym_open] = ACTIONS(3897), + [anon_sym_vararg] = ACTIONS(3897), + [anon_sym_noinline] = ACTIONS(3897), + [anon_sym_crossinline] = ACTIONS(3897), + [anon_sym_expect] = ACTIONS(3899), + [anon_sym_actual] = ACTIONS(3899), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3871), + [anon_sym_continue_AT] = ACTIONS(3871), + [anon_sym_break_AT] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3871), + [sym_integer_literal] = ACTIONS(3866), + [sym_hex_literal] = ACTIONS(3871), + [sym_bin_literal] = ACTIONS(3871), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3871), + [sym__backtick_identifier] = ACTIONS(3871), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3871), + }, + [4437] = { + [sym_annotated_lambda] = STATE(4715), + [sym_lambda_literal] = STATE(4736), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3912), + [anon_sym_AT] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_RBRACK] = ACTIONS(3914), + [anon_sym_as] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RPAREN] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3912), + [anon_sym_where] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_DASH_GT] = ACTIONS(3914), + [sym_label] = ACTIONS(3914), + [anon_sym_in] = ACTIONS(3912), + [anon_sym_while] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3914), + [anon_sym_QMARK_COLON] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_else] = ACTIONS(3912), + [anon_sym_COLON_COLON] = ACTIONS(3914), + [anon_sym_PLUS_EQ] = ACTIONS(3914), + [anon_sym_DASH_EQ] = ACTIONS(3914), + [anon_sym_STAR_EQ] = ACTIONS(3914), + [anon_sym_SLASH_EQ] = ACTIONS(3914), + [anon_sym_PERCENT_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ] = ACTIONS(3912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3914), + [anon_sym_LT_EQ] = ACTIONS(3914), + [anon_sym_GT_EQ] = ACTIONS(3914), + [anon_sym_BANGin] = ACTIONS(3914), + [anon_sym_is] = ACTIONS(3912), + [anon_sym_BANGis] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(3912), + [anon_sym_PERCENT] = ACTIONS(3912), + [anon_sym_as_QMARK] = ACTIONS(3914), + [anon_sym_PLUS_PLUS] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3914), + [anon_sym_BANG_BANG] = ACTIONS(3914), + [anon_sym_data] = ACTIONS(3912), + [anon_sym_inner] = ACTIONS(3912), + [anon_sym_expect] = ACTIONS(3912), + [anon_sym_actual] = ACTIONS(3912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3914), + [sym_safe_nav] = ACTIONS(3914), + [sym_multiline_comment] = ACTIONS(3), + }, + [4438] = { + [sym_annotated_lambda] = STATE(4694), + [sym_lambda_literal] = STATE(4736), + [sym_annotation] = STATE(7894), + [sym__single_annotation] = STATE(5729), + [sym__multi_annotation] = STATE(5729), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(7894), + [sym__alpha_identifier] = ACTIONS(3878), + [anon_sym_AT] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_RBRACK] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3878), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_RPAREN] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3878), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_where] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3878), + [anon_sym_set] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_DASH_GT] = ACTIONS(3880), + [sym_label] = ACTIONS(3880), + [anon_sym_in] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_QMARK_COLON] = ACTIONS(3880), + [anon_sym_AMP_AMP] = ACTIONS(3880), + [anon_sym_PIPE_PIPE] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_PLUS_EQ] = ACTIONS(3880), + [anon_sym_DASH_EQ] = ACTIONS(3880), + [anon_sym_STAR_EQ] = ACTIONS(3880), + [anon_sym_SLASH_EQ] = ACTIONS(3880), + [anon_sym_PERCENT_EQ] = ACTIONS(3880), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3880), + [anon_sym_EQ_EQ] = ACTIONS(3878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3880), + [anon_sym_LT_EQ] = ACTIONS(3880), + [anon_sym_GT_EQ] = ACTIONS(3880), + [anon_sym_BANGin] = ACTIONS(3880), + [anon_sym_is] = ACTIONS(3878), + [anon_sym_BANGis] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_as_QMARK] = ACTIONS(3880), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3880), + [anon_sym_BANG_BANG] = ACTIONS(3880), + [anon_sym_data] = ACTIONS(3878), + [anon_sym_inner] = ACTIONS(3878), + [anon_sym_expect] = ACTIONS(3878), + [anon_sym_actual] = ACTIONS(3878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3880), + [sym_safe_nav] = ACTIONS(3880), [sym_multiline_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 7, - ACTIONS(7853), 1, + ACTIONS(7868), 1, anon_sym_catch, - ACTIONS(7855), 1, + ACTIONS(7870), 1, anon_sym_finally, - STATE(4751), 1, + STATE(4697), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4438), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4023), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4025), 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, - [79] = 5, - ACTIONS(7857), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4438), 2, + STATE(4443), 2, sym_catch_block, aux_sym_try_expression_repeat1, - ACTIONS(4121), 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_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4123), 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, - [153] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7860), 1, - anon_sym_COLON, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4498), 1, - sym_type_constraints, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4099), 22, + ACTIONS(4035), 24, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4101), 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, - [237] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7866), 1, - anon_sym_COLON, - STATE(4502), 1, - sym_type_constraints, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4031), 22, - anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4033), 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, - [321] = 10, - ACTIONS(5119), 1, anon_sym_where, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, - anon_sym_COLON, - STATE(4504), 1, - sym_type_constraints, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4085), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -454339,85 +454284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 32, + ACTIONS(4037), 33, 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, - [405] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, anon_sym_LBRACE, - ACTIONS(7870), 1, - anon_sym_COLON, - STATE(4506), 1, - sym_type_constraints, - STATE(4690), 1, - sym__block, - STATE(4716), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4047), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4049), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -454446,380 +454318,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [489] = 10, - ACTIONS(5119), 1, + [79] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, ACTIONS(7872), 1, anon_sym_COLON, - STATE(4508), 1, - sym_type_constraints, - STATE(4619), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4041), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4043), 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, - [573] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, ACTIONS(7874), 1, - anon_sym_COLON, - STATE(4527), 1, - sym_type_constraints, - STATE(4720), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4184), 23, - anon_sym_as, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4186), 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, - [652] = 5, ACTIONS(7876), 1, - anon_sym_DOT, - STATE(4468), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4220), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4222), 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, - [725] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4504), 1, - sym_type_constraints, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4085), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4087), 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, - [806] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4502), 1, - sym_type_constraints, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4031), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4033), 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, - [887] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, anon_sym_LBRACE, - STATE(4498), 1, + STATE(4496), 1, sym_type_constraints, - STATE(4580), 1, + STATE(4656), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 22, + ACTIONS(4079), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -454842,7 +454359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 32, + ACTIONS(4081), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -454875,23 +454392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [968] = 9, - ACTIONS(5119), 1, + [163] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7862), 1, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4497), 1, + ACTIONS(7878), 1, + anon_sym_COLON, + STATE(4499), 1, sym_type_constraints, - STATE(4573), 1, + STATE(4603), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 22, + ACTIONS(4120), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -454914,7 +454433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 32, + ACTIONS(4122), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -454947,21 +454466,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1049] = 5, - ACTIONS(7879), 1, - sym__quest, - STATE(4450), 1, - aux_sym_nullable_type_repeat1, + [247] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_COLON, + STATE(4483), 1, + sym_type_constraints, + STATE(4643), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4235), 25, + ACTIONS(4114), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -454981,12 +454507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4237), 33, + ACTIONS(4116), 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, @@ -455015,21 +454540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1122] = 7, - STATE(4961), 1, - sym_annotated_lambda, - STATE(4995), 1, - sym_lambda_literal, + [331] = 5, + ACTIONS(7882), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7890), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4019), 23, + STATE(4443), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4095), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -455040,77 +454560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4021), 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, - [1199] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5233), 1, - anon_sym_COLON, - STATE(4524), 1, - sym_type_constraints, - STATE(4697), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3186), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -455123,11 +454575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 32, + ACTIONS(4097), 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, @@ -455156,23 +454609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1278] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [405] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7882), 1, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7885), 1, anon_sym_COLON, - STATE(4521), 1, + STATE(4505), 1, sym_type_constraints, - STATE(4720), 1, - sym_enum_class_body, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(4108), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -455194,7 +454650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 32, + ACTIONS(4110), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -455227,25 +454683,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1357] = 8, - ACTIONS(7862), 1, + [489] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7884), 1, + ACTIONS(7887), 1, anon_sym_COLON, - STATE(4689), 1, + STATE(4501), 1, + sym_type_constraints, + STATE(4620), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 23, + ACTIONS(4102), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -455265,7 +454724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 32, + ACTIONS(4104), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -455298,21 +454757,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1436] = 5, - ACTIONS(7886), 1, - sym__quest, - STATE(4472), 1, - aux_sym_nullable_type_repeat1, + [573] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4505), 1, + sym_type_constraints, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 25, + ACTIONS(4108), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -455332,12 +454796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 33, + ACTIONS(4110), 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, @@ -455366,91 +454829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1509] = 7, - STATE(4995), 1, - sym_lambda_literal, - STATE(5021), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5733), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7890), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4005), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4007), 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, - [1586] = 8, - ACTIONS(7862), 1, + [654] = 8, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7888), 1, + ACTIONS(7889), 1, anon_sym_COLON, - STATE(4628), 1, - sym_function_body, STATE(4690), 1, + sym_function_body, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 23, + ACTIONS(4156), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -455474,7 +454867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 32, + ACTIONS(4158), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -455507,28 +454900,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1665] = 8, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7890), 1, - anon_sym_COLON, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [733] = 5, + ACTIONS(7891), 1, + anon_sym_DOT, + STATE(4461), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 23, + ACTIONS(4216), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -455545,11 +454934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 32, + 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, @@ -455578,24 +454968,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1744] = 5, - ACTIONS(7892), 1, - anon_sym_DOT, - STATE(4445), 1, - aux_sym_user_type_repeat1, + [806] = 8, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, + anon_sym_COLON, + STATE(4724), 1, + sym__block, + STATE(4725), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 25, + ACTIONS(4150), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -455612,12 +455006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 33, + ACTIONS(4152), 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, @@ -455646,18 +455039,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1817] = 5, - ACTIONS(7886), 1, - sym__quest, - STATE(4472), 1, - aux_sym_nullable_type_repeat1, + [885] = 7, + STATE(4904), 1, + sym_lambda_literal, + STATE(4941), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4320), 25, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7889), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3912), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -455666,7 +455064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -455680,18 +455077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4322), 33, + ACTIONS(3914), 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, @@ -455714,22 +455109,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1890] = 3, + [962] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7896), 1, + anon_sym_COLON, + STATE(4562), 1, + sym_type_constraints, + STATE(4651), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3943), 27, - anon_sym_COLON, + ACTIONS(4342), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -455746,12 +455147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3948), 33, + ACTIONS(4344), 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, @@ -455780,25 +455180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1959] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(7895), 1, - anon_sym_COLON, - STATE(4535), 1, - sym_type_constraints, - STATE(4664), 1, - sym_class_body, + [1041] = 5, + ACTIONS(7898), 1, + sym__quest, + STATE(4470), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(4259), 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, @@ -455818,11 +455214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 32, + ACTIONS(4261), 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, @@ -455851,21 +455248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2038] = 8, - ACTIONS(5119), 1, + [1114] = 8, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5249), 1, + ACTIONS(5245), 1, anon_sym_COLON, - STATE(4514), 1, + STATE(4550), 1, sym_type_constraints, - STATE(4697), 1, - sym_class_body, + STATE(4628), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 23, + ACTIONS(3196), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -455889,7 +455286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 32, + ACTIONS(3200), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -455922,21 +455319,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2117] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [1193] = 8, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5237), 1, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(7900), 1, anon_sym_COLON, - STATE(4528), 1, + STATE(4524), 1, sym_type_constraints, - STATE(4703), 1, + STATE(4626), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 23, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -455960,7 +455357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 32, + ACTIONS(4334), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -455993,28 +455390,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2196] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(5211), 1, - anon_sym_COLON, - STATE(4557), 1, - sym_type_constraints, - STATE(4603), 1, - sym_class_body, + [1272] = 5, + ACTIONS(7902), 1, + anon_sym_LT, + STATE(4497), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 23, + ACTIONS(4148), 25, anon_sym_as, anon_sym_EQ, - anon_sym_LT, + anon_sym_by, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -456031,11 +455424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 32, + ACTIONS(4230), 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, @@ -456064,27 +455458,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2275] = 5, - ACTIONS(7897), 1, - anon_sym_LT, - STATE(4479), 1, - sym_type_arguments, + [1345] = 7, + STATE(4904), 1, + sym_lambda_literal, + STATE(4939), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4113), 25, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7889), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3878), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, + anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -456098,18 +455496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4190), 33, + ACTIONS(3880), 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, @@ -456132,50 +455528,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2348] = 11, - ACTIONS(3973), 1, - anon_sym_LBRACK, - ACTIONS(3976), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT, - STATE(7345), 1, - sym__member_access_operator, + [1422] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5199), 1, + anon_sym_COLON, + STATE(4553), 1, + sym_type_constraints, + STATE(4649), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3982), 2, + ACTIONS(3204), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3208), 32, sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(3988), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(3985), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(6609), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(3971), 20, - sym__automatic_semicolon, anon_sym_AT, - anon_sym_LBRACE, + 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, @@ -456183,16 +455595,36 @@ 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(3969), 21, + [1501] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4501), 1, + sym_type_constraints, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4102), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -456206,21 +455638,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [2433] = 5, - ACTIONS(7899), 1, - anon_sym_DOT, - STATE(4468), 1, - aux_sym_user_type_repeat1, + ACTIONS(4104), 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, + [1582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 25, + ACTIONS(3866), 27, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, sym__quest, @@ -456240,7 +455703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4272), 33, + ACTIONS(3871), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456274,21 +455737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2506] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [1651] = 8, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7902), 1, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(7904), 1, anon_sym_COLON, - STATE(4544), 1, + STATE(4537), 1, sym_type_constraints, - STATE(4638), 1, + STATE(4610), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 23, + ACTIONS(4326), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -456312,7 +455775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 32, + ACTIONS(4328), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456345,103 +455808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2585] = 11, - ACTIONS(3973), 1, - anon_sym_LBRACK, - ACTIONS(3979), 1, + [1730] = 5, + ACTIONS(7906), 1, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_EQ, - STATE(7345), 1, - sym__member_access_operator, + STATE(4461), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3982), 2, - sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(3988), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(4011), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(6609), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(3971), 20, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - sym__backtick_identifier, - ACTIONS(3969), 21, + ACTIONS(4223), 25, 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_expect, - anon_sym_actual, - sym__alpha_identifier, - [2670] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4491), 1, - sym_type_constraints, - STATE(4683), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4254), 22, - anon_sym_as, + 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, @@ -456458,11 +455842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 32, + ACTIONS(4225), 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, @@ -456491,15 +455876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2751] = 5, - ACTIONS(7904), 1, + [1803] = 5, + ACTIONS(7909), 1, sym__quest, - STATE(4450), 1, + STATE(4452), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 25, + ACTIONS(4251), 25, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -456525,7 +455910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 33, + ACTIONS(4253), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456559,18 +455944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2824] = 3, + [1876] = 5, + ACTIONS(7911), 1, + anon_sym_DOT, + STATE(4448), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 26, + ACTIONS(4271), 25, anon_sym_as, anon_sym_EQ, anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, sym__quest, @@ -456590,7 +455978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4272), 33, + ACTIONS(4273), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456624,21 +456012,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2892] = 7, - ACTIONS(5113), 1, + [1949] = 8, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, + ACTIONS(7914), 1, + anon_sym_COLON, + STATE(4687), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4162), 23, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4164), 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, + [2028] = 9, + ACTIONS(5127), 1, anon_sym_where, - STATE(4547), 1, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4477), 1, sym_type_constraints, - STATE(4588), 1, - sym_enum_class_body, + STATE(4594), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4344), 23, + ACTIONS(4318), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -456660,7 +456122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4346), 32, + ACTIONS(4320), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456693,16 +456155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2968] = 3, + [2109] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5237), 1, + anon_sym_COLON, + STATE(4548), 1, + sym_type_constraints, + STATE(4649), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4517), 26, + ACTIONS(3204), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -456710,8 +456181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -456724,12 +456193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4519), 33, + ACTIONS(3208), 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, @@ -456758,13 +456226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3036] = 3, + [2188] = 5, + ACTIONS(7909), 1, + sym__quest, + STATE(4452), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 26, + ACTIONS(4278), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -456775,8 +456248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -456789,7 +456260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4511), 33, + ACTIONS(4280), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456823,21 +456294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3104] = 7, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [2261] = 9, + ACTIONS(5127), 1, anon_sym_where, - STATE(4556), 1, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4490), 1, sym_type_constraints, - STATE(4639), 1, - sym_enum_class_body, + STATE(4596), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 23, + ACTIONS(4286), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -456859,7 +456333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 32, + ACTIONS(4288), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456892,19 +456366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3180] = 7, - ACTIONS(5113), 1, + [2342] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, + ACTIONS(5127), 1, anon_sym_where, - STATE(4521), 1, + ACTIONS(7916), 1, + anon_sym_COLON, + STATE(4549), 1, sym_type_constraints, - STATE(4720), 1, - sym_enum_class_body, + STATE(4626), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -456928,7 +456404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 32, + ACTIONS(4334), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -456961,11 +456437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3256] = 3, + [2421] = 5, + ACTIONS(7918), 1, + sym__quest, + STATE(4470), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4513), 26, + ACTIONS(4244), 25, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -456975,7 +456455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -456992,7 +456471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4515), 33, + ACTIONS(4246), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457026,23 +456505,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3324] = 7, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, + [2494] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(4536), 1, + sym_type_constraints, + STATE(4658), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 23, + ACTIONS(3190), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -457062,7 +456543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 32, + ACTIONS(3194), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457095,21 +456576,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3400] = 7, - ACTIONS(5119), 1, + [2573] = 9, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4527), 1, + STATE(4499), 1, sym_type_constraints, - STATE(4720), 1, - sym_class_body, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(4120), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -457131,7 +456615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 32, + ACTIONS(4122), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457164,25 +456648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3476] = 3, + [2654] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4489), 26, + ACTIONS(4460), 26, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -457195,7 +456679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4491), 33, + ACTIONS(4462), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457229,16 +456713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3544] = 3, + [2722] = 7, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + STATE(4545), 1, + sym_type_constraints, + STATE(4635), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 26, + ACTIONS(4468), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -457246,8 +456737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -457260,12 +456749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 33, + ACTIONS(4470), 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, @@ -457294,25 +456782,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3612] = 3, + [2798] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 26, + ACTIONS(4464), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -457325,7 +456813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4497), 33, + ACTIONS(4466), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457359,26 +456847,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3680] = 7, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - STATE(4542), 1, - sym_type_constraints, - STATE(4570), 1, - sym_enum_class_body, + [2866] = 4, + ACTIONS(4269), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4390), 23, + ACTIONS(4265), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -457395,17 +456880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4392), 32, + ACTIONS(4267), 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, @@ -457428,23 +456913,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3756] = 4, - ACTIONS(4266), 1, - anon_sym_DASH_GT, + [2936] = 7, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4591), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 26, + ACTIONS(4452), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -457461,17 +456949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4264), 32, + ACTIONS(4454), 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, @@ -457494,19 +456982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3826] = 7, - ACTIONS(5119), 1, + [3012] = 7, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - STATE(4540), 1, + STATE(4524), 1, sym_type_constraints, - STATE(4667), 1, - sym_class_body, + STATE(4626), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4404), 23, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -457530,7 +457018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4406), 32, + ACTIONS(4334), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457563,23 +457051,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3902] = 7, - ACTIONS(5119), 1, + [3088] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4494), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5159), 1, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4496), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(4535), 1, - sym_type_constraints, - STATE(4664), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3156] = 5, + ACTIONS(7921), 1, + anon_sym_by, + STATE(4588), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(4525), 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, @@ -457599,11 +457149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 32, + 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, @@ -457632,19 +457183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3978] = 7, - ACTIONS(7862), 1, + [3228] = 7, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4601), 1, + STATE(4684), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 23, + ACTIONS(4438), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -457668,7 +457219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 32, + ACTIONS(4440), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457701,11 +457252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4054] = 3, + [3304] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 26, + ACTIONS(4448), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -457732,7 +457283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4471), 33, + ACTIONS(4450), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457766,19 +457317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4122] = 7, - ACTIONS(7862), 1, + [3372] = 7, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4690), 1, - sym__block, - STATE(4691), 1, + STATE(4632), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 23, + ACTIONS(4108), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -457802,7 +457353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 32, + ACTIONS(4110), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457835,19 +457386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4198] = 7, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [3448] = 7, + ACTIONS(5127), 1, anon_sym_where, - STATE(4531), 1, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4537), 1, sym_type_constraints, - STATE(4663), 1, + STATE(4610), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 23, + ACTIONS(4326), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -457871,7 +457422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 32, + ACTIONS(4328), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -457904,22 +457455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4274] = 7, - ACTIONS(7906), 1, - anon_sym_catch, - ACTIONS(7908), 1, - anon_sym_finally, - STATE(5014), 1, - sym_finally_block, + [3524] = 7, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4690), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4536), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4023), 23, + ACTIONS(4156), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -457928,6 +457477,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, @@ -457941,16 +457491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4025), 31, - sym__automatic_semicolon, + ACTIONS(4158), 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, @@ -457973,17 +457524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4350] = 6, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(7910), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_class_body, + [3600] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 24, + ACTIONS(4472), 26, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -457996,6 +457541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -458008,11 +457555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4386), 32, + 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, @@ -458041,23 +457589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4424] = 7, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4543), 1, - sym_type_constraints, - STATE(4663), 1, - sym_class_body, + [3668] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 23, + ACTIONS(4502), 26, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -458065,6 +457606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -458077,11 +457620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 32, + ACTIONS(4504), 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, @@ -458110,15 +457654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4500] = 5, - ACTIONS(7912), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(7914), 1, - anon_sym_L, + [3736] = 6, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_COLON, + STATE(4661), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4475), 24, + ACTIONS(4390), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -458143,12 +457689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4477), 33, + ACTIONS(4392), 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, @@ -458177,20 +457722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4572] = 7, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, + [3810] = 6, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4683), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + ACTIONS(7925), 1, + anon_sym_COLON, + STATE(4653), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 23, + ACTIONS(4402), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -458213,7 +457757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 32, + ACTIONS(4404), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458246,19 +457790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4648] = 7, - ACTIONS(7862), 1, + [3884] = 7, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4573), 1, + STATE(4594), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 23, + ACTIONS(4318), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -458282,7 +457826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 32, + ACTIONS(4320), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458315,22 +457859,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4724] = 6, - ACTIONS(5159), 1, + [3960] = 7, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(7916), 1, - anon_sym_COLON, - STATE(4658), 1, + ACTIONS(5127), 1, + anon_sym_where, + STATE(4516), 1, + sym_type_constraints, + STATE(4624), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 24, + ACTIONS(4396), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -458350,7 +457895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 32, + ACTIONS(4398), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458383,19 +457928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4798] = 7, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [4036] = 7, + ACTIONS(5127), 1, anon_sym_where, - STATE(4544), 1, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4518), 1, sym_type_constraints, - STATE(4638), 1, + STATE(4595), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 23, + ACTIONS(4498), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -458419,7 +457964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 32, + ACTIONS(4500), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458452,23 +457997,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4874] = 7, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, + [4112] = 7, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4690), 1, - sym__block, - STATE(4740), 1, - sym_function_body, + ACTIONS(5127), 1, + anon_sym_where, + STATE(4562), 1, + sym_type_constraints, + STATE(4651), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 23, + ACTIONS(4342), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -458488,7 +458033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 32, + ACTIONS(4344), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458521,23 +458066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4950] = 7, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, + [4188] = 7, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + ACTIONS(5127), 1, + anon_sym_where, + STATE(4511), 1, + sym_type_constraints, + STATE(4625), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 23, + ACTIONS(4410), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -458557,7 +458102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 32, + ACTIONS(4412), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458590,19 +458135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5026] = 7, - ACTIONS(5119), 1, + [4264] = 7, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - STATE(4558), 1, + STATE(4546), 1, sym_type_constraints, - STATE(4639), 1, - sym_class_body, + STATE(4605), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 23, + ACTIONS(4476), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -458626,7 +458171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 32, + ACTIONS(4478), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458659,19 +458204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5102] = 7, - ACTIONS(7862), 1, + [4340] = 7, + ACTIONS(7874), 1, anon_sym_EQ, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4653), 1, + STATE(4643), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 23, + ACTIONS(4114), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -458695,7 +458240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 32, + ACTIONS(4116), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -458728,26 +458273,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5178] = 7, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4520), 1, - sym_type_constraints, - STATE(4753), 1, - sym_class_body, + [4416] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 23, + ACTIONS(4486), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -458764,11 +458304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4402), 32, + ACTIONS(4488), 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, @@ -458797,20 +458338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5254] = 7, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [4484] = 7, + ACTIONS(7927), 1, + anon_sym_catch, + ACTIONS(7929), 1, + anon_sym_finally, + STATE(5032), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 23, + STATE(4555), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4035), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -458819,7 +458362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -458833,17 +458375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 32, + ACTIONS(4037), 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, @@ -458866,17 +458407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5330] = 5, - ACTIONS(7918), 1, - anon_sym_by, - STATE(4584), 1, - sym_value_arguments, + [4560] = 7, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4596), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 24, + ACTIONS(4286), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -458899,12 +458443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 33, + ACTIONS(4288), 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, @@ -458933,23 +458476,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5402] = 7, - ACTIONS(7862), 1, - anon_sym_EQ, - ACTIONS(7864), 1, + [4636] = 7, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, anon_sym_LBRACE, - STATE(4690), 1, - sym__block, - STATE(4716), 1, - sym_function_body, + STATE(4510), 1, + sym_type_constraints, + STATE(4624), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 23, + ACTIONS(4396), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -458969,7 +458512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 32, + ACTIONS(4398), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -459002,17 +458545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5478] = 5, - ACTIONS(5159), 1, + [4712] = 7, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4708), 1, - sym_class_body, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4533), 24, + ACTIONS(4120), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -459035,7 +458581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4535), 32, + ACTIONS(4122), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -459068,17 +458614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5549] = 5, - ACTIONS(7920), 1, - anon_sym_COMMA, - STATE(4549), 1, - aux_sym_type_constraints_repeat1, + [4788] = 7, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4681), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4440), 24, + ACTIONS(4442), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -459101,14 +458650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4442), 32, + ACTIONS(4444), 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, @@ -459134,15 +458683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5620] = 5, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4670), 1, - sym_class_body, + [4864] = 5, + ACTIONS(7931), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(7933), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4680), 24, + ACTIONS(4424), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -459167,11 +458716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4682), 32, + ACTIONS(4426), 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, @@ -459200,17 +458750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5691] = 3, + [4936] = 7, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + STATE(4513), 1, + sym_type_constraints, + STATE(4605), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4529), 25, - anon_sym_COLON, + ACTIONS(4476), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -459230,12 +458786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4531), 33, + ACTIONS(4478), 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, @@ -459264,17 +458819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5758] = 5, - ACTIONS(5113), 1, + [5012] = 7, + ACTIONS(7874), 1, + anon_sym_EQ, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4703), 1, - sym_enum_class_body, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 24, + ACTIONS(4102), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -459297,7 +458855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 32, + ACTIONS(4104), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -459330,23 +458888,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5829] = 5, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4720), 1, - sym_class_body, + [5088] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 24, + ACTIONS(4223), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -459363,11 +458919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 32, + ACTIONS(4225), 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, @@ -459396,26 +458953,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5900] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7922), 1, - anon_sym_COLON, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, + [5156] = 7, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4773), 1, + ACTIONS(5127), 1, + anon_sym_where, + STATE(4549), 1, sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(5030), 1, - sym_function_body, + STATE(4626), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 21, + ACTIONS(4332), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -459423,6 +458975,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, @@ -459436,15 +458989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 30, - sym__automatic_semicolon, + ACTIONS(4334), 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, @@ -459467,26 +459022,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5981] = 10, - ACTIONS(5403), 1, + [5232] = 7, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(7928), 1, - anon_sym_COLON, - STATE(4774), 1, + STATE(4551), 1, sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(5032), 1, - sym_function_body, + STATE(4600), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 21, + ACTIONS(4482), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -459494,6 +459044,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, @@ -459507,15 +459058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 30, - sym__automatic_semicolon, + ACTIONS(4484), 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, @@ -459538,13 +459091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6062] = 4, - STATE(4563), 1, - aux_sym__delegation_specifiers_repeat1, + [5308] = 5, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4649), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 24, + ACTIONS(3204), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -459569,12 +459124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 33, + ACTIONS(3208), 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, @@ -459603,33 +459157,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6131] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, + [5379] = 5, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(7930), 1, - anon_sym_COLON, - STATE(4775), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, + STATE(4605), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 21, + ACTIONS(4476), 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, @@ -459643,15 +459190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 30, - sym__automatic_semicolon, + ACTIONS(4478), 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, @@ -459674,33 +459223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6212] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, + [5450] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(7932), 1, - anon_sym_COLON, - STATE(4777), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, + STATE(4607), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 21, + ACTIONS(4642), 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, @@ -459714,15 +459256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 30, - sym__automatic_semicolon, + ACTIONS(4644), 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, @@ -459745,15 +459289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6293] = 5, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4667), 1, - sym_class_body, + [5521] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4404), 24, + ACTIONS(4577), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -459778,11 +459319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4406), 32, + ACTIONS(4579), 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, @@ -459811,15 +459353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6364] = 5, - ACTIONS(5113), 1, + [5588] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4663), 1, - sym_enum_class_body, + STATE(4598), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 24, + ACTIONS(4623), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -459844,7 +459386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 32, + ACTIONS(4625), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -459877,14 +459419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6435] = 3, + [5659] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4619), 25, + ACTIONS(4601), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -459907,7 +459449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4621), 33, + ACTIONS(4603), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -459941,33 +459483,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6502] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7934), 1, - anon_sym_COLON, - STATE(4779), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, + [5726] = 5, + ACTIONS(7935), 1, + anon_sym_COMMA, + STATE(4515), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 21, + ACTIONS(4635), 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, @@ -459981,15 +459516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 30, - sym__automatic_semicolon, + ACTIONS(4637), 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, @@ -460012,15 +459549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6583] = 5, - ACTIONS(5113), 1, + [5797] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4720), 1, - sym_enum_class_body, + STATE(4605), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 24, + ACTIONS(4476), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -460045,7 +459582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 32, + ACTIONS(4478), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -460078,11 +459615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6654] = 3, + [5868] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 25, + ACTIONS(4581), 25, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -460108,7 +459645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 33, + ACTIONS(4583), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -460142,12 +459679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6721] = 3, + [5935] = 5, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4593), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4666), 25, - anon_sym_COLON, + ACTIONS(4619), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -460172,12 +459712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4668), 33, + ACTIONS(4621), 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, @@ -460206,20 +459745,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6788] = 5, - ACTIONS(5159), 1, + [6006] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4663), 1, - sym_class_body, + ACTIONS(7938), 1, + anon_sym_COLON, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4656), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4840), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 24, + ACTIONS(4079), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -460239,17 +459786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 32, + ACTIONS(4081), 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, @@ -460272,15 +459816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6859] = 5, - ACTIONS(5113), 1, - anon_sym_LBRACE, - STATE(4638), 1, - sym_enum_class_body, + [6087] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 24, + ACTIONS(4605), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -460305,11 +459846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 32, + ACTIONS(4607), 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, @@ -460338,24 +459880,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6930] = 4, - ACTIONS(7918), 1, - anon_sym_by, + [6154] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7942), 1, + anon_sym_COLON, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4820), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 24, + ACTIONS(4102), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -460369,18 +459920,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 33, + ACTIONS(4104), 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, + [6235] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3871), 16, + 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, + sym__quest, anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(3866), 42, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [6302] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + ACTIONS(7948), 1, + anon_sym_COLON, + STATE(4643), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4839), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4114), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4116), 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, @@ -460403,12 +460086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6999] = 3, + [6383] = 5, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4624), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 25, - anon_sym_COLON, + ACTIONS(4396), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -460433,12 +460119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4591), 33, + ACTIONS(4398), 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, @@ -460467,15 +460152,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7066] = 5, - ACTIONS(5113), 1, + [6454] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4639), 1, - sym_enum_class_body, + ACTIONS(7950), 1, + anon_sym_COLON, + STATE(4823), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4108), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4110), 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, + [6535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 24, + ACTIONS(4627), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -460500,11 +460253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 32, + ACTIONS(4629), 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, @@ -460533,17 +460287,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7137] = 3, + [6602] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + ACTIONS(7952), 1, + anon_sym_COLON, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4838), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4686), 25, - anon_sym_COLON, + ACTIONS(4108), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -460563,18 +460328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4688), 33, + ACTIONS(4110), 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, @@ -460597,76 +460358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7204] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 16, - anon_sym_AT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + [6683] = 5, + ACTIONS(7954), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(3943), 42, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [7271] = 3, + STATE(4528), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4648), 25, - anon_sym_COLON, + ACTIONS(4506), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -460691,7 +460391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4650), 33, + ACTIONS(4508), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -460699,7 +460399,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, @@ -460725,20 +460424,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7338] = 5, - ACTIONS(5159), 1, + [6754] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4753), 1, - sym_class_body, + ACTIONS(7940), 1, + anon_sym_EQ, + ACTIONS(7957), 1, + anon_sym_COLON, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4834), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 24, + ACTIONS(4120), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -460758,17 +460465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4402), 32, + ACTIONS(4122), 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, @@ -460791,18 +460495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7409] = 5, - ACTIONS(7936), 1, - anon_sym_catch, + [6835] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4536), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4121), 24, + ACTIONS(4593), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -460811,8 +460511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -460825,16 +460525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4123), 31, - sym__automatic_semicolon, + ACTIONS(4595), 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, @@ -460857,75 +460559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7480] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 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_LT, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3943), 33, - anon_sym_COLON, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [7547] = 3, + [6902] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 25, + ACTIONS(4682), 25, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -460951,7 +460589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4599), 33, + ACTIONS(4684), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -460985,86 +460623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7614] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7939), 1, - anon_sym_COLON, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4849), 1, - sym_type_constraints, + [6969] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4101), 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, - [7695] = 5, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4597), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4593), 24, + ACTIONS(4698), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461089,11 +460653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4595), 32, + ACTIONS(4700), 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, @@ -461122,26 +460687,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7766] = 5, - ACTIONS(5159), 1, + [7036] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4697), 1, - sym_class_body, + ACTIONS(7959), 1, + anon_sym_COLON, + STATE(4819), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(5006), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 24, + ACTIONS(4114), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -461155,17 +460727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 32, + ACTIONS(4116), 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, @@ -461188,15 +460758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7837] = 5, - ACTIONS(5113), 1, - anon_sym_LBRACE, - STATE(4587), 1, - sym_enum_class_body, + [7117] = 5, + ACTIONS(7961), 1, + anon_sym_COMMA, + STATE(4561), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 24, + ACTIONS(4515), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461221,14 +460791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4672), 32, + ACTIONS(4517), 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, @@ -461254,20 +460824,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7908] = 5, - ACTIONS(5159), 1, + [7188] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4639), 1, - sym_class_body, + ACTIONS(7940), 1, + anon_sym_EQ, + ACTIONS(7963), 1, + anon_sym_COLON, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4836), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 24, + ACTIONS(4102), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -461287,17 +460865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 32, + ACTIONS(4104), 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, @@ -461320,15 +460895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7979] = 5, - ACTIONS(5113), 1, + [7269] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4588), 1, - sym_enum_class_body, + STATE(4651), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4344), 24, + ACTIONS(4342), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461353,7 +460928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4346), 32, + ACTIONS(4344), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -461386,13 +460961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8050] = 4, - ACTIONS(7943), 1, - anon_sym_L, + [7340] = 5, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4600), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4638), 24, + ACTIONS(4482), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461417,12 +460994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4640), 33, + ACTIONS(4484), 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, @@ -461451,11 +461027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8119] = 3, + [7411] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4615), 25, + ACTIONS(4674), 25, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -461481,7 +461057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4617), 33, + ACTIONS(4676), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -461515,15 +461091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8186] = 5, - ACTIONS(5113), 1, + [7478] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4570), 1, - sym_enum_class_body, + STATE(4658), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4390), 24, + ACTIONS(3190), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461548,7 +461124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4392), 32, + ACTIONS(3194), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -461581,28 +461157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8257] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [7549] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(7945), 1, - anon_sym_COLON, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4852), 1, - sym_type_constraints, + STATE(4646), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 22, + ACTIONS(4662), 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, @@ -461622,14 +461190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, + ACTIONS(4664), 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, @@ -461652,15 +461223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8338] = 5, - ACTIONS(7920), 1, - anon_sym_COMMA, - STATE(4564), 1, - aux_sym_type_constraints_repeat1, + [7620] = 4, + STATE(4515), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 24, + ACTIONS(4652), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461685,7 +461254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4456), 32, + ACTIONS(4654), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -461693,6 +461262,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, @@ -461718,15 +461288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8409] = 5, - ACTIONS(5159), 1, - anon_sym_LBRACE, - STATE(4603), 1, - sym_class_body, + [7689] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 24, + ACTIONS(4615), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461751,11 +461318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 32, + ACTIONS(4617), 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, @@ -461784,12 +461352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8480] = 3, + [7756] = 4, + ACTIONS(7965), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4537), 25, - anon_sym_COLON, + ACTIONS(4708), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -461814,7 +461383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4539), 33, + ACTIONS(4710), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -461848,11 +461417,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8547] = 3, + [7825] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4585), 25, + ACTIONS(4656), 25, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -461878,7 +461447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4587), 33, + ACTIONS(4658), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -461912,28 +461481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8614] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [7892] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(7947), 1, - anon_sym_COLON, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4857), 1, - sym_type_constraints, + STATE(4625), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 22, + ACTIONS(4410), 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, @@ -461953,14 +461514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(4412), 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, @@ -461983,78 +461547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8695] = 5, - ACTIONS(7949), 1, - anon_sym_LT, - STATE(4791), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, + [7963] = 5, + ACTIONS(5145), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4113), 32, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [8766] = 3, + STATE(4598), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4521), 25, - anon_sym_COLON, + ACTIONS(4623), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462079,12 +461580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4523), 33, + ACTIONS(4625), 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, @@ -462113,17 +461613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8833] = 5, - ACTIONS(5113), 1, - anon_sym_LBRACE, - STATE(4582), 1, - sym_enum_class_body, + [8034] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 24, + ACTIONS(4251), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -462146,11 +461643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 32, + ACTIONS(4253), 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, @@ -462179,15 +461677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8904] = 5, - ACTIONS(5159), 1, + [8101] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4664), 1, + STATE(4626), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 24, + ACTIONS(4332), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462212,7 +461710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 32, + ACTIONS(4334), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -462245,15 +461743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8975] = 5, - ACTIONS(5159), 1, + [8172] = 5, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(4582), 1, + STATE(4624), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 24, + ACTIONS(4396), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462278,7 +461776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 32, + ACTIONS(4398), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -462311,15 +461809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9046] = 5, - ACTIONS(5113), 1, + [8243] = 5, + ACTIONS(5145), 1, anon_sym_LBRACE, - STATE(4697), 1, + STATE(4610), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 24, + ACTIONS(4326), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462344,7 +461842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 32, + ACTIONS(4328), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -462377,28 +461875,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9117] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [8314] = 5, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(7951), 1, - anon_sym_COLON, - STATE(4690), 1, - sym__block, - STATE(4716), 1, - sym_function_body, - STATE(4862), 1, - sym_type_constraints, + STATE(4595), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 22, + ACTIONS(4498), 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, @@ -462418,14 +461908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 29, + ACTIONS(4500), 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, @@ -462448,23 +461941,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9198] = 3, + [8385] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(7967), 1, + anon_sym_COLON, + STATE(4822), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(4980), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 25, + ACTIONS(4079), 21, 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, @@ -462478,18 +461981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 33, + ACTIONS(4081), 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, @@ -462512,28 +462012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9265] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [8466] = 5, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(7953), 1, - anon_sym_COLON, - STATE(4619), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4863), 1, - sym_type_constraints, + STATE(4626), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 22, + ACTIONS(4332), 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, @@ -462553,14 +462045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 29, + ACTIONS(4334), 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, @@ -462583,15 +462078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9346] = 5, - ACTIONS(7955), 1, - anon_sym_COMMA, - STATE(4563), 1, - aux_sym__delegation_specifiers_repeat1, + [8537] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4625), 24, + ACTIONS(4702), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462616,7 +462108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4627), 32, + ACTIONS(4704), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -462624,6 +462116,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, @@ -462649,15 +462142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9417] = 5, - ACTIONS(7958), 1, - anon_sym_COMMA, - STATE(4564), 1, - aux_sym_type_constraints_repeat1, + [8604] = 5, + ACTIONS(7969), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 24, + STATE(4555), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4095), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462668,8 +462162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -462682,17 +462176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4464), 32, + ACTIONS(4097), 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, @@ -462715,23 +462208,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9488] = 3, + [8675] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(7972), 1, + anon_sym_COLON, + STATE(4821), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4611), 25, - anon_sym_COLON, + ACTIONS(4120), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -462745,18 +462248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4613), 33, + ACTIONS(4122), 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, @@ -462779,24 +462279,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9555] = 3, + [8756] = 5, + ACTIONS(5145), 1, + anon_sym_LBRACE, + STATE(4628), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3943), 26, - anon_sym_COLON, + ACTIONS(3196), 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, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -462810,15 +462312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3948), 32, - sym__automatic_semicolon, + ACTIONS(3200), 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, @@ -462843,22 +462345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9622] = 3, + [8827] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(3866), 26, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -462872,16 +462376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 33, + ACTIONS(3871), 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, @@ -462906,11 +462409,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9688] = 3, + [8894] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 24, + ACTIONS(3871), 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_LT, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3866), 33, + anon_sym_COLON, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [8961] = 5, + ACTIONS(5121), 1, + anon_sym_LBRACE, + STATE(4627), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4686), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -462935,12 +462506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4732), 33, + ACTIONS(4688), 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, @@ -462969,26 +462539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9754] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4857), 1, - sym_type_constraints, + [9032] = 5, + ACTIONS(7961), 1, + anon_sym_COMMA, + STATE(4528), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 22, + ACTIONS(4521), 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, @@ -463008,14 +462572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(4523), 32, 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -463038,11 +462605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9832] = 3, + [9103] = 5, + ACTIONS(5121), 1, + anon_sym_LBRACE, + STATE(4635), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 24, + ACTIONS(4468), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -463067,12 +462638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4672), 33, + ACTIONS(4470), 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, @@ -463101,11 +462671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9898] = 3, + [9174] = 4, + ACTIONS(7921), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 24, + ACTIONS(4525), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -463130,7 +462702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4752), 33, + ACTIONS(4527), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -463164,76 +462736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9964] = 5, - ACTIONS(7961), 1, - anon_sym_DOT, - STATE(4572), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4272), 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, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4270), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [10034] = 3, + [9243] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 24, + ACTIONS(4597), 25, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -463258,7 +462766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 33, + ACTIONS(4599), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -463292,11 +462800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10100] = 3, + [9310] = 5, + ACTIONS(5121), 1, + anon_sym_LBRACE, + STATE(4649), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3082), 24, + ACTIONS(3204), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -463321,12 +462833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3084), 33, + ACTIONS(3208), 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, @@ -463355,91 +462866,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10166] = 5, - ACTIONS(4826), 1, - anon_sym_EQ, + [9381] = 5, + ACTIONS(7974), 1, + anon_sym_LT, + STATE(4759), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4828), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4517), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4230), 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, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4148), 32, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4519), 28, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [10236] = 5, - ACTIONS(7964), 1, - anon_sym_DOT, - STATE(4678), 1, - aux_sym_user_type_repeat1, + [9452] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4220), 24, + ACTIONS(3340), 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, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -463453,16 +462961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4222), 31, - sym__automatic_semicolon, + ACTIONS(3342), 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, @@ -463485,33 +462995,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10306] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7967), 1, - anon_sym_COLON, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4926), 1, - sym_type_constraints, - STATE(5030), 1, - sym_function_body, + [9518] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 21, + ACTIONS(1774), 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, @@ -463525,14 +463024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 29, - sym__automatic_semicolon, + ACTIONS(1776), 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, @@ -463555,11 +463058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10386] = 3, + [9584] = 4, + ACTIONS(7976), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 24, + ACTIONS(4877), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -463571,7 +463076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -463584,7 +463088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 33, + ACTIONS(4879), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -463618,11 +463122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10452] = 3, + [9652] = 5, + ACTIONS(7976), 1, + anon_sym_else, + ACTIONS(7978), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4883), 24, + ACTIONS(4877), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -463634,7 +463142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -463647,7 +463154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4885), 33, + ACTIONS(4879), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -463657,7 +463164,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, @@ -463681,22 +463187,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10518] = 3, + [9722] = 5, + ACTIONS(7980), 1, + anon_sym_DOT, + STATE(4572), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 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, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4216), 31, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9792] = 5, + ACTIONS(7982), 1, + anon_sym_DOT, + STATE(4572), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4225), 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, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4223), 31, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9862] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_COLON, + STATE(4876), 1, + sym_type_constraints, + STATE(4969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 24, + ACTIONS(3190), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -463710,18 +463354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 33, + ACTIONS(3194), 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, @@ -463744,22 +463385,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10584] = 3, + [9938] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(7985), 1, + anon_sym_COLON, + STATE(4869), 1, + sym_type_constraints, + STATE(4988), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1778), 24, + ACTIONS(4342), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -463773,18 +463422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1780), 33, + ACTIONS(4344), 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, @@ -463807,22 +463453,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10650] = 3, + [10014] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5602), 1, + anon_sym_COLON, + STATE(4865), 1, + sym_type_constraints, + STATE(4998), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4935), 24, + ACTIONS(3204), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -463836,18 +463490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4937), 33, + ACTIONS(3208), 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, @@ -463870,22 +463521,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10716] = 3, + [10090] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(5600), 1, + anon_sym_COLON, + STATE(4862), 1, + sym_type_constraints, + STATE(4998), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4939), 24, + ACTIONS(3204), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -463899,18 +463558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4941), 33, + ACTIONS(3208), 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, @@ -463933,22 +463589,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10782] = 3, + [10166] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7987), 1, + anon_sym_COLON, + STATE(4856), 1, + sym_type_constraints, + STATE(5028), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4891), 24, + ACTIONS(4332), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -463962,18 +463626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4893), 33, + ACTIONS(4334), 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, @@ -463996,22 +463657,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10848] = 3, + [10242] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(7989), 1, + anon_sym_COLON, + STATE(4855), 1, + sym_type_constraints, + STATE(5028), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 24, + ACTIONS(4332), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -464025,18 +463694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 33, + ACTIONS(4334), 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, @@ -464059,22 +463725,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10914] = 3, + [10318] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(4852), 1, + sym_type_constraints, + STATE(5043), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4810), 24, + ACTIONS(3196), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -464088,18 +463762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4812), 33, + ACTIONS(3200), 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, @@ -464122,22 +463793,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10980] = 3, + [10394] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7991), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_type_constraints, + STATE(5064), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4921), 24, + ACTIONS(4326), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -464151,18 +463830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4923), 33, + ACTIONS(4328), 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, @@ -464185,139 +463861,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11046] = 3, + [10470] = 5, + ACTIONS(7993), 1, + anon_sym_DOT, + STATE(4571), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4390), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4392), 33, - sym_safe_nav, + ACTIONS(4273), 24, + 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, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [11112] = 5, - ACTIONS(4814), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4816), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4509), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4271), 31, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4511), 28, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [11182] = 3, + [10540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4905), 24, + ACTIONS(4494), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464342,7 +463955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4907), 33, + ACTIONS(4496), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -464376,11 +463989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11248] = 3, + [10606] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 24, + ACTIONS(4589), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464405,7 +464018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4511), 33, + ACTIONS(4591), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -464439,11 +464052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11314] = 3, + [10672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4943), 24, + ACTIONS(4585), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464468,7 +464081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4945), 33, + ACTIONS(4587), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -464502,13 +464115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11380] = 4, - ACTIONS(6283), 1, - anon_sym_LPAREN, + [10738] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4138), 24, + ACTIONS(4506), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464533,77 +464144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4141), 32, + ACTIONS(4508), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [11448] = 4, - ACTIONS(6279), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4283), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4286), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -464630,11 +464178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11516] = 3, + [10804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5055), 24, + ACTIONS(4502), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464659,7 +464207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5057), 33, + ACTIONS(4504), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -464693,11 +464241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11582] = 3, + [10870] = 4, + ACTIONS(7995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4517), 24, + ACTIONS(4826), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464722,7 +464272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4519), 33, + ACTIONS(4828), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -464739,7 +464289,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, @@ -464756,11 +464305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11648] = 3, + [10938] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4969), 24, + ACTIONS(4963), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -464785,7 +464334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4971), 33, + ACTIONS(4965), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -464819,76 +464368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11714] = 3, + [11004] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(6887), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4917), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4919), 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, + ACTIONS(3871), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [11780] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4981), 24, + ACTIONS(4290), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -464911,14 +464406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4983), 33, + ACTIONS(4293), 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, @@ -464929,11 +464423,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, @@ -464945,13 +464434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11846] = 3, + [11076] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(6883), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1401), 24, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4304), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -464974,14 +464472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1399), 33, + ACTIONS(4307), 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, @@ -464992,11 +464489,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, @@ -465008,11 +464500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11912] = 3, + [11148] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 24, + ACTIONS(4989), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465037,7 +464529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 33, + ACTIONS(4991), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465071,11 +464563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11978] = 3, + [11214] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1770), 24, + ACTIONS(4993), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465100,7 +464592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1772), 33, + ACTIONS(4995), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465134,11 +464626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12044] = 3, + [11280] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 24, + ACTIONS(4997), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465163,7 +464655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 33, + ACTIONS(4999), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465197,11 +464689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12110] = 3, + [11346] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 24, + ACTIONS(4452), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465226,7 +464718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 33, + ACTIONS(4454), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465260,11 +464752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12176] = 3, + [11412] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4895), 24, + ACTIONS(4619), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465289,7 +464781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4897), 33, + ACTIONS(4621), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465323,11 +464815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12242] = 3, + [11478] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3969), 24, + ACTIONS(4318), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465352,7 +464844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3971), 33, + ACTIONS(4320), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465386,11 +464878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12308] = 3, + [11544] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1784), 24, + ACTIONS(1694), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465415,7 +464907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1786), 33, + ACTIONS(1696), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465449,77 +464941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12374] = 6, - ACTIONS(4875), 1, - anon_sym_EQ, - ACTIONS(7971), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4877), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4840), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4842), 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_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [12446] = 3, + [11610] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4855), 24, + ACTIONS(5013), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465544,7 +464970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4857), 33, + ACTIONS(5015), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465578,98 +465004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12512] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5625), 1, - anon_sym_COLON, - STATE(4875), 1, - sym_type_constraints, - STATE(4962), 1, - sym_class_body, + [11676] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 22, + ACTIONS(5021), 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_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3200), 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, - [12588] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, anon_sym_where, - ACTIONS(7974), 1, - anon_sym_COLON, - STATE(4891), 1, - sym_type_constraints, - STATE(4990), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4301), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -465683,15 +465033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 30, - sym__automatic_semicolon, + ACTIONS(5023), 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, @@ -465714,30 +465067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12664] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(5633), 1, - anon_sym_COLON, - STATE(4876), 1, - sym_type_constraints, - STATE(4973), 1, - sym_enum_class_body, + [11742] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 22, + ACTIONS(4498), 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, @@ -465751,15 +465096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 30, - sym__automatic_semicolon, + ACTIONS(4500), 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, @@ -465782,11 +465130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12740] = 3, + [11808] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 24, + ACTIONS(5027), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -465811,7 +465159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4464), 33, + ACTIONS(5029), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -465845,101 +465193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12806] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5631), 1, - anon_sym_COLON, - STATE(4867), 1, - sym_type_constraints, - STATE(4973), 1, - sym_class_body, + [11874] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 22, + ACTIONS(5063), 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_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3190), 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, - [12882] = 10, - ACTIONS(5403), 1, anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - ACTIONS(7976), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5023), 1, - sym_type_constraints, - STATE(5032), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4047), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -465953,14 +465222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 29, - sym__automatic_semicolon, + ACTIONS(5065), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -465983,11 +465256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12962] = 3, + [11940] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4634), 24, + ACTIONS(4286), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -466012,7 +465285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4636), 33, + ACTIONS(4288), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -466046,11 +465319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13028] = 3, + [12006] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4814), 24, + ACTIONS(1762), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -466075,7 +465348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4816), 33, + ACTIONS(1764), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -466109,11 +465382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13094] = 3, + [12072] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4786), 24, + ACTIONS(4623), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -466138,7 +465411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4788), 33, + ACTIONS(4625), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -466172,11 +465445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13160] = 3, + [12138] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 24, + ACTIONS(5043), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -466201,7 +465474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 33, + ACTIONS(5045), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -466235,30 +465508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13226] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(7978), 1, - anon_sym_COLON, - STATE(4879), 1, - sym_type_constraints, - STATE(5081), 1, - sym_enum_class_body, + [12204] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 22, + ACTIONS(5047), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -466272,15 +465537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 30, - sym__automatic_semicolon, + ACTIONS(5049), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -466303,16 +465571,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13302] = 3, + [12270] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5558), 1, + anon_sym_COLON, + STATE(4536), 1, + sym_type_constraints, + STATE(4658), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4525), 24, + ACTIONS(3190), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466332,18 +465609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4527), 33, + ACTIONS(3194), 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, @@ -466366,11 +465639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13368] = 3, + [12346] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 24, + ACTIONS(5051), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -466395,7 +465668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4869), 33, + ACTIONS(5053), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -466429,11 +465702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13434] = 3, + [12412] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4965), 24, + ACTIONS(4482), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -466458,7 +465731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4967), 33, + ACTIONS(4484), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -466492,16 +465765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13500] = 3, + [12478] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7998), 1, + anon_sym_COLON, + STATE(4562), 1, + sym_type_constraints, + STATE(4651), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5017), 24, + ACTIONS(4342), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466521,18 +465803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5019), 33, + ACTIONS(4344), 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, @@ -466555,16 +465833,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13566] = 3, + [12554] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5552), 1, + anon_sym_COLON, + STATE(4553), 1, + sym_type_constraints, + STATE(4649), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5093), 24, + ACTIONS(3204), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466584,18 +465871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5095), 33, + ACTIONS(3208), 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, @@ -466618,30 +465901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13632] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7980), 1, - anon_sym_COLON, - STATE(4868), 1, - sym_type_constraints, - STATE(5081), 1, - sym_class_body, + [12630] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 22, + ACTIONS(207), 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, @@ -466655,15 +465930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 30, - sym__automatic_semicolon, + ACTIONS(205), 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, @@ -466686,25 +465964,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13708] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, + [12696] = 8, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(5617), 1, + ACTIONS(8000), 1, anon_sym_COLON, - STATE(4885), 1, - sym_type_constraints, - STATE(4917), 1, - sym_enum_class_body, + STATE(4922), 1, + sym_function_body, + STATE(4923), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 22, + ACTIONS(4150), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466723,7 +466001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 30, + ACTIONS(4152), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -466754,16 +466032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13784] = 3, + [12772] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5550), 1, + anon_sym_COLON, + STATE(4548), 1, + sym_type_constraints, + STATE(4649), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 24, + ACTIONS(3204), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466783,18 +466070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 33, + ACTIONS(3208), 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, @@ -466817,30 +466100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13850] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(7982), 1, - anon_sym_COLON, - STATE(4856), 1, - sym_type_constraints, - STATE(5001), 1, - sym_enum_class_body, + [12848] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 22, + ACTIONS(5055), 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, @@ -466854,15 +466129,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(5057), 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, @@ -466885,16 +466163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13926] = 3, + [12914] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(8002), 1, + anon_sym_COLON, + STATE(4524), 1, + sym_type_constraints, + STATE(4626), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 24, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466914,18 +466201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4780), 33, + ACTIONS(4334), 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, @@ -466948,16 +466231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13992] = 3, + [12990] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(8004), 1, + anon_sym_COLON, + STATE(4549), 1, + sym_type_constraints, + STATE(4626), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4770), 24, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -466977,18 +466269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4772), 33, + ACTIONS(4334), 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, @@ -467011,30 +466299,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14058] = 8, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, + [13066] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(7984), 1, + ACTIONS(5546), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5031), 1, - sym_function_body, + STATE(4550), 1, + sym_type_constraints, + STATE(4628), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 22, + ACTIONS(3196), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -467048,14 +466337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 30, - sym__automatic_semicolon, + ACTIONS(3200), 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, @@ -467079,11 +466367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14134] = 3, + [13142] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4802), 24, + ACTIONS(4120), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467108,7 +466396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4804), 33, + ACTIONS(4122), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467142,16 +466430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14200] = 3, + [13208] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(8006), 1, + anon_sym_COLON, + STATE(4537), 1, + sym_type_constraints, + STATE(4610), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4973), 24, + ACTIONS(4326), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -467171,18 +466468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4975), 33, + ACTIONS(4328), 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, @@ -467205,13 +466498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14266] = 4, - ACTIONS(7986), 1, - anon_sym_LPAREN, + [13284] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 24, + ACTIONS(1768), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467236,13 +466527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 32, + ACTIONS(1770), 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, @@ -467269,11 +466561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14334] = 3, + [13350] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4766), 24, + ACTIONS(5059), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467298,7 +466590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4768), 33, + ACTIONS(5061), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467332,76 +466624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14400] = 5, - ACTIONS(7988), 1, - anon_sym_DOT, - STATE(4660), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4309), 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, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4307), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [14470] = 3, + [13416] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4344), 24, + ACTIONS(4476), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467426,7 +466653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4346), 33, + ACTIONS(4478), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467460,11 +466687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14536] = 3, + [13482] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 24, + ACTIONS(4642), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467489,7 +466716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 33, + ACTIONS(4644), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467523,26 +466750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14602] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4852), 1, - sym_type_constraints, + [13548] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 22, + ACTIONS(4396), 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, @@ -467562,14 +466779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, + ACTIONS(4398), 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, @@ -467592,11 +466813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14680] = 3, + [13614] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1694), 24, + ACTIONS(5067), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467621,7 +466842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1696), 33, + ACTIONS(5069), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467655,13 +466876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14746] = 4, - ACTIONS(7971), 1, - anon_sym_COLON_COLON, + [13680] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4840), 24, + ACTIONS(4326), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467686,7 +466905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 32, + ACTIONS(4328), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467703,6 +466922,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, @@ -467719,13 +466939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14814] = 4, - ACTIONS(7990), 1, - anon_sym_LPAREN, + [13746] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 24, + ACTIONS(5073), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467750,13 +466968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 32, + ACTIONS(5075), 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, @@ -467783,11 +467002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14882] = 3, + [13812] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4714), 24, + ACTIONS(5077), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467812,7 +467031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4716), 33, + ACTIONS(5079), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467846,11 +467065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14948] = 3, + [13878] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4738), 24, + ACTIONS(5085), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467875,7 +467094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4740), 33, + ACTIONS(5087), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467909,11 +467128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15014] = 3, + [13944] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4742), 24, + ACTIONS(4102), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -467938,7 +467157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4744), 33, + ACTIONS(4104), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -467972,11 +467191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15080] = 3, + [14010] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5021), 24, + ACTIONS(1752), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468001,7 +467220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5023), 33, + ACTIONS(1754), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468035,11 +467254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15146] = 3, + [14076] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4931), 24, + ACTIONS(5109), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468064,7 +467283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4933), 33, + ACTIONS(5111), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468098,11 +467317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15212] = 3, + [14142] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4019), 24, + ACTIONS(4410), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468127,7 +467346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4021), 33, + ACTIONS(4412), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468161,11 +467380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15278] = 3, + [14208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(201), 24, + ACTIONS(5105), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468190,7 +467409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(199), 33, + ACTIONS(5107), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468224,11 +467443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15344] = 3, + [14274] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4985), 24, + ACTIONS(3196), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468253,7 +467472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4987), 33, + ACTIONS(3200), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468287,11 +467506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15410] = 3, + [14340] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 24, + ACTIONS(5101), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468316,7 +467535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 33, + ACTIONS(5103), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468350,11 +467569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15476] = 3, + [14406] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 24, + ACTIONS(5097), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468379,7 +467598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 33, + ACTIONS(5099), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468413,11 +467632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15542] = 3, + [14472] = 4, + ACTIONS(8008), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4762), 24, + ACTIONS(4298), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468442,14 +467663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4764), 33, + ACTIONS(4296), 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, @@ -468476,11 +467696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15608] = 3, + [14540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4949), 24, + ACTIONS(5093), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468505,7 +467725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4951), 33, + ACTIONS(5095), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468539,11 +467759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15674] = 3, + [14606] = 4, + ACTIONS(8010), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 24, + ACTIONS(4312), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468568,14 +467790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4720), 33, + ACTIONS(4310), 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, @@ -468602,13 +467823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15740] = 4, - ACTIONS(7992), 1, - anon_sym_LPAREN, + [14674] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 24, + ACTIONS(4108), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468633,13 +467852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 32, + ACTIONS(4110), 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, @@ -468666,11 +467886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15808] = 3, + [14740] = 4, + ACTIONS(8012), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5025), 24, + ACTIONS(4841), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468695,14 +467917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5027), 33, + ACTIONS(4843), 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, @@ -468729,11 +467950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15874] = 3, + [14808] = 4, + ACTIONS(8014), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1764), 24, + ACTIONS(4859), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468758,14 +467981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1766), 33, + ACTIONS(4861), 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, @@ -468792,76 +468014,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15940] = 5, - ACTIONS(7994), 1, - anon_sym_DOT, - STATE(4572), 1, - aux_sym_user_type_repeat1, + [14876] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 24, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(5081), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5083), 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, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4220), 31, - anon_sym_by, + [14942] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4635), 24, + anon_sym_as, + anon_sym_EQ, + 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_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [16010] = 3, + ACTIONS(4637), 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, + [15008] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5029), 24, + ACTIONS(1780), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468886,7 +468169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5031), 33, + ACTIONS(1782), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468920,11 +468203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16076] = 3, + [15074] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4989), 24, + ACTIONS(4332), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -468949,7 +468232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4991), 33, + ACTIONS(4334), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -468983,11 +468266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16142] = 3, + [15140] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 24, + ACTIONS(5039), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469012,7 +468295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 33, + ACTIONS(5041), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469046,11 +468329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16208] = 3, + [15206] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 24, + ACTIONS(4468), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469075,7 +468358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4402), 33, + ACTIONS(4470), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469109,26 +468392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16274] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4849), 1, - sym_type_constraints, + [15272] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 22, + ACTIONS(5035), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -469148,14 +468421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(5037), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -469178,11 +468455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16352] = 3, + [15338] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 24, + ACTIONS(5031), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469207,7 +468484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 33, + ACTIONS(5033), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469241,13 +468518,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16418] = 3, + [15404] = 5, + ACTIONS(4774), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 24, + ACTIONS(4776), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4494), 23, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -469270,7 +468554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4595), 33, + ACTIONS(4496), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469288,11 +468572,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, @@ -469304,13 +468583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16484] = 4, - ACTIONS(7996), 1, - anon_sym_LPAREN, + [15474] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 24, + ACTIONS(5017), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469335,13 +468612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 32, + ACTIONS(5019), 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, @@ -469368,11 +468646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16552] = 3, + [15540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4995), 24, + ACTIONS(4114), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469397,7 +468675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4997), 33, + ACTIONS(4116), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469431,11 +468709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16618] = 3, + [15606] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4999), 24, + ACTIONS(3204), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469460,7 +468738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5001), 33, + ACTIONS(3208), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469494,11 +468772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16684] = 3, + [15672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 24, + ACTIONS(4342), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469523,7 +468801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 33, + ACTIONS(4344), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469557,18 +468835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16750] = 5, - ACTIONS(7998), 1, - sym__quest, - STATE(4680), 1, - aux_sym_nullable_type_repeat1, + [15738] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4320), 24, + ACTIONS(4925), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -469577,6 +468850,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, @@ -469590,16 +468864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4322), 31, - sym__automatic_semicolon, + ACTIONS(4927), 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, @@ -469622,26 +468898,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16820] = 5, - ACTIONS(8000), 1, - anon_sym_DOT, - STATE(4576), 1, - aux_sym_user_type_repeat1, + [15804] = 5, + ACTIONS(4822), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 24, + ACTIONS(4824), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4502), 23, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -469655,27 +468934,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 31, - sym__automatic_semicolon, + ACTIONS(4504), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -469687,26 +468963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16890] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4573), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4848), 1, - sym_type_constraints, + [15874] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 22, + ACTIONS(4953), 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, @@ -469726,14 +468992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 29, + ACTIONS(4955), 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, @@ -469756,26 +469026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16968] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4683), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4847), 1, - sym_type_constraints, + [15940] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 22, + ACTIONS(4525), 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, @@ -469795,14 +469055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 29, + 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, @@ -469825,11 +469089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17046] = 3, + [16006] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4925), 24, + ACTIONS(3264), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -469854,7 +469118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4927), 33, + ACTIONS(3266), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -469888,26 +469152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17112] = 5, - ACTIONS(8003), 1, - anon_sym_LT, - STATE(4789), 1, - sym_type_arguments, + [16072] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4113), 24, + ACTIONS(3190), 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, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -469921,16 +469181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4190), 31, - sym__automatic_semicolon, + ACTIONS(3194), 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, @@ -469953,15 +469215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17182] = 5, - ACTIONS(8005), 1, + [16138] = 5, + ACTIONS(8016), 1, anon_sym_DOT, - STATE(4678), 1, + STATE(4673), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 24, + ACTIONS(4216), 24, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -469986,7 +469248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4272), 31, + ACTIONS(4218), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -470018,11 +469280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17252] = 3, + [16208] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5037), 24, + ACTIONS(3074), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -470047,7 +469309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5039), 33, + ACTIONS(3076), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -470081,18 +469343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17318] = 5, - ACTIONS(8008), 1, - sym__quest, - STATE(4741), 1, - aux_sym_nullable_type_repeat1, + [16274] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 24, + ACTIONS(4929), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -470101,6 +469358,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, @@ -470114,16 +469372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 31, - sym__automatic_semicolon, + ACTIONS(4931), 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, @@ -470146,16 +469406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17388] = 3, + [16340] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4838), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4806), 24, + ACTIONS(4108), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -470175,18 +469445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4808), 33, + ACTIONS(4110), 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, @@ -470209,16 +469475,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17454] = 3, + [16418] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4836), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3338), 24, + ACTIONS(4102), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -470238,18 +469514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3340), 33, + ACTIONS(4104), 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, @@ -470272,16 +469544,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17520] = 3, + [16496] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4834), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 24, + ACTIONS(4120), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -470301,18 +469583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 33, + ACTIONS(4122), 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, @@ -470335,25 +469613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17586] = 10, - ACTIONS(5403), 1, + [16574] = 9, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, + ACTIONS(7940), 1, anon_sym_EQ, - ACTIONS(8010), 1, - anon_sym_COLON, - STATE(4901), 1, + STATE(4596), 1, + sym_function_body, + STATE(4724), 1, sym__block, - STATE(4909), 1, + STATE(4833), 1, sym_type_constraints, - STATE(4912), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 21, + ACTIONS(4286), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -470362,6 +469638,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, @@ -470375,13 +469652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, - sym__automatic_semicolon, + ACTIONS(4288), 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, @@ -470405,16 +469682,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17666] = 3, + [16652] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4594), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4831), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 24, + ACTIONS(4318), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -470434,18 +469721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 33, + ACTIONS(4320), 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, @@ -470468,29 +469751,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17732] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4782), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, + [16730] = 5, + ACTIONS(8019), 1, + anon_sym_DOT, + STATE(4673), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 21, + ACTIONS(4223), 24, 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, @@ -470506,11 +469784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 30, + ACTIONS(4225), 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, @@ -470537,22 +469816,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17810] = 3, + [16800] = 5, + ACTIONS(8022), 1, + anon_sym_LT, + STATE(4788), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4913), 24, + ACTIONS(4148), 24, anon_sym_as, anon_sym_EQ, - anon_sym_LT, + anon_sym_by, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -470566,18 +469849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4915), 33, + ACTIONS(4230), 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, @@ -470600,22 +469881,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17876] = 3, + [16870] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8024), 1, + anon_sym_COLON, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, + STATE(5075), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5033), 24, + ACTIONS(4120), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -470629,18 +469921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5035), 33, + ACTIONS(4122), 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, @@ -470663,22 +469951,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17942] = 3, + [16950] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + ACTIONS(8028), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(5056), 1, + sym_type_constraints, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 24, + ACTIONS(4102), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -470692,18 +469991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5091), 33, + ACTIONS(4104), 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, @@ -470726,22 +470021,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18008] = 3, + [17030] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + ACTIONS(8030), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(5033), 1, + sym_type_constraints, + STATE(5034), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4822), 24, + ACTIONS(4108), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -470755,18 +470061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4824), 33, + ACTIONS(4110), 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, @@ -470789,22 +470091,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18074] = 3, + [17110] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + ACTIONS(8032), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(5005), 1, + sym_type_constraints, + STATE(5006), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4909), 24, + ACTIONS(4114), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -470818,18 +470131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4911), 33, + ACTIONS(4116), 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, @@ -470852,31 +470161,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18140] = 6, - ACTIONS(3943), 1, + [17190] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, anon_sym_EQ, - ACTIONS(6910), 1, - anon_sym_LPAREN, + ACTIONS(8034), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4979), 1, + sym_type_constraints, + STATE(4980), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4138), 23, + ACTIONS(4079), 21, 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, @@ -470890,23 +470201,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4141), 27, + ACTIONS(4081), 29, + sym__automatic_semicolon, 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_LPAREN, 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, @@ -470918,13 +470231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18212] = 4, - ACTIONS(8012), 1, - anon_sym_else, + [17270] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 23, + ACTIONS(4873), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -470936,6 +470247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -470948,7 +470260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 33, + ACTIONS(4875), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -470982,11 +470294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18280] = 3, + [17336] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4879), 24, + ACTIONS(4921), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471011,7 +470323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4881), 33, + ACTIONS(4923), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471045,11 +470357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18346] = 3, + [17402] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4871), 24, + ACTIONS(4913), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471074,7 +470386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4873), 33, + ACTIONS(4915), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471108,11 +470420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18412] = 3, + [17468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 24, + ACTIONS(4977), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471137,7 +470449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5043), 33, + ACTIONS(4979), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471171,11 +470483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18478] = 3, + [17534] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 24, + ACTIONS(4442), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471200,7 +470512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 33, + ACTIONS(4444), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471234,11 +470546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18544] = 3, + [17600] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 24, + ACTIONS(4967), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471263,7 +470575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5047), 33, + ACTIONS(4969), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471297,11 +470609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18610] = 3, + [17666] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4023), 24, + ACTIONS(4909), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471326,7 +470638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4025), 33, + ACTIONS(4911), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471360,11 +470672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18676] = 3, + [17732] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5063), 24, + ACTIONS(4438), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471389,7 +470701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5065), 33, + ACTIONS(4440), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471423,11 +470735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18742] = 3, + [17798] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5013), 24, + ACTIONS(4917), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471452,7 +470764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5015), 33, + ACTIONS(4919), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471486,11 +470798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18808] = 3, + [17864] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5009), 24, + ACTIONS(4905), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471515,7 +470827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5011), 33, + ACTIONS(4907), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471549,11 +470861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18874] = 3, + [17930] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 24, + ACTIONS(4162), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471578,7 +470890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 33, + ACTIONS(4164), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471612,13 +470924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18940] = 4, - ACTIONS(4266), 1, + [17996] = 4, + ACTIONS(4269), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 25, + ACTIONS(4265), 25, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -471644,7 +470956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4264), 31, + ACTIONS(4267), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -471676,263 +470988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19008] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4901), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4903), 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, - [19074] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4005), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4007), 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, - [19140] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4625), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4627), 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, - [19206] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5085), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5087), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [19272] = 3, + [18064] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3029), 24, + ACTIONS(4893), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -471957,7 +471017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3031), 33, + ACTIONS(4895), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -471991,101 +471051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19338] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - ACTIONS(8014), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, - STATE(5057), 1, - sym_type_constraints, + [18130] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 21, + ACTIONS(4933), 24, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4087), 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, - [19418] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4781), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(4932), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 21, - 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, @@ -472099,15 +471080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 30, - sym__automatic_semicolon, + ACTIONS(4935), 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, @@ -472130,11 +471114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19496] = 3, + [18196] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4887), 24, + ACTIONS(4885), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472159,7 +471143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4889), 33, + ACTIONS(4887), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472193,22 +471177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19562] = 8, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8016), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4919), 1, - sym_function_body, + [18262] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 22, + ACTIONS(4981), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -472217,6 +471192,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, @@ -472230,15 +471206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 30, - sym__automatic_semicolon, + ACTIONS(4983), 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, @@ -472261,11 +471240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19638] = 3, + [18328] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4977), 24, + ACTIONS(4937), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472290,7 +471269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4979), 33, + ACTIONS(4939), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472324,11 +471303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19704] = 3, + [18394] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1752), 24, + ACTIONS(4851), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472353,7 +471332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1754), 33, + ACTIONS(4853), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472387,11 +471366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19770] = 3, + [18460] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 24, + ACTIONS(4855), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472416,7 +471395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 33, + ACTIONS(4857), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472450,11 +471429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19836] = 3, + [18526] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 24, + ACTIONS(5089), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472479,7 +471458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 33, + ACTIONS(5091), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472513,13 +471492,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19902] = 3, + [18592] = 8, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8036), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4966), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 24, + ACTIONS(4156), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -472528,7 +471516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -472542,18 +471529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5099), 33, + ACTIONS(4158), 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, @@ -472576,13 +471560,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19968] = 3, + [18668] = 8, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8038), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4992), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5059), 24, + ACTIONS(4162), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -472591,7 +471584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -472605,18 +471597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5061), 33, + ACTIONS(4164), 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, @@ -472639,11 +471628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20034] = 3, + [18744] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 24, + ACTIONS(5009), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472668,7 +471657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 33, + ACTIONS(5011), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472702,84 +471691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20100] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4779), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4099), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4101), 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, - [20178] = 5, - ACTIONS(8012), 1, - anon_sym_else, - ACTIONS(8018), 1, - anon_sym_SEMI, + [18810] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 23, + ACTIONS(4716), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472791,6 +471707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -472803,7 +471720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 32, + ACTIONS(4718), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -472813,6 +471730,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, @@ -472836,13 +471754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20248] = 3, + [18876] = 5, + ACTIONS(8040), 1, + sym__quest, + STATE(4704), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 24, + ACTIONS(4244), 24, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -472851,7 +471774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -472865,18 +471787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 33, + ACTIONS(4246), 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, @@ -472899,31 +471819,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20314] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(5548), 1, - anon_sym_COLON, - STATE(4557), 1, - sym_type_constraints, - STATE(4603), 1, - sym_class_body, + [18946] = 5, + ACTIONS(8043), 1, + sym__quest, + STATE(4728), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 23, + ACTIONS(4251), 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, @@ -472937,13 +471852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 29, + ACTIONS(4253), 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, @@ -472967,11 +471884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20390] = 3, + [19016] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5081), 24, + ACTIONS(4720), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -472996,7 +471913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5083), 33, + ACTIONS(4722), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473030,11 +471947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20456] = 3, + [19082] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4863), 24, + ACTIONS(4730), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -473059,7 +471976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4865), 33, + ACTIONS(4732), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473093,22 +472010,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20522] = 3, + [19148] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4823), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4746), 24, + ACTIONS(4108), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -473122,18 +472048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4748), 33, + ACTIONS(4110), 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, @@ -473156,25 +472079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20588] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8020), 1, - anon_sym_COLON, - STATE(4535), 1, - sym_type_constraints, - STATE(4664), 1, - sym_class_body, + [19226] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(4734), 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, @@ -473194,14 +472108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 29, + ACTIONS(4736), 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, @@ -473224,23 +472142,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20664] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [19292] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5528), 1, - anon_sym_COLON, - STATE(4524), 1, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4820), 1, sym_type_constraints, - STATE(4697), 1, - sym_enum_class_body, + STATE(4923), 1, + sym__block, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 23, + ACTIONS(4102), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -473248,7 +472167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -473262,13 +472180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 29, + ACTIONS(4104), 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, @@ -473292,25 +472211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20740] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(5526), 1, - anon_sym_COLON, - STATE(4514), 1, - sym_type_constraints, - STATE(4697), 1, - sym_class_body, + [19370] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 23, + ACTIONS(4941), 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, @@ -473330,14 +472240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 29, + ACTIONS(4943), 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, @@ -473360,18 +472274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20816] = 5, - ACTIONS(7998), 1, - sym__quest, - STATE(4680), 1, - aux_sym_nullable_type_repeat1, + [19436] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 24, + ACTIONS(4746), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -473380,6 +472289,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, @@ -473393,16 +472303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 31, - sym__automatic_semicolon, + ACTIONS(4748), 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, @@ -473425,25 +472337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20886] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(8022), 1, - anon_sym_COLON, - STATE(4521), 1, - sym_type_constraints, - STATE(4720), 1, - sym_enum_class_body, + [19502] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(2988), 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, @@ -473463,14 +472366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 29, + ACTIONS(2990), 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, @@ -473493,23 +472400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20962] = 8, - ACTIONS(5119), 1, + [19568] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8024), 1, - anon_sym_COLON, - STATE(4527), 1, + STATE(4821), 1, sym_type_constraints, - STATE(4720), 1, - sym_class_body, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(4120), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -473517,7 +472425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -473531,13 +472438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 29, + ACTIONS(4122), 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, @@ -473561,25 +472469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21038] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5520), 1, - anon_sym_COLON, - STATE(4528), 1, - sym_type_constraints, - STATE(4703), 1, - sym_enum_class_body, + [19646] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 23, + ACTIONS(3878), 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, @@ -473599,14 +472498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 29, + ACTIONS(3880), 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, @@ -473629,25 +472532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21114] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(8026), 1, - anon_sym_COLON, - STATE(4544), 1, - sym_type_constraints, - STATE(4638), 1, - sym_enum_class_body, + [19712] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 23, + ACTIONS(4945), 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, @@ -473667,14 +472561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 29, + ACTIONS(4947), 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, @@ -473697,11 +472595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21190] = 3, + [19778] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4859), 24, + ACTIONS(4985), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -473726,7 +472624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4861), 33, + ACTIONS(4987), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473760,23 +472658,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21256] = 9, - ACTIONS(5403), 1, + [19844] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7924), 1, + ACTIONS(7944), 1, anon_sym_EQ, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4777), 1, + STATE(4818), 1, sym_type_constraints, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5017), 1, + STATE(5062), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 21, + ACTIONS(4286), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -473798,7 +472696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 30, + ACTIONS(4288), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -473829,11 +472727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21334] = 3, + [19922] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5075), 24, + ACTIONS(4754), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -473858,7 +472756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5077), 33, + ACTIONS(4756), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -473892,22 +472790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21400] = 6, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(6906), 1, - anon_sym_LPAREN, + [19988] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4283), 23, + ACTIONS(4758), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -473930,13 +472819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 27, + ACTIONS(4760), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -473947,6 +472837,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, @@ -473958,11 +472853,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21472] = 3, + [20054] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4825), 1, + sym_type_constraints, + STATE(4923), 1, + sym__block, + STATE(5054), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 24, + ACTIONS(4318), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4320), 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, + [20132] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -473987,7 +472951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 33, + ACTIONS(4037), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474021,18 +472985,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21538] = 5, - ACTIONS(8028), 1, - sym__quest, - STATE(4741), 1, - aux_sym_nullable_type_repeat1, + [20198] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4235), 24, + ACTIONS(4762), 24, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -474041,6 +473000,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, @@ -474054,16 +473014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4237), 31, - sym__automatic_semicolon, + ACTIONS(4764), 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, @@ -474086,11 +473048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21608] = 3, + [20264] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4722), 24, + ACTIONS(4973), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474115,7 +473077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4724), 33, + ACTIONS(4975), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474149,11 +473111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21674] = 3, + [20330] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5003), 24, + ACTIONS(4766), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474178,7 +473140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5005), 33, + ACTIONS(4768), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474212,33 +473174,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21740] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - ACTIONS(8031), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, - STATE(5019), 1, - sym_type_constraints, + [20396] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 21, + ACTIONS(4818), 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, @@ -474252,14 +473203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, - 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, @@ -474282,11 +473237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21820] = 3, + [20462] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4851), 24, + ACTIONS(4949), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474311,7 +473266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4853), 33, + ACTIONS(4951), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474345,26 +473300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21886] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4775), 1, - sym_type_constraints, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, + [20528] = 5, + ACTIONS(8045), 1, + sym__quest, + STATE(4704), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 21, + ACTIONS(4259), 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, @@ -474383,11 +473333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 30, + ACTIONS(4261), 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, @@ -474414,22 +473365,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21964] = 3, + [20598] = 5, + ACTIONS(8047), 1, + anon_sym_DOT, + STATE(4665), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5071), 24, + ACTIONS(4271), 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, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -474443,18 +473398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5073), 33, + ACTIONS(4273), 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, @@ -474477,22 +473430,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22030] = 8, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8033), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5063), 1, - sym_function_body, + [20668] = 5, + ACTIONS(8043), 1, + sym__quest, + STATE(4728), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4278), 24, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -474514,11 +473463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 30, + ACTIONS(4280), 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, @@ -474545,11 +473495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22106] = 3, + [20738] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 24, + ACTIONS(4770), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474574,7 +473524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5069), 33, + ACTIONS(4772), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474608,11 +473558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22172] = 3, + [20804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 24, + ACTIONS(4774), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474637,7 +473587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 33, + ACTIONS(4776), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474671,11 +473621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22238] = 3, + [20870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4847), 24, + ACTIONS(4778), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474700,7 +473650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4849), 33, + ACTIONS(4780), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474734,11 +473684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22304] = 3, + [20936] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4830), 24, + ACTIONS(4782), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474763,7 +473713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4832), 33, + ACTIONS(4784), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474797,11 +473747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22370] = 3, + [21002] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4404), 24, + ACTIONS(4786), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474826,7 +473776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4406), 33, + ACTIONS(4788), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474860,11 +473810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22436] = 3, + [21068] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 24, + ACTIONS(4957), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -474889,7 +473839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4784), 33, + ACTIONS(4959), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -474923,31 +473873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22502] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8035), 1, - anon_sym_COLON, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4716), 1, - sym_function_body, - STATE(5043), 1, - sym_type_constraints, + [21134] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 20, + ACTIONS(3912), 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, @@ -474957,22 +473896,23 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 29, + ACTIONS(3914), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -474980,168 +473920,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22581] = 5, - ACTIONS(8039), 1, - sym__quest, - STATE(4767), 1, - aux_sym_nullable_type_repeat1, + [21200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4248), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [22650] = 5, - ACTIONS(8041), 1, - sym__quest, - STATE(4756), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4244), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4242), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [22719] = 7, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - STATE(4836), 1, - sym_type_constraints, - STATE(5078), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4404), 22, + ACTIONS(4790), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -475155,15 +473965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4406), 30, - sym__automatic_semicolon, + ACTIONS(4792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -475186,11 +473999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22792] = 3, + [21266] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4517), 25, + ACTIONS(4794), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -475201,9 +474014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -475216,16 +474028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4519), 31, - 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, @@ -475248,92 +474062,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22857] = 10, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8043), 1, - anon_sym_COLON, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - STATE(5118), 1, - sym_type_constraints, - STATE(5272), 1, - sym_function_body, - STATE(5357), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4087), 20, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [21332] = 4, + ACTIONS(6311), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4085), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [22936] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 25, + ACTIONS(4290), 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, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -475347,16 +474093,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4471), 31, - sym__automatic_semicolon, + ACTIONS(4293), 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, @@ -475379,15 +474126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23001] = 5, - ACTIONS(8049), 1, - anon_sym_COMMA, - STATE(4563), 1, - aux_sym__delegation_specifiers_repeat1, + [21400] = 4, + ACTIONS(6301), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 24, + ACTIONS(4304), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -475412,15 +474157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 30, + ACTIONS(4307), 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, @@ -475443,89 +474190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23070] = 10, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - ACTIONS(8051), 1, - anon_sym_COLON, - STATE(5091), 1, - sym_type_constraints, - STATE(5357), 1, - sym__block, - STATE(5391), 1, - sym_function_body, + [21468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4031), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [23149] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(5031), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4208), 22, + ACTIONS(4798), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -475534,6 +474205,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, @@ -475547,15 +474219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 30, - sym__automatic_semicolon, + ACTIONS(4800), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -475578,28 +474253,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23222] = 7, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - STATE(4840), 1, - sym_type_constraints, - STATE(5059), 1, - sym_enum_class_body, + [21534] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 22, + ACTIONS(4802), 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, @@ -475613,15 +474282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 30, - sym__automatic_semicolon, + ACTIONS(4804), 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, @@ -475644,20 +474316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23295] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(4939), 1, - sym_function_body, + [21600] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 22, + ACTIONS(4806), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -475666,6 +474331,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, @@ -475679,15 +474345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 30, - sym__automatic_semicolon, + ACTIONS(4808), 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, @@ -475710,84 +474379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23368] = 5, - ACTIONS(8053), 1, - sym__quest, - STATE(4767), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4237), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4235), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [23437] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(5034), 1, - sym_function_body, + [21666] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 22, + ACTIONS(4810), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -475796,6 +474394,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, @@ -475809,15 +474408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 30, - sym__automatic_semicolon, + 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, @@ -475840,84 +474442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23510] = 10, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - ACTIONS(8056), 1, - anon_sym_COLON, - STATE(5106), 1, - sym_type_constraints, - STATE(5324), 1, - sym_function_body, - STATE(5357), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4101), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4099), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [23589] = 5, - ACTIONS(8049), 1, - anon_sym_COMMA, - STATE(4762), 1, - aux_sym__delegation_specifiers_repeat1, + [21732] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4656), 24, + ACTIONS(4814), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -475942,15 +474471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4658), 30, + ACTIONS(4816), 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, @@ -475973,11 +474505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23658] = 3, + [21798] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 25, + ACTIONS(4822), 24, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -475988,9 +474520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -476003,16 +474534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4511), 31, - 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, @@ -476035,30 +474568,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23723] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5776), 1, - anon_sym_COLON, - STATE(4875), 1, - sym_type_constraints, - STATE(4962), 1, - sym_class_body, + [21864] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 22, + ACTIONS(4833), 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, @@ -476072,14 +474597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 29, - sym__automatic_semicolon, + ACTIONS(4835), 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, @@ -476102,19 +474631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23798] = 7, - ACTIONS(7924), 1, + [21930] = 6, + ACTIONS(4837), 1, anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(5032), 1, - sym_function_body, + ACTIONS(7995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 22, + ACTIONS(4839), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4826), 23, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -476124,6 +474655,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, @@ -476137,26 +474669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 30, - sym__automatic_semicolon, + ACTIONS(4828), 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_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, @@ -476168,20 +474697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23871] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, + [22002] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 22, + ACTIONS(3346), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -476190,6 +474712,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, @@ -476203,15 +474726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 30, - sym__automatic_semicolon, + ACTIONS(3360), 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, @@ -476234,20 +474760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23944] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, + [22068] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 22, + ACTIONS(4869), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -476256,6 +474775,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, @@ -476269,15 +474789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 30, - sym__automatic_semicolon, + ACTIONS(4871), 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, @@ -476300,31 +474823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24017] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, - STATE(5019), 1, - sym_type_constraints, + [22134] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 21, + ACTIONS(4865), 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, @@ -476338,14 +474852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, - sym__automatic_semicolon, + ACTIONS(4867), 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, @@ -476368,20 +474886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24094] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, + [22200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 22, + ACTIONS(1596), 24, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -476390,6 +474901,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, @@ -476403,15 +474915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 30, - sym__automatic_semicolon, + ACTIONS(1594), 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, @@ -476434,23 +474949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24167] = 3, + [22266] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4489), 25, + ACTIONS(4847), 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, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -476464,16 +474978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4491), 31, - sym__automatic_semicolon, + ACTIONS(4849), 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, @@ -476496,28 +475012,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24232] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, + [22332] = 8, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4901), 1, + ACTIONS(7940), 1, + anon_sym_EQ, + ACTIONS(8050), 1, + anon_sym_COLON, + STATE(4724), 1, sym__block, - STATE(4932), 1, + STATE(4725), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 22, + ACTIONS(4150), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -476531,14 +475049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 30, - sym__automatic_semicolon, + ACTIONS(4152), 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, @@ -476562,31 +475079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24305] = 10, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - ACTIONS(8058), 1, - anon_sym_COLON, - STATE(5107), 1, - sym_type_constraints, - STATE(5357), 1, - sym__block, - STATE(5371), 1, - sym_function_body, + [22407] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4049), 20, + ACTIONS(4450), 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, + sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -476601,9 +475108,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4047), 29, + ACTIONS(4448), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -476631,225 +475141,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [24384] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, + [22472] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4256), 30, + ACTIONS(4466), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + sym__quest, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [24457] = 7, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - STATE(4954), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4485), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4464), 32, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4487), 30, + [22537] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4225), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + sym__quest, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [24530] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4270), 25, - anon_sym_as, - anon_sym_EQ, + ACTIONS(4223), 32, 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, - sym__quest, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4272), 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, - [24595] = 10, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - ACTIONS(8060), 1, - anon_sym_COLON, - STATE(5127), 1, - sym_type_constraints, - STATE(5289), 1, - sym_function_body, - STATE(5357), 1, - sym__block, + [22602] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4043), 20, + ACTIONS(4488), 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, + sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -476864,9 +475294,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4041), 29, + ACTIONS(4486), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -476894,75 +475327,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [24674] = 5, - ACTIONS(8062), 1, - anon_sym_by, - STATE(4982), 1, - sym_value_arguments, + [22667] = 5, + ACTIONS(8052), 1, + sym__quest, + STATE(4760), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 23, - anon_sym_as, + ACTIONS(4246), 23, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4244), 31, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4416), 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, - [24743] = 3, + [22736] = 5, + ACTIONS(8055), 1, + sym__quest, + STATE(4762), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 24, + ACTIONS(4253), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -476972,7 +475409,6 @@ 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, @@ -476987,12 +475423,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4469), 32, + ACTIONS(4251), 31, anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -477020,11 +475455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [24808] = 3, + [22805] = 5, + ACTIONS(8057), 1, + sym__quest, + STATE(4760), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 24, + ACTIONS(4261), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -477034,7 +475473,6 @@ 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, @@ -477049,12 +475487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4489), 32, + ACTIONS(4259), 31, anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -477082,11 +475519,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [24873] = 3, + [22874] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8059), 1, + anon_sym_COLON, + STATE(4960), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 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, + [22945] = 4, + ACTIONS(4269), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 24, + ACTIONS(4267), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -477111,12 +475615,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4270), 32, + ACTIONS(4265), 31, anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -477144,21 +475647,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [24938] = 3, + [23012] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8061), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4513), 25, + ACTIONS(4402), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -477174,12 +475681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4515), 31, + ACTIONS(4404), 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, @@ -477206,30 +475712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25003] = 8, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(8064), 1, - anon_sym_COLON, - STATE(4689), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [23083] = 5, + ACTIONS(8063), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8065), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 22, + ACTIONS(4424), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -477243,13 +475744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 29, + ACTIONS(4426), 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, @@ -477273,11 +475776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25078] = 3, + [23152] = 5, + ACTIONS(8055), 1, + sym__quest, + STATE(4762), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4515), 24, + ACTIONS(4280), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -477287,7 +475794,6 @@ 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, @@ -477302,12 +475808,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4513), 32, + ACTIONS(4278), 31, anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -477335,30 +475840,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [25143] = 8, - ACTIONS(5403), 1, + [23221] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(5637), 1, + ACTIONS(8067), 1, anon_sym_COLON, - STATE(4885), 1, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(5000), 1, sym_type_constraints, - STATE(4917), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 22, + ACTIONS(4120), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -477366,66 +475874,68 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 29, - sym__automatic_semicolon, + ACTIONS(4122), 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, - [25218] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [23300] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(8066), 1, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + ACTIONS(8071), 1, anon_sym_COLON, - STATE(4868), 1, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4912), 1, sym_type_constraints, - STATE(5081), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 22, + ACTIONS(4102), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -477433,60 +475943,135 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 29, - sym__automatic_semicolon, + ACTIONS(4104), 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, - [25293] = 3, + [23379] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + ACTIONS(8073), 1, + anon_sym_COLON, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4919), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 25, + ACTIONS(4108), 20, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4110), 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, + [23458] = 8, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, anon_sym_EQ, + ACTIONS(8075), 1, + anon_sym_COLON, + STATE(4690), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 22, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -477499,15 +476084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4497), 31, - sym__automatic_semicolon, + ACTIONS(4158), 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, @@ -477531,24 +476114,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25358] = 3, + [23533] = 8, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + ACTIONS(8077), 1, + anon_sym_COLON, + STATE(4687), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 25, + ACTIONS(4162), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -477561,15 +476151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 31, - sym__automatic_semicolon, + ACTIONS(4164), 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, @@ -477593,28 +476181,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25423] = 7, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [23608] = 10, + ACTIONS(5127), 1, anon_sym_where, - STATE(4891), 1, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + ACTIONS(8079), 1, + anon_sym_COLON, + STATE(4643), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4936), 1, sym_type_constraints, - STATE(4990), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 22, + ACTIONS(4114), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -477622,62 +476215,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 30, - sym__automatic_semicolon, + ACTIONS(4116), 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, - [25496] = 10, - ACTIONS(5119), 1, + [23687] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(8069), 1, anon_sym_EQ, - ACTIONS(8068), 1, + ACTIONS(8081), 1, anon_sym_COLON, - STATE(4619), 1, + STATE(4656), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(4927), 1, + STATE(4954), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 20, + ACTIONS(4079), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -477698,7 +476289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 29, + ACTIONS(4081), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -477728,29 +476319,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25575] = 7, - ACTIONS(5399), 1, + [23766] = 10, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8083), 1, + anon_sym_COLON, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - ACTIONS(5403), 1, + STATE(5088), 1, + sym_type_constraints, + STATE(5275), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4120), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23845] = 10, + ACTIONS(5762), 1, anon_sym_where, - STATE(4868), 1, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + ACTIONS(8089), 1, + anon_sym_COLON, + STATE(5101), 1, sym_type_constraints, - STATE(5081), 1, - sym_class_body, + STATE(5293), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4102), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23924] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 22, + ACTIONS(4472), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -477763,11 +476487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 30, + 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, @@ -477794,26 +476519,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25648] = 7, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [23989] = 5, + ACTIONS(8091), 1, + anon_sym_COMMA, + STATE(4515), 1, + aux_sym__delegation_specifiers_repeat1, + 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, - STATE(4854), 1, - sym_type_constraints, - STATE(5059), 1, - sym_class_body, + anon_sym_DOT, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4654), 30, + 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, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24058] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 22, + ACTIONS(4448), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -477829,11 +476613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 30, + ACTIONS(4450), 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, @@ -477860,28 +476645,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25721] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [24123] = 10, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8070), 1, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + ACTIONS(8093), 1, anon_sym_COLON, - STATE(4891), 1, + STATE(5118), 1, sym_type_constraints, - STATE(4990), 1, - sym_class_body, + STATE(5324), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4110), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4108), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [24202] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4460), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4462), 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, + [24267] = 5, + ACTIONS(8091), 1, + anon_sym_COMMA, + STATE(4778), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4646), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4648), 30, + 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, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24336] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 22, + ACTIONS(4464), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -477897,13 +476870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 29, + ACTIONS(4466), 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, @@ -477927,28 +476902,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25796] = 8, - ACTIONS(5403), 1, + [24401] = 10, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - ACTIONS(5717), 1, + ACTIONS(8095), 1, anon_sym_COLON, - STATE(4876), 1, + STATE(5135), 1, sym_type_constraints, - STATE(4973), 1, - sym_enum_class_body, + STATE(5340), 1, + sym__block, + STATE(5352), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 22, + ACTIONS(4116), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4114), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [24480] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4223), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -477964,13 +477001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 29, + ACTIONS(4225), 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, @@ -477994,20 +477033,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25871] = 5, - ACTIONS(8072), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8074), 1, - anon_sym_L, + [24545] = 10, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + ACTIONS(8097), 1, + anon_sym_COLON, + STATE(5136), 1, + sym_type_constraints, + STATE(5340), 1, + sym__block, + STATE(5369), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4475), 23, - anon_sym_as, + ACTIONS(4081), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4079), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [24624] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5044), 1, + sym_type_constraints, + STATE(5054), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4318), 21, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -478026,15 +477140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4477), 31, + ACTIONS(4320), 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, @@ -478058,26 +477170,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25940] = 7, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - STATE(4856), 1, - sym_type_constraints, - STATE(5001), 1, - sym_enum_class_body, + [24701] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 22, + ACTIONS(4486), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -478093,11 +477200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 30, + ACTIONS(4488), 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, @@ -478124,23 +477232,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26013] = 9, - ACTIONS(5403), 1, + [24766] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, + ACTIONS(8026), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4949), 1, + STATE(5062), 1, sym_function_body, - STATE(4952), 1, + STATE(5077), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 21, + ACTIONS(4286), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -478162,7 +477270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 29, + ACTIONS(4288), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -478192,22 +477300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26090] = 6, - ACTIONS(5399), 1, + [24843] = 7, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8076), 1, - anon_sym_COLON, - STATE(4984), 1, - sym_class_body, + ACTIONS(5411), 1, + anon_sym_where, + STATE(4843), 1, + sym_type_constraints, + STATE(5061), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 23, + ACTIONS(4498), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -478226,7 +477335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4386), 30, + ACTIONS(4500), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -478257,22 +477366,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26161] = 6, - ACTIONS(5399), 1, + [24916] = 7, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8078), 1, - anon_sym_COLON, - STATE(4925), 1, - sym_class_body, + ACTIONS(5411), 1, + anon_sym_where, + STATE(4844), 1, + sym_type_constraints, + STATE(5078), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 23, + ACTIONS(4482), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -478291,7 +477401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 30, + ACTIONS(4484), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -478322,21 +477432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26232] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [24989] = 7, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5655), 1, - anon_sym_COLON, - STATE(4867), 1, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(4845), 1, sym_type_constraints, - STATE(4973), 1, + STATE(5073), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 22, + ACTIONS(4476), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -478359,13 +477467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 29, + ACTIONS(4478), 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, @@ -478389,19 +477498,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26307] = 7, - ACTIONS(5403), 1, + [25062] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4883), 1, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, + STATE(5075), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 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, + [25139] = 7, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + STATE(4846), 1, sym_type_constraints, - STATE(4934), 1, + STATE(5073), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4390), 22, + ACTIONS(4476), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -478424,7 +477601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4392), 30, + ACTIONS(4478), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -478455,33 +477632,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26380] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [25212] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - ACTIONS(8080), 1, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(8099), 1, anon_sym_COLON, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4965), 1, + STATE(4847), 1, sym_type_constraints, + STATE(5064), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 20, + ACTIONS(4326), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -478489,57 +477663,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(4328), 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, - [26459] = 8, - ACTIONS(7864), 1, + [25287] = 7, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(8082), 1, - anon_sym_COLON, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + ACTIONS(5411), 1, + anon_sym_where, + STATE(4847), 1, + sym_type_constraints, + STATE(5064), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 22, + ACTIONS(4326), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -478547,7 +477721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -478561,13 +477734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 29, + ACTIONS(4328), 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, @@ -478591,22 +477765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26534] = 8, - ACTIONS(7864), 1, + [25360] = 7, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - ACTIONS(8084), 1, - anon_sym_COLON, - STATE(4628), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + STATE(4848), 1, + sym_type_constraints, + STATE(5051), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4396), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -478614,7 +477787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -478628,13 +477800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(4398), 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, @@ -478658,87 +477831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26609] = 5, - ACTIONS(8041), 1, - sym__quest, - STATE(4756), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4322), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4320), 31, - anon_sym_by, + [25433] = 9, + ACTIONS(5411), 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [26678] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8086), 1, - anon_sym_COLON, - STATE(4856), 1, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5056), 1, sym_type_constraints, - STATE(5001), 1, - sym_enum_class_body, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 22, + ACTIONS(4102), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -478759,7 +477869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 29, + ACTIONS(4104), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -478789,87 +477899,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26753] = 4, - ACTIONS(4266), 1, - anon_sym_DASH_GT, + [25510] = 7, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + STATE(4849), 1, + sym_type_constraints, + STATE(5051), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4396), 22, + anon_sym_as, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4262), 31, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [26820] = 9, - ACTIONS(5403), 1, + ACTIONS(4398), 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, + [25583] = 7, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4930), 1, + STATE(4850), 1, sym_type_constraints, - STATE(4932), 1, - sym_function_body, + STATE(5049), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 21, + ACTIONS(4410), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -478890,13 +478000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 29, + ACTIONS(4412), 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, @@ -478920,33 +478031,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26897] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [25656] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - ACTIONS(8088), 1, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5745), 1, anon_sym_COLON, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(5002), 1, + STATE(4852), 1, sym_type_constraints, + STATE(5043), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 20, + ACTIONS(3196), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -478954,56 +478062,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(3200), 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, - [26976] = 8, - ACTIONS(5403), 1, + [25731] = 8, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(8090), 1, + ACTIONS(8101), 1, anon_sym_COLON, - STATE(4879), 1, + STATE(4855), 1, sym_type_constraints, - STATE(5081), 1, - sym_enum_class_body, + STATE(5028), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 22, + ACTIONS(4332), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479026,7 +478135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 29, + ACTIONS(4334), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -479056,19 +478165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27051] = 7, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [25806] = 7, + ACTIONS(5411), 1, anon_sym_where, - STATE(4896), 1, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(4855), 1, sym_type_constraints, - STATE(4951), 1, + STATE(5028), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 22, + ACTIONS(4332), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479091,7 +478200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 30, + ACTIONS(4334), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -479122,21 +478231,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27124] = 7, - ACTIONS(5403), 1, + [25879] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4890), 1, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5033), 1, sym_type_constraints, - STATE(4951), 1, - sym_enum_class_body, + STATE(5034), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 22, + ACTIONS(4108), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -479157,14 +478269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 30, + ACTIONS(4110), 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, @@ -479188,24 +478299,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27197] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + [25956] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4909), 1, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(8103), 1, + anon_sym_COLON, + STATE(4856), 1, sym_type_constraints, - STATE(4912), 1, - sym_function_body, + STATE(5028), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 21, + ACTIONS(4332), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -479226,7 +478336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(4334), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -479256,33 +478366,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27274] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [26031] = 7, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - ACTIONS(8092), 1, - anon_sym_COLON, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4908), 1, + ACTIONS(5411), 1, + anon_sym_where, + STATE(4856), 1, sym_type_constraints, + STATE(5028), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 20, + ACTIONS(4332), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -479290,54 +478395,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, + ACTIONS(4334), 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, - [27353] = 7, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, + [26104] = 7, + ACTIONS(5411), 1, anon_sym_where, - STATE(4895), 1, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(4857), 1, sym_type_constraints, - STATE(5026), 1, + STATE(4900), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 22, + ACTIONS(4468), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479360,7 +478467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4402), 30, + ACTIONS(4470), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -479391,24 +478498,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27426] = 9, - ACTIONS(5403), 1, + [26177] = 8, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, - STATE(5057), 1, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(4862), 1, sym_type_constraints, + STATE(4998), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 21, + ACTIONS(3204), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -479429,7 +478535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(3208), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -479459,19 +478565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27503] = 7, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, + [26252] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - STATE(4879), 1, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_COLON, + STATE(4865), 1, sym_type_constraints, - STATE(5081), 1, + STATE(4998), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 22, + ACTIONS(3204), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479494,14 +478602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 30, + ACTIONS(3208), 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, @@ -479525,19 +478632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27576] = 7, - ACTIONS(5403), 1, + [26327] = 8, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5409), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(4894), 1, + ACTIONS(8105), 1, + anon_sym_COLON, + STATE(4869), 1, sym_type_constraints, - STATE(4915), 1, - sym_enum_class_body, + STATE(4988), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4344), 22, + ACTIONS(4342), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479560,14 +478669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4346), 30, + ACTIONS(4344), 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, @@ -479591,31 +478699,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27649] = 9, - ACTIONS(5119), 1, + [26402] = 7, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4965), 1, + STATE(4869), 1, sym_type_constraints, + STATE(4988), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 20, + ACTIONS(4342), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -479623,48 +478728,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(4344), 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, - [27725] = 4, - STATE(4850), 1, - aux_sym__delegation_specifiers_repeat1, + [26475] = 5, + ACTIONS(8107), 1, + anon_sym_by, + STATE(5007), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 23, + ACTIONS(4525), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -479688,7 +478797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 31, + ACTIONS(4527), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -479720,17 +478829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27791] = 3, + [26544] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_COLON, + STATE(4876), 1, + sym_type_constraints, + STATE(4969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 24, - anon_sym_COLON, + ACTIONS(3190), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -479749,15 +478866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4599), 31, + ACTIONS(3194), 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, @@ -479781,295 +478896,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27855] = 9, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - STATE(5118), 1, - sym_type_constraints, - STATE(5272), 1, - sym_function_body, - STATE(5357), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4087), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4085), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [27931] = 8, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - ACTIONS(8094), 1, - anon_sym_COLON, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [26619] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 21, + ACTIONS(4494), 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_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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 29, + ACTIONS(4496), 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, - [28005] = 9, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, + [26684] = 7, + ACTIONS(7944), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(5091), 1, - sym_type_constraints, - STATE(5357), 1, + STATE(4923), 1, sym__block, - STATE(5391), 1, + STATE(4966), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4031), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4156), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [28081] = 9, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - STATE(5106), 1, - sym_type_constraints, - STATE(5324), 1, - sym_function_body, - STATE(5357), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4101), 20, + ACTIONS(4158), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4099), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [28157] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, + [26757] = 7, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4601), 1, - sym_function_body, - STATE(4690), 1, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4923), 1, sym__block, + STATE(5012), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 22, + ACTIONS(4438), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -480083,13 +479059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 29, + ACTIONS(4440), 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, @@ -480113,28 +479090,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28229] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, + [26830] = 7, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4690), 1, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4923), 1, sym__block, - STATE(4740), 1, + STATE(4925), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 22, + ACTIONS(4442), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -480148,13 +479125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 29, + ACTIONS(4444), 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, @@ -480178,31 +479156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28301] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, + [26903] = 7, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4923), 1, sym__block, - STATE(5002), 1, - sym_type_constraints, + STATE(5054), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 20, + ACTIONS(4318), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -480210,52 +479185,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(4320), 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, - [28377] = 5, - ACTIONS(5399), 1, + [26976] = 7, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4966), 1, - sym_class_body, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 23, + ACTIONS(4108), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480277,7 +479257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4595), 30, + ACTIONS(4110), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -480308,14 +479288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28445] = 3, + [27049] = 7, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4615), 24, - anon_sym_COLON, + ACTIONS(4120), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480337,12 +479323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4617), 31, + ACTIONS(4122), 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, @@ -480369,84 +479354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28509] = 9, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8045), 1, + [27122] = 7, + ACTIONS(7944), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(5140), 1, - sym_type_constraints, - STATE(5319), 1, - sym_function_body, - STATE(5357), 1, + STATE(4923), 1, sym__block, + STATE(5062), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4258), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [28585] = 5, - ACTIONS(8096), 1, - anon_sym_COMMA, - STATE(4839), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4462), 23, + ACTIONS(4286), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480468,14 +479389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4464), 30, + ACTIONS(4288), 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, @@ -480499,17 +479420,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28653] = 5, - ACTIONS(5409), 1, + [27195] = 7, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(4951), 1, - sym_enum_class_body, + STATE(4923), 1, + sym__block, + STATE(5006), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 23, + ACTIONS(4114), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480531,7 +479455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 30, + ACTIONS(4116), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -480562,14 +479486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28721] = 3, + [27268] = 7, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4923), 1, + sym__block, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4611), 24, - anon_sym_COLON, + ACTIONS(4102), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480591,12 +479521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4613), 31, + ACTIONS(4104), 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, @@ -480623,15 +479552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28785] = 5, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(4962), 1, - sym_class_body, + [27341] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 23, + ACTIONS(4502), 25, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -480643,6 +479568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -480655,11 +479582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 30, + ACTIONS(4504), 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, @@ -480686,14 +479614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28853] = 3, + [27406] = 7, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4923), 1, + sym__block, + STATE(5040), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4537), 24, - anon_sym_COLON, + ACTIONS(4452), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -480715,12 +479649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4539), 31, + ACTIONS(4454), 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, @@ -480747,24 +479680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28917] = 8, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - ACTIONS(8099), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5063), 1, - sym_function_body, + [27479] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 21, + ACTIONS(4605), 24, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -480783,13 +479709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(4607), 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, @@ -480813,22 +479741,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28991] = 3, + [27543] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(5000), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4666), 24, - anon_sym_COLON, + ACTIONS(4120), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -480836,61 +479773,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4668), 31, - sym__automatic_semicolon, + ACTIONS(4122), 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, - [29055] = 9, - ACTIONS(5653), 1, + [27619] = 9, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8045), 1, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(5113), 1, + STATE(5118), 1, sym_type_constraints, - STATE(5328), 1, + STATE(5324), 1, sym_function_body, - STATE(5357), 1, + STATE(5340), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, + ACTIONS(4110), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -480911,7 +479845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4254), 29, + ACTIONS(4108), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -480941,26 +479875,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [29131] = 7, - ACTIONS(7864), 1, + [27695] = 8, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, + ACTIONS(8069), 1, anon_sym_EQ, - STATE(4690), 1, + ACTIONS(8109), 1, + anon_sym_COLON, + STATE(4724), 1, sym__block, - STATE(4691), 1, + STATE(4725), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 22, + ACTIONS(4150), 21, 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, @@ -480970,55 +479906,121 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 29, + ACTIONS(4152), 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, - [29203] = 7, - ACTIONS(7864), 1, + [27769] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, + STATE(5101), 1, + sym_type_constraints, + STATE(5293), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4102), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [27845] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4591), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 22, + ACTIONS(4452), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -481041,7 +480043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 29, + ACTIONS(4454), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481071,19 +480073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29275] = 7, - ACTIONS(7864), 1, + [27917] = 8, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, + ACTIONS(8026), 1, anon_sym_EQ, - STATE(4573), 1, - sym_function_body, - STATE(4690), 1, + ACTIONS(8111), 1, + anon_sym_COLON, + STATE(4923), 1, sym__block, + STATE(4966), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 22, + ACTIONS(4156), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -481092,7 +480096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481106,13 +480109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 29, + ACTIONS(4158), 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, @@ -481136,25 +480139,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29347] = 5, - ACTIONS(8101), 1, - anon_sym_COMMA, - STATE(4850), 1, - aux_sym__delegation_specifiers_repeat1, + [27991] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4594), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4625), 23, + ACTIONS(4318), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481168,14 +480174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4627), 30, - sym__automatic_semicolon, + ACTIONS(4320), 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, @@ -481199,29 +480204,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29415] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [28063] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(7940), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4596), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(5042), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 20, + ACTIONS(4286), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -481231,63 +480233,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 29, + ACTIONS(4288), 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, - [29491] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [28135] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 22, + ACTIONS(4577), 24, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481301,13 +480298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(4579), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -481331,21 +480330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29563] = 8, - ACTIONS(7926), 1, + [28199] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, + ACTIONS(7940), 1, anon_sym_EQ, - ACTIONS(8104), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5031), 1, + STATE(4603), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 21, + ACTIONS(4120), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -481354,6 +480351,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, @@ -481367,13 +480365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 29, - sym__automatic_semicolon, + ACTIONS(4122), 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, @@ -481397,15 +480395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29637] = 5, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(4951), 1, - sym_class_body, + [28271] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 23, + ACTIONS(4601), 24, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -481429,11 +480424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 30, + ACTIONS(4603), 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, @@ -481460,22 +480456,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29705] = 3, + [28335] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 24, + ACTIONS(4102), 22, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481489,15 +480491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 31, - sym__automatic_semicolon, + ACTIONS(4104), 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, @@ -481521,25 +480521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29769] = 5, - ACTIONS(5409), 1, + [28407] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(4915), 1, - sym_enum_class_body, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4344), 23, + ACTIONS(4108), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481553,14 +480556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4346), 30, - sym__automatic_semicolon, + ACTIONS(4110), 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, @@ -481584,19 +480586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29837] = 7, - ACTIONS(7864), 1, + [28479] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, + ACTIONS(7940), 1, anon_sym_EQ, - STATE(4653), 1, + STATE(4643), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 22, + ACTIONS(4114), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -481619,7 +480621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, + ACTIONS(4116), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481649,145 +480651,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29909] = 5, - ACTIONS(8106), 1, - anon_sym_COMMA, - STATE(4898), 1, - aux_sym__delegation_specifiers_repeat1, + [28551] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5088), 1, + sym_type_constraints, + STATE(5275), 1, + sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4656), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4122), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4120), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4658), 30, + [28627] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5092), 1, + sym_type_constraints, + STATE(5286), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4288), 20, 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_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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [29977] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4908), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4031), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4286), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4033), 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, - [30053] = 5, - ACTIONS(5399), 1, + [28703] = 5, + ACTIONS(5405), 1, anon_sym_LBRACE, - STATE(4902), 1, - sym_class_body, + STATE(5050), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4680), 23, + ACTIONS(4619), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -481811,7 +480817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4682), 30, + ACTIONS(4621), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -481842,12 +480848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30121] = 3, + [28771] = 5, + ACTIONS(5405), 1, + anon_sym_LBRACE, + STATE(5061), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4529), 24, - anon_sym_COLON, + ACTIONS(4498), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -481871,12 +480880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4531), 31, + ACTIONS(4500), 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, @@ -481903,28 +480911,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30185] = 7, - ACTIONS(7864), 1, + [28839] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + STATE(5082), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 22, + ACTIONS(4623), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481938,13 +480943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(4625), 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, @@ -481968,28 +480974,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30257] = 7, - ACTIONS(7864), 1, + [28907] = 5, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4716), 1, - sym_function_body, + STATE(5082), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 22, + ACTIONS(4623), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482003,13 +481006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 29, + ACTIONS(4625), 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, @@ -482033,14 +481037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30329] = 3, + [28975] = 5, + ACTIONS(5405), 1, + anon_sym_LBRACE, + STATE(5078), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 24, + ACTIONS(4482), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482062,12 +481069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4244), 31, + ACTIONS(4484), 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, @@ -482094,15 +481100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30393] = 5, - ACTIONS(5409), 1, + [29043] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(4917), 1, - sym_enum_class_body, + STATE(5073), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 23, + ACTIONS(4476), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482126,7 +481132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 30, + ACTIONS(4478), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -482157,13 +481163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30461] = 4, - ACTIONS(8062), 1, - anon_sym_by, + [29111] = 5, + ACTIONS(5405), 1, + anon_sym_LBRACE, + STATE(5073), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 23, + ACTIONS(4476), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482187,12 +481195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 31, + ACTIONS(4478), 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, @@ -482219,15 +481226,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30527] = 5, - ACTIONS(5399), 1, + [29179] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(5081), 1, + STATE(5068), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(4642), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4644), 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, + [29247] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4656), 24, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482251,11 +481318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 30, + ACTIONS(4658), 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, @@ -482282,15 +481350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30595] = 5, - ACTIONS(5399), 1, + [29311] = 5, + ACTIONS(5405), 1, anon_sym_LBRACE, - STATE(5059), 1, - sym_class_body, + STATE(5064), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 23, + ACTIONS(4326), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482314,7 +481382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 30, + ACTIONS(4328), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -482345,12 +481413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30663] = 3, + [29379] = 4, + STATE(4863), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4521), 24, - anon_sym_COLON, + ACTIONS(4652), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482374,7 +481443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4523), 31, + ACTIONS(4654), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -482406,30 +481475,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30727] = 8, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, + [29445] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(8108), 1, - anon_sym_COLON, - STATE(4628), 1, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5095), 1, + sym_type_constraints, + STATE(5291), 1, sym_function_body, - STATE(4690), 1, + STATE(5340), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 21, + ACTIONS(4320), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4318), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [29521] = 5, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(5051), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4396), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482437,48 +481568,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 29, + ACTIONS(4398), 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, - [30801] = 4, - ACTIONS(8110), 1, - anon_sym_L, + [29589] = 5, + ACTIONS(5405), 1, + anon_sym_LBRACE, + STATE(5051), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4638), 23, + ACTIONS(4396), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482502,12 +481637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4640), 31, + ACTIONS(4398), 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, @@ -482534,12 +481668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30867] = 3, + [29657] = 5, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(5049), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4585), 24, - anon_sym_COLON, + ACTIONS(4410), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482563,12 +481700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4587), 31, + ACTIONS(4412), 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, @@ -482595,15 +481731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30931] = 5, - ACTIONS(8112), 1, + [29725] = 5, + ACTIONS(8113), 1, anon_sym_COMMA, - STATE(4882), 1, + STATE(4858), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4440), 23, + ACTIONS(4506), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482627,7 +481763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4442), 30, + ACTIONS(4508), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -482658,31 +481794,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30999] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4573), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(4983), 1, - sym_type_constraints, + [29793] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 20, + ACTIONS(4702), 24, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482690,50 +481817,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 29, + ACTIONS(4704), 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, - [31075] = 5, - ACTIONS(5399), 1, + [29857] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(4990), 1, + STATE(5045), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(4686), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482757,7 +481887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 30, + ACTIONS(4688), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -482788,15 +481918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31143] = 5, - ACTIONS(5409), 1, + [29925] = 5, + ACTIONS(5405), 1, anon_sym_LBRACE, - STATE(5081), 1, + STATE(5043), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(3196), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -482820,7 +481950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 30, + ACTIONS(3200), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -482851,14 +481981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31211] = 3, + [29993] = 5, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(5028), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4619), 24, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482880,12 +482013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4621), 31, + ACTIONS(4334), 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, @@ -482912,28 +482044,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31275] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(7941), 1, - anon_sym_EQ, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [30061] = 5, + ACTIONS(8116), 1, + anon_sym_COMMA, + STATE(4863), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 22, + ACTIONS(4635), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482947,13 +482076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 29, + ACTIONS(4637), 30, + 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, @@ -482977,15 +482107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31347] = 5, - ACTIONS(5409), 1, + [30129] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(5059), 1, - sym_enum_class_body, + STATE(4998), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 23, + ACTIONS(3204), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483009,7 +482139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 30, + ACTIONS(3208), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483040,15 +482170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31415] = 5, - ACTIONS(5409), 1, + [30197] = 5, + ACTIONS(5405), 1, anon_sym_LBRACE, - STATE(4973), 1, + STATE(5028), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 23, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483072,7 +482202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 30, + ACTIONS(4334), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483103,11 +482233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31483] = 3, + [30265] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4686), 24, + ACTIONS(4597), 24, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -483132,7 +482262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4688), 31, + ACTIONS(4599), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483164,15 +482294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31547] = 5, - ACTIONS(8112), 1, + [30329] = 5, + ACTIONS(8119), 1, anon_sym_COMMA, - STATE(4839), 1, + STATE(4858), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 23, + ACTIONS(4521), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483196,7 +482326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4456), 30, + ACTIONS(4523), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483227,74 +482357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31615] = 5, - ACTIONS(5409), 1, - anon_sym_LBRACE, - STATE(4950), 1, - sym_enum_class_body, + [30397] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4672), 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, - [31683] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4648), 24, + ACTIONS(4615), 24, anon_sym_COLON, anon_sym_as, anon_sym_EQ, @@ -483319,7 +482386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4650), 31, + ACTIONS(4617), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483351,78 +482418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31747] = 5, - ACTIONS(5409), 1, + [30461] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(5001), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4229), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4231), 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, - [31815] = 5, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(5015), 1, + STATE(4900), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4533), 23, + ACTIONS(4468), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483446,7 +482450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4535), 30, + ACTIONS(4470), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483477,21 +482481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31883] = 8, - ACTIONS(7926), 1, + [30529] = 8, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, + ACTIONS(8026), 1, anon_sym_EQ, - ACTIONS(8114), 1, + ACTIONS(8121), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4919), 1, + STATE(4922), 1, sym_function_body, + STATE(4923), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 21, + ACTIONS(4150), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -483513,7 +482517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 29, + ACTIONS(4152), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483543,86 +482547,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31957] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4589), 24, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + [30603] = 9, + ACTIONS(5127), 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4591), 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, - [32021] = 8, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(8069), 1, anon_sym_EQ, - ACTIONS(8116), 1, - anon_sym_COLON, - STATE(4689), 1, + STATE(4594), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, + STATE(4990), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 21, + ACTIONS(4318), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -483640,7 +482584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 29, + ACTIONS(4320), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483670,15 +482614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32095] = 5, - ACTIONS(5409), 1, + [30679] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(4996), 1, - sym_enum_class_body, + STATE(5003), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 23, + ACTIONS(4662), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483702,7 +482646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 30, + ACTIONS(4664), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483733,15 +482677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32163] = 5, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(5026), 1, - sym_class_body, + [30747] = 5, + ACTIONS(8123), 1, + anon_sym_COMMA, + STATE(4863), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 23, + ACTIONS(4652), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483765,14 +482709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4402), 30, + ACTIONS(4654), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -483796,15 +482740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32231] = 5, - ACTIONS(5399), 1, + [30815] = 5, + ACTIONS(5405), 1, anon_sym_LBRACE, - STATE(4973), 1, - sym_class_body, + STATE(4998), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 23, + ACTIONS(3204), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483828,7 +482772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 30, + ACTIONS(3208), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483859,27 +482803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32299] = 6, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8118), 1, - anon_sym_COLON, - STATE(4658), 1, - sym_class_body, + [30883] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 23, + ACTIONS(4251), 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, @@ -483893,13 +482832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 29, + ACTIONS(4253), 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, @@ -483923,15 +482864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32369] = 5, - ACTIONS(5409), 1, + [30947] = 5, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(4934), 1, - sym_enum_class_body, + STATE(4988), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4390), 23, + ACTIONS(4342), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -483955,7 +482896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4392), 30, + ACTIONS(4344), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -483986,15 +482927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32437] = 5, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(5078), 1, - sym_class_body, + [31015] = 4, + ACTIONS(8125), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4404), 23, + ACTIONS(4708), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484018,11 +482957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4406), 30, + ACTIONS(4710), 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, @@ -484049,15 +482989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32505] = 5, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(4996), 1, - sym_class_body, + [31081] = 5, + ACTIONS(8119), 1, + anon_sym_COMMA, + STATE(4867), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 23, + ACTIONS(4515), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484081,14 +483021,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 30, + ACTIONS(4517), 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, @@ -484112,27 +483052,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32573] = 6, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8120), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_class_body, + [31149] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 23, + ACTIONS(4698), 24, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484146,13 +483081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4386), 29, + ACTIONS(4700), 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, @@ -484176,15 +483113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32643] = 5, - ACTIONS(8106), 1, - anon_sym_COMMA, - STATE(4850), 1, - aux_sym__delegation_specifiers_repeat1, + [31213] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 23, + ACTIONS(4682), 24, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484208,7 +483142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 30, + ACTIONS(4684), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -484216,6 +483150,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, @@ -484239,81 +483174,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32711] = 8, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, + [31277] = 8, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(5930), 1, + ACTIONS(8026), 1, + anon_sym_EQ, + ACTIONS(8127), 1, anon_sym_COLON, - STATE(5238), 1, - sym_type_constraints, - STATE(5296), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3200), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3196), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [32784] = 3, + STATE(4923), 1, + sym__block, + STATE(4992), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5059), 23, + ACTIONS(4162), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -484332,15 +483210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5061), 31, + ACTIONS(4164), 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, @@ -484364,11 +483240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32847] = 3, + [31351] = 4, + ACTIONS(8107), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4822), 23, + ACTIONS(4525), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484392,7 +483270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4824), 31, + ACTIONS(4527), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -484424,11 +483302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32910] = 3, + [31417] = 5, + ACTIONS(8123), 1, + anon_sym_COMMA, + STATE(4873), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4999), 23, + ACTIONS(4646), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484452,7 +483334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5001), 31, + ACTIONS(4648), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -484460,7 +483342,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, @@ -484484,21 +483365,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32973] = 3, + [31485] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4596), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4977), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4814), 23, + ACTIONS(4286), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484506,49 +483397,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4816), 31, - sym__automatic_semicolon, + ACTIONS(4288), 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, - [33036] = 3, + [31561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4786), 23, + ACTIONS(4627), 24, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -484572,7 +483461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4788), 31, + ACTIONS(4629), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -484604,23 +483493,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33099] = 4, - ACTIONS(8122), 1, - anon_sym_LPAREN, + [31625] = 8, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + ACTIONS(8129), 1, + anon_sym_COLON, + STATE(4687), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 23, + ACTIONS(4162), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484628,58 +483524,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 30, - sym__automatic_semicolon, + ACTIONS(4164), 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, - [33164] = 3, + [31699] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4912), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4943), 23, + ACTIONS(4102), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484687,59 +483591,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4945), 31, - sym__automatic_semicolon, + ACTIONS(4104), 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, - [33227] = 3, + [31775] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4681), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4855), 23, + ACTIONS(4442), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484753,15 +483661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4857), 31, - sym__automatic_semicolon, + ACTIONS(4444), 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, @@ -484785,19 +483691,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33290] = 7, - ACTIONS(7864), 1, + [31847] = 8, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(8069), 1, anon_sym_EQ, - STATE(4580), 1, - sym_function_body, + ACTIONS(8131), 1, + anon_sym_COLON, STATE(4690), 1, + sym_function_body, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 21, + ACTIONS(4156), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -484819,7 +483727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(4158), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484849,19 +483757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33361] = 7, - ACTIONS(7926), 1, + [31921] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, + ACTIONS(7940), 1, anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4932), 1, + STATE(4690), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 21, + ACTIONS(4156), 22, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -484870,6 +483778,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, @@ -484883,13 +483792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 29, - sym__automatic_semicolon, + ACTIONS(4158), 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, @@ -484913,21 +483822,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33432] = 3, + [31993] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(4919), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4108), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4110), 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, + [32069] = 6, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(8133), 1, + anon_sym_COLON, + STATE(4661), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4879), 23, + ACTIONS(4390), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484941,15 +483923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4881), 31, - sym__automatic_semicolon, + ACTIONS(4392), 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, @@ -484973,28 +483953,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33495] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4601), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [32139] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 21, + ACTIONS(4581), 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, @@ -485002,46 +483976,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 29, + ACTIONS(4583), 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, - [33566] = 3, + [32203] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 23, + ACTIONS(4674), 24, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485065,7 +484043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 31, + ACTIONS(4676), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485097,13 +484075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33629] = 4, - ACTIONS(8124), 1, - anon_sym_LPAREN, + [32267] = 5, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(4969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 23, + ACTIONS(3190), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485127,13 +484107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 30, + ACTIONS(3194), 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, @@ -485158,15 +484138,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33694] = 3, + [32335] = 6, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(8135), 1, + anon_sym_COLON, + STATE(4653), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4939), 23, + ACTIONS(4402), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4404), 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, + [32405] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(7940), 1, + anon_sym_EQ, + STATE(4684), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4438), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4440), 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, + [32477] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4593), 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, @@ -485186,7 +484296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4941), 31, + ACTIONS(4595), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485218,11 +484328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33757] = 3, + [32541] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4390), 23, + ACTIONS(207), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485246,7 +484356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4392), 31, + ACTIONS(205), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485278,11 +484388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33820] = 3, + [32604] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1770), 23, + ACTIONS(4410), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485306,7 +484416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1772), 31, + ACTIONS(4412), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485338,11 +484448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33883] = 3, + [32667] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 23, + ACTIONS(4794), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485366,7 +484476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 31, + ACTIONS(4796), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485398,13 +484508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33946] = 4, - ACTIONS(8126), 1, - anon_sym_else, + [32730] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 22, + ACTIONS(4790), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485415,6 +484523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -485459,11 +484568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34011] = 3, + [32793] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 23, + ACTIONS(3912), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485487,7 +484596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5091), 31, + ACTIONS(3914), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485519,22 +484628,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34074] = 6, - ACTIONS(4875), 1, - anon_sym_EQ, - ACTIONS(8128), 1, - anon_sym_COLON_COLON, + [32856] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4877), 5, + ACTIONS(4957), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4959), 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, - ACTIONS(4840), 22, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32919] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4786), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485556,7 +484716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 25, + ACTIONS(4788), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485571,6 +484731,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, @@ -485582,11 +484748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34143] = 3, + [32982] = 4, + ACTIONS(8137), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4517), 23, + ACTIONS(4298), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485610,14 +484778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4519), 31, + ACTIONS(4296), 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, @@ -485642,11 +484809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34206] = 3, + [33047] = 4, + ACTIONS(8139), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5017), 23, + ACTIONS(4312), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485670,14 +484839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5019), 31, + ACTIONS(4310), 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, @@ -485702,11 +484870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34269] = 3, + [33112] = 4, + ACTIONS(8141), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1778), 23, + ACTIONS(4841), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485730,14 +484900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1780), 31, + ACTIONS(4843), 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, @@ -485762,11 +484931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34332] = 3, + [33177] = 4, + ACTIONS(8143), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4023), 23, + ACTIONS(4859), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485790,14 +484961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4025), 31, + ACTIONS(4861), 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, @@ -485822,11 +484992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34395] = 3, + [33242] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5025), 23, + ACTIONS(4782), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -485850,7 +485020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5027), 31, + ACTIONS(4784), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -485882,22 +485052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34458] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5032), 1, - sym_function_body, + [33305] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 21, + ACTIONS(4778), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -485916,13 +485080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 29, + ACTIONS(4780), 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, @@ -485946,19 +485112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34529] = 7, - ACTIONS(7864), 1, + [33368] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(8069), 1, anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4716), 1, + STATE(4603), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 21, + ACTIONS(4120), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -485980,7 +485146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 29, + ACTIONS(4122), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486010,13 +485176,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34600] = 4, - ACTIONS(8128), 1, + [33439] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4774), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4776), 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, + [33502] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4840), 23, + ACTIONS(4893), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486040,7 +485264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 30, + ACTIONS(4895), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486055,6 +485279,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, @@ -486071,21 +485296,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34665] = 8, - ACTIONS(5119), 1, + [33565] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4770), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5159), 1, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4772), 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, + [33628] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5928), 1, + ACTIONS(8145), 1, anon_sym_COLON, - STATE(4514), 1, + STATE(4537), 1, sym_type_constraints, - STATE(4697), 1, - sym_class_body, + STATE(4610), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 20, + ACTIONS(4326), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -486106,7 +485391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 29, + ACTIONS(4328), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486136,22 +485421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34738] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, + [33701] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 21, + ACTIONS(4949), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -486170,13 +485449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 29, + ACTIONS(4951), 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, @@ -486200,11 +485481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34809] = 3, + [33764] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3969), 23, + ACTIONS(4967), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486228,7 +485509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3971), 31, + ACTIONS(4969), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486260,21 +485541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34872] = 3, + [33827] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 23, + ACTIONS(4102), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -486282,58 +485570,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 31, - sym__automatic_semicolon, + ACTIONS(4104), 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, - [34935] = 3, + [33898] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8147), 1, + anon_sym_COLON, + STATE(5200), 1, + sym_type_constraints, + STATE(5361), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 23, + ACTIONS(4344), 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_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -486348,9 +485640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4619), 31, - anon_sym_by, - anon_sym_where, + ACTIONS(4342), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -486380,71 +485670,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34998] = 3, + [33971] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8149), 1, + anon_sym_COLON, + STATE(5235), 1, + sym_type_constraints, + STATE(5331), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4334), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4332), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4672), 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, - [35061] = 3, + [34044] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5063), 23, + ACTIONS(4766), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486468,7 +485763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5065), 31, + ACTIONS(4768), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486500,11 +485795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35124] = 3, + [34107] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5013), 23, + ACTIONS(4973), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486528,7 +485823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5015), 31, + ACTIONS(4975), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486560,20 +485855,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35187] = 3, + [34170] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8151), 1, + anon_sym_COLON, + STATE(5228), 1, + sym_type_constraints, + STATE(5331), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 23, + ACTIONS(4334), 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_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -486588,9 +485890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4242), 31, - anon_sym_by, - anon_sym_where, + ACTIONS(4332), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -486620,11 +485920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35250] = 3, + [34243] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4895), 23, + ACTIONS(4921), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486648,7 +485948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4897), 31, + ACTIONS(4923), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486680,11 +485980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35313] = 3, + [34306] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 23, + ACTIONS(4762), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486708,7 +486008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 31, + ACTIONS(4764), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486740,21 +486040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35376] = 3, + [34369] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4684), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4883), 23, + ACTIONS(4438), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -486762,51 +486069,108 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4885), 31, - sym__automatic_semicolon, + ACTIONS(4440), 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, - [35439] = 4, - ACTIONS(8131), 1, + [34440] = 5, + ACTIONS(6987), 1, + anon_sym_by, + STATE(5191), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 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, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4525), 30, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [34507] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 23, + ACTIONS(4035), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486830,13 +486194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 30, + ACTIONS(4037), 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, @@ -486861,21 +486226,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35504] = 3, + [34570] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5981), 1, + anon_sym_COLON, + STATE(4550), 1, + sym_type_constraints, + STATE(4628), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3082), 23, + ACTIONS(3196), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -486883,49 +486256,111 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3084), 31, - sym__automatic_semicolon, + ACTIONS(3200), 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, + [34643] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(4549), 1, + sym_type_constraints, + STATE(4626), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4332), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4334), 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, - [35567] = 3, + [34716] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5009), 23, + ACTIONS(4758), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -486949,7 +486384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5011), 31, + ACTIONS(4760), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486981,15 +486416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35630] = 5, - ACTIONS(8126), 1, - anon_sym_else, - ACTIONS(8133), 1, - anon_sym_SEMI, + [34779] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 22, + ACTIONS(4754), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487000,6 +486431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -487012,7 +486444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 30, + ACTIONS(4756), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487021,6 +486453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487043,11 +486476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35697] = 3, + [34842] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1784), 23, + ACTIONS(4985), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487071,7 +486504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1786), 31, + ACTIONS(4987), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487103,21 +486536,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35760] = 3, + [34905] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4681), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 23, + ACTIONS(4442), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487125,59 +486565,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 31, - sym__automatic_semicolon, + ACTIONS(4444), 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, - [35823] = 3, + [34976] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3338), 23, + ACTIONS(4108), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487185,49 +486629,46 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3340), 31, - sym__automatic_semicolon, + ACTIONS(4110), 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, - [35886] = 3, + [35047] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 23, + ACTIONS(4933), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487251,7 +486692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 31, + ACTIONS(4935), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487283,11 +486724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35949] = 3, + [35110] = 4, + ACTIONS(8155), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 23, + ACTIONS(4826), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487311,7 +486754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 31, + ACTIONS(4828), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487326,7 +486769,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, @@ -487343,11 +486785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36012] = 3, + [35175] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4921), 23, + ACTIONS(4885), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487371,7 +486813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4923), 31, + ACTIONS(4887), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487403,11 +486845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36075] = 3, + [35238] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 23, + ACTIONS(4945), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487431,7 +486873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 31, + ACTIONS(4947), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487463,22 +486905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36138] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4954), 1, - sym_function_body, + [35301] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 21, + ACTIONS(3878), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -487497,13 +486933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 29, + ACTIONS(3880), 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, @@ -487527,21 +486965,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36209] = 3, + [35364] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(8158), 1, + anon_sym_COLON, + STATE(4524), 1, + sym_type_constraints, + STATE(4626), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4913), 23, + ACTIONS(4332), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487549,49 +486995,46 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4915), 31, - sym__automatic_semicolon, + ACTIONS(4334), 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, - [36272] = 3, + [35437] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4909), 23, + ACTIONS(2988), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487615,7 +487058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4911), 31, + ACTIONS(2990), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487647,11 +487090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36335] = 3, + [35500] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 23, + ACTIONS(4746), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487675,7 +487118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4780), 31, + ACTIONS(4748), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487707,136 +487150,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36398] = 3, + [35563] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5961), 1, + anon_sym_COLON, + STATE(5231), 1, + sym_type_constraints, + STATE(5317), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4995), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4997), 31, + ACTIONS(3200), 20, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [36461] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5940), 1, - anon_sym_COLON, - STATE(4524), 1, - sym_type_constraints, - STATE(4697), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3186), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3196), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3190), 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, - [36534] = 3, + [35636] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5037), 23, + ACTIONS(4941), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -487860,7 +487243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5039), 31, + ACTIONS(4943), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -487892,81 +487275,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36597] = 8, - ACTIONS(5113), 1, + [35699] = 6, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(8135), 1, + ACTIONS(8160), 1, anon_sym_COLON, - STATE(4544), 1, - sym_type_constraints, - STATE(4638), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4229), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_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_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, - [36670] = 3, + STATE(4960), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4770), 23, + ACTIONS(4390), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -487985,15 +487308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4772), 31, + ACTIONS(4392), 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, @@ -488017,11 +487338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36733] = 3, + [35768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4005), 23, + ACTIONS(4929), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488045,7 +487366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4007), 31, + ACTIONS(4931), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488077,11 +487398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36796] = 3, + [35831] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(4734), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488105,7 +487426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 31, + ACTIONS(4736), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488137,23 +487458,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36859] = 7, - ACTIONS(7864), 1, + [35894] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4740), 1, - sym_function_body, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5911), 1, + anon_sym_COLON, + STATE(4548), 1, + sym_type_constraints, + STATE(4649), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 21, + ACTIONS(3204), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -488171,7 +487493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 29, + ACTIONS(3208), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488201,11 +487523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36930] = 3, + [35967] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4802), 23, + ACTIONS(3074), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488229,7 +487551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4804), 31, + ACTIONS(3076), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488261,28 +487583,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36993] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4573), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [36030] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 21, + ACTIONS(4730), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488290,46 +487605,49 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 29, + ACTIONS(4732), 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, - [37064] = 3, + [36093] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4969), 23, + ACTIONS(3190), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488353,7 +487671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4971), 31, + ACTIONS(3194), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488385,21 +487703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37127] = 3, + [36156] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4643), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5075), 23, + ACTIONS(4114), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488407,49 +487732,46 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5077), 31, - sym__automatic_semicolon, + ACTIONS(4116), 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, - [37190] = 3, + [36227] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4806), 23, + ACTIONS(3264), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488473,7 +487795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4808), 31, + ACTIONS(3266), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488505,13 +487827,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37253] = 3, + [36290] = 5, + ACTIONS(4774), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4766), 23, + ACTIONS(4776), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4494), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -488533,7 +487862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4768), 31, + ACTIONS(4496), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488549,11 +487878,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, @@ -488565,11 +487889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37316] = 3, + [36357] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 23, + ACTIONS(4525), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488593,7 +487917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 31, + ACTIONS(4527), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488625,71 +487949,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37379] = 3, + [36420] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5953), 1, + anon_sym_COLON, + STATE(5206), 1, + sym_type_constraints, + STATE(5358), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3029), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(3208), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3204), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3031), 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, - [37442] = 3, + [36493] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4887), 23, + ACTIONS(4798), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488713,7 +488042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4889), 31, + ACTIONS(4800), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488745,11 +488074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37505] = 3, + [36556] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 23, + ACTIONS(4953), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488773,7 +488102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 31, + ACTIONS(4955), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488805,11 +488134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37568] = 3, + [36619] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4977), 23, + ACTIONS(4720), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488833,7 +488162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4979), 31, + ACTIONS(4722), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488865,11 +488194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37631] = 3, + [36682] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4905), 23, + ACTIONS(4502), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -488893,7 +488222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4907), 31, + ACTIONS(4504), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488925,16 +488254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37694] = 3, + [36745] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8162), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 23, + ACTIONS(4402), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -488953,15 +488287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 31, + ACTIONS(4404), 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, @@ -488985,11 +488317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37757] = 3, + [36814] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4973), 23, + ACTIONS(4925), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489013,7 +488345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4975), 31, + ACTIONS(4927), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489045,26 +488377,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37820] = 6, - ACTIONS(5399), 1, + [36877] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(8137), 1, + ACTIONS(5993), 1, anon_sym_COLON, - STATE(4925), 1, - sym_class_body, + STATE(4553), 1, + sym_type_constraints, + STATE(4649), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 22, + ACTIONS(3204), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489072,65 +488407,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 29, - sym__automatic_semicolon, + ACTIONS(3208), 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, - [37889] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(5964), 1, - anon_sym_COLON, - STATE(4557), 1, - sym_type_constraints, - STATE(4603), 1, - sym_class_body, + [36950] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 20, + ACTIONS(4162), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489138,46 +488464,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 29, + ACTIONS(4164), 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, - [37962] = 3, + [37013] = 4, + ACTIONS(6632), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 23, + ACTIONS(4304), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489201,14 +488532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 31, + ACTIONS(4307), 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, @@ -489233,11 +488563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38025] = 3, + [37078] = 4, + ACTIONS(6624), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 23, + ACTIONS(4290), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489261,14 +488593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4511), 31, + ACTIONS(4293), 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, @@ -489293,11 +488624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38088] = 3, + [37143] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4891), 23, + ACTIONS(4342), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489321,7 +488652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4893), 31, + ACTIONS(4344), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489353,28 +488684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38151] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4683), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [37206] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 21, + ACTIONS(4802), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489382,56 +488706,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 29, + ACTIONS(4804), 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, - [38222] = 3, + [37269] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(8164), 1, + anon_sym_COLON, + STATE(4562), 1, + sym_type_constraints, + STATE(4651), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4810), 23, + ACTIONS(4342), 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_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489439,49 +488774,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4812), 31, - sym__automatic_semicolon, + ACTIONS(4344), 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, - [38285] = 3, + [37342] = 4, + ACTIONS(8166), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 23, + ACTIONS(4877), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489492,7 +488826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -489505,7 +488838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 31, + ACTIONS(4879), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489537,11 +488870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38348] = 3, + [37407] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4714), 23, + ACTIONS(4806), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489565,7 +488898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4716), 31, + ACTIONS(4808), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489597,13 +488930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38411] = 4, - ACTIONS(6582), 1, - anon_sym_LPAREN, + [37470] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4138), 23, + ACTIONS(3204), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489627,13 +488958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4141), 30, + ACTIONS(3208), 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, @@ -489658,11 +488990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38476] = 3, + [37533] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4746), 23, + ACTIONS(1774), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489686,7 +489018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4748), 31, + ACTIONS(1776), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489718,11 +489050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38539] = 3, + [37596] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 23, + ACTIONS(4810), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489746,7 +489078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 31, + ACTIONS(4812), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489778,11 +489110,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38602] = 3, + [37659] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4594), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4400), 23, + ACTIONS(4318), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4320), 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, + [37730] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4981), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489806,7 +489202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4402), 31, + ACTIONS(4983), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489838,16 +489234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38665] = 3, + [37793] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5006), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 23, + ACTIONS(4114), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -489866,15 +489268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4720), 31, + ACTIONS(4116), 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, @@ -489898,11 +489298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38728] = 3, + [37864] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 23, + ACTIONS(4114), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489926,7 +489326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 31, + ACTIONS(4116), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -489958,11 +489358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38791] = 3, + [37927] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4019), 23, + ACTIONS(5017), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -489986,7 +489386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4021), 31, + ACTIONS(5019), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490018,11 +489418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38854] = 3, + [37990] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4722), 23, + ACTIONS(4494), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490046,7 +489446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4724), 31, + ACTIONS(4496), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490078,11 +489478,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38917] = 3, + [38053] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8168), 1, + anon_sym_COLON, + STATE(5264), 1, + sym_type_constraints, + STATE(5269), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4762), 23, + ACTIONS(4328), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4326), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [38126] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5941), 1, + anon_sym_COLON, + STATE(5226), 1, + sym_type_constraints, + STATE(5383), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3194), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3190), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [38199] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4909), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490106,7 +489636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4764), 31, + ACTIONS(4911), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490138,11 +489668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38980] = 3, + [38262] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4935), 23, + ACTIONS(5031), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490166,7 +489696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4937), 31, + ACTIONS(5033), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490198,11 +489728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39043] = 3, + [38325] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5003), 23, + ACTIONS(5035), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490226,7 +489756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5005), 31, + ACTIONS(5037), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490258,11 +489788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39106] = 3, + [38388] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5033), 23, + ACTIONS(4468), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490286,7 +489816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5035), 31, + ACTIONS(4470), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490318,13 +489848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39169] = 4, - ACTIONS(6611), 1, - anon_sym_LPAREN, + [38451] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 23, + ACTIONS(4814), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490348,13 +489876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 30, + ACTIONS(4816), 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, @@ -490379,11 +489908,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39234] = 3, + [38514] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4591), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4949), 23, + ACTIONS(4452), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4454), 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, + [38585] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490407,7 +490000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4951), 31, + ACTIONS(4820), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490439,11 +490032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39297] = 3, + [38648] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4344), 23, + ACTIONS(4438), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490467,7 +490060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4346), 31, + ACTIONS(4440), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490499,28 +490092,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39360] = 7, - ACTIONS(7864), 1, + [38711] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(8026), 1, anon_sym_EQ, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, + STATE(4923), 1, sym__block, + STATE(4966), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 21, + ACTIONS(4156), 21, 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, @@ -490528,64 +490120,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 29, + ACTIONS(4158), 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, - [39431] = 8, - ACTIONS(5113), 1, + [38782] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(8139), 1, - anon_sym_COLON, - STATE(4521), 1, - sym_type_constraints, - STATE(4720), 1, - sym_enum_class_body, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5012), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 20, + ACTIONS(4438), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490593,48 +490184,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 29, + ACTIONS(4440), 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, - [39504] = 3, + [38853] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(7120), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(201), 23, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4304), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -490656,14 +490257,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(199), 31, + ACTIONS(4307), 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, @@ -490672,11 +490272,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, @@ -490688,73 +490283,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39567] = 5, - ACTIONS(6961), 1, - anon_sym_by, - STATE(5182), 1, - sym_value_arguments, + [38922] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4416), 22, + ACTIONS(5039), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5041), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4414), 30, + [38985] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4822), 23, + anon_sym_as, + anon_sym_EQ, + 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_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [39634] = 3, + ACTIONS(4824), 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, + [39048] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4738), 23, + ACTIONS(4332), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -490778,7 +490431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4740), 31, + ACTIONS(4334), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -490810,30 +490463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39697] = 6, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(7129), 1, - anon_sym_LPAREN, + [39111] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5991), 1, + anon_sym_COLON, + STATE(4536), 1, + sym_type_constraints, + STATE(4658), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4283), 22, + ACTIONS(3190), 20, 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, @@ -490841,21 +490493,23 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 25, - sym__automatic_semicolon, + ACTIONS(3194), 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, @@ -490868,26 +490522,34 @@ 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, - [39766] = 3, + [39184] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4596), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4625), 23, + ACTIONS(4286), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490895,60 +490557,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4627), 31, - sym__automatic_semicolon, + ACTIONS(4288), 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, - [39829] = 6, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(7101), 1, - anon_sym_LPAREN, + [39255] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4138), 22, + ACTIONS(4635), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -490970,13 +490620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4141), 25, + ACTIONS(4637), 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, @@ -490985,6 +490636,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, @@ -490996,13 +490652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39898] = 3, + [39318] = 5, + ACTIONS(4822), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4985), 23, + ACTIONS(4824), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4502), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -491024,7 +490687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4987), 31, + ACTIONS(4504), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491040,11 +490703,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, @@ -491056,11 +490714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39961] = 3, + [39385] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 23, + ACTIONS(5081), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491084,7 +490742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5043), 31, + ACTIONS(5083), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491116,11 +490774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40024] = 3, + [39448] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 23, + ACTIONS(4937), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491144,7 +490802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4784), 31, + ACTIONS(4939), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491176,19 +490834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40087] = 7, - ACTIONS(7926), 1, + [39511] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(7969), 1, + ACTIONS(8026), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5031), 1, + STATE(5034), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 21, + ACTIONS(4108), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -491210,7 +490868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 29, + ACTIONS(4110), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491240,11 +490898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40158] = 3, + [39582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4847), 23, + ACTIONS(4108), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491268,7 +490926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4849), 31, + ACTIONS(4110), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491300,11 +490958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40221] = 3, + [39645] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5085), 23, + ACTIONS(4963), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491328,7 +490986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5087), 31, + ACTIONS(4965), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491360,11 +491018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40284] = 3, + [39708] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5071), 23, + ACTIONS(5093), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491388,7 +491046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5073), 31, + ACTIONS(5095), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491420,11 +491078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40347] = 3, + [39771] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 23, + ACTIONS(5097), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491448,7 +491106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 31, + ACTIONS(5099), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491480,11 +491138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40410] = 3, + [39834] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 23, + ACTIONS(4716), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491508,7 +491166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5069), 31, + ACTIONS(4718), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491540,22 +491198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40473] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, + [39897] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 21, + ACTIONS(5101), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -491574,13 +491226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 29, + ACTIONS(5103), 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, @@ -491604,11 +491258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40544] = 3, + [39960] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 23, + ACTIONS(4442), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491632,7 +491286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4869), 31, + ACTIONS(4444), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491664,11 +491318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40607] = 3, + [40023] = 5, + ACTIONS(8166), 1, + anon_sym_else, + ACTIONS(8170), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4851), 23, + ACTIONS(4877), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491679,7 +491337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -491692,7 +491349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4853), 31, + ACTIONS(4879), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491701,7 +491358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -491724,11 +491380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40670] = 3, + [40090] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4871), 23, + ACTIONS(4873), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491752,7 +491408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4873), 31, + ACTIONS(4875), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491784,22 +491440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40733] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, + [40153] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 21, + ACTIONS(5009), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -491818,13 +491468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 29, + ACTIONS(5011), 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, @@ -491848,11 +491500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40804] = 3, + [40216] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4901), 23, + ACTIONS(4833), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491876,7 +491528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4903), 31, + ACTIONS(4835), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491908,11 +491560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40867] = 3, + [40279] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5055), 23, + ACTIONS(3196), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -491936,7 +491588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5057), 31, + ACTIONS(3200), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -491968,13 +491620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40930] = 3, + [40342] = 6, + ACTIONS(4837), 1, + anon_sym_EQ, + ACTIONS(8155), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4404), 23, + ACTIONS(4839), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4826), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -491996,7 +491657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4406), 31, + ACTIONS(4828), 25, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492011,12 +491672,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, @@ -492028,141 +491683,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40993] = 8, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - ACTIONS(8141), 1, - anon_sym_COLON, - STATE(5215), 1, - sym_type_constraints, - STATE(5344), 1, - sym_class_body, + [40411] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 20, + ACTIONS(5105), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5107), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4301), 29, - anon_sym_object, - anon_sym_fun, + [40474] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_EQ, + STATE(4690), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [41066] = 8, - ACTIONS(5647), 1, - anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5932), 1, - anon_sym_COLON, - STATE(5201), 1, - sym_type_constraints, - STATE(5323), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3190), 20, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4158), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3186), 29, - anon_sym_object, - anon_sym_fun, + [40545] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3346), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [41139] = 3, + ACTIONS(3360), 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, + [40608] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1764), 23, + ACTIONS(4506), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492186,7 +491895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1766), 31, + ACTIONS(4508), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492218,11 +491927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41202] = 3, + [40671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 23, + ACTIONS(4847), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492246,7 +491955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 31, + ACTIONS(4849), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492278,11 +491987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41265] = 3, + [40734] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 23, + ACTIONS(4585), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492306,7 +492015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 31, + ACTIONS(4587), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492338,13 +492047,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41328] = 3, + [40797] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(7156), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 23, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4290), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -492366,14 +492084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 31, + ACTIONS(4293), 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, @@ -492382,11 +492099,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, @@ -492398,16 +492110,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41391] = 3, + [40866] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(4925), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4830), 23, + ACTIONS(4442), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -492426,15 +492144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4832), 31, + ACTIONS(4444), 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, @@ -492458,11 +492174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41454] = 3, + [40937] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 23, + ACTIONS(5089), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492486,7 +492202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 31, + ACTIONS(5091), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492518,11 +492234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41517] = 3, + [41000] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 23, + ACTIONS(4396), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492546,7 +492262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5099), 31, + ACTIONS(4398), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492578,73 +492294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41580] = 5, - ACTIONS(4814), 1, - anon_sym_EQ, + [41063] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4816), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4509), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4511), 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, - 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, - [41647] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4931), 23, + ACTIONS(5109), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492668,7 +492322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4933), 31, + ACTIONS(5111), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492700,11 +492354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41710] = 3, + [41126] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5021), 23, + ACTIONS(4869), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492728,7 +492382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5023), 31, + ACTIONS(4871), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492760,11 +492414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41773] = 3, + [41189] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 23, + ACTIONS(1752), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492788,7 +492442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4732), 31, + ACTIONS(1754), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492820,11 +492474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41836] = 3, + [41252] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4863), 23, + ACTIONS(4851), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -492848,7 +492502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4865), 31, + ACTIONS(4853), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -492880,93 +492534,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41899] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8143), 1, - anon_sym_COLON, - STATE(4527), 1, - sym_type_constraints, - STATE(4720), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4184), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4186), 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, - [41972] = 7, - ACTIONS(7864), 1, + [41315] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8037), 1, + ACTIONS(8026), 1, anon_sym_EQ, - STATE(4690), 1, + STATE(4923), 1, sym__block, - STATE(4691), 1, + STATE(5057), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 21, + ACTIONS(4102), 21, 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, @@ -492974,128 +492562,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 29, + ACTIONS(4104), 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, - [42043] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [41386] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 21, + ACTIONS(4102), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4087), 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, - [42114] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5924), 1, - anon_sym_COLON, - STATE(4528), 1, - sym_type_constraints, - STATE(4703), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3212), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493103,56 +492620,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 29, + ACTIONS(4104), 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, - [42187] = 6, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(8145), 1, - anon_sym_COLON, - STATE(4984), 1, - sym_class_body, + [41449] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 22, + ACTIONS(4865), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -493171,13 +492686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4386), 29, + ACTIONS(4867), 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, @@ -493201,76 +492718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42256] = 8, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - ACTIONS(5958), 1, - anon_sym_COLON, - STATE(5223), 1, - sym_type_constraints, - STATE(5323), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3190), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3186), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [42329] = 3, + [41512] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 23, + ACTIONS(5085), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493294,7 +492746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4464), 31, + ACTIONS(5087), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493326,11 +492778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42392] = 3, + [41575] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5081), 23, + ACTIONS(5077), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493354,7 +492806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5083), 31, + ACTIONS(5079), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493386,11 +492838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42455] = 3, + [41638] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 23, + ACTIONS(5073), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493414,7 +492866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5047), 31, + ACTIONS(5075), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493446,11 +492898,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42518] = 3, + [41701] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 23, + ACTIONS(4253), 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, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4251), 31, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [41764] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4989), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493474,7 +492986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 31, + ACTIONS(4991), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493506,11 +493018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42581] = 3, + [41827] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 23, + ACTIONS(4993), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493534,7 +493046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 31, + ACTIONS(4995), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493566,11 +493078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42644] = 3, + [41890] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 23, + ACTIONS(1596), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493594,7 +493106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4752), 31, + ACTIONS(1594), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493626,29 +493138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42707] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON, - STATE(4535), 1, - sym_type_constraints, - STATE(4664), 1, - sym_class_body, + [41953] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 20, + ACTIONS(4326), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493656,51 +493160,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 29, + ACTIONS(4328), 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, - [42780] = 3, + [42016] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5040), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4634), 23, + ACTIONS(4452), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -493719,15 +493232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4636), 31, + ACTIONS(4454), 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, @@ -493751,11 +493262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42843] = 3, + [42087] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4989), 23, + ACTIONS(5067), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493779,7 +493290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4991), 31, + ACTIONS(5069), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493811,20 +493322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42906] = 5, - ACTIONS(4826), 1, - anon_sym_EQ, + [42150] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4828), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4517), 22, + ACTIONS(5063), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -493846,7 +493350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4519), 26, + ACTIONS(5065), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493862,6 +493366,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, @@ -493873,75 +493382,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42973] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, + [42213] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4583), 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, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4581), 31, + 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_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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4033), 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, - [43044] = 3, + [42276] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1694), 23, + ACTIONS(4589), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -493965,7 +493470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1696), 31, + ACTIONS(4591), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -493997,11 +493502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43107] = 3, + [42339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4340), 23, + ACTIONS(4642), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494025,7 +493530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4342), 31, + ACTIONS(4644), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494057,11 +493562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43170] = 3, + [42402] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1401), 23, + ACTIONS(4997), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494085,7 +493590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1399), 31, + ACTIONS(4999), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494117,22 +493622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43233] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4939), 1, - sym_function_body, + [42465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 21, + ACTIONS(4476), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -494151,13 +493650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 29, + ACTIONS(4478), 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, @@ -494181,11 +493682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43304] = 3, + [42528] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1752), 23, + ACTIONS(5059), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494209,7 +493710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1754), 31, + ACTIONS(5061), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494241,11 +493742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43367] = 3, + [42591] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 23, + ACTIONS(4905), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494269,7 +493770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 31, + ACTIONS(4907), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494301,13 +493802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43430] = 4, - ACTIONS(8149), 1, - anon_sym_LPAREN, + [42654] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 23, + ACTIONS(4452), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494331,13 +493830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 30, + ACTIONS(4454), 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, @@ -494362,11 +493862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43495] = 3, + [42717] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5093), 23, + ACTIONS(1768), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494390,7 +493890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5095), 31, + ACTIONS(1770), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494422,16 +493922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43558] = 3, + [42780] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4917), 23, + ACTIONS(4120), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -494450,15 +493956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4919), 31, + ACTIONS(4122), 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, @@ -494482,11 +493986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43621] = 3, + [42851] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4925), 23, + ACTIONS(4120), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494510,7 +494014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4927), 31, + ACTIONS(4122), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494542,71 +494046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43684] = 3, + [42914] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4644), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [43747] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5029), 23, + ACTIONS(3340), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494630,7 +494074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5031), 31, + ACTIONS(3342), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494662,11 +494106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43810] = 3, + [42977] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4859), 23, + ACTIONS(5055), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494690,7 +494134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4861), 31, + ACTIONS(5057), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494722,86 +494166,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43873] = 8, - ACTIONS(5647), 1, - anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(8151), 1, - anon_sym_COLON, - STATE(5209), 1, - sym_type_constraints, - STATE(5386), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4231), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4229), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [43946] = 8, - ACTIONS(5647), 1, + [43040] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8153), 1, + ACTIONS(5951), 1, anon_sym_COLON, - STATE(5255), 1, + STATE(5202), 1, sym_type_constraints, - STATE(5290), 1, + STATE(5358), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 20, + ACTIONS(3208), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -494822,7 +494201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4184), 29, + ACTIONS(3204), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -494852,11 +494231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [44019] = 3, + [43113] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4965), 23, + ACTIONS(4619), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -494880,7 +494259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4967), 31, + ACTIONS(4621), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494912,28 +494291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44082] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8037), 1, - anon_sym_EQ, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [43176] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 21, + ACTIONS(4318), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -494941,176 +494313,49 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 29, + ACTIONS(4320), 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, - [44153] = 8, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - ACTIONS(8155), 1, - anon_sym_COLON, - STATE(5257), 1, - sym_type_constraints, - STATE(5290), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4186), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4184), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [44226] = 8, - ACTIONS(5647), 1, - anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5970), 1, - anon_sym_COLON, - STATE(5248), 1, - sym_type_constraints, - STATE(5270), 1, - sym_enum_class_body, + [43239] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3212), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [44299] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4742), 23, + ACTIONS(4917), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495134,7 +494379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4744), 31, + ACTIONS(4919), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495166,11 +494411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44362] = 3, + [43302] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 23, + ACTIONS(4482), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495194,7 +494439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4595), 31, + ACTIONS(4484), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495226,11 +494471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44425] = 3, + [43365] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4525), 23, + ACTIONS(4913), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495254,7 +494499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4527), 31, + ACTIONS(4915), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495286,11 +494531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44488] = 3, + [43428] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 23, + ACTIONS(4855), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495314,7 +494559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4983), 31, + ACTIONS(4857), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495346,11 +494591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44551] = 3, + [43491] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4501), 23, + ACTIONS(5051), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -495374,7 +494619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4503), 31, + ACTIONS(5053), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495406,22 +494651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44614] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5034), 1, - sym_function_body, + [43554] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 21, + ACTIONS(5047), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -495440,13 +494679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 29, + ACTIONS(5049), 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, @@ -495470,272 +494711,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44685] = 3, + [43617] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 13, - anon_sym_AT, - anon_sym_RBRACK, + ACTIONS(5043), 23, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4270), 40, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [44747] = 7, - ACTIONS(5653), 1, anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5267), 1, - sym_type_constraints, - STATE(5363), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4342), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4340), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [44817] = 7, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5252), 1, - sym_type_constraints, - STATE(5298), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4402), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4400), 29, - 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_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [44887] = 5, - ACTIONS(8157), 1, - anon_sym_COMMA, - STATE(5134), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4658), 21, + ACTIONS(5045), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4656), 30, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [44953] = 5, - ACTIONS(8159), 1, - anon_sym_LPAREN, + [43680] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4141), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3943), 22, - anon_sym_COLON, + ACTIONS(1780), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -495748,13 +494799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3948), 28, + ACTIONS(1782), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495777,11 +494831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45019] = 3, + [43743] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4617), 22, + ACTIONS(4595), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -495790,6 +494844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -495804,72 +494859,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4615), 31, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [45081] = 7, - ACTIONS(5647), 1, - anon_sym_LBRACE, - ACTIONS(5653), 1, + ACTIONS(4593), 31, + anon_sym_by, anon_sym_where, - STATE(5255), 1, - sym_type_constraints, - STATE(5290), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4186), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4184), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -495899,26 +494891,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [45151] = 5, - ACTIONS(8162), 1, - anon_sym_LPAREN, + [43806] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4286), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3943), 22, - anon_sym_COLON, + ACTIONS(1762), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -495931,13 +494919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3948), 28, + ACTIONS(1764), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495960,157 +494951,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45217] = 7, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - STATE(5324), 1, - sym_function_body, - STATE(5357), 1, - sym__block, + [43869] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4099), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4623), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [45287] = 7, - ACTIONS(5647), 1, - anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_where, - STATE(5268), 1, - sym_type_constraints, - STATE(5330), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4346), 20, + ACTIONS(4625), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4344), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [45357] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8165), 1, - anon_sym_COLON, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, - STATE(5259), 1, - sym_type_constraints, + [43932] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 19, + ACTIONS(4286), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -496119,183 +495033,123 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 27, + ACTIONS(4288), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45433] = 7, - ACTIONS(5647), 1, + [43995] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_where, - STATE(5227), 1, - sym_type_constraints, - STATE(5363), 1, - sym_enum_class_body, + ACTIONS(8026), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5062), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4340), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4286), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [45503] = 5, - ACTIONS(8169), 1, - anon_sym_COMMA, - STATE(5095), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4627), 21, + ACTIONS(4288), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4625), 30, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [45569] = 6, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8172), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_class_body, + [44066] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 21, + ACTIONS(5027), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496303,66 +495157,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4386), 29, + ACTIONS(5029), 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, - [45637] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + [44129] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8026), 1, anon_sym_EQ, - ACTIONS(8174), 1, - anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5017), 1, + STATE(5054), 1, sym_function_body, - STATE(5208), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 19, + ACTIONS(4318), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -496371,56 +495223,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 27, + ACTIONS(4320), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45713] = 4, - ACTIONS(6670), 1, - anon_sym_LPAREN, + [44200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4138), 23, + ACTIONS(4498), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496434,13 +495287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4141), 29, + ACTIONS(4500), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -496464,23 +495319,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45777] = 4, - ACTIONS(6666), 1, - anon_sym_LPAREN, + [44263] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 23, + ACTIONS(4977), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496494,13 +495347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 29, + ACTIONS(4979), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -496524,23 +495379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45841] = 4, - ACTIONS(8176), 1, - anon_sym_LPAREN, + [44326] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 23, + ACTIONS(1694), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496554,13 +495407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 29, + ACTIONS(1696), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -496584,23 +495439,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45905] = 4, - ACTIONS(8178), 1, - anon_sym_LPAREN, + [44389] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 23, + ACTIONS(5021), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496614,13 +495467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 29, + ACTIONS(5023), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -496644,23 +495499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45969] = 4, - ACTIONS(8180), 1, - anon_sym_LPAREN, + [44452] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 23, + ACTIONS(5013), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496674,13 +495527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 29, + ACTIONS(5015), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -496704,25 +495559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46033] = 10, - ACTIONS(5403), 1, + [44515] = 10, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - ACTIONS(8182), 1, + ACTIONS(8172), 1, anon_sym_COLON, - STATE(4901), 1, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, sym__block, - STATE(5051), 1, + STATE(5034), 1, sym_function_body, - STATE(5211), 1, + STATE(5218), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 19, + ACTIONS(4108), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -496742,7 +495597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 27, + ACTIONS(4110), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496770,32 +495625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46109] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + [44591] = 6, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - ACTIONS(8184), 1, + ACTIONS(8176), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5032), 1, - sym_function_body, - STATE(5214), 1, - sym_type_constraints, + STATE(4661), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 19, + ACTIONS(4390), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496808,16 +495657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 27, - sym__automatic_semicolon, + ACTIONS(4392), 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, @@ -496836,13 +495687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46185] = 4, - ACTIONS(8186), 1, + [44659] = 5, + ACTIONS(8178), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 23, + ACTIONS(4293), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3866), 22, + anon_sym_COLON, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -496852,8 +495707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -496866,14 +495719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, + ACTIONS(3871), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496896,19 +495748,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46249] = 7, - ACTIONS(8045), 1, + [44725] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4603), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(8047), 1, anon_sym_LBRACE, - STATE(5319), 1, - sym_function_body, - STATE(5357), 1, - sym__block, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4601), 31, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [44787] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5258), 1, + sym_type_constraints, + STATE(5287), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 20, + ACTIONS(4500), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -496929,7 +495840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4258), 29, + ACTIONS(4498), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -496959,19 +495870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46319] = 7, - ACTIONS(8045), 1, + [44857] = 7, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(5272), 1, + STATE(5286), 1, sym_function_body, - STATE(5357), 1, + STATE(5340), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4087), 20, + ACTIONS(4288), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -496992,7 +495903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4085), 29, + ACTIONS(4286), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497022,21 +495933,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46389] = 5, - ACTIONS(8188), 1, - anon_sym_COMMA, - STATE(5108), 1, - aux_sym_type_constraints_repeat1, + [44927] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(7180), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4304), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4307), 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, + [44995] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5239), 1, + sym_type_constraints, + STATE(5314), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4464), 22, + ACTIONS(4412), 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_STAR, @@ -497053,7 +496028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4462), 29, + ACTIONS(4410), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497083,23 +496058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46455] = 7, - ACTIONS(5647), 1, - anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_where, - STATE(5209), 1, - sym_type_constraints, - STATE(5386), 1, - sym_enum_class_body, + [45065] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 20, + ACTIONS(4629), 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, @@ -497116,7 +496085,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4229), 29, + ACTIONS(4627), 31, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497146,19 +496117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46525] = 7, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, + [45127] = 7, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(5204), 1, - sym_type_constraints, - STATE(5351), 1, - sym_class_body, + STATE(5291), 1, + sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4503), 20, + ACTIONS(4320), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497179,7 +496150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4501), 29, + ACTIONS(4318), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497209,23 +496180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46595] = 7, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5215), 1, - sym_type_constraints, - STATE(5344), 1, - sym_class_body, + [45197] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 20, + ACTIONS(4579), 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, @@ -497242,7 +496207,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4301), 29, + ACTIONS(4577), 31, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497272,11 +496239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46665] = 3, + [45259] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4515), 13, + ACTIONS(4225), 13, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -497290,7 +496257,7 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(4513), 40, + ACTIONS(4223), 40, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -497331,19 +496298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [46727] = 7, - ACTIONS(8045), 1, + [45321] = 7, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(5341), 1, + STATE(5295), 1, sym_function_body, - STATE(5357), 1, + STATE(5340), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4487), 20, + ACTIONS(4454), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497364,7 +496331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4485), 29, + ACTIONS(4452), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497394,85 +496361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46797] = 10, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + [45391] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8191), 1, - anon_sym_COLON, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(5295), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4099), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4101), 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, - [46873] = 7, - ACTIONS(5653), 1, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5257), 1, + STATE(5261), 1, sym_type_constraints, - STATE(5290), 1, - sym_class_body, + STATE(5279), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 20, + ACTIONS(4484), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497493,7 +496394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4184), 29, + ACTIONS(4482), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497523,17 +496424,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46943] = 3, + [45461] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5263), 1, + sym_type_constraints, + STATE(5271), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4668), 22, + ACTIONS(4478), 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_STAR, @@ -497550,9 +496457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4666), 31, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4476), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497582,25 +496487,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47005] = 10, - ACTIONS(5119), 1, + [45531] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4488), 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_SEMI, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4486), 40, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [45593] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8181), 1, + anon_sym_COLON, + ACTIONS(8183), 1, anon_sym_EQ, - ACTIONS(8195), 1, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(5283), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 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, + [45669] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + ACTIONS(8185), 1, anon_sym_COLON, - STATE(4653), 1, + STATE(4620), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(5288), 1, + STATE(5280), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 20, + ACTIONS(4102), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -497621,7 +496651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 26, + ACTIONS(4104), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497648,19 +496678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47081] = 7, - ACTIONS(8045), 1, + [45745] = 7, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(5357), 1, - sym__block, - STATE(5391), 1, + STATE(5275), 1, sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 20, + ACTIONS(4122), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497681,7 +496711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4031), 29, + ACTIONS(4120), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -497711,11 +496741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47151] = 3, + [45815] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 22, + ACTIONS(4607), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -497738,7 +496768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4589), 31, + ACTIONS(4605), 31, anon_sym_COLON, anon_sym_where, anon_sym_object, @@ -497770,146 +496800,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47213] = 4, - ACTIONS(8197), 1, - anon_sym_else, + [45877] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_COLON, + STATE(4656), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(5305), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 22, + ACTIONS(4079), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 30, + ACTIONS(4081), 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, - [47277] = 5, - ACTIONS(8197), 1, - anon_sym_else, - ACTIONS(8199), 1, - anon_sym_SEMI, + [45953] = 10, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_COLON, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + STATE(5290), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 22, + ACTIONS(4108), 20, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 29, + ACTIONS(4110), 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, - [47343] = 10, - ACTIONS(5119), 1, + [46029] = 10, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8183), 1, anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(8191), 1, anon_sym_COLON, - STATE(4652), 1, + STATE(4643), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(5274), 1, + STATE(5299), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 20, + ACTIONS(4114), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -497930,7 +496971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 26, + ACTIONS(4116), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497957,25 +496998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47419] = 10, - ACTIONS(5403), 1, + [46105] = 10, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(8203), 1, + ACTIONS(8193), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5030), 1, + STATE(5074), 1, sym_function_body, STATE(5225), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 19, + ACTIONS(4120), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -497995,7 +497036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 27, + ACTIONS(4122), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -498023,19 +497064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47495] = 7, - ACTIONS(5647), 1, + [46181] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, + ACTIONS(5762), 1, anon_sym_where, - STATE(5228), 1, + STATE(5268), 1, sym_type_constraints, - STATE(5351), 1, + STATE(5271), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4503), 20, + ACTIONS(4478), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -498056,7 +497097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4501), 29, + ACTIONS(4476), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498086,25 +497127,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47565] = 10, - ACTIONS(5119), 1, + [46251] = 8, + ACTIONS(4837), 1, + anon_sym_EQ, + ACTIONS(8155), 1, + anon_sym_COLON_COLON, + ACTIONS(8195), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4144), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(4839), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4826), 20, + 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_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4828), 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, + [46323] = 5, + ACTIONS(8197), 1, + anon_sym_by, + STATE(4588), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4525), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(7864), 1, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4527), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8193), 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, + [46389] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(8205), 1, + ACTIONS(8199), 1, anon_sym_COLON, - STATE(4690), 1, + STATE(4923), 1, sym__block, - STATE(4716), 1, + STATE(5057), 1, sym_function_body, - STATE(5271), 1, + STATE(5221), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 20, + ACTIONS(4102), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -498112,7 +497278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -498125,46 +497290,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 26, + ACTIONS(4104), 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, + [46465] = 4, + ACTIONS(6648), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4290), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4293), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46529] = 4, + ACTIONS(6644), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4304), 23, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4307), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46593] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(7176), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4290), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4293), 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, - [47641] = 7, - ACTIONS(5647), 1, + [46661] = 5, + ACTIONS(8201), 1, + anon_sym_COMMA, + STATE(5126), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4517), 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, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4515), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [46727] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, + ACTIONS(5762), 1, anon_sym_where, - STATE(5237), 1, + STATE(5264), 1, sym_type_constraints, - STATE(5322), 1, + STATE(5269), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4392), 20, + ACTIONS(4328), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -498185,7 +497594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4390), 29, + ACTIONS(4326), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498215,19 +497624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47711] = 7, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, + [46797] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5357), 1, - sym__block, - STATE(5371), 1, - sym_function_body, + STATE(5262), 1, + sym_type_constraints, + STATE(5313), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4049), 20, + ACTIONS(4398), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -498248,7 +497657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4047), 29, + ACTIONS(4396), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498278,48 +497687,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47781] = 5, - ACTIONS(8207), 1, - anon_sym_by, - STATE(4584), 1, - sym_value_arguments, + [46867] = 5, + ACTIONS(8203), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 21, + ACTIONS(4307), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3866), 22, + anon_sym_COLON, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 30, + ACTIONS(3871), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -498327,37 +497732,104 @@ 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, - [47847] = 10, - ACTIONS(5119), 1, + [46933] = 7, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5293), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4102), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [47003] = 10, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(8209), 1, + ACTIONS(8206), 1, anon_sym_COLON, - STATE(4619), 1, - sym_function_body, - STATE(4690), 1, + STATE(4923), 1, sym__block, - STATE(5273), 1, + STATE(5006), 1, + sym_function_body, + STATE(5215), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 20, + ACTIONS(4114), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -498365,7 +497837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -498378,13 +497849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 26, + ACTIONS(4116), 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, @@ -498405,152 +497877,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47923] = 6, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8211), 1, - anon_sym_COLON, - STATE(4658), 1, - sym_class_body, + [47079] = 4, + ACTIONS(8208), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 21, + ACTIONS(4877), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 29, + ACTIONS(4879), 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, - [47991] = 7, - ACTIONS(5653), 1, - anon_sym_where, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5224), 1, - sym_type_constraints, - STATE(5349), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4406), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4404), 29, - 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, + [47143] = 5, + ACTIONS(8208), 1, 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [48061] = 8, - ACTIONS(4875), 1, - anon_sym_EQ, - ACTIONS(8128), 1, - anon_sym_COLON_COLON, - ACTIONS(8213), 1, - anon_sym_COLON, + ACTIONS(8210), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4109), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(4877), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4840), 20, + ACTIONS(4877), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -498558,6 +497955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -498570,19 +497968,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 23, - sym__automatic_semicolon, + ACTIONS(4879), 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, @@ -498594,21 +497998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48133] = 5, - ACTIONS(8215), 1, - anon_sym_COMMA, - STATE(5139), 1, - aux_sym_type_constraints_repeat1, + [47209] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5247), 1, + sym_type_constraints, + STATE(5313), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 22, + ACTIONS(4398), 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_STAR, @@ -498625,7 +498031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4440), 29, + ACTIONS(4396), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498655,20 +498061,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48199] = 5, - ACTIONS(8157), 1, - anon_sym_COMMA, - STATE(5095), 1, - aux_sym__delegation_specifiers_repeat1, + [47279] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5235), 1, + sym_type_constraints, + STATE(5331), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4664), 21, + ACTIONS(4334), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -498685,8 +498094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4662), 30, - anon_sym_where, + ACTIONS(4332), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498716,30 +498124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48265] = 6, - ACTIONS(3943), 1, + [47349] = 10, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(7159), 1, - anon_sym_LPAREN, + ACTIONS(8212), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4980), 1, + sym_function_body, + STATE(5210), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4283), 22, + ACTIONS(4079), 19, 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, @@ -498747,20 +498157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 24, + ACTIONS(4081), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -498773,21 +498184,25 @@ 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, - [48333] = 3, + [47425] = 5, + ACTIONS(8214), 1, + anon_sym_COMMA, + STATE(5125), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4531), 22, + ACTIONS(4637), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -498805,8 +498220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4529), 31, - anon_sym_COLON, + ACTIONS(4635), 30, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -498837,21 +498251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48395] = 4, - ACTIONS(6961), 1, - anon_sym_by, + [47491] = 5, + ACTIONS(8201), 1, + anon_sym_COMMA, + STATE(5131), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4416), 22, + ACTIONS(4523), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -498866,8 +498282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4414), 30, - anon_sym_where, + ACTIONS(4521), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -498897,22 +498312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48459] = 6, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(7155), 1, + [47557] = 4, + ACTIONS(8217), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4138), 22, + ACTIONS(4298), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -498934,7 +498342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4141), 24, + ACTIONS(4296), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498948,6 +498356,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, @@ -498959,23 +498372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48527] = 5, - ACTIONS(8215), 1, - anon_sym_COMMA, - STATE(5108), 1, - aux_sym_type_constraints_repeat1, + [47621] = 4, + ACTIONS(6987), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4456), 22, + ACTIONS(4527), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -498990,7 +498401,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4454), 29, + ACTIONS(4525), 30, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -499020,19 +498432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48593] = 7, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, + [47685] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5328), 1, - sym_function_body, - STATE(5357), 1, - sym__block, + STATE(5200), 1, + sym_type_constraints, + STATE(5361), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 20, + ACTIONS(4344), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -499053,7 +498465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4254), 29, + ACTIONS(4342), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -499083,11 +498495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48663] = 3, + [47755] = 5, + ACTIONS(8219), 1, + anon_sym_COMMA, + STATE(5133), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4523), 21, + ACTIONS(4648), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -499109,8 +498525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4521), 31, - anon_sym_COLON, + ACTIONS(4646), 30, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -499141,15 +498556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48724] = 3, + [47821] = 5, + ACTIONS(8221), 1, + anon_sym_COMMA, + STATE(5131), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 21, + ACTIONS(4508), 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, @@ -499167,9 +498587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4537), 31, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4506), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -499199,32 +498617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [48785] = 10, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + [47887] = 6, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(8217), 1, + ACTIONS(8224), 1, anon_sym_COLON, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, - STATE(5404), 1, - sym_type_constraints, + STATE(4653), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 19, + ACTIONS(4402), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499237,15 +498649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 26, - sym__automatic_semicolon, + ACTIONS(4404), 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, @@ -499264,80 +498679,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48860] = 5, - ACTIONS(8221), 1, + [47955] = 5, + ACTIONS(8219), 1, anon_sym_COMMA, - STATE(5144), 1, + STATE(5125), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4625), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4654), 21, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4652), 30, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4627), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + [48021] = 4, + ACTIONS(8226), 1, 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, - [48925] = 4, - STATE(5144), 1, - aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 21, + ACTIONS(4312), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -499347,227 +498764,301 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 30, + ACTIONS(4310), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48988] = 4, - ACTIONS(6807), 1, - anon_sym_LPAREN, + [48085] = 7, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5324), 1, + sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4138), 22, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4110), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4108), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4141), 29, + [48155] = 7, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5340), 1, + sym__block, + STATE(5352), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4116), 20, 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [49051] = 4, - ACTIONS(8224), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4790), 21, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4114), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4792), 30, + [48225] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5228), 1, + sym_type_constraints, + STATE(5331), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4334), 20, 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_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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [49114] = 5, - ACTIONS(8224), 1, - anon_sym_else, - ACTIONS(8226), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4790), 21, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4332), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4792), 29, + [48295] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5256), 1, + sym_type_constraints, + STATE(5334), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4470), 20, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [49179] = 4, - ACTIONS(6803), 1, + ACTIONS(4468), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [48365] = 4, + ACTIONS(8228), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4283), 22, + ACTIONS(4841), 23, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -499577,6 +499068,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, @@ -499590,13 +499082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4286), 29, - sym__automatic_semicolon, + ACTIONS(4843), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -499620,20 +499112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49242] = 4, - ACTIONS(8207), 1, - anon_sym_by, + [48429] = 4, + ACTIONS(8230), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 21, + ACTIONS(4859), 23, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -499643,112 +499136,112 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 30, + ACTIONS(4861), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49305] = 25, - ACTIONS(3104), 1, + [48493] = 25, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3144), 1, sym_property_modifier, - ACTIONS(8228), 1, + ACTIONS(8232), 1, anon_sym_COLON, - ACTIONS(8230), 1, + ACTIONS(8234), 1, anon_sym_constructor, - ACTIONS(8232), 1, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8234), 1, + ACTIONS(8238), 1, anon_sym_LPAREN, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LT, - ACTIONS(8238), 1, + ACTIONS(8242), 1, anon_sym_where, - STATE(5362), 1, + STATE(5347), 1, sym_type_parameters, - STATE(7905), 1, + STATE(7937), 1, sym_primary_constructor, - STATE(8024), 1, + STATE(8036), 1, sym__class_parameters, - STATE(8302), 1, + STATE(8318), 1, sym_type_constraints, - STATE(8783), 1, + STATE(8851), 1, sym_enum_class_body, - STATE(9411), 1, + STATE(9273), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3140), 2, + ACTIONS(3156), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7407), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -499759,217 +499252,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [49410] = 25, - ACTIONS(3104), 1, + [48598] = 25, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3144), 1, sym_property_modifier, - ACTIONS(8230), 1, - anon_sym_constructor, ACTIONS(8234), 1, - anon_sym_LPAREN, - ACTIONS(8236), 1, - anon_sym_LT, + anon_sym_constructor, ACTIONS(8238), 1, - anon_sym_where, + anon_sym_LPAREN, ACTIONS(8240), 1, - anon_sym_COLON, + anon_sym_LT, ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(5283), 1, - sym_type_parameters, - STATE(7913), 1, - sym_primary_constructor, - STATE(8024), 1, - sym__class_parameters, - STATE(8301), 1, - sym_type_constraints, - STATE(8882), 1, - sym_class_body, - STATE(9411), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3150), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [49515] = 6, - ACTIONS(5683), 1, - anon_sym_LBRACE, + anon_sym_where, ACTIONS(8244), 1, anon_sym_COLON, - STATE(5378), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4386), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4384), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [49582] = 25, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(8230), 1, - anon_sym_constructor, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8234), 1, - anon_sym_LPAREN, - ACTIONS(8236), 1, - anon_sym_LT, - ACTIONS(8238), 1, - anon_sym_where, ACTIONS(8246), 1, - anon_sym_COLON, - STATE(5284), 1, + anon_sym_LBRACE, + STATE(5370), 1, sym_type_parameters, - STATE(7910), 1, + STATE(7908), 1, sym_primary_constructor, - STATE(8024), 1, + STATE(8036), 1, sym__class_parameters, - STATE(8265), 1, + STATE(8171), 1, sym_type_constraints, - STATE(8784), 1, - sym_enum_class_body, - STATE(9411), 1, + STATE(8851), 1, + sym_class_body, + STATE(9273), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3108), 2, + ACTIONS(3156), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7407), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -499980,77 +499332,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [49687] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, - STATE(5243), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4254), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4256), 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, - [49760] = 4, - ACTIONS(8248), 1, + [48703] = 4, + ACTIONS(6784), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 22, + ACTIONS(4304), 22, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -500073,7 +499361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 29, + ACTIONS(4307), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -500103,166 +499391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49823] = 8, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - ACTIONS(8250), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4919), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4324), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4326), 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, - [49894] = 25, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(8230), 1, - anon_sym_constructor, - ACTIONS(8234), 1, - anon_sym_LPAREN, - ACTIONS(8236), 1, - anon_sym_LT, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8252), 1, - anon_sym_COLON, - STATE(5350), 1, - sym_type_parameters, - STATE(7934), 1, - sym_primary_constructor, - STATE(8024), 1, - sym__class_parameters, - STATE(8317), 1, - sym_type_constraints, - STATE(8783), 1, - sym_class_body, - STATE(9411), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3140), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [49999] = 9, - ACTIONS(5119), 1, + [48766] = 9, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8183), 1, anon_sym_EQ, - STATE(4652), 1, + STATE(4603), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(5274), 1, + STATE(5283), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 20, + ACTIONS(4120), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -500283,7 +499428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 26, + ACTIONS(4122), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500310,11 +499455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50072] = 3, + [48839] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 22, + ACTIONS(4527), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -500337,7 +499482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4867), 30, + ACTIONS(4525), 30, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -500368,23 +499513,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50133] = 9, - ACTIONS(5119), 1, + [48900] = 9, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8183), 1, anon_sym_EQ, - STATE(4653), 1, + STATE(4596), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(5288), 1, + STATE(5285), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 20, + ACTIONS(4286), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -500405,7 +499550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 26, + ACTIONS(4288), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500432,81 +499577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50206] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4865), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4863), 30, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [50267] = 9, - ACTIONS(5119), 1, + [48973] = 9, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8183), 1, anon_sym_EQ, - STATE(4580), 1, + STATE(4620), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, - STATE(5295), 1, + STATE(5280), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 20, + ACTIONS(4102), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -500527,7 +499614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 26, + ACTIONS(4104), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500554,89 +499641,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50340] = 3, + [49046] = 8, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + ACTIONS(8248), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4966), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 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, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4859), 30, + ACTIONS(4156), 20, + anon_sym_as, + 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_in, - anon_sym_null, - anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [50401] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, + ACTIONS(4158), 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, + [49117] = 8, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8174), 1, anon_sym_EQ, - STATE(4573), 1, - sym_function_body, - STATE(4690), 1, + ACTIONS(8250), 1, + anon_sym_COLON, + STATE(4923), 1, sym__block, - STATE(5297), 1, - sym_type_constraints, + STATE(4992), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 20, + ACTIONS(4162), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500649,13 +499739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 26, + ACTIONS(4164), 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, @@ -500676,29 +499767,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50474] = 8, - ACTIONS(7926), 1, + [49188] = 9, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8183), 1, anon_sym_EQ, - ACTIONS(8254), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5031), 1, + STATE(4632), 1, sym_function_body, + STATE(4724), 1, + sym__block, + STATE(5290), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 20, + ACTIONS(4108), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500711,14 +499804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 27, - sym__automatic_semicolon, + ACTIONS(4110), 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, @@ -500739,25 +499831,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50545] = 10, - ACTIONS(5403), 1, + [49261] = 9, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8183), 1, anon_sym_EQ, - ACTIONS(8256), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5030), 1, + STATE(4594), 1, sym_function_body, - STATE(5413), 1, + STATE(4724), 1, + sym__block, + STATE(5296), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4041), 19, + ACTIONS(4318), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -500765,6 +499855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500777,13 +499868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4043), 26, - sym__automatic_semicolon, + ACTIONS(4320), 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, @@ -500804,16 +499895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50620] = 3, + [49334] = 6, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8252), 1, + anon_sym_COLON, + STATE(5363), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 21, + ACTIONS(4404), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -500830,9 +499926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4585), 31, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4402), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -500862,16 +499956,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50681] = 3, + [49401] = 6, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8254), 1, + anon_sym_COLON, + STATE(5392), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4613), 21, + ACTIONS(4392), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -500888,9 +499987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4611), 31, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4390), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -500920,143 +500017,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50742] = 9, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4683), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - STATE(5302), 1, - sym_type_constraints, + [49468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4256), 26, - sym_safe_nav, + ACTIONS(4591), 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_RPAREN, - anon_sym_SEMI, + 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, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [50815] = 8, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - ACTIONS(8258), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5063), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4196), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4589), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4198), 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, - [50886] = 3, + [49529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4464), 23, + ACTIONS(4969), 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, @@ -501075,7 +500102,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4462), 29, + ACTIONS(4967), 30, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501105,197 +500133,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [50947] = 6, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(7222), 1, - anon_sym_LPAREN, + [49590] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4283), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4286), 24, + ACTIONS(4979), 22, 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_COMMA, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [51014] = 6, - ACTIONS(3943), 1, - anon_sym_EQ, - ACTIONS(7192), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4138), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4977), 30, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4141), 24, + [49651] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4983), 22, 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_COMMA, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [51081] = 9, - ACTIONS(5403), 1, + ACTIONS(4981), 30, anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4932), 1, - sym_function_body, - STATE(5266), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4260), 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, - [51154] = 3, + [49712] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4599), 21, + ACTIONS(4676), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -501317,7 +500275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4597), 31, + ACTIONS(4674), 31, anon_sym_COLON, anon_sym_where, anon_sym_object, @@ -501349,16 +500307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51215] = 3, + [49773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4636), 23, + ACTIONS(4987), 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, @@ -501377,7 +500334,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4634), 29, + ACTIONS(4985), 30, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501407,22 +500365,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51276] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, + [49834] = 4, + ACTIONS(8197), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 22, + ACTIONS(4525), 21, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501430,59 +500388,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, - sym__automatic_semicolon, + ACTIONS(4527), 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, - [51339] = 6, - ACTIONS(5683), 1, - anon_sym_LBRACE, - ACTIONS(8262), 1, - anon_sym_COLON, - STATE(5281), 1, - sym_class_body, + [49897] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4410), 20, + ACTIONS(4587), 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, @@ -501497,7 +500452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4408), 29, + ACTIONS(4585), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501527,20 +500482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51406] = 3, + [49958] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4527), 23, + ACTIONS(4658), 21, 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, @@ -501555,7 +500508,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4525), 29, + ACTIONS(4656), 31, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501585,70 +500540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51467] = 4, - ACTIONS(8264), 1, - anon_sym_LPAREN, + [50019] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 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_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4144), 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, - [51530] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4893), 22, + ACTIONS(4684), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -501656,7 +500552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -501671,7 +500566,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4891), 30, + ACTIONS(4682), 31, + anon_sym_COLON, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -501702,11 +500598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51591] = 3, + [50080] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4650), 21, + ACTIONS(4700), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -501728,7 +500624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4648), 31, + ACTIONS(4698), 31, anon_sym_COLON, anon_sym_where, anon_sym_object, @@ -501760,25 +500656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51652] = 10, - ACTIONS(5403), 1, + [50141] = 10, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - ACTIONS(8266), 1, + ACTIONS(8256), 1, anon_sym_COLON, - STATE(4901), 1, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, sym__block, - STATE(5032), 1, + STATE(5074), 1, sym_function_body, - STATE(5408), 1, + STATE(5394), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 19, + ACTIONS(4120), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -501798,7 +500694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 26, + ACTIONS(4122), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -501825,21 +500721,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51727] = 4, - ACTIONS(8268), 1, - anon_sym_LPAREN, + [50216] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5054), 1, + sym_function_body, + STATE(5232), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 22, + ACTIONS(4318), 19, 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, @@ -501848,51 +500752,49 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 29, + ACTIONS(4320), 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, - [51790] = 3, + [50289] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4627), 22, + ACTIONS(4508), 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, @@ -501911,8 +500813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4625), 30, - anon_sym_where, + ACTIONS(4506), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -501942,83 +500843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51851] = 5, - ACTIONS(6347), 1, - anon_sym_LT, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 40, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_by, + [50350] = 10, + ACTIONS(5411), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [51916] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8258), 1, anon_sym_EQ, - STATE(4901), 1, + ACTIONS(8260), 1, + anon_sym_COLON, + STATE(4923), 1, sym__block, - STATE(4912), 1, + STATE(5057), 1, sym_function_body, - STATE(5259), 1, + STATE(5425), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 19, + ACTIONS(4102), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -502038,14 +500881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 27, + ACTIONS(4104), 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, @@ -502066,25 +500908,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51989] = 10, - ACTIONS(5403), 1, + [50425] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(8270), 1, - anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5051), 1, + STATE(5062), 1, sym_function_body, - STATE(5398), 1, + STATE(5227), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 19, + ACTIONS(4286), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -502104,13 +500944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 26, + ACTIONS(4288), 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, @@ -502131,87 +500972,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52064] = 3, + [50498] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, + STATE(5225), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4885), 22, + ACTIONS(4120), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4883), 30, + [50571] = 10, + ACTIONS(5411), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + ACTIONS(8262), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, + STATE(5424), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4108), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [52125] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(4110), 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, + [50646] = 25, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(8234), 1, + anon_sym_constructor, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, - STATE(5211), 1, + ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8240), 1, + anon_sym_LT, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8264), 1, + anon_sym_COLON, + STATE(5303), 1, + sym_type_parameters, + STATE(7904), 1, + sym_primary_constructor, + STATE(8036), 1, + sym__class_parameters, + STATE(8210), 1, sym_type_constraints, + STATE(8737), 1, + sym_enum_class_body, + STATE(9273), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3166), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [50751] = 4, + ACTIONS(6792), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 19, + ACTIONS(4290), 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_else, anon_sym_BANG_EQ, @@ -502220,56 +501204,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 27, + ACTIONS(4293), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52198] = 9, - ACTIONS(5403), 1, + [50814] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8174), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5017), 1, + STATE(5057), 1, sym_function_body, - STATE(5208), 1, + STATE(5221), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 19, + ACTIONS(4102), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -502289,7 +501276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 27, + ACTIONS(4104), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502317,25 +501304,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52271] = 10, - ACTIONS(5403), 1, + [50887] = 10, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8258), 1, anon_sym_EQ, - ACTIONS(8272), 1, + ACTIONS(8266), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4912), 1, + STATE(5006), 1, sym_function_body, - STATE(5396), 1, + STATE(5422), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 19, + ACTIONS(4114), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -502355,7 +501342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 26, + ACTIONS(4116), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502382,137 +501369,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52346] = 3, + [50962] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, + STATE(5218), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4688), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4686), 31, - anon_sym_COLON, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(4108), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [52407] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4416), 22, + ACTIONS(4110), 27, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4414), 30, + [51035] = 10, + ACTIONS(5411), 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [52468] = 8, - ACTIONS(5399), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(6096), 1, + ACTIONS(8258), 1, + anon_sym_EQ, + ACTIONS(8268), 1, anon_sym_COLON, - STATE(4867), 1, + STATE(4923), 1, + sym__block, + STATE(4980), 1, + sym_function_body, + STATE(5420), 1, sym_type_constraints, - STATE(4973), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 19, + ACTIONS(4079), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -502532,14 +501471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 27, + ACTIONS(4081), 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, @@ -502560,22 +501498,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52538] = 4, - ACTIONS(8274), 1, + [51110] = 4, + ACTIONS(8270), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 21, + ACTIONS(4312), 22, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502583,50 +501521,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 29, + ACTIONS(4310), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52600] = 5, - ACTIONS(8280), 1, - sym__automatic_semicolon, - STATE(5397), 1, - sym__semi, + [51173] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8278), 20, + ACTIONS(4704), 21, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -502647,7 +501583,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8276), 29, + ACTIONS(4702), 31, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -502677,30 +501615,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52664] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, - STATE(5398), 1, - sym_type_constraints, + [51234] = 4, + STATE(5186), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 19, + ACTIONS(4652), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502713,15 +501643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 26, - sym__automatic_semicolon, + ACTIONS(4654), 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, @@ -502740,83 +501674,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52736] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(4876), 1, - sym_type_constraints, - STATE(4973), 1, - sym_enum_class_body, + [51297] = 5, + ACTIONS(6365), 1, + anon_sym_LT, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3190), 27, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(4230), 10, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOT, anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + sym__quest, sym__backtick_identifier, - [52806] = 5, - ACTIONS(5647), 1, - anon_sym_LBRACE, - STATE(5290), 1, - sym_enum_class_body, + ACTIONS(4148), 40, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [51362] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 20, + ACTIONS(4637), 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, @@ -502831,7 +501761,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4184), 29, + ACTIONS(4635), 30, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -502861,29 +501792,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52870] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, - STATE(5404), 1, - sym_type_constraints, + [51423] = 4, + ACTIONS(8272), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 19, + ACTIONS(4841), 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_else, anon_sym_BANG_EQ, @@ -502892,58 +501815,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 26, + ACTIONS(4843), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52942] = 9, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(7926), 1, + [51486] = 8, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8174), 1, anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4912), 1, + ACTIONS(8274), 1, + anon_sym_COLON, + STATE(4922), 1, sym_function_body, - STATE(5396), 1, - sym_type_constraints, + STATE(4923), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 19, + ACTIONS(4150), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -502960,13 +501886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 26, + ACTIONS(4152), 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, @@ -502987,149 +501914,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53014] = 5, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5363), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4342), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4340), 29, - 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, + [51557] = 5, + ACTIONS(8276), 1, + anon_sym_SEMI, + ACTIONS(8278), 1, 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [53078] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(8282), 1, - anon_sym_COLON, - STATE(4868), 1, - sym_type_constraints, - STATE(5081), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 19, + ACTIONS(4877), 21, 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 27, + ACTIONS(4879), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53148] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(6100), 1, - anon_sym_COLON, - STATE(4885), 1, - sym_type_constraints, - STATE(4917), 1, - sym_enum_class_body, + [51622] = 5, + ACTIONS(8280), 1, + anon_sym_COMMA, + STATE(5186), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 19, + ACTIONS(4635), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503142,16 +502004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 27, - sym__automatic_semicolon, + ACTIONS(4637), 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, @@ -503170,144 +502034,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53218] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(8284), 1, - anon_sym_COLON, - STATE(4891), 1, - sym_type_constraints, - STATE(4990), 1, - sym_class_body, + [51687] = 4, + ACTIONS(8278), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 19, + ACTIONS(4877), 21, 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 27, + ACTIONS(4879), 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, - 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, - [53288] = 7, - ACTIONS(7926), 1, + [51750] = 25, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(8234), 1, + anon_sym_constructor, + ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8240), 1, + anon_sym_LT, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, + ACTIONS(8283), 1, + anon_sym_COLON, + STATE(5380), 1, + sym_type_parameters, + STATE(7932), 1, + sym_primary_constructor, + STATE(8036), 1, + sym__class_parameters, + STATE(8288), 1, + sym_type_constraints, + STATE(8763), 1, + sym_class_body, + STATE(9273), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3124), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [51855] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4617), 21, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4615), 31, + anon_sym_COLON, anon_sym_where, - anon_sym_DOT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4101), 27, + [51916] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4599), 21, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [53356] = 5, - ACTIONS(5647), 1, - anon_sym_LBRACE, - STATE(5330), 1, - sym_enum_class_body, + ACTIONS(4597), 31, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [51977] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4346), 20, + ACTIONS(4965), 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, @@ -503322,7 +502316,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4344), 29, + ACTIONS(4963), 30, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -503352,27 +502347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53420] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(6112), 1, - anon_sym_COLON, - STATE(4875), 1, - sym_type_constraints, - STATE(4962), 1, - sym_class_body, + [52038] = 4, + ACTIONS(8285), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 19, + ACTIONS(4298), 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_else, anon_sym_BANG_EQ, @@ -503381,59 +502370,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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 27, + ACTIONS(4296), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53490] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, + [52101] = 6, + ACTIONS(3866), 1, anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, + ACTIONS(7233), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 20, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4304), 21, 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, @@ -503442,21 +502436,20 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 27, + ACTIONS(4307), 24, 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, @@ -503469,33 +502462,33 @@ 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, - [53558] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(8286), 1, - anon_sym_COLON, - STATE(4856), 1, - sym_type_constraints, - STATE(5001), 1, - sym_enum_class_body, + [52168] = 6, + ACTIONS(3866), 1, + anon_sym_EQ, + ACTIONS(7237), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 19, + ACTIONS(3871), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4290), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -503504,21 +502497,20 @@ 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 27, + ACTIONS(4293), 24, 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, @@ -503531,29 +502523,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52235] = 4, + ACTIONS(8287), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4859), 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_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4861), 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, - [53628] = 9, - ACTIONS(5403), 1, + [52298] = 25, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(3166), 1, + anon_sym_while, + ACTIONS(8289), 1, + anon_sym_COLON, + ACTIONS(8291), 1, + anon_sym_constructor, + ACTIONS(8293), 1, + anon_sym_LBRACE, + ACTIONS(8295), 1, + anon_sym_LPAREN, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8299), 1, + anon_sym_where, + STATE(5403), 1, + sym_type_parameters, + STATE(7948), 1, + sym_primary_constructor, + STATE(8262), 1, + sym__class_parameters, + STATE(8371), 1, + sym_type_constraints, + STATE(9253), 1, + sym_enum_class_body, + STATE(9335), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [52402] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8258), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4932), 1, + STATE(5074), 1, sym_function_body, - STATE(5412), 1, + STATE(5394), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 19, + ACTIONS(4120), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -503573,7 +502702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 26, + ACTIONS(4122), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -503600,23 +502729,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53700] = 7, - ACTIONS(7926), 1, + [52474] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, + STATE(5358), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3208), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3204), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [52538] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(6111), 1, + anon_sym_COLON, + STATE(4865), 1, + sym_type_constraints, + STATE(4998), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 20, + ACTIONS(3204), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -503633,7 +502822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 27, + ACTIONS(3208), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -503661,15 +502850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53768] = 5, - ACTIONS(5683), 1, + [52608] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5298), 1, + STATE(5334), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4402), 20, + ACTIONS(4470), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -503690,7 +502879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4400), 29, + ACTIONS(4468), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -503720,23 +502909,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53832] = 9, - ACTIONS(5403), 1, + [52672] = 8, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(7926), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, - STATE(5414), 1, + ACTIONS(8301), 1, + anon_sym_COLON, + STATE(4869), 1, sym_type_constraints, + STATE(4988), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 19, + ACTIONS(4342), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -503756,13 +502943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 26, + ACTIONS(4344), 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, @@ -503783,15 +502971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53904] = 5, - ACTIONS(5683), 1, + [52742] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5296), 1, - sym_class_body, + STATE(5331), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3200), 20, + ACTIONS(4334), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -503812,7 +503000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3196), 29, + ACTIONS(4332), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -503842,22 +503030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53968] = 4, - ACTIONS(8288), 1, - anon_sym_else, + [52806] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(6113), 1, + anon_sym_COLON, + STATE(4876), 1, + sym_type_constraints, + STATE(4969), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 20, + ACTIONS(3190), 19, 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, @@ -503869,19 +503064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 30, + ACTIONS(3194), 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, @@ -503900,73 +503092,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54030] = 23, - ACTIONS(3232), 1, + [52876] = 25, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(4684), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8290), 1, - anon_sym_EQ, - ACTIONS(8292), 1, - anon_sym_by, - ACTIONS(8294), 1, - anon_sym_where, - ACTIONS(8304), 1, + ACTIONS(3124), 1, + anon_sym_while, + ACTIONS(3144), 1, sym_property_modifier, - STATE(5402), 1, + ACTIONS(8291), 1, + anon_sym_constructor, + ACTIONS(8295), 1, + anon_sym_LPAREN, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8303), 1, + anon_sym_COLON, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(5435), 1, + sym_type_parameters, + STATE(7972), 1, + sym_primary_constructor, + STATE(8262), 1, + sym__class_parameters, + STATE(8574), 1, sym_type_constraints, - STATE(5484), 1, - sym_property_delegate, - STATE(8834), 1, + STATE(9076), 1, + sym_class_body, + STATE(9335), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1786), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - STATE(8659), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -503977,28 +503171,146 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [54130] = 23, - ACTIONS(3232), 1, + [52980] = 5, + ACTIONS(8311), 1, + sym__automatic_semicolon, + STATE(5432), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8309), 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_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8307), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [53044] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5331), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4334), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4332), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [53108] = 23, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4676), 1, + ACTIONS(4680), 1, anon_sym_SEMI, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8292), 1, + ACTIONS(8313), 1, + anon_sym_EQ, + ACTIONS(8315), 1, anon_sym_by, - ACTIONS(8294), 1, + ACTIONS(8317), 1, anon_sym_where, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8312), 1, - anon_sym_EQ, - STATE(5441), 1, + STATE(5418), 1, sym_type_constraints, - STATE(5482), 1, + STATE(5494), 1, sym_property_delegate, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, @@ -504006,44 +503318,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1754), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8906), 2, + STATE(8811), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -504054,13 +503366,137 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [54230] = 4, - ACTIONS(8314), 1, + [53208] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4688), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4686), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [53272] = 5, + ACTIONS(8339), 1, + sym__automatic_semicolon, + STATE(5400), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8337), 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_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8335), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [53336] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5006), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 21, + ACTIONS(4114), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -504069,7 +503505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504082,18 +503517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 29, + ACTIONS(4116), 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, @@ -504112,17 +503545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54292] = 4, - ACTIONS(8316), 1, - anon_sym_LPAREN, + [53404] = 8, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + ACTIONS(8341), 1, + anon_sym_COLON, + STATE(4724), 1, + sym__block, + STATE(4725), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 21, + ACTIONS(4150), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -504140,18 +503580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 29, + ACTIONS(4152), 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, @@ -504170,145 +503607,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54354] = 5, - ACTIONS(5683), 1, + [53474] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(5290), 1, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(6107), 1, + anon_sym_COLON, + STATE(4536), 1, + sym_type_constraints, + STATE(4658), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4184), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(3190), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54418] = 5, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5382), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4595), 20, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3194), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4593), 29, - 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, + [53544] = 25, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(3156), 1, + anon_sym_while, + ACTIONS(8291), 1, + anon_sym_constructor, + ACTIONS(8293), 1, + anon_sym_LBRACE, + ACTIONS(8295), 1, + anon_sym_LPAREN, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8343), 1, + anon_sym_COLON, + STATE(5452), 1, + sym_type_parameters, + STATE(7987), 1, + sym_primary_constructor, + STATE(8262), 1, + sym__class_parameters, + STATE(8335), 1, + sym_type_constraints, + STATE(9111), 1, + sym_enum_class_body, + STATE(9335), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [54482] = 7, - ACTIONS(7926), 1, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [53648] = 8, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8183), 1, anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5032), 1, + ACTIONS(8345), 1, + anon_sym_COLON, + STATE(4687), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 20, + ACTIONS(4162), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504321,14 +503783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 27, - sym__automatic_semicolon, + ACTIONS(4164), 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, @@ -504349,133 +503810,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54550] = 5, - ACTIONS(5647), 1, + [53718] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(5270), 1, - sym_enum_class_body, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3212), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4108), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [54614] = 5, - ACTIONS(5647), 1, - anon_sym_LBRACE, - STATE(5309), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4654), 20, + ACTIONS(4110), 27, sym__automatic_semicolon, - sym__string_start, + 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_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4652), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [54678] = 5, - ACTIONS(5647), 1, + [53786] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5363), 1, - sym_enum_class_body, + STATE(5353), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 20, + ACTIONS(4664), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -504496,7 +503900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4340), 29, + ACTIONS(4662), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -504526,17 +503930,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54742] = 4, - ACTIONS(8318), 1, - anon_sym_LPAREN, + [53850] = 8, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + ACTIONS(8347), 1, + anon_sym_COLON, + STATE(4690), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 21, + ACTIONS(4156), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -504554,18 +503965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 29, + ACTIONS(4158), 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, @@ -504584,29 +503992,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54804] = 8, - ACTIONS(7864), 1, + [53920] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(8320), 1, - anon_sym_COLON, - STATE(4628), 1, - sym_function_body, - STATE(4690), 1, + STATE(4923), 1, sym__block, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 20, + ACTIONS(4102), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504619,13 +504025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4198), 26, + ACTIONS(4104), 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, @@ -504646,75 +504053,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54874] = 25, - ACTIONS(3104), 1, + [53988] = 23, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(3108), 1, - anon_sym_while, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(8322), 1, - anon_sym_COLON, - ACTIONS(8324), 1, - anon_sym_constructor, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8328), 1, - anon_sym_LPAREN, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8332), 1, + ACTIONS(4609), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, + anon_sym_get, + ACTIONS(7420), 1, + anon_sym_set, + ACTIONS(8315), 1, + anon_sym_by, + ACTIONS(8317), 1, anon_sym_where, - STATE(5400), 1, - sym_type_parameters, - STATE(7956), 1, - sym_primary_constructor, - STATE(8268), 1, - sym__class_parameters, - STATE(8454), 1, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8349), 1, + anon_sym_EQ, + STATE(5430), 1, sym_type_constraints, - STATE(9071), 1, - sym_enum_class_body, - STATE(9423), 1, + STATE(5493), 1, + sym_property_delegate, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(1782), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + STATE(8697), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -504725,21 +504130,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [54978] = 8, - ACTIONS(7864), 1, + [54088] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - ACTIONS(8334), 1, + ACTIONS(6147), 1, anon_sym_COLON, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + STATE(4862), 1, + sym_type_constraints, + STATE(4998), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 20, + ACTIONS(3204), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -504747,7 +504152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504760,13 +504164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 26, + ACTIONS(3208), 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, @@ -504787,29 +504192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55048] = 8, - ACTIONS(7864), 1, + [54158] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8174), 1, anon_sym_EQ, - ACTIONS(8336), 1, - anon_sym_COLON, - STATE(4689), 1, - sym_function_body, - STATE(4690), 1, + STATE(4923), 1, sym__block, + STATE(5074), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 20, + ACTIONS(4120), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504822,13 +504225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 26, + ACTIONS(4122), 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, @@ -504849,15 +504253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55118] = 5, - ACTIONS(5683), 1, + [54226] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5329), 1, - sym_class_body, + STATE(5358), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4682), 20, + ACTIONS(3208), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -504878,7 +504282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4680), 29, + ACTIONS(3204), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -504908,21 +504312,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55182] = 8, - ACTIONS(5119), 1, + [54290] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, - anon_sym_COLON, - STATE(4557), 1, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, + STATE(5424), 1, sym_type_constraints, - STATE(4603), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 20, + ACTIONS(4108), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -504930,7 +504336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504943,13 +504348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 26, + ACTIONS(4110), 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, @@ -504970,21 +504375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55252] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, + [54362] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8338), 1, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(8351), 1, anon_sym_COLON, - STATE(4535), 1, + STATE(4856), 1, sym_type_constraints, - STATE(4664), 1, - sym_class_body, + STATE(5028), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 20, + ACTIONS(4332), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -504992,7 +504397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -505005,13 +504409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4303), 26, + ACTIONS(4334), 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, @@ -505032,15 +504437,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55322] = 5, - ACTIONS(5647), 1, + [54432] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(5320), 1, - sym_enum_class_body, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5062), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4286), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4288), 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, + [54500] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5361), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 20, + ACTIONS(4344), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -505061,7 +504527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4670), 29, + ACTIONS(4342), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505091,15 +504557,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55386] = 5, - ACTIONS(5683), 1, + [54564] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5054), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4318), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4320), 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, + [54632] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5344), 1, + STATE(5313), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 20, + ACTIONS(4398), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -505120,7 +504647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4301), 29, + ACTIONS(4396), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505150,21 +504677,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55450] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [54696] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(6122), 1, - anon_sym_COLON, - STATE(4524), 1, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5057), 1, + sym_function_body, + STATE(5425), 1, sym_type_constraints, - STATE(4697), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 20, + ACTIONS(4102), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -505172,7 +504701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -505185,13 +504713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 26, + ACTIONS(4104), 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, @@ -505212,21 +504740,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55520] = 8, - ACTIONS(5119), 1, + [54768] = 8, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(5159), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(6120), 1, + ACTIONS(8353), 1, anon_sym_COLON, - STATE(4514), 1, + STATE(4537), 1, sym_type_constraints, - STATE(4697), 1, - sym_class_body, + STATE(4610), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 20, + ACTIONS(4326), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -505247,7 +504775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 26, + ACTIONS(4328), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505274,75 +504802,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55590] = 25, - ACTIONS(3104), 1, + [54838] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5269), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4328), 20, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(3150), 1, - anon_sym_while, - ACTIONS(8324), 1, - anon_sym_constructor, - ACTIONS(8328), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(8330), 1, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4326), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54902] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5040), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4452), 20, + anon_sym_as, anon_sym_LT, - ACTIONS(8332), 1, + anon_sym_GT, anon_sym_where, - ACTIONS(8340), 1, - anon_sym_COLON, - ACTIONS(8342), 1, - anon_sym_LBRACE, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4454), 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, + [54970] = 23, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(7418), 1, + anon_sym_get, + ACTIONS(7420), 1, + anon_sym_set, + ACTIONS(8315), 1, + anon_sym_by, + ACTIONS(8317), 1, + anon_sym_where, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8355), 1, + anon_sym_EQ, + ACTIONS(8357), 1, + anon_sym_SEMI, STATE(5399), 1, - sym_type_parameters, - STATE(7959), 1, - sym_primary_constructor, - STATE(8268), 1, - sym__class_parameters, - STATE(8396), 1, sym_type_constraints, - STATE(8993), 1, - sym_class_body, - STATE(9423), 1, + STATE(5487), 1, + sym_property_delegate, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + STATE(8943), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -505353,73 +504999,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [55694] = 23, - ACTIONS(3232), 1, + [55070] = 23, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4690), 1, + ACTIONS(4706), 1, anon_sym_SEMI, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8292), 1, + ACTIONS(8315), 1, anon_sym_by, - ACTIONS(8294), 1, + ACTIONS(8317), 1, anon_sym_where, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8344), 1, + ACTIONS(8359), 1, anon_sym_EQ, - STATE(5411), 1, + STATE(5421), 1, sym_type_constraints, - STATE(5489), 1, + STATE(5490), 1, sym_property_delegate, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 2, + ACTIONS(1776), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8897), 2, + STATE(8881), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -505430,76 +505076,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [55794] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4954), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4485), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4487), 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, - [55862] = 5, - ACTIONS(5647), 1, + [55170] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5323), 1, + STATE(5313), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 20, + ACTIONS(4398), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -505520,7 +505105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3186), 29, + ACTIONS(4396), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505550,24 +505135,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55926] = 5, - ACTIONS(8288), 1, + [55234] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(6131), 1, + anon_sym_COLON, + STATE(4550), 1, + sym_type_constraints, + STATE(4628), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3196), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_else, - ACTIONS(8346), 1, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3200), 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, + [55304] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(4549), 1, + sym_type_constraints, + STATE(4626), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 20, + ACTIONS(4332), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -505579,18 +505232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 29, + ACTIONS(4334), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -505609,75 +505259,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55990] = 25, - ACTIONS(3104), 1, + [55374] = 25, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3144), 1, sym_property_modifier, - ACTIONS(3140), 1, + ACTIONS(3156), 1, anon_sym_while, - ACTIONS(8324), 1, + ACTIONS(8291), 1, anon_sym_constructor, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8328), 1, + ACTIONS(8295), 1, anon_sym_LPAREN, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8348), 1, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(8363), 1, anon_sym_COLON, - STATE(5438), 1, + STATE(5417), 1, sym_type_parameters, - STATE(7944), 1, + STATE(7965), 1, sym_primary_constructor, - STATE(8268), 1, + STATE(8262), 1, sym__class_parameters, - STATE(8477), 1, + STATE(8406), 1, sym_type_constraints, - STATE(9024), 1, - sym_enum_class_body, - STATE(9423), 1, + STATE(9111), 1, + sym_class_body, + STATE(9335), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -505688,27 +505338,150 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [56094] = 7, - ACTIONS(7926), 1, + [55478] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5034), 1, - sym_function_body, + STATE(5274), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4644), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4642), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [55542] = 8, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(8365), 1, + anon_sym_COLON, + STATE(4524), 1, + sym_type_constraints, + STATE(4626), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 20, + ACTIONS(4332), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4334), 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, + [55612] = 8, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, anon_sym_where, + ACTIONS(6119), 1, + anon_sym_COLON, + STATE(4548), 1, + sym_type_constraints, + STATE(4649), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3204), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -505721,14 +505494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 27, - sym__automatic_semicolon, + ACTIONS(3208), 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, @@ -505749,15 +505521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56162] = 5, - ACTIONS(5647), 1, + [55682] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5386), 1, - sym_enum_class_body, + STATE(5383), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 20, + ACTIONS(3194), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -505778,7 +505550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4229), 29, + ACTIONS(3190), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505808,23 +505580,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56226] = 7, - ACTIONS(7926), 1, + [55746] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4939), 1, - sym_function_body, + ACTIONS(8367), 1, + anon_sym_COLON, + STATE(4855), 1, + sym_type_constraints, + STATE(5028), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 20, + ACTIONS(4332), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -505841,7 +505614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 27, + ACTIONS(4334), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505869,21 +505642,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56294] = 8, - ACTIONS(5403), 1, + [55816] = 4, + ACTIONS(8369), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4298), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5409), 1, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4296), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8350), 1, - anon_sym_COLON, - STATE(4879), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55878] = 9, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5062), 1, + sym_function_body, + STATE(5426), 1, sym_type_constraints, - STATE(5081), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 19, + ACTIONS(4286), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -505903,14 +505736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 27, + ACTIONS(4288), 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, @@ -505931,21 +505763,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56364] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [55950] = 9, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(8352), 1, - anon_sym_COLON, - STATE(4521), 1, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5054), 1, + sym_function_body, + STATE(5427), 1, sym_type_constraints, - STATE(4720), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 20, + ACTIONS(4318), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -505953,7 +505787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -505966,13 +505799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 26, + ACTIONS(4320), 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, @@ -505993,15 +505826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56434] = 5, - ACTIONS(5683), 1, + [56022] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5349), 1, - sym_class_body, + STATE(5271), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4406), 20, + ACTIONS(4478), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -506022,7 +505855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4404), 29, + ACTIONS(4476), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -506052,24 +505885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56498] = 8, - ACTIONS(5119), 1, - anon_sym_where, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8354), 1, - anon_sym_COLON, - STATE(4527), 1, - sym_type_constraints, - STATE(4720), 1, - sym_class_body, + [56086] = 4, + ACTIONS(8371), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 20, + ACTIONS(4312), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -506087,15 +505913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 26, + ACTIONS(4310), 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, @@ -506114,21 +505943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56568] = 8, - ACTIONS(5113), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, + [56148] = 8, + ACTIONS(5127), 1, anon_sym_where, - ACTIONS(6114), 1, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(6117), 1, anon_sym_COLON, - STATE(4528), 1, + STATE(4553), 1, sym_type_constraints, - STATE(4703), 1, + STATE(4649), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 20, + ACTIONS(3204), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506149,7 +505978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3216), 26, + ACTIONS(3208), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506176,255 +506005,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56638] = 5, - ACTIONS(5647), 1, - anon_sym_LBRACE, - STATE(5351), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4503), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4501), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [56702] = 5, - ACTIONS(5683), 1, + [56218] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(5379), 1, + ACTIONS(5127), 1, + anon_sym_where, + ACTIONS(8373), 1, + anon_sym_COLON, + STATE(4562), 1, + sym_type_constraints, + STATE(4651), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4535), 20, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4533), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4342), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [56766] = 5, - ACTIONS(5683), 1, - anon_sym_LBRACE, - STATE(5351), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4503), 20, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4344), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4501), 29, - anon_sym_object, - anon_sym_fun, + [56288] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(6083), 1, + anon_sym_COLON, + STATE(4852), 1, + sym_type_constraints, + STATE(5043), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3196), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [56830] = 5, - ACTIONS(8360), 1, + ACTIONS(3200), 27, sym__automatic_semicolon, - STATE(5435), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8358), 20, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(8356), 29, - anon_sym_object, - anon_sym_fun, + [56358] = 4, + ACTIONS(8375), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4841), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [56894] = 7, - ACTIONS(7926), 1, + ACTIONS(4843), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4932), 1, - sym_function_body, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [56420] = 4, + ACTIONS(8377), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 20, + ACTIONS(4859), 21, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506433,6 +506202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506445,16 +506215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 27, - sym__automatic_semicolon, + ACTIONS(4861), 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, @@ -506473,21 +506245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56962] = 8, - ACTIONS(5113), 1, + [56482] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(8362), 1, + ACTIONS(8379), 1, anon_sym_COLON, - STATE(4544), 1, + STATE(4847), 1, sym_type_constraints, - STATE(4638), 1, + STATE(5064), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 20, + ACTIONS(4326), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506495,7 +506267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506508,13 +506279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 26, + ACTIONS(4328), 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, @@ -506535,73 +506307,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57032] = 23, - ACTIONS(3232), 1, + [56552] = 23, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8292), 1, + ACTIONS(8315), 1, anon_sym_by, - ACTIONS(8294), 1, + ACTIONS(8317), 1, anon_sym_where, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8364), 1, + ACTIONS(8381), 1, anon_sym_EQ, - ACTIONS(8366), 1, + ACTIONS(8383), 1, anon_sym_SEMI, - STATE(5393), 1, + STATE(5437), 1, sym_type_constraints, - STATE(5491), 1, + STATE(5492), 1, sym_property_delegate, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(3266), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8605), 2, + STATE(8658), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -506612,94 +506384,74 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [57132] = 25, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(3140), 1, - anon_sym_while, - ACTIONS(8324), 1, - anon_sym_constructor, - ACTIONS(8328), 1, - anon_sym_LPAREN, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, + [56652] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5415), 1, - sym_type_parameters, - STATE(7938), 1, - sym_primary_constructor, - STATE(8268), 1, - sym__class_parameters, - STATE(8493), 1, - sym_type_constraints, - STATE(9024), 1, + STATE(5314), 1, sym_class_body, - STATE(9423), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4412), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4410), 29, + 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, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [57236] = 5, - ACTIONS(5683), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [56716] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5323), 1, - sym_class_body, + STATE(5317), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 20, + ACTIONS(3200), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -506720,7 +506472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3186), 29, + ACTIONS(3196), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -506750,96 +506502,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57300] = 23, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8292), 1, - anon_sym_by, - ACTIONS(8294), 1, - anon_sym_where, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8370), 1, - anon_sym_EQ, - ACTIONS(8372), 1, - anon_sym_SEMI, - STATE(5423), 1, - sym_type_constraints, - STATE(5494), 1, - sym_property_delegate, - STATE(8834), 1, - sym_modifiers, + [56780] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5292), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3234), 2, + ACTIONS(4621), 20, sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8780), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4619), 29, + 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, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [57400] = 7, - ACTIONS(7926), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [56844] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(8174), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5031), 1, + STATE(5012), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 20, + ACTIONS(4438), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506860,7 +506594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 27, + ACTIONS(4440), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506888,19 +506622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57468] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, + [56912] = 5, + ACTIONS(8385), 1, + anon_sym_SEMI, + ACTIONS(8387), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 20, + ACTIONS(4877), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -506909,7 +506639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_else, + anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -506921,16 +506651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 27, - sym__automatic_semicolon, + ACTIONS(4879), 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_SEMI, + anon_sym_RPAREN, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -506949,15 +506681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57536] = 5, - ACTIONS(5683), 1, + [56976] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5309), 1, - sym_class_body, + STATE(5287), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 20, + ACTIONS(4500), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -506978,7 +506710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4652), 29, + ACTIONS(4498), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507008,15 +506740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57600] = 5, - ACTIONS(5647), 1, + [57040] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5322), 1, - sym_enum_class_body, + STATE(5271), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4392), 20, + ACTIONS(4478), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -507037,7 +506769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4390), 29, + ACTIONS(4476), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507067,16 +506799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57664] = 3, + [57104] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5332), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5073), 21, + ACTIONS(4625), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -507093,7 +506828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5071), 29, + ACTIONS(4623), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507123,16 +506858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57723] = 3, + [57168] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5279), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 21, + ACTIONS(4484), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -507149,7 +506887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4229), 29, + ACTIONS(4482), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507179,27 +506917,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57782] = 7, - ACTIONS(7864), 1, + [57232] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8174), 1, anon_sym_EQ, - STATE(4652), 1, - sym_function_body, - STATE(4690), 1, + STATE(4923), 1, sym__block, + STATE(4925), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4085), 20, + ACTIONS(4442), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507212,13 +506950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4087), 26, + ACTIONS(4444), 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, @@ -507239,84 +506978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57849] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4033), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4031), 29, - 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, + [57300] = 4, + ACTIONS(8387), 1, 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [57908] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4716), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 20, + ACTIONS(4877), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -507328,15 +507005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 26, + ACTIONS(4879), 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, @@ -507355,27 +507036,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57975] = 7, - ACTIONS(7864), 1, + [57362] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8174), 1, anon_sym_EQ, - STATE(4653), 1, - sym_function_body, - STATE(4690), 1, + STATE(4923), 1, sym__block, + STATE(4966), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4031), 20, + ACTIONS(4156), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507388,13 +507069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4033), 26, + ACTIONS(4158), 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, @@ -507415,16 +507097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [58042] = 3, + [57430] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5332), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5031), 21, + ACTIONS(4625), 20, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -507441,7 +507126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5029), 29, + ACTIONS(4623), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507471,87 +507156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58101] = 23, - ACTIONS(1786), 1, - anon_sym_while, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(4834), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8374), 1, - anon_sym_EQ, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8378), 1, - anon_sym_where, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - STATE(5458), 1, - sym_type_constraints, - STATE(5500), 1, - sym_property_delegate, - STATE(8728), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9055), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [58200] = 3, + [57494] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1754), 21, + ACTIONS(4484), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -507573,7 +507182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1752), 29, + ACTIONS(4482), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507603,205 +507212,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58259] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8386), 1, - anon_sym_COMMA, - ACTIONS(8388), 1, - anon_sym_RPAREN, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8466), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [58356] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(8400), 1, - anon_sym_COLON, - STATE(4856), 1, - sym_type_constraints, - STATE(5001), 1, - sym_enum_class_body, + [57553] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4231), 26, + ACTIONS(5045), 21, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [58425] = 5, - ACTIONS(8402), 1, - anon_sym_COMMA, - STATE(5377), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4656), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(5043), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4658), 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, - [58488] = 3, + [57612] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5027), 21, + ACTIONS(4625), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -507823,7 +507294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5025), 29, + ACTIONS(4623), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -507853,224 +507324,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58547] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(6198), 1, - anon_sym_COLON, - STATE(4885), 1, - sym_type_constraints, - STATE(4917), 1, - sym_enum_class_body, + [57671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3212), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3216), 26, + ACTIONS(5053), 21, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [58616] = 23, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(8230), 1, - anon_sym_constructor, - ACTIONS(8234), 1, - anon_sym_LPAREN, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8404), 1, - anon_sym_COLON, - STATE(7916), 1, - sym_primary_constructor, - STATE(8024), 1, - sym__class_parameters, - STATE(8314), 1, - sym_type_constraints, - STATE(8912), 1, - sym_class_body, - STATE(9411), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3200), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(5051), 29, + 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, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [58715] = 23, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(8230), 1, - anon_sym_constructor, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8234), 1, - anon_sym_LPAREN, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8406), 1, - anon_sym_COLON, - STATE(7914), 1, - sym_primary_constructor, - STATE(8024), 1, - sym__class_parameters, - STATE(8324), 1, - sym_type_constraints, - STATE(8928), 1, - sym_enum_class_body, - STATE(9411), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3216), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [58814] = 3, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [57730] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5061), 21, + ACTIONS(1764), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508092,7 +507406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5059), 29, + ACTIONS(1762), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508122,86 +507436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58873] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8408), 1, - anon_sym_COMMA, - ACTIONS(8410), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8500), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [58970] = 3, + [57789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5019), 21, + ACTIONS(5049), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508223,7 +507462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5017), 29, + ACTIONS(5047), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508253,78 +507492,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59029] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4580), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + [57848] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4288), 21, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4286), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4101), 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, - [59096] = 3, + [57907] = 4, + ACTIONS(8389), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4049), 21, + ACTIONS(4296), 20, 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, @@ -508339,7 +507575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4047), 29, + ACTIONS(4298), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508369,11 +507605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59155] = 3, + [57968] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4503), 21, + ACTIONS(5029), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508395,7 +507631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4501), 29, + ACTIONS(5027), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508425,11 +507661,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59214] = 3, + [58027] = 23, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8391), 1, + anon_sym_EQ, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8395), 1, + anon_sym_where, + ACTIONS(8397), 1, + anon_sym_SEMI, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + STATE(5454), 1, + sym_type_constraints, + STATE(5513), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9083), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [58126] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 21, + ACTIONS(4500), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508451,7 +507763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5041), 29, + ACTIONS(4498), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508481,21 +507793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59273] = 8, - ACTIONS(5399), 1, + [58185] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(8412), 1, - anon_sym_COLON, - STATE(4868), 1, - sym_type_constraints, - STATE(5081), 1, - sym_class_body, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 19, + ACTIONS(4120), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -508503,6 +507813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -508515,13 +507826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 26, - sym__automatic_semicolon, + ACTIONS(4122), 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, @@ -508542,11 +507853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59342] = 3, + [58252] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 21, + ACTIONS(205), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508568,7 +507879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5033), 29, + ACTIONS(207), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508598,11 +507909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59401] = 3, + [58311] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5099), 21, + ACTIONS(5023), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508624,7 +507935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5097), 29, + ACTIONS(5021), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508654,19 +507965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59460] = 7, - ACTIONS(7864), 1, + [58370] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8183), 1, anon_sym_EQ, - STATE(4573), 1, + STATE(4596), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 20, + ACTIONS(4286), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -508687,7 +507998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4260), 26, + ACTIONS(4288), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508714,11 +508025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59527] = 3, + [58437] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 21, + ACTIONS(1696), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508740,7 +508051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4301), 29, + ACTIONS(1694), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508770,19 +508081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59586] = 7, - ACTIONS(7864), 1, + [58496] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8183), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4594), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 20, + ACTIONS(4318), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -508803,7 +508114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 26, + ACTIONS(4320), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508830,11 +508141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59653] = 3, + [58563] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4406), 21, + ACTIONS(4320), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508856,7 +508167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4404), 29, + ACTIONS(4318), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508886,86 +508197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59712] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8414), 1, - anon_sym_COMMA, - ACTIONS(8416), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8505), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [59809] = 3, + [58622] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1786), 21, + ACTIONS(4621), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508987,7 +508223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1784), 29, + ACTIONS(4619), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509017,204 +508253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59868] = 4, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4511), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4814), 21, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4816), 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, - [59929] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4691), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4485), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4487), 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, - [59996] = 23, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8378), 1, - anon_sym_where, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - ACTIONS(8418), 1, - anon_sym_EQ, - ACTIONS(8420), 1, - anon_sym_SEMI, - STATE(5467), 1, - sym_type_constraints, - STATE(5496), 1, - sym_property_delegate, - STATE(8728), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9027), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [60095] = 3, + [58681] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 21, + ACTIONS(5057), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -509236,7 +508279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3186), 29, + ACTIONS(5055), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509266,51 +508309,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60154] = 14, - ACTIONS(8424), 1, + [58740] = 14, + ACTIONS(8403), 1, anon_sym_AT, - ACTIONS(8439), 1, + ACTIONS(8408), 1, + anon_sym_var, + ACTIONS(8422), 1, sym_property_modifier, - ACTIONS(8451), 1, - sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8433), 2, + ACTIONS(8416), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8448), 2, + ACTIONS(8431), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8442), 3, + ACTIONS(8425), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8445), 3, + ACTIONS(8428), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8430), 4, + ACTIONS(8413), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8436), 4, + ACTIONS(8419), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8427), 6, + ACTIONS(8410), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5305), 10, + STATE(5289), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -509321,23 +508364,83 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(8422), 11, + ACTIONS(8406), 11, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, + [58821] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4620), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4102), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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_expect, + anon_sym_actual, sym__alpha_identifier, - [60235] = 3, + ACTIONS(4104), 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, + [58888] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4941), 21, + ACTIONS(4454), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -509359,7 +508462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4939), 29, + ACTIONS(4452), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509389,143 +508492,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60294] = 4, + [58947] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4519), 2, + ACTIONS(4999), 21, sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4826), 21, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4828), 27, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [60355] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8453), 1, - anon_sym_COMMA, - ACTIONS(8455), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8441), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(4997), 29, + 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, - ACTIONS(8396), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [60452] = 3, + [59006] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4937), 21, + ACTIONS(4122), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -509547,7 +508574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4935), 29, + ACTIONS(4120), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509577,78 +508604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60511] = 14, - ACTIONS(8422), 1, - anon_sym_var, - ACTIONS(8457), 1, - anon_sym_AT, - ACTIONS(8472), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8466), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8481), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8475), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8478), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8463), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8469), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8460), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5310), 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, - ACTIONS(8451), 11, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_val, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - [60592] = 3, + [59065] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1780), 21, + ACTIONS(4995), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -509670,7 +508630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1778), 29, + ACTIONS(4993), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509700,143 +508660,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60651] = 8, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - ACTIONS(8484), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5031), 1, - sym_function_body, + [59124] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4210), 26, + ACTIONS(4991), 21, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [60720] = 8, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - ACTIONS(8486), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5063), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4196), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4989), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4198), 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, - [60789] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, + [59183] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8488), 1, - anon_sym_COLON, - STATE(4879), 1, - sym_type_constraints, - STATE(5081), 1, - sym_enum_class_body, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4591), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4184), 19, + ACTIONS(4452), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -509844,6 +508736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -509856,13 +508749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4186), 26, - sym__automatic_semicolon, + ACTIONS(4454), 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, @@ -509883,72 +508776,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60858] = 23, - ACTIONS(3232), 1, + [59250] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(3234), 1, - anon_sym_while, - ACTIONS(8304), 1, + ACTIONS(8436), 1, + anon_sym_COMMA, + ACTIONS(8438), 1, + anon_sym_RPAREN, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8378), 1, - anon_sym_where, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - ACTIONS(8490), 1, - anon_sym_EQ, - ACTIONS(8492), 1, - anon_sym_SEMI, - STATE(5462), 1, - sym_type_constraints, - STATE(5497), 1, - sym_property_delegate, - STATE(8728), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, sym_modifiers, + STATE(8590), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9015), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -509959,21 +508851,78 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [60957] = 8, - ACTIONS(5399), 1, + [59347] = 6, + ACTIONS(6918), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4298), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4296), 4, + sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4293), 16, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(6186), 1, - anon_sym_COLON, - STATE(4867), 1, - sym_type_constraints, - STATE(4973), 1, - sym_class_body, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4290), 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_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59412] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4632), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 19, + ACTIONS(4108), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -509981,6 +508930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -509993,13 +508943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3190), 26, - sym__automatic_semicolon, + ACTIONS(4110), 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, @@ -510020,30 +508970,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61026] = 7, - ACTIONS(8496), 1, - anon_sym_AT, - ACTIONS(8501), 1, - sym_label, + [59479] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3980), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(5317), 2, - sym_annotation, - aux_sym__statement_repeat1, - ACTIONS(8499), 17, + ACTIONS(1770), 21, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1768), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [59538] = 6, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4312), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4310), 4, + sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4307), 16, + 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, @@ -510052,16 +509058,14 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8494), 27, + ACTIONS(4304), 26, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_this, anon_sym_super, - anon_sym_for, - anon_sym_while, - anon_sym_do, + sym_label, anon_sym_null, anon_sym_if, anon_sym_when, @@ -510072,6 +509076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_expect, @@ -510080,51 +509085,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61093] = 14, - ACTIONS(3104), 1, + [59603] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4450), 10, anon_sym_AT, - ACTIONS(8506), 1, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4448), 40, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, anon_sym_var, - ACTIONS(8508), 1, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [59662] = 23, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, sym_property_modifier, + ACTIONS(8234), 1, + anon_sym_constructor, + ACTIONS(8236), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8450), 1, + anon_sym_COLON, + STATE(7919), 1, + sym_primary_constructor, + STATE(8036), 1, + sym__class_parameters, + STATE(8286), 1, + sym_type_constraints, + STATE(8767), 1, + sym_enum_class_body, + STATE(9273), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(3200), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5310), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -510135,23 +509217,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(8504), 11, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_val, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - [61174] = 3, + [59761] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 21, + ACTIONS(4931), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510173,7 +509243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4254), 29, + ACTIONS(4929), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510203,74 +509273,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61233] = 3, + [59820] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4643), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4923), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4921), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4114), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [61292] = 3, + ACTIONS(4116), 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, + [59887] = 4, + ACTIONS(8452), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4997), 21, + ACTIONS(4861), 20, 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, @@ -510285,7 +509360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4995), 29, + ACTIONS(4859), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510315,18 +509390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61351] = 3, + [59948] = 4, + ACTIONS(8454), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 21, + ACTIONS(4843), 20, 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, @@ -510341,7 +509417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4670), 29, + ACTIONS(4841), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510371,11 +509447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61410] = 3, + [60009] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 21, + ACTIONS(3076), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510397,7 +509473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4184), 29, + ACTIONS(3074), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510427,11 +509503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61469] = 3, + [60068] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 21, + ACTIONS(3194), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510453,7 +509529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4258), 29, + ACTIONS(3190), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510483,21 +509559,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61528] = 8, - ACTIONS(7926), 1, + [60127] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - ACTIONS(8510), 1, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(8456), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4919), 1, - sym_function_body, + STATE(4847), 1, + sym_type_constraints, + STATE(5064), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4324), 19, + ACTIONS(4326), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -510517,7 +509593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4326), 26, + ACTIONS(4328), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510544,11 +509620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61597] = 3, + [60196] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4519), 21, + ACTIONS(3342), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510570,7 +509646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4517), 29, + ACTIONS(3340), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510600,11 +509676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61656] = 3, + [60255] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3340), 21, + ACTIONS(5061), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510626,7 +509702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3338), 29, + ACTIONS(5059), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510656,11 +509732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61715] = 3, + [60314] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4487), 21, + ACTIONS(4478), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510682,7 +509758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4485), 29, + ACTIONS(4476), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510712,11 +509788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61774] = 3, + [60373] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5001), 21, + ACTIONS(4644), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510738,7 +509814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4999), 29, + ACTIONS(4642), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510768,11 +509844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61833] = 3, + [60432] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4392), 21, + ACTIONS(5065), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510794,7 +509870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4390), 29, + ACTIONS(5063), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510824,277 +509900,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61892] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8512), 1, - anon_sym_COMMA, - ACTIONS(8514), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8579), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [61989] = 3, + [60491] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 10, + ACTIONS(5069), 21, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SEMI, - 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4469), 40, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, + ACTIONS(5067), 29, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [62048] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8516), 1, - anon_sym_COMMA, - ACTIONS(8518), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8535), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [62145] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4685), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4208), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4210), 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, - [62212] = 3, + [60550] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 21, + ACTIONS(4328), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511116,7 +509982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3212), 29, + ACTIONS(4326), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511146,18 +510012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62271] = 3, + [60609] = 4, + ACTIONS(8458), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4915), 21, + ACTIONS(4310), 20, 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, @@ -511172,7 +510039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4913), 29, + ACTIONS(4312), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511202,133 +510069,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62330] = 8, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(5409), 1, - anon_sym_LBRACE, - ACTIONS(6168), 1, - anon_sym_COLON, - STATE(4876), 1, - sym_type_constraints, - STATE(4973), 1, - sym_enum_class_body, + [60670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3186), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3190), 26, + ACTIONS(5075), 21, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [62399] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5403), 1, - anon_sym_where, - ACTIONS(8520), 1, - anon_sym_COLON, - STATE(4891), 1, - sym_type_constraints, - STATE(4990), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4301), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5073), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4303), 26, + [60729] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5079), 21, 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [62468] = 3, + ACTIONS(5077), 29, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [60788] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 21, + ACTIONS(4951), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511350,7 +510207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1770), 29, + ACTIONS(4949), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511380,19 +510237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62527] = 7, - ACTIONS(7864), 1, + [60847] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4601), 1, - sym_function_body, - STATE(4690), 1, - sym__block, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(6215), 1, + anon_sym_COLON, + STATE(4852), 1, + sym_type_constraints, + STATE(5043), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4420), 20, + ACTIONS(3196), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -511400,7 +510259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511413,13 +510271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4422), 26, + ACTIONS(3200), 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, @@ -511440,11 +510298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62594] = 3, + [60916] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4911), 21, + ACTIONS(5087), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511466,7 +510324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4909), 29, + ACTIONS(5085), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511496,11 +510354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62653] = 3, + [60975] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4945), 21, + ACTIONS(4104), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511522,7 +510380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4943), 29, + ACTIONS(4102), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511552,71 +510410,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62712] = 7, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4740), 1, - sym_function_body, + [61034] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3266), 21, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3264), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4426), 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, - [62779] = 3, + [61093] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4402), 21, + ACTIONS(1754), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511638,7 +510492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4400), 29, + ACTIONS(1752), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511668,72 +510522,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62838] = 23, - ACTIONS(1696), 1, - anon_sym_while, - ACTIONS(3232), 1, + [61152] = 23, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4993), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, + ACTIONS(3266), 1, + anon_sym_while, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8376), 1, + ACTIONS(8393), 1, anon_sym_by, - ACTIONS(8378), 1, + ACTIONS(8395), 1, anon_sym_where, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - ACTIONS(8522), 1, + ACTIONS(8460), 1, anon_sym_EQ, - STATE(5456), 1, + ACTIONS(8462), 1, + anon_sym_SEMI, + STATE(5465), 1, sym_type_constraints, - STATE(5498), 1, + STATE(5512), 1, sym_property_delegate, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9079), 2, + STATE(9121), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -511744,11 +510598,153 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62937] = 3, + [61251] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8464), 1, + anon_sym_COMMA, + ACTIONS(8466), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8547), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 21, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [61348] = 14, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(8470), 1, + anon_sym_var, + ACTIONS(8472), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5289), 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, + ACTIONS(8468), 11, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_val, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + [61429] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5111), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511770,7 +510766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3278), 29, + ACTIONS(5109), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511800,11 +510796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62996] = 3, + [61488] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5005), 21, + ACTIONS(4398), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511826,7 +510822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5003), 29, + ACTIONS(4396), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511856,11 +510852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63055] = 3, + [61547] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4752), 21, + ACTIONS(5015), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511882,7 +510878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4750), 29, + ACTIONS(5013), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511912,11 +510908,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63114] = 3, + [61606] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8474), 1, + anon_sym_COLON, + STATE(4855), 1, + sym_type_constraints, + STATE(5028), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4332), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4334), 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, + [61675] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 21, + ACTIONS(4412), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511938,7 +510995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4593), 29, + ACTIONS(4410), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511968,87 +511025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63173] = 23, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(8230), 1, - anon_sym_constructor, - ACTIONS(8234), 1, - anon_sym_LPAREN, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8524), 1, - anon_sym_COLON, - STATE(7912), 1, - sym_primary_constructor, - STATE(8024), 1, - sym__class_parameters, - STATE(8261), 1, - sym_type_constraints, - STATE(8646), 1, - sym_class_body, - STATE(9411), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3190), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [63272] = 3, + [61734] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 21, + ACTIONS(4496), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512070,7 +511051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4340), 29, + ACTIONS(4494), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512100,11 +511081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63331] = 3, + [61793] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4511), 21, + ACTIONS(5011), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512126,7 +511107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4509), 29, + ACTIONS(5009), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512156,19 +511137,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63390] = 4, - ACTIONS(8526), 1, + [61852] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4466), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4464), 40, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [61911] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4961), 20, + ACTIONS(5107), 21, 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, @@ -512183,7 +511219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4959), 29, + ACTIONS(5105), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512213,19 +511249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63451] = 4, - ACTIONS(8528), 1, - anon_sym_LPAREN, + [61970] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 20, + ACTIONS(4504), 21, 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, @@ -512240,7 +511275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4953), 29, + ACTIONS(4502), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512270,11 +511305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63512] = 3, + [62029] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3084), 21, + ACTIONS(4975), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512296,7 +511331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3082), 29, + ACTIONS(4973), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512326,11 +511361,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63571] = 3, + [62088] = 8, + ACTIONS(5405), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(8476), 1, + anon_sym_COLON, + STATE(4856), 1, + sym_type_constraints, + STATE(5028), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4332), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4334), 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, + [62157] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(6199), 1, + anon_sym_COLON, + STATE(4862), 1, + sym_type_constraints, + STATE(4998), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3204), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3208), 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, + [62226] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4991), 21, + ACTIONS(3200), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512352,7 +511509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4989), 29, + ACTIONS(3196), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512382,11 +511539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63630] = 3, + [62285] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4824), 21, + ACTIONS(5103), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512408,7 +511565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4822), 29, + ACTIONS(5101), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512438,21 +511595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63689] = 8, - ACTIONS(5399), 1, + [62344] = 8, + ACTIONS(5405), 1, anon_sym_LBRACE, - ACTIONS(5403), 1, + ACTIONS(5411), 1, anon_sym_where, - ACTIONS(6154), 1, + ACTIONS(6183), 1, anon_sym_COLON, - STATE(4875), 1, + STATE(4865), 1, sym_type_constraints, - STATE(4962), 1, - sym_class_body, + STATE(4998), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3196), 19, + ACTIONS(3204), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -512472,7 +511629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3200), 26, + ACTIONS(3208), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512499,127 +511656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63758] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4808), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4806), 29, - 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_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [63817] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4491), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(4489), 40, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [63876] = 5, - ACTIONS(8530), 1, + [62413] = 5, + ACTIONS(8478), 1, anon_sym_by, - STATE(4982), 1, + STATE(5007), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 20, + ACTIONS(4525), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -512640,7 +511685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 28, + ACTIONS(4527), 28, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512669,72 +511714,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63939] = 23, - ACTIONS(3104), 1, + [62476] = 23, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3144), 1, sym_property_modifier, - ACTIONS(8230), 1, + ACTIONS(8234), 1, anon_sym_constructor, - ACTIONS(8232), 1, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8234), 1, - anon_sym_LPAREN, ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(8532), 1, + ACTIONS(8480), 1, anon_sym_COLON, - STATE(7925), 1, + STATE(7915), 1, sym_primary_constructor, - STATE(8024), 1, + STATE(8036), 1, sym__class_parameters, - STATE(8192), 1, + STATE(8187), 1, sym_type_constraints, - STATE(8646), 1, + STATE(8907), 1, sym_enum_class_body, - STATE(9411), 1, + STATE(9273), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 2, + ACTIONS(3208), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7407), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -512745,11 +511790,70 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [64038] = 3, + [62575] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_COLON, + STATE(4960), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 21, + ACTIONS(4390), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 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, + [62640] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5099), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512771,7 +511875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4652), 29, + ACTIONS(5097), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512801,11 +511905,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64097] = 3, + [62699] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON, + STATE(4869), 1, + sym_type_constraints, + STATE(4988), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4342), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4344), 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, + [62768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5077), 21, + ACTIONS(5095), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512827,7 +511992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5075), 29, + ACTIONS(5093), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512857,86 +512022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64156] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8534), 1, - anon_sym_COMMA, - ACTIONS(8536), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8550), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [64253] = 3, + [62827] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3200), 21, + ACTIONS(4110), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512958,7 +512048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3196), 29, + ACTIONS(4108), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512988,7 +512078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64312] = 3, + [62886] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -513044,11 +512134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64371] = 3, + [62945] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4907), 21, + ACTIONS(1782), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513070,7 +512160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4905), 29, + ACTIONS(1780), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513100,162 +512190,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64430] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8538), 1, - anon_sym_COMMA, - ACTIONS(8540), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8488), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, + [63004] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8486), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(4402), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_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, - ACTIONS(8396), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [64527] = 23, - ACTIONS(1754), 1, - anon_sym_while, - ACTIONS(3232), 1, + ACTIONS(4404), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(5007), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8378), 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, + [63069] = 5, + ACTIONS(8488), 1, + anon_sym_COMMA, + STATE(5186), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4652), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(8380), 1, + anon_sym_DOT, anon_sym_get, - ACTIONS(8382), 1, anon_sym_set, - ACTIONS(8542), 1, - anon_sym_EQ, - STATE(5466), 1, - sym_type_constraints, - STATE(5513), 1, - sym_property_delegate, - STATE(8728), 1, - sym_modifiers, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4654), 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, + [63132] = 5, + ACTIONS(8488), 1, + anon_sym_COMMA, + STATE(5356), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9095), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4646), 21, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [64626] = 3, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4648), 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, + [63195] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4087), 21, + ACTIONS(4334), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513277,7 +512391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4085), 29, + ACTIONS(4332), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513307,11 +512421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64685] = 3, + [63254] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 21, + ACTIONS(5041), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513333,7 +512447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5045), 29, + ACTIONS(5039), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513363,11 +512477,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64744] = 3, + [63313] = 8, + ACTIONS(5411), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + STATE(4876), 1, + sym_type_constraints, + STATE(4969), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3190), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3194), 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, + [63382] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4967), 21, + ACTIONS(4470), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513389,7 +512564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4965), 29, + ACTIONS(4468), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513419,94 +512594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64803] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8544), 1, - anon_sym_COMMA, - ACTIONS(8546), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8357), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [64900] = 4, - ACTIONS(8548), 1, - anon_sym_LPAREN, + [63441] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4144), 20, + ACTIONS(5037), 21, 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, @@ -513521,7 +512620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4146), 29, + ACTIONS(5035), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513551,28 +512650,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64961] = 6, - ACTIONS(6902), 1, - anon_sym_LPAREN, + [63500] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4289), 4, + ACTIONS(5033), 21, sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4286), 16, 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, @@ -513583,7 +512676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4283), 26, + ACTIONS(5031), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513591,14 +512684,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, @@ -513610,19 +512706,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65026] = 5, - ACTIONS(8402), 1, - anon_sym_COMMA, - STATE(5144), 1, - aux_sym__delegation_specifiers_repeat1, + [63559] = 23, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(4897), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8395), 1, + anon_sym_where, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + ACTIONS(8490), 1, + anon_sym_EQ, + STATE(5455), 1, + sym_type_constraints, + STATE(5514), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9209), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [63658] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4681), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 21, + ACTIONS(4442), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -513640,11 +512815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 27, + ACTIONS(4444), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -513668,67 +512842,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65089] = 3, + [63725] = 7, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4684), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4812), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4810), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4438), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [65148] = 3, + ACTIONS(4440), 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, + [63792] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5087), 21, + ACTIONS(5019), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513750,7 +512928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5085), 29, + ACTIONS(5017), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513780,78 +512958,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65207] = 6, - ACTIONS(6880), 1, - anon_sym_LPAREN, + [63851] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4144), 4, + ACTIONS(4496), 2, sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4141), 16, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4138), 26, - anon_sym_object, - anon_sym_fun, + ACTIONS(4774), 21, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_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_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [65272] = 4, - ACTIONS(8550), 1, + ACTIONS(4776), 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, + [63912] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 20, + ACTIONS(4116), 21, 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, @@ -513866,7 +513041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4291), 29, + ACTIONS(4114), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513896,24 +513071,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65333] = 3, + [63971] = 23, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(8234), 1, + anon_sym_constructor, + ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(8492), 1, + anon_sym_COLON, + STATE(7939), 1, + sym_primary_constructor, + STATE(8036), 1, + sym__class_parameters, + STATE(8207), 1, + sym_type_constraints, + STATE(8907), 1, + sym_class_body, + STATE(9273), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3208), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [64070] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8494), 1, + anon_sym_COMMA, + ACTIONS(8496), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8569), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [64167] = 7, + ACTIONS(8500), 1, + anon_sym_AT, + ACTIONS(8505), 1, + sym_label, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4971), 21, - sym__automatic_semicolon, + STATE(4030), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(5372), 2, + sym_annotation, + aux_sym__statement_repeat1, + ACTIONS(8503), 17, 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, @@ -513922,28 +513254,26 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4969), 29, + ACTIONS(8498), 27, 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_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_expect, @@ -513952,11 +513282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65392] = 3, + [64234] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 21, + ACTIONS(1776), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513978,7 +513308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1694), 29, + ACTIONS(1774), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514008,21 +513338,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65451] = 6, - ACTIONS(5399), 1, + [64293] = 14, + ACTIONS(8406), 1, + sym__backtick_identifier, + ACTIONS(8508), 1, + anon_sym_AT, + ACTIONS(8523), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8517), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8532), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8526), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8529), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8514), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8520), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8511), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5374), 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, + ACTIONS(8408), 11, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + [64374] = 8, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8552), 1, + ACTIONS(8258), 1, + anon_sym_EQ, + ACTIONS(8535), 1, anon_sym_COLON, - STATE(4984), 1, - sym_class_body, + STATE(4922), 1, + sym_function_body, + STATE(4923), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 20, + ACTIONS(4150), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -514039,14 +513439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4386), 27, + ACTIONS(4152), 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, @@ -514067,137 +513466,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65516] = 3, + [64443] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8537), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8452), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4975), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4973), 29, - 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, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, sym__alpha_identifier, - [65575] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4346), 21, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [64540] = 23, + ACTIONS(1754), 1, + anon_sym_while, + ACTIONS(3238), 1, 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4344), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(5071), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8395), 1, + anon_sym_where, + ACTIONS(8399), 1, anon_sym_get, + ACTIONS(8401), 1, 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, + ACTIONS(8541), 1, + anon_sym_EQ, + STATE(5463), 1, + sym_type_constraints, + STATE(5505), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [65634] = 6, - ACTIONS(5399), 1, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9279), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [64639] = 7, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8554), 1, - anon_sym_COLON, - STATE(4925), 1, - sym_class_body, + ACTIONS(8183), 1, + anon_sym_EQ, + STATE(4690), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 20, + ACTIONS(4156), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -514210,14 +513650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 27, - sym__automatic_semicolon, + ACTIONS(4158), 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, @@ -514238,11 +513677,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65699] = 3, + [64706] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8543), 1, + anon_sym_COMMA, + ACTIONS(8545), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8388), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [64803] = 23, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(8234), 1, + anon_sym_constructor, + ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(8547), 1, + anon_sym_COLON, + STATE(7897), 1, + sym_primary_constructor, + STATE(8036), 1, + sym__class_parameters, + STATE(8323), 1, + sym_type_constraints, + STATE(8898), 1, + sym_class_body, + STATE(9273), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3194), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [64902] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 21, + ACTIONS(3208), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514264,7 +513854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5037), 29, + ACTIONS(3204), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514294,11 +513884,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65758] = 3, + [64961] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8549), 1, + anon_sym_COMMA, + ACTIONS(8551), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8427), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [65058] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(199), 21, + ACTIONS(4344), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514320,7 +513985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(201), 29, + ACTIONS(4342), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514350,11 +514015,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65817] = 3, + [65117] = 23, + ACTIONS(1782), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(5025), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8395), 1, + anon_sym_where, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + ACTIONS(8553), 1, + anon_sym_EQ, + STATE(5467), 1, + sym_type_constraints, + STATE(5509), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9260), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [65216] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4987), 21, + ACTIONS(4927), 21, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514376,7 +514117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4985), 29, + ACTIONS(4925), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514406,181 +514147,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [65876] = 3, + [65275] = 8, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + ACTIONS(8555), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4992), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 21, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4099), 29, - anon_sym_object, - anon_sym_fun, + ACTIONS(4162), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [65935] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1766), 21, + ACTIONS(4164), 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(1764), 29, - anon_sym_object, - anon_sym_fun, + [65344] = 8, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + ACTIONS(8557), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(4966), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_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_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [65994] = 21, - ACTIONS(3232), 1, + ACTIONS(4158), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(4684), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8290), 1, - anon_sym_EQ, - ACTIONS(8292), 1, - anon_sym_by, - ACTIONS(8304), 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, + [65413] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, sym_property_modifier, - STATE(5484), 1, - sym_property_delegate, - STATE(8834), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8559), 1, + anon_sym_COMMA, + ACTIONS(8561), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, sym_modifiers, + STATE(8546), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1786), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8659), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -514591,27 +514344,82 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66088] = 22, - ACTIONS(3232), 1, + [65510] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4504), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4822), 21, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4824), 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, + [65571] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8556), 1, - anon_sym_RBRACE, - ACTIONS(8558), 1, - anon_sym_SEMI, - STATE(4533), 1, + ACTIONS(8563), 1, + anon_sym_COMMA, + ACTIONS(8565), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7432), 1, sym_modifiers, - STATE(7920), 1, + STATE(8525), 1, + sym_class_parameter, + STATE(9056), 1, sym_simple_identifier, - STATE(8212), 1, - sym_enum_entry, - STATE(8750), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -514621,13 +514429,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -514638,7 +514449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -514654,7 +514465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -514665,22 +514476,24 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66184] = 21, - ACTIONS(3232), 1, + [65668] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8560), 1, + ACTIONS(8567), 1, + anon_sym_COMMA, + ACTIONS(8569), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8351), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -514691,16 +514504,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -514711,7 +514524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -514727,7 +514540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -514738,70 +514551,12 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66278] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4932), 1, - sym_function_body, + [65765] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4260), 26, + ACTIONS(4955), 21, 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, - [66344] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8564), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -514822,7 +514577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8562), 29, + ACTIONS(4953), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514852,205 +514607,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [66402] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5017), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4031), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4033), 26, - sym__automatic_semicolon, - sym_safe_nav, + [65824] = 22, + ACTIONS(3238), 1, anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8571), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(8573), 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, - [66468] = 23, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(3200), 1, - anon_sym_while, - ACTIONS(8324), 1, - anon_sym_constructor, - ACTIONS(8328), 1, - anon_sym_LPAREN, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(8566), 1, - anon_sym_COLON, - STATE(7946), 1, - sym_primary_constructor, - STATE(8268), 1, - sym__class_parameters, - STATE(8471), 1, - sym_type_constraints, - STATE(9023), 1, - sym_class_body, - STATE(9423), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7628), 1, sym_modifiers, + STATE(7913), 1, + sym_simple_identifier, + STATE(8185), 1, + sym_enum_entry, + STATE(8662), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7415), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5571), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7411), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7413), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(75), 2, anon_sym_sealed, anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7403), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5318), 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, - [66566] = 23, - ACTIONS(3104), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_property_modifier, - ACTIONS(3216), 1, - anon_sym_while, - ACTIONS(8324), 1, - anon_sym_constructor, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8328), 1, - anon_sym_LPAREN, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8568), 1, - anon_sym_COLON, - STATE(7965), 1, - sym_primary_constructor, - STATE(8268), 1, - sym__class_parameters, - STATE(8412), 1, - sym_type_constraints, - STATE(9088), 1, - sym_enum_class_body, - STATE(9423), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -515061,19 +514681,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66664] = 7, - ACTIONS(7926), 1, + [65920] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8258), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5031), 1, + STATE(5062), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4208), 19, + ACTIONS(4286), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -515093,7 +514713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4210), 26, + ACTIONS(4288), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515120,69 +514740,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66730] = 21, - ACTIONS(3232), 1, + [65986] = 21, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8575), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [66080] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4690), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8292), 1, - anon_sym_by, - ACTIONS(8304), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8344), 1, - anon_sym_EQ, - STATE(5489), 1, - sym_property_delegate, - STATE(8834), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8577), 1, + anon_sym_RBRACE, + ACTIONS(8579), 1, + anon_sym_SEMI, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7628), 1, sym_modifiers, + STATE(7913), 1, + sym_simple_identifier, + STATE(8185), 1, + sym_enum_entry, + STATE(8605), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8897), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -515193,22 +514887,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66824] = 21, - ACTIONS(3232), 1, + [66176] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8570), 1, + ACTIONS(8581), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -515219,16 +514913,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -515239,7 +514933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -515255,7 +514949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -515266,19 +514960,17 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66918] = 7, - ACTIONS(7926), 1, + [66270] = 6, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4912), 1, - sym_function_body, + ACTIONS(8583), 1, + anon_sym_COLON, + STATE(4661), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4099), 19, + ACTIONS(4390), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -515286,6 +514978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -515298,13 +514991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4101), 26, - sym__automatic_semicolon, + ACTIONS(4392), 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, @@ -515325,138 +515018,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66984] = 5, - ACTIONS(8572), 1, - anon_sym_COMMA, - STATE(5425), 1, - aux_sym__delegation_specifiers_repeat1, + [66334] = 21, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(7418), 1, + anon_sym_get, + ACTIONS(7420), 1, + anon_sym_set, + ACTIONS(8315), 1, + anon_sym_by, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8381), 1, + anon_sym_EQ, + ACTIONS(8383), 1, + anon_sym_SEMI, + STATE(5492), 1, + sym_property_delegate, + STATE(8820), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4656), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_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, + ACTIONS(3266), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4658), 27, - sym__automatic_semicolon, - sym_safe_nav, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8658), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [66428] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8309), 20, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [67046] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4939), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4420), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(8307), 29, + 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_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4422), 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, - [67112] = 21, - ACTIONS(3232), 1, + [66486] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8574), 1, + ACTIONS(8585), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -515467,16 +515172,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -515487,7 +515192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -515503,7 +515208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -515514,85 +515219,26 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67206] = 7, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5051), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4085), 19, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4087), 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, - [67272] = 22, - ACTIONS(3232), 1, + [66580] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8576), 1, + ACTIONS(8587), 1, anon_sym_RBRACE, - ACTIONS(8578), 1, + ACTIONS(8589), 1, anon_sym_SEMI, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7628), 1, sym_modifiers, - STATE(7920), 1, + STATE(7913), 1, sym_simple_identifier, - STATE(8212), 1, + STATE(8185), 1, sym_enum_entry, - STATE(8863), 1, + STATE(8931), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, @@ -515603,13 +515249,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -515620,7 +515266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -515636,7 +515282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -515647,19 +515293,94 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67368] = 7, - ACTIONS(7926), 1, + [66676] = 23, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(3200), 1, + anon_sym_while, + ACTIONS(8291), 1, + anon_sym_constructor, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8295), 1, + anon_sym_LPAREN, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8591), 1, + anon_sym_COLON, + STATE(7975), 1, + sym_primary_constructor, + STATE(8262), 1, + sym__class_parameters, + STATE(8441), 1, + sym_type_constraints, + STATE(9272), 1, + sym_enum_class_body, + STATE(9335), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 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, + [66774] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5034), 1, + STATE(4966), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 19, + ACTIONS(4156), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -515679,7 +515400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 26, + ACTIONS(4158), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515706,69 +515427,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67434] = 21, - ACTIONS(3232), 1, + [66840] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4676), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8292), 1, - anon_sym_by, - ACTIONS(8304), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8312), 1, - anon_sym_EQ, - STATE(5482), 1, - sym_property_delegate, - STATE(8834), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8593), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, sym_modifiers, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1754), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8906), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -515779,19 +515500,17 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67528] = 7, - ACTIONS(7926), 1, + [66934] = 6, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4949), 1, - sym_function_body, + ACTIONS(8595), 1, + anon_sym_COLON, + STATE(4653), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4254), 19, + ACTIONS(4402), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -515799,6 +515518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -515811,13 +515531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4256), 26, - sym__automatic_semicolon, + ACTIONS(4404), 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, @@ -515838,19 +515558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67594] = 7, - ACTIONS(7926), 1, + [66998] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8258), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5032), 1, + STATE(5012), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4047), 19, + ACTIONS(4438), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -515870,7 +515590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4049), 26, + ACTIONS(4440), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515897,19 +515617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67660] = 7, - ACTIONS(7926), 1, + [67064] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(8258), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4954), 1, + STATE(4925), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 19, + ACTIONS(4442), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -515929,7 +515649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 26, + ACTIONS(4444), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515956,71 +515676,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67726] = 23, - ACTIONS(3104), 1, + [67130] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(3190), 1, - anon_sym_while, - ACTIONS(8324), 1, - anon_sym_constructor, - ACTIONS(8328), 1, - anon_sym_LPAREN, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(8580), 1, - anon_sym_COLON, - STATE(7954), 1, - sym_primary_constructor, - STATE(8268), 1, - sym__class_parameters, - STATE(8458), 1, - sym_type_constraints, - STATE(9036), 1, - sym_class_body, - STATE(9423), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8597), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, sym_modifiers, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516031,13 +515749,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67824] = 4, - ACTIONS(4509), 1, + [67224] = 4, + ACTIONS(4502), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4814), 21, + ACTIONS(4822), 21, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516059,7 +515777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4816), 27, + ACTIONS(4824), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516087,27 +515805,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67884] = 22, - ACTIONS(3232), 1, + [67284] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8582), 1, - anon_sym_RBRACE, - ACTIONS(8584), 1, - anon_sym_SEMI, - STATE(4533), 1, + ACTIONS(8599), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7432), 1, sym_modifiers, - STATE(7920), 1, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, sym_simple_identifier, - STATE(8212), 1, - sym_enum_entry, - STATE(8836), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -516117,13 +515831,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516134,7 +515851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -516150,7 +515867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516161,13 +515878,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67980] = 4, - ACTIONS(4517), 1, + [67378] = 4, + ACTIONS(4494), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 21, + ACTIONS(4774), 21, anon_sym_as, anon_sym_EQ, anon_sym_LT, @@ -516189,7 +515906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 27, + ACTIONS(4776), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -516217,77 +515934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68040] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 10, - anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(3943), 39, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - 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_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, - [68098] = 21, - ACTIONS(3232), 1, + [67438] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8586), 1, + ACTIONS(8601), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -516298,16 +515960,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516318,7 +515980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -516334,7 +515996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516345,26 +516007,26 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68192] = 22, - ACTIONS(3232), 1, + [67532] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8588), 1, + ACTIONS(8603), 1, anon_sym_RBRACE, - ACTIONS(8590), 1, + ACTIONS(8605), 1, anon_sym_SEMI, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7628), 1, sym_modifiers, - STATE(7920), 1, + STATE(7913), 1, sym_simple_identifier, - STATE(8212), 1, + STATE(8185), 1, sym_enum_entry, - STATE(8602), 1, + STATE(8654), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, @@ -516375,13 +516037,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516392,7 +516054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -516408,7 +516070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516419,26 +516081,26 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68288] = 22, - ACTIONS(3232), 1, + [67628] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8592), 1, + ACTIONS(8607), 1, anon_sym_RBRACE, - ACTIONS(8594), 1, + ACTIONS(8609), 1, anon_sym_SEMI, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7628), 1, sym_modifiers, - STATE(7920), 1, + STATE(7913), 1, sym_simple_identifier, - STATE(8212), 1, + STATE(8185), 1, sym_enum_entry, - STATE(8711), 1, + STATE(8742), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, @@ -516449,13 +516111,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516466,7 +516128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -516482,7 +516144,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 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, + [67724] = 4, + ACTIONS(8478), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4525), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4527), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67784] = 23, + ACTIONS(3120), 1, + anon_sym_AT, + ACTIONS(3144), 1, + sym_property_modifier, + ACTIONS(3208), 1, + anon_sym_while, + ACTIONS(8291), 1, + anon_sym_constructor, + ACTIONS(8295), 1, + anon_sym_LPAREN, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(8611), 1, + anon_sym_COLON, + STATE(7962), 1, + sym_primary_constructor, + STATE(8262), 1, + sym__class_parameters, + STATE(8355), 1, + sym_type_constraints, + STATE(9186), 1, + sym_class_body, + STATE(9335), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7426), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7434), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5572), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7430), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7432), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7424), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(7428), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7422), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516493,69 +516286,69 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68384] = 21, - ACTIONS(3232), 1, + [67882] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(4666), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8292), 1, + ACTIONS(8315), 1, anon_sym_by, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8364), 1, + ACTIONS(8613), 1, anon_sym_EQ, - ACTIONS(8366), 1, - anon_sym_SEMI, STATE(5491), 1, sym_property_delegate, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(1770), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8605), 2, + STATE(8874), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516566,77 +516359,95 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68478] = 6, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8596), 1, - anon_sym_COLON, - STATE(4586), 1, - sym_class_body, + [67976] = 21, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8615), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7432), 1, + sym_modifiers, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, sym__alpha_identifier, - ACTIONS(4386), 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, - [68542] = 5, - ACTIONS(8572), 1, - anon_sym_COMMA, - STATE(5434), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [68070] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5006), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 20, + ACTIONS(4114), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -516653,12 +516464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 27, + ACTIONS(4116), 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, @@ -516681,17 +516491,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68604] = 6, - ACTIONS(5159), 1, + [68136] = 21, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(4609), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, + anon_sym_get, + ACTIONS(7420), 1, + anon_sym_set, + ACTIONS(8315), 1, + anon_sym_by, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8349), 1, + anon_sym_EQ, + STATE(5493), 1, + sym_property_delegate, + STATE(8820), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1782), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8697), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [68230] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8598), 1, - anon_sym_COLON, - STATE(4658), 1, - sym_class_body, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5034), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 20, + ACTIONS(4108), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -516699,7 +516584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -516712,13 +516596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 26, + ACTIONS(4110), 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, @@ -516739,27 +516623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68668] = 22, - ACTIONS(3232), 1, + [68296] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8600), 1, - anon_sym_RBRACE, - ACTIONS(8602), 1, - anon_sym_SEMI, - STATE(4533), 1, + ACTIONS(8617), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7432), 1, sym_modifiers, - STATE(7920), 1, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, sym_simple_identifier, - STATE(8212), 1, - sym_enum_entry, - STATE(8825), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -516769,13 +516649,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516786,7 +516669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -516802,7 +516685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516813,84 +516696,259 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68764] = 5, - ACTIONS(4283), 1, - anon_sym_while, - ACTIONS(8604), 1, - anon_sym_LPAREN, + [68390] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5057), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3943), 21, + ACTIONS(4102), 19, anon_sym_as, - anon_sym_EQ, 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4104), 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, + [68456] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5074), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 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, + [68522] = 7, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5054), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4318), 19, + 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_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3948), 26, + ACTIONS(4320), 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, + [68588] = 7, + ACTIONS(7946), 1, anon_sym_LBRACE, + ACTIONS(8258), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5040), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4452), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4454), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68826] = 22, - ACTIONS(3232), 1, + [68654] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8607), 1, - anon_sym_RBRACE, - ACTIONS(8609), 1, - anon_sym_SEMI, - STATE(4533), 1, + ACTIONS(8619), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7432), 1, sym_modifiers, - STATE(7920), 1, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, sym_simple_identifier, - STATE(8212), 1, - sym_enum_entry, - STATE(8641), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -516900,13 +516958,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516917,7 +516978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -516933,7 +516994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -516944,23 +517005,27 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68922] = 21, - ACTIONS(3232), 1, + [68748] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8611), 1, - anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8621), 1, + anon_sym_RBRACE, + ACTIONS(8623), 1, + anon_sym_SEMI, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7628), 1, sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, + STATE(7913), 1, sym_simple_identifier, + STATE(8185), 1, + sym_enum_entry, + STATE(8669), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -516970,16 +517035,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -516990,7 +517052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -517006,7 +517068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517017,69 +517079,69 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69016] = 21, - ACTIONS(3232), 1, + [68844] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(4680), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, + anon_sym_get, + ACTIONS(7420), 1, + anon_sym_set, + ACTIONS(8313), 1, + anon_sym_EQ, + ACTIONS(8315), 1, + anon_sym_by, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8613), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, + STATE(5494), 1, + sym_property_delegate, + STATE(8820), 1, sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1754), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(85), 3, + STATE(8811), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(87), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(73), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517090,22 +517152,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69110] = 21, - ACTIONS(3232), 1, + [68938] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8615), 1, + ACTIONS(8625), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -517116,16 +517178,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -517136,7 +517198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -517152,7 +517214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517163,125 +517225,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69204] = 5, - ACTIONS(4138), 1, - anon_sym_while, - ACTIONS(8617), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3943), 21, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3948), 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, - [69266] = 5, - ACTIONS(8620), 1, - anon_sym_COMMA, - STATE(5434), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4625), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4627), 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, - [69328] = 3, + [69032] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8278), 20, + ACTIONS(8629), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -517302,7 +517250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8276), 29, + ACTIONS(8627), 29, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -517332,22 +517280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [69386] = 21, - ACTIONS(3232), 1, + [69090] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8623), 1, + ACTIONS(8631), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -517358,16 +517306,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -517378,7 +517326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -517394,7 +517342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517405,145 +517353,126 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69480] = 22, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8625), 1, - anon_sym_RBRACE, - ACTIONS(8627), 1, - anon_sym_SEMI, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7788), 1, - sym_modifiers, - STATE(7920), 1, - sym_simple_identifier, - STATE(8212), 1, - sym_enum_entry, - STATE(8695), 1, - sym__enum_entries, + [69184] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(75), 2, + ACTIONS(3871), 10, + anon_sym_AT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(3866), 39, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8392), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, + anon_sym_override, + anon_sym_lateinit, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 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, - [69576] = 23, - ACTIONS(3104), 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, + [69242] = 23, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3144), 1, sym_property_modifier, - ACTIONS(3190), 1, + ACTIONS(3194), 1, anon_sym_while, - ACTIONS(8324), 1, + ACTIONS(8291), 1, anon_sym_constructor, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8328), 1, + ACTIONS(8295), 1, anon_sym_LPAREN, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8629), 1, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(8633), 1, anon_sym_COLON, - STATE(7939), 1, + STATE(7952), 1, sym_primary_constructor, - STATE(8268), 1, + STATE(8262), 1, sym__class_parameters, - STATE(8510), 1, + STATE(8422), 1, sym_type_constraints, - STATE(9036), 1, - sym_enum_class_body, - STATE(9423), 1, + STATE(9107), 1, + sym_class_body, + STATE(9335), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7407), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7415), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5571), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7411), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7413), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7405), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(7409), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7403), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5318), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517554,13 +517483,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69674] = 4, - ACTIONS(8530), 1, - anon_sym_by, + [69340] = 4, + STATE(5444), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4414), 20, + ACTIONS(4652), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -517581,7 +517510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4416), 28, + ACTIONS(4654), 28, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517610,142 +517539,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69734] = 21, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8631), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [69828] = 21, - ACTIONS(3232), 1, + [69400] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4605), 1, + ACTIONS(4706), 1, anon_sym_SEMI, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8292), 1, + ACTIONS(8315), 1, anon_sym_by, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8633), 1, + ACTIONS(8359), 1, anon_sym_EQ, - STATE(5493), 1, + STATE(5490), 1, sym_property_delegate, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, + ACTIONS(1776), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8867), 2, + STATE(8881), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517756,22 +517612,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69922] = 21, - ACTIONS(3232), 1, + [69494] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, ACTIONS(8635), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -517782,16 +517638,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -517802,7 +517658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -517818,7 +517674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517829,23 +517685,27 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70016] = 21, - ACTIONS(3232), 1, + [69588] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, ACTIONS(8637), 1, - anon_sym_RPAREN, - STATE(4533), 1, + anon_sym_RBRACE, + ACTIONS(8639), 1, + anon_sym_SEMI, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7628), 1, sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, + STATE(7913), 1, sym_simple_identifier, + STATE(8185), 1, + sym_enum_entry, + STATE(8827), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -517855,16 +517715,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -517875,7 +517732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -517891,7 +517748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517902,22 +517759,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70110] = 21, - ACTIONS(3232), 1, + [69684] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8639), 1, + ACTIONS(8641), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -517928,16 +517785,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -517948,7 +517805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -517964,7 +517821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -517975,96 +517832,84 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70204] = 21, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8641), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, + [69778] = 5, + ACTIONS(4290), 1, + anon_sym_while, + ACTIONS(8643), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(3866), 21, + 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, - ACTIONS(8396), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [70298] = 21, - ACTIONS(3232), 1, + ACTIONS(3871), 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, + [69840] = 22, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8643), 1, - anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8646), 1, + anon_sym_RBRACE, + ACTIONS(8648), 1, + anon_sym_SEMI, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7628), 1, sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, + STATE(7913), 1, sym_simple_identifier, + STATE(8185), 1, + sym_enum_entry, + STATE(8933), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -518074,16 +517919,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -518094,7 +517936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -518110,7 +517952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518121,86 +517963,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70392] = 21, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8645), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, + [69936] = 5, + ACTIONS(4304), 1, + anon_sym_while, + ACTIONS(8650), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(3866), 21, + 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, - ACTIONS(8396), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [70486] = 4, - STATE(5434), 1, + ACTIONS(3871), 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, + [69998] = 5, + ACTIONS(8653), 1, + anon_sym_COMMA, + STATE(5444), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 20, + ACTIONS(4635), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -518221,7 +518049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 28, + ACTIONS(4637), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518229,7 +518057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -518250,22 +518077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70546] = 21, - ACTIONS(3232), 1, + [70060] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8647), 1, + ACTIONS(8656), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -518276,16 +518103,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -518296,7 +518123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -518312,7 +518139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518323,27 +518150,23 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70640] = 22, - ACTIONS(3232), 1, + [70154] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8649), 1, - anon_sym_RBRACE, - ACTIONS(8651), 1, - anon_sym_SEMI, - STATE(4533), 1, + ACTIONS(8658), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7432), 1, sym_modifiers, - STATE(7920), 1, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, sym_simple_identifier, - STATE(8212), 1, - sym_enum_entry, - STATE(8596), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -518353,13 +518176,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -518370,7 +518196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -518386,7 +518212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518397,22 +518223,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70736] = 21, - ACTIONS(3232), 1, + [70248] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8653), 1, + ACTIONS(8660), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -518423,16 +518249,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -518443,7 +518269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -518459,7 +518285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518470,22 +518296,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70830] = 21, - ACTIONS(3232), 1, + [70342] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8655), 1, + ACTIONS(8662), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7424), 1, + STATE(7432), 1, sym_modifiers, - STATE(8837), 1, + STATE(8726), 1, sym_class_parameter, - STATE(9222), 1, + STATE(9056), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -518496,16 +518322,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8390), 2, + ACTIONS(8440), 2, anon_sym_val, anon_sym_var, - ACTIONS(8392), 2, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -518516,7 +518342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -518532,7 +518358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518543,13 +518369,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70924] = 4, - ACTIONS(8657), 1, - anon_sym_else, + [70436] = 5, + ACTIONS(8664), 1, + anon_sym_COMMA, + STATE(5444), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 19, + ACTIONS(4652), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -518558,6 +518386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -518569,7 +518398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 28, + ACTIONS(4654), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518577,7 +518406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -518598,72 +518426,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70983] = 6, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(8659), 1, - anon_sym_COLON, - STATE(4984), 1, - sym_class_body, + [70498] = 22, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8666), 1, + anon_sym_RBRACE, + ACTIONS(8668), 1, + anon_sym_SEMI, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7628), 1, + sym_modifiers, + STATE(7913), 1, + sym_simple_identifier, + STATE(8185), 1, + sym_enum_entry, + STATE(8917), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4384), 19, - 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, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, sym__alpha_identifier, - ACTIONS(4386), 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, - [71046] = 5, - ACTIONS(8657), 1, - anon_sym_else, - ACTIONS(8661), 1, - anon_sym_SEMI, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [70594] = 5, + ACTIONS(8664), 1, + anon_sym_COMMA, + STATE(5449), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 19, + ACTIONS(4646), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -518672,6 +518517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -518683,7 +518529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 27, + ACTIONS(4648), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518691,7 +518537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -518711,68 +518557,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71107] = 21, - ACTIONS(1754), 1, - anon_sym_while, - ACTIONS(3232), 1, + [70656] = 23, + ACTIONS(3120), 1, anon_sym_AT, - ACTIONS(5007), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, + ACTIONS(3144), 1, sym_property_modifier, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - ACTIONS(8542), 1, - anon_sym_EQ, - STATE(5513), 1, - sym_property_delegate, - STATE(8728), 1, + ACTIONS(3208), 1, + anon_sym_while, + ACTIONS(8291), 1, + anon_sym_constructor, + ACTIONS(8293), 1, + anon_sym_LBRACE, + ACTIONS(8295), 1, + anon_sym_LPAREN, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8670), 1, + anon_sym_COLON, + STATE(7940), 1, + sym_primary_constructor, + STATE(8262), 1, + sym__class_parameters, + STATE(8567), 1, + sym_type_constraints, + STATE(9186), 1, + sym_enum_class_body, + STATE(9335), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(7426), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(7434), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5572), 2, sym__single_annotation, sym__multi_annotation, - STATE(9095), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(7430), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(7432), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(7424), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(7428), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(7422), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5329), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518783,20 +518632,17 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71200] = 6, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(8663), 1, - anon_sym_COLON, - STATE(4925), 1, - sym_class_body, + [70754] = 4, + ACTIONS(8672), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4408), 19, + ACTIONS(4312), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -518813,13 +518659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4410), 26, + ACTIONS(4310), 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, @@ -518840,68 +518687,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71263] = 21, - ACTIONS(1696), 1, - anon_sym_while, - ACTIONS(3232), 1, + [70813] = 21, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4993), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, + ACTIONS(3266), 1, + anon_sym_while, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8376), 1, + ACTIONS(8393), 1, anon_sym_by, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - ACTIONS(8522), 1, + ACTIONS(8460), 1, anon_sym_EQ, - STATE(5498), 1, + ACTIONS(8462), 1, + anon_sym_SEMI, + STATE(5512), 1, sym_property_delegate, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9079), 2, + STATE(9121), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518912,61 +518759,68 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71356] = 14, - ACTIONS(3232), 1, + [70906] = 21, + ACTIONS(1782), 1, + anon_sym_while, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8506), 1, - anon_sym_var, - ACTIONS(8665), 1, + ACTIONS(5025), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + ACTIONS(8553), 1, + anon_sym_EQ, + STATE(5509), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8306), 3, + STATE(9260), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8504), 9, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - STATE(5305), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -518977,17 +518831,20 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71435] = 4, - ACTIONS(8667), 1, - anon_sym_LPAREN, + [70999] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8674), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 20, + ACTIONS(4402), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, @@ -519004,14 +518861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 27, + ACTIONS(4404), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -519032,13 +518888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71494] = 4, - ACTIONS(8669), 1, - anon_sym_LPAREN, + [71062] = 4, + ACTIONS(8676), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 20, + ACTIONS(4877), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519047,7 +518903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -519059,13 +518914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 27, + ACTIONS(4879), 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, @@ -519079,418 +518935,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [71553] = 21, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - ACTIONS(8418), 1, - anon_sym_EQ, - ACTIONS(8420), 1, - anon_sym_SEMI, - STATE(5496), 1, - sym_property_delegate, - STATE(8728), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9027), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [71646] = 20, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7424), 1, - sym_modifiers, - STATE(8837), 1, - sym_class_parameter, - STATE(9222), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8390), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [71737] = 5, - ACTIONS(8671), 1, - anon_sym_DOT, - STATE(5464), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4272), 7, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(4270), 39, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - 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_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, - [71798] = 20, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7788), 1, - sym_modifiers, - STATE(7920), 1, - sym_simple_identifier, - STATE(8339), 1, - sym_enum_entry, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(8674), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [71889] = 21, - ACTIONS(1766), 1, - anon_sym_while, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(4899), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - ACTIONS(8676), 1, - anon_sym_EQ, - STATE(5503), 1, - sym_property_delegate, - STATE(8728), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9127), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [71982] = 21, - ACTIONS(1786), 1, - anon_sym_while, - ACTIONS(3232), 1, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71121] = 20, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4834), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8374), 1, - anon_sym_EQ, - ACTIONS(8376), 1, - anon_sym_by, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - STATE(5500), 1, - sym_property_delegate, - STATE(8728), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7628), 1, sym_modifiers, + STATE(7913), 1, + sym_simple_identifier, + STATE(8428), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + ACTIONS(8678), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9055), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -519501,21 +519014,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72075] = 20, - ACTIONS(3232), 1, + [71212] = 20, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8394), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7788), 1, + STATE(7432), 1, sym_modifiers, - STATE(7920), 1, + STATE(8726), 1, + sym_class_parameter, + STATE(9056), 1, sym_simple_identifier, - STATE(8339), 1, - sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -519525,16 +519038,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8392), 2, + ACTIONS(8440), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8442), 2, anon_sym_data, anon_sym_inner, - ACTIONS(8396), 2, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8678), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(85), 3, @@ -519545,7 +519058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8384), 3, + ACTIONS(8434), 3, anon_sym_get, anon_sym_set, sym__alpha_identifier, @@ -519561,7 +519074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5527), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -519572,15 +519085,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72166] = 5, + [71303] = 5, ACTIONS(8680), 1, anon_sym_DOT, - STATE(5464), 1, + STATE(5470), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 7, + ACTIONS(4218), 7, anon_sym_AT, anon_sym_EQ, anon_sym_LPAREN, @@ -519588,7 +519101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4220), 39, + ACTIONS(4216), 39, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -519628,13 +519141,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [72227] = 4, + [71364] = 14, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8470), 1, + anon_sym_var, ACTIONS(8682), 1, - anon_sym_LPAREN, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8468), 9, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5374), 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, + [71443] = 5, + ACTIONS(8676), 1, + anon_sym_else, + ACTIONS(8684), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 20, + ACTIONS(4877), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519643,7 +519223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -519655,15 +519234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 27, + ACTIONS(4879), 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, @@ -519683,13 +519262,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72286] = 4, - ACTIONS(8684), 1, + [71504] = 21, + ACTIONS(1770), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(4971), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + ACTIONS(8686), 1, + anon_sym_EQ, + STATE(5499), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9291), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [71597] = 4, + ACTIONS(8688), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 20, + ACTIONS(4841), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519710,7 +519361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 27, + ACTIONS(4843), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519738,13 +519389,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72345] = 4, - ACTIONS(8686), 1, - anon_sym_LPAREN, + [71656] = 21, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(4897), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + ACTIONS(8490), 1, + anon_sym_EQ, + STATE(5514), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9209), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [71749] = 6, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8690), 1, + anon_sym_COLON, + STATE(4960), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 20, + ACTIONS(4390), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519752,7 +519479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519765,13 +519491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 26, + ACTIONS(4392), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -519792,21 +519518,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72403] = 4, - ACTIONS(8688), 1, - anon_sym_else, + [71812] = 21, + ACTIONS(1754), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(5071), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8393), 1, + anon_sym_by, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + ACTIONS(8541), 1, + anon_sym_EQ, + STATE(5505), 1, + sym_property_delegate, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9279), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [71905] = 4, + ACTIONS(8692), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 19, + ACTIONS(4859), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -519818,14 +519617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 27, + ACTIONS(4861), 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, @@ -519846,23 +519645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72461] = 5, - ACTIONS(8688), 1, - anon_sym_else, - ACTIONS(8690), 1, - anon_sym_SEMI, + [71964] = 4, + ACTIONS(8694), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 19, + ACTIONS(4298), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -519874,14 +519672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 26, + ACTIONS(4296), 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, @@ -519901,32 +519700,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72521] = 3, + [72023] = 5, + ACTIONS(8696), 1, + anon_sym_DOT, + STATE(5470), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4885), 8, + ACTIONS(4225), 7, anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, + sym__quest, sym__backtick_identifier, - ACTIONS(4883), 39, + ACTIONS(4223), 39, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_val, anon_sym_var, + anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_while, anon_sym_suspend, anon_sym_sealed, @@ -519954,13 +519756,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [72577] = 4, - ACTIONS(8692), 1, + [72084] = 20, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8444), 1, + sym_property_modifier, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7628), 1, + sym_modifiers, + STATE(7913), 1, + sym_simple_identifier, + STATE(8428), 1, + sym_enum_entry, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8699), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(85), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(73), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5518), 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, + [72175] = 4, + ACTIONS(8701), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 20, + ACTIONS(4841), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -519981,7 +519854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 26, + ACTIONS(4843), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520008,13 +519881,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72635] = 4, - ACTIONS(8694), 1, + [72233] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4979), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(4977), 39, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [72289] = 4, + ACTIONS(8703), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 20, + ACTIONS(4312), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520035,7 +519961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 26, + ACTIONS(4310), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520062,11 +519988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72693] = 3, + [72347] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 8, + ACTIONS(4983), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -520075,7 +520001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(4863), 39, + ACTIONS(4981), 39, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -520115,66 +520041,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [72749] = 3, + [72403] = 4, + ACTIONS(8705), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 8, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym__backtick_identifier, - ACTIONS(4867), 39, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(4877), 19, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_dynamic, + anon_sym_in, anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, - anon_sym_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, - [72805] = 4, - ACTIONS(8696), 1, + ACTIONS(4879), 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, + [72461] = 5, + ACTIONS(8705), 1, + anon_sym_else, + ACTIONS(8707), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 20, + ACTIONS(4877), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520183,7 +520112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_in, anon_sym_while, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -520195,14 +520123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 26, + ACTIONS(4879), 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, @@ -520222,11 +520150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72863] = 3, + [72521] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 8, + ACTIONS(4969), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -520235,7 +520163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(4859), 39, + ACTIONS(4967), 39, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -520275,80 +520203,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [72919] = 18, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(4605), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8304), 1, - sym_property_modifier, - STATE(8834), 1, - sym_modifiers, + [72577] = 4, + ACTIONS(8709), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8867), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4859), 20, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_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, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [73004] = 4, - ACTIONS(8698), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4861), 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, + [72635] = 4, + ACTIONS(8711), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 19, + ACTIONS(4298), 20, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520356,6 +520271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -520368,13 +520284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 26, - sym__automatic_semicolon, + ACTIONS(4296), 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, @@ -520395,80 +520311,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73061] = 18, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(4690), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8304), 1, - sym_property_modifier, - STATE(8834), 1, - sym_modifiers, + [72693] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 2, - sym__automatic_semicolon, + ACTIONS(4987), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8897), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(4985), 39, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + anon_sym_override, + anon_sym_lateinit, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 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, - [73146] = 4, - ACTIONS(8700), 1, - anon_sym_else, + 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, + [72749] = 4, + ACTIONS(8713), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 18, + ACTIONS(4859), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520476,6 +520378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -520487,14 +520390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 27, + ACTIONS(4861), 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, @@ -520515,13 +520417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73203] = 4, - ACTIONS(8702), 1, + [72806] = 4, + ACTIONS(8715), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 19, + ACTIONS(4841), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520541,7 +520443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4955), 26, + ACTIONS(4843), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520568,81 +520470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73260] = 19, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(8394), 1, - sym_property_modifier, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7788), 1, - sym_modifiers, - STATE(7920), 1, - sym_simple_identifier, - STATE(8339), 1, - sym_enum_entry, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8392), 2, - anon_sym_data, - anon_sym_inner, - ACTIONS(8396), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(85), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8384), 3, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(81), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(73), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5527), 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, - [73347] = 4, - ACTIONS(8704), 1, + [72863] = 4, + ACTIONS(8717), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4146), 19, + ACTIONS(4312), 19, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520662,7 +520496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4144), 26, + ACTIONS(4310), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520689,80 +520523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73404] = 18, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(4676), 1, + [72920] = 5, + ACTIONS(8719), 1, anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8304), 1, - sym_property_modifier, - STATE(8834), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1754), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8906), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [73489] = 4, - ACTIONS(8706), 1, - anon_sym_LPAREN, + ACTIONS(8721), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4291), 19, + ACTIONS(4877), 18, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520770,7 +520539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -520782,14 +520550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4289), 26, + ACTIONS(4879), 26, sym__automatic_semicolon, 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, @@ -520809,82 +520577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73546] = 18, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(4684), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8304), 1, - sym_property_modifier, - STATE(8834), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1786), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8659), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8308), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8296), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5459), 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, - [73631] = 5, - ACTIONS(8700), 1, + [72979] = 4, + ACTIONS(8721), 1, anon_sym_else, - ACTIONS(8708), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 18, + ACTIONS(4877), 18, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -520903,7 +520602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 26, + ACTIONS(4879), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520911,6 +520610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -520930,63 +520630,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73690] = 18, - ACTIONS(3232), 1, + [73036] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4674), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + ACTIONS(8383), 1, + anon_sym_SEMI, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 2, + ACTIONS(3266), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8838), 2, + STATE(8658), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -520997,63 +520697,64 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73775] = 18, - ACTIONS(3232), 1, + [73121] = 19, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, - anon_sym_get, - ACTIONS(7401), 1, - anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8444), 1, sym_property_modifier, - ACTIONS(8366), 1, - anon_sym_SEMI, - STATE(8834), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7628), 1, sym_modifiers, + STATE(7913), 1, + sym_simple_identifier, + STATE(8428), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8442), 2, + anon_sym_data, + anon_sym_inner, + ACTIONS(8446), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8605), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8434), 3, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5518), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521064,61 +520765,116 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73860] = 17, - ACTIONS(3232), 1, + [73208] = 4, + ACTIONS(8723), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4298), 19, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4296), 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, + [73265] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(4609), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3340), 2, + ACTIONS(1782), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8821), 2, + STATE(8697), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521129,62 +520885,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73942] = 18, - ACTIONS(1786), 1, - anon_sym_while, - ACTIONS(3232), 1, + [73350] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4834), 1, + ACTIONS(4633), 1, anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(7420), 1, anon_sym_set, - STATE(8728), 1, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(1764), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9055), 2, + STATE(8911), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521195,62 +520952,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74026] = 18, - ACTIONS(3232), 1, + [73435] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(4706), 1, + anon_sym_SEMI, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8420), 1, - anon_sym_SEMI, - STATE(8728), 1, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9027), 2, + STATE(8881), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521261,62 +521019,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74110] = 18, - ACTIONS(1754), 1, - anon_sym_while, - ACTIONS(3232), 1, + [73520] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(5007), 1, + ACTIONS(4680), 1, anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(7420), 1, anon_sym_set, - STATE(8728), 1, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(1754), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9095), 2, + STATE(8811), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521327,116 +521086,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74194] = 6, - ACTIONS(7971), 1, - anon_sym_COLON_COLON, - ACTIONS(8213), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4109), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4840), 18, - 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_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4842), 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, - [74254] = 18, - ACTIONS(1696), 1, - anon_sym_while, - ACTIONS(3232), 1, + [73605] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4993), 1, + ACTIONS(4666), 1, anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(7420), 1, anon_sym_set, - STATE(8728), 1, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(1770), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9079), 2, + STATE(8874), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521447,15 +521153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74338] = 5, - ACTIONS(7971), 1, + [73690] = 5, + ACTIONS(7995), 1, anon_sym_COLON_COLON, - ACTIONS(8710), 1, + ACTIONS(8725), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4840), 18, + ACTIONS(4826), 18, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -521474,7 +521180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 25, + ACTIONS(4828), 25, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -521500,61 +521206,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74396] = 17, - ACTIONS(3232), 1, + [73748] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 2, + ACTIONS(3266), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8897), 2, + STATE(8658), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521565,62 +521271,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74478] = 18, - ACTIONS(1772), 1, - anon_sym_while, - ACTIONS(3232), 1, + [73830] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(5079), 1, - anon_sym_SEMI, - ACTIONS(8304), 1, - sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(7420), 1, anon_sym_set, - STATE(8728), 1, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(3342), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9115), 2, + STATE(8944), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521631,112 +521336,127 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74562] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4893), 6, + [73912] = 17, + ACTIONS(3238), 1, anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__backtick_identifier, - ACTIONS(4891), 39, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(7418), 1, anon_sym_get, + ACTIONS(7420), 1, anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8881), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [74616] = 17, - ACTIONS(3232), 1, + STATE(5461), 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, + [73994] = 18, + ACTIONS(1764), 1, + anon_sym_while, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(4961), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(8401), 1, anon_sym_set, - ACTIONS(8304), 1, - sym_property_modifier, - STATE(8834), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1780), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8826), 2, + STATE(9299), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521747,61 +521467,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74698] = 17, - ACTIONS(3232), 1, + [74078] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1786), 2, + ACTIONS(1696), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8659), 2, + STATE(8927), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521812,15 +521532,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74780] = 5, - ACTIONS(7971), 1, + [74160] = 5, + ACTIONS(7995), 1, anon_sym_COLON_COLON, - ACTIONS(8712), 1, + ACTIONS(8727), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4840), 18, + ACTIONS(4826), 18, anon_sym_as, anon_sym_LT, anon_sym_GT, @@ -521839,7 +521559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4842), 25, + ACTIONS(4828), 25, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -521865,61 +521585,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74838] = 17, - ACTIONS(3232), 1, + [74218] = 6, + ACTIONS(7995), 1, + anon_sym_COLON_COLON, + ACTIONS(8195), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4144), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4826), 18, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4828), 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, + [74278] = 5, + ACTIONS(8203), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4310), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3871), 17, + 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, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3866), 25, + 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [74336] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 2, + ACTIONS(1770), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8838), 2, + STATE(8874), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521930,61 +521757,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74920] = 17, - ACTIONS(3232), 1, + [74418] = 18, + ACTIONS(1770), 1, + anon_sym_while, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(4971), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(8401), 1, anon_sym_set, - ACTIONS(8304), 1, - sym_property_modifier, - STATE(8834), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1754), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8906), 2, + STATE(9291), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -521995,114 +521823,126 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75002] = 5, - ACTIONS(8162), 1, - anon_sym_LPAREN, + [74502] = 17, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(7418), 1, + anon_sym_get, + ACTIONS(7420), 1, + anon_sym_set, + ACTIONS(8327), 1, + sym_property_modifier, + STATE(8820), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 2, + ACTIONS(1754), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(3948), 17, - 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, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3943), 25, - 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, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [75060] = 17, - ACTIONS(3232), 1, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8811), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [74584] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, + ACTIONS(1782), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8867), 2, + STATE(8697), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522113,61 +521953,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75142] = 17, - ACTIONS(3232), 1, + [74666] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_get, - ACTIONS(7401), 1, + ACTIONS(7420), 1, anon_sym_set, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - STATE(8834), 1, + STATE(8820), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(1764), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(8605), 2, + STATE(8911), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522178,62 +522018,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75224] = 18, - ACTIONS(1766), 1, + [74748] = 18, + ACTIONS(1754), 1, anon_sym_while, - ACTIONS(3232), 1, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(4899), 1, + ACTIONS(5071), 1, anon_sym_SEMI, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9127), 2, + STATE(9279), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522244,16 +522084,67 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75308] = 5, - ACTIONS(8159), 1, + [74832] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4965), 6, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4963), 39, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [74886] = 5, + ACTIONS(8178), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4144), 2, + ACTIONS(4296), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(3948), 17, + ACTIONS(3871), 17, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -522271,7 +522162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3943), 25, + ACTIONS(3866), 25, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522297,112 +522188,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [75366] = 5, - ACTIONS(8714), 1, - sym__quest, - STATE(5526), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4250), 11, - 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_SEMI, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4248), 31, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_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, - [75423] = 17, - ACTIONS(1772), 1, + [74944] = 18, + ACTIONS(1776), 1, anon_sym_while, - ACTIONS(3232), 1, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8304), 1, + ACTIONS(4897), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9115), 2, + STATE(9209), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522413,60 +522254,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75504] = 17, - ACTIONS(3232), 1, + [75028] = 18, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(3280), 1, + ACTIONS(3266), 1, anon_sym_while, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + ACTIONS(8462), 1, + anon_sym_SEMI, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9027), 2, + STATE(9121), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522477,60 +522320,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75585] = 17, - ACTIONS(3232), 1, - anon_sym_AT, - ACTIONS(3340), 1, + [75112] = 18, + ACTIONS(1782), 1, anon_sym_while, - ACTIONS(8304), 1, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(5025), 1, + anon_sym_SEMI, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9121), 2, + STATE(9260), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522541,60 +522386,60 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75666] = 17, - ACTIONS(1780), 1, + [75196] = 17, + ACTIONS(1696), 1, anon_sym_while, - ACTIONS(3232), 1, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9118), 2, + STATE(9302), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522605,60 +522450,112 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75747] = 17, - ACTIONS(1766), 1, + [75277] = 5, + ACTIONS(8729), 1, + sym__quest, + STATE(5524), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4261), 11, + 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_SEMI, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4259), 31, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_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, + [75334] = 17, + ACTIONS(1770), 1, anon_sym_while, - ACTIONS(3232), 1, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9127), 2, + STATE(9291), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522669,60 +522566,56 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75828] = 17, - ACTIONS(1754), 1, - anon_sym_while, - ACTIONS(3232), 1, + [75415] = 13, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8304), 1, + ACTIONS(8468), 1, + sym__backtick_identifier, + ACTIONS(8731), 1, sym_property_modifier, - ACTIONS(8380), 1, - anon_sym_get, - ACTIONS(8382), 1, - anon_sym_set, - STATE(8728), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(75), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(79), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9095), 2, - sym_getter, - sym_setter, - ACTIONS(8306), 3, + ACTIONS(85), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(81), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(73), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + ACTIONS(8470), 9, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + STATE(5374), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522733,60 +522626,60 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75909] = 17, - ACTIONS(1786), 1, + [75488] = 17, + ACTIONS(1782), 1, anon_sym_while, - ACTIONS(3232), 1, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8304), 1, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9055), 2, + STATE(9260), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522797,60 +522690,60 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75990] = 17, - ACTIONS(1696), 1, - anon_sym_while, - ACTIONS(3232), 1, + [75569] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8304), 1, + ACTIONS(3342), 1, + anon_sym_while, + ACTIONS(8327), 1, sym_property_modifier, - ACTIONS(8380), 1, + ACTIONS(8399), 1, anon_sym_get, - ACTIONS(8382), 1, + ACTIONS(8401), 1, anon_sym_set, - STATE(8728), 1, + STATE(8642), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8300), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8310), 2, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(9079), 2, + STATE(9305), 2, sym_getter, sym_setter, - ACTIONS(8306), 3, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8308), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8298), 4, + ACTIONS(8321), 4, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, - ACTIONS(8302), 4, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8296), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5459), 10, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -522861,15 +522754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76071] = 5, - ACTIONS(4146), 1, + [75650] = 5, + ACTIONS(4312), 1, anon_sym_while, - ACTIONS(8617), 1, + ACTIONS(8650), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 17, + ACTIONS(3871), 17, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -522887,7 +522780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3943), 25, + ACTIONS(3866), 25, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522913,15 +522806,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [76128] = 5, - ACTIONS(4291), 1, + [75707] = 17, + ACTIONS(1776), 1, anon_sym_while, - ACTIONS(8604), 1, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9209), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [75788] = 5, + ACTIONS(4298), 1, + anon_sym_while, + ACTIONS(8643), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 17, + ACTIONS(3871), 17, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -522939,7 +522896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3943), 25, + ACTIONS(3866), 25, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -522965,15 +522922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [76185] = 5, - ACTIONS(8716), 1, + [75845] = 5, + ACTIONS(8733), 1, sym__quest, - STATE(5526), 1, + STATE(5524), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 11, + ACTIONS(4246), 11, anon_sym_AT, anon_sym_EQ, anon_sym_LBRACE, @@ -522985,7 +522942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(4235), 31, + ACTIONS(4244), 31, anon_sym_by, anon_sym_where, anon_sym_get, @@ -523017,56 +522974,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [76242] = 13, - ACTIONS(3232), 1, + [75902] = 17, + ACTIONS(3238), 1, anon_sym_AT, - ACTIONS(8504), 1, - sym__backtick_identifier, - ACTIONS(8719), 1, + ACTIONS(3266), 1, + anon_sym_while, + ACTIONS(8327), 1, sym_property_modifier, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + STATE(8642), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(75), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(79), 2, + ACTIONS(8323), 2, anon_sym_override, anon_sym_lateinit, - STATE(5546), 2, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(85), 3, + STATE(9121), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(87), 3, + ACTIONS(8331), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(81), 4, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(73), 6, + ACTIONS(8319), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8506), 9, - anon_sym_val, - anon_sym_var, + STATE(5461), 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, + [75983] = 17, + ACTIONS(1754), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8399), 1, anon_sym_get, + ACTIONS(8401), 1, anon_sym_set, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9279), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 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, + [76064] = 17, + ACTIONS(1764), 1, + anon_sym_while, + ACTIONS(3238), 1, + anon_sym_AT, + ACTIONS(8327), 1, + sym_property_modifier, + ACTIONS(8399), 1, + anon_sym_get, + ACTIONS(8401), 1, + anon_sym_set, + STATE(8642), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8323), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8333), 2, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - STATE(5305), 10, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9299), 2, + sym_getter, + sym_setter, + ACTIONS(8329), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8331), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8321), 4, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + ACTIONS(8325), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8319), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5461), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -523077,19 +523166,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76315] = 4, - ACTIONS(8721), 1, + [76145] = 4, + ACTIONS(8736), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, + ACTIONS(3871), 5, anon_sym_AT, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(3943), 37, + ACTIONS(3866), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -523127,16 +523216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [76369] = 4, - ACTIONS(8721), 1, - anon_sym_COLON, + [76199] = 5, + ACTIONS(8738), 1, + anon_sym_LT, + STATE(5552), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3943), 2, + ACTIONS(4148), 2, anon_sym_var, sym_property_modifier, - ACTIONS(3948), 39, + ACTIONS(4230), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -523145,7 +523236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constructor, anon_sym_LPAREN, anon_sym_val, - anon_sym_LT, anon_sym_companion, anon_sym_object, anon_sym_fun, @@ -523176,30 +523266,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76422] = 5, - ACTIONS(8723), 1, - anon_sym_LT, - STATE(5545), 1, - sym_type_arguments, + [76254] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4113), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(4190), 38, + ACTIONS(3871), 12, + 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_EQ, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_val, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_COMMA, + anon_sym_LT, anon_sym_DOT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(3866), 30, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -523218,6 +523304,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, @@ -523226,30 +523313,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76477] = 8, - ACTIONS(4113), 1, sym__alpha_identifier, - ACTIONS(6347), 1, + [76305] = 8, + ACTIONS(4148), 1, + sym__alpha_identifier, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(8725), 1, + ACTIONS(8740), 1, anon_sym_COLON, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 4, + ACTIONS(4230), 4, anon_sym_LPAREN, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4109), 5, + ACTIONS(4144), 5, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(4107), 29, + ACTIONS(4142), 29, anon_sym_by, anon_sym_where, anon_sym_get, @@ -523279,26 +523367,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76538] = 3, + [76366] = 4, + ACTIONS(8736), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 12, - sym__automatic_semicolon, + ACTIONS(3866), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(3871), 39, anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_val, anon_sym_LT, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_DOT, - anon_sym_SEMI, - sym__quest, - sym__backtick_identifier, - ACTIONS(3943), 30, - anon_sym_by, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -523317,7 +523408,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, @@ -523326,19 +523416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [76589] = 5, - ACTIONS(8727), 1, + [76419] = 5, + ACTIONS(8742), 1, anon_sym_DOT, - STATE(5533), 1, + STATE(5537), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, + ACTIONS(4216), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4272), 37, + ACTIONS(4218), 37, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -523376,31 +523465,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76643] = 5, - ACTIONS(8730), 1, - anon_sym_DOT, - STATE(5533), 1, - aux_sym_user_type_repeat1, + [76473] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4220), 2, - anon_sym_var, + ACTIONS(3866), 2, + anon_sym_DOT, sym_property_modifier, - ACTIONS(4222), 37, + ACTIONS(3871), 39, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, + 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_val, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -523425,28 +523512,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76697] = 8, - ACTIONS(4113), 1, + [76523] = 8, + ACTIONS(4148), 1, sym__alpha_identifier, - ACTIONS(6347), 1, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(8732), 1, + ACTIONS(8744), 1, anon_sym_COLON, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4109), 3, + ACTIONS(4144), 3, anon_sym_AT, anon_sym_EQ, anon_sym_SEMI, - ACTIONS(4190), 4, + ACTIONS(4230), 4, anon_sym_LPAREN, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4107), 30, + ACTIONS(4142), 30, anon_sym_by, anon_sym_where, anon_sym_get, @@ -523477,29 +523564,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76757] = 3, + [76583] = 5, + ACTIONS(8742), 1, + anon_sym_DOT, + STATE(5533), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3943), 2, + ACTIONS(4271), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(4273), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_val, + 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_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, + [76637] = 5, + ACTIONS(8746), 1, anon_sym_DOT, + STATE(5537), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4223), 2, + anon_sym_var, sym_property_modifier, - ACTIONS(3948), 39, - sym__automatic_semicolon, + ACTIONS(4225), 37, anon_sym_AT, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_as, - anon_sym_EQ, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - sym__quest, + anon_sym_val, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -523524,15 +523662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76807] = 4, - ACTIONS(8734), 1, + [76691] = 4, + ACTIONS(8749), 1, anon_sym_LT, - STATE(5554), 1, + STATE(5558), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 39, + ACTIONS(4230), 39, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -523572,19 +523710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76859] = 5, + [76743] = 5, ACTIONS(8680), 1, anon_sym_DOT, - STATE(5469), 1, + STATE(5460), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 3, + ACTIONS(4273), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4307), 36, + ACTIONS(4271), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -523621,19 +523759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [76913] = 5, - ACTIONS(8736), 1, + [76797] = 5, + ACTIONS(8751), 1, anon_sym_LPAREN, - STATE(5504), 1, + STATE(5510), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(6930), 3, + ACTIONS(7009), 3, anon_sym_AT, anon_sym_RBRACK, sym__backtick_identifier, - ACTIONS(6928), 36, + ACTIONS(7007), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -523670,31 +523808,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [76967] = 5, - ACTIONS(8730), 1, - anon_sym_DOT, - STATE(5534), 1, - aux_sym_user_type_repeat1, + [76851] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(4309), 37, + ACTIONS(7066), 3, anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7064), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, anon_sym_val, - anon_sym_companion, + anon_sym_var, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -523711,6 +523844,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, @@ -523719,28 +523853,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77021] = 3, + sym__alpha_identifier, + [76900] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(4272), 38, + ACTIONS(7058), 3, anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7056), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, anon_sym_val, - anon_sym_companion, + anon_sym_var, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -523757,6 +523890,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, @@ -523765,18 +523899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77070] = 5, - ACTIONS(8738), 1, + sym__alpha_identifier, + [76949] = 5, + ACTIONS(8753), 1, anon_sym_LPAREN, - STATE(5568), 1, + STATE(5564), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(6928), 2, + ACTIONS(7007), 2, anon_sym_var, sym_property_modifier, - ACTIONS(6930), 36, + ACTIONS(7009), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -523813,28 +523948,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77123] = 3, + [77002] = 4, + ACTIONS(8755), 1, + sym__quest, + STATE(5516), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4489), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(4491), 38, + ACTIONS(4253), 38, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_DASH_GT, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -523851,6 +523986,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, @@ -523859,15 +523995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77172] = 3, + [77053] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7015), 3, + ACTIONS(7089), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7013), 37, + ACTIONS(7087), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -523905,26 +524041,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [77221] = 3, + [77102] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4513), 2, + ACTIONS(8757), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4515), 38, + ACTIONS(7548), 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_val, + anon_sym_init, anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -523951,26 +524087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77270] = 3, + [77151] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7030), 3, + ACTIONS(4448), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(4450), 38, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7028), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -523987,7 +524125,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, @@ -523996,29 +524133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [77319] = 4, - ACTIONS(8740), 1, - sym__quest, - STATE(5515), 1, - aux_sym_nullable_type_repeat1, + [77200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 38, + ACTIONS(7076), 3, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7074), 37, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_DASH_GT, - anon_sym_while, + anon_sym_dynamic, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524044,14 +524178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77370] = 3, + sym__alpha_identifier, + [77249] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 2, + ACTIONS(4464), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4471), 38, + ACTIONS(4466), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -524090,26 +524225,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77419] = 3, + [77298] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7081), 3, + ACTIONS(4223), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(4225), 38, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7079), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524126,7 +524263,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, @@ -524135,16 +524271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [77468] = 3, + [77347] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7077), 3, + ACTIONS(7100), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7075), 37, + ACTIONS(7098), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -524182,26 +524317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [77517] = 3, + [77396] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7022), 3, + ACTIONS(4486), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(4488), 38, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7020), 37, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, + anon_sym_DOT, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524218,7 +524355,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, @@ -524227,29 +524363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [77566] = 3, + [77445] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8742), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(7457), 38, + ACTIONS(4450), 11, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_RBRACE, - anon_sym_val, - anon_sym_init, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4448), 28, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524266,6 +524399,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, @@ -524274,26 +524408,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77615] = 3, + [77493] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 11, + ACTIONS(4466), 39, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_by, + anon_sym_where, anon_sym_DOT, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4489), 28, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524319,11 +524452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77663] = 2, + [77539] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4515), 39, + ACTIONS(4225), 39, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -524363,25 +524496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77709] = 2, + [77585] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 39, - sym__automatic_semicolon, + ACTIONS(4466), 11, 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_RPAREN, + anon_sym_GT, anon_sym_DOT, - anon_sym_SEMI, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4464), 28, anon_sym_get, anon_sym_set, - sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524407,26 +524541,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77755] = 3, + [77633] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 11, + ACTIONS(4450), 39, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_by, + anon_sym_where, anon_sym_DOT, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4469), 28, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524452,11 +524585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77803] = 2, + [77679] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 39, + ACTIONS(4488), 39, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -524496,21 +524629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77849] = 2, + [77725] = 3, + ACTIONS(4269), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 39, + ACTIONS(4267), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -524540,25 +524673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77895] = 4, + [77772] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8744), 2, + ACTIONS(4420), 6, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(3948), 6, anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3950), 30, - anon_sym_val, - anon_sym_var, + sym__backtick_identifier, + ACTIONS(4418), 32, + anon_sym_constructor, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524585,20 +524717,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [77944] = 3, + [77819] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8748), 2, + ACTIONS(4981), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(4983), 36, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(8746), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524619,7 +524753,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, @@ -524628,80 +524761,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [77991] = 24, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8754), 1, - anon_sym_COMMA, - ACTIONS(8756), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(6989), 1, - sym_annotation, - STATE(7463), 1, - sym_parameter_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8337), 1, - sym__function_value_parameter, - STATE(8515), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, + [77866] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6927), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(6931), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(9400), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(4985), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(4987), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_val, + 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_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, - sym__alpha_identifier, - [78080] = 3, + [77913] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3958), 2, + ACTIONS(8761), 2, anon_sym_var, sym_property_modifier, - ACTIONS(8758), 36, + ACTIONS(8759), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -524738,14 +524849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78127] = 3, + [77960] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4867), 2, + ACTIONS(4963), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4869), 36, + ACTIONS(4965), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -524782,26 +524893,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78174] = 4, - ACTIONS(8760), 1, - anon_sym_DOT, - STATE(5564), 1, - aux_sym_user_type_repeat1, + [78007] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 36, - sym__automatic_semicolon, + ACTIONS(8765), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(8763), 36, anon_sym_AT, - anon_sym_EQ, - 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_val, + 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, @@ -524818,7 +524929,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, @@ -524827,15 +524937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78223] = 4, - ACTIONS(8763), 1, + [78054] = 4, + ACTIONS(8767), 1, sym__quest, - STATE(5567), 1, + STATE(5579), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 36, + ACTIONS(4261), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -524872,26 +524982,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78272] = 4, - ACTIONS(8765), 1, - anon_sym_DOT, - STATE(5564), 1, - aux_sym_user_type_repeat1, + [78103] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 36, - sym__automatic_semicolon, + ACTIONS(8771), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(8769), 36, anon_sym_AT, - anon_sym_EQ, - 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_val, + 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_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, + [78150] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8773), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3873), 36, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_val, + anon_sym_var, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -524917,19 +525069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78321] = 4, - ACTIONS(8767), 1, - sym__quest, - STATE(5567), 1, - aux_sym_nullable_type_repeat1, + sym__alpha_identifier, + [78197] = 4, + ACTIONS(8775), 1, + anon_sym_DOT, + STATE(5582), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 36, + ACTIONS(4273), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -524937,6 +525089,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, @@ -524962,14 +525115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78370] = 3, + [78246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4891), 2, + ACTIONS(8779), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4893), 36, + ACTIONS(8777), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525006,14 +525159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78417] = 3, + [78293] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4859), 2, + ACTIONS(7056), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4861), 36, + ACTIONS(7058), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525050,14 +525203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78464] = 3, + [78340] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8746), 2, + ACTIONS(7098), 2, anon_sym_var, sym_property_modifier, - ACTIONS(8748), 36, + ACTIONS(7100), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525094,14 +525247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78511] = 3, + [78387] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7028), 2, + ACTIONS(7087), 2, anon_sym_var, sym_property_modifier, - ACTIONS(7030), 36, + ACTIONS(7089), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525138,14 +525291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78558] = 3, + [78434] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4863), 2, + ACTIONS(4967), 2, anon_sym_var, sym_property_modifier, - ACTIONS(4865), 36, + ACTIONS(4969), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525182,87 +525335,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78605] = 24, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8770), 1, - anon_sym_COMMA, - ACTIONS(8772), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(6989), 1, - sym_annotation, - STATE(7463), 1, - sym_parameter_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8366), 1, - sym__function_value_parameter, - STATE(8515), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6927), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(6931), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(9400), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [78694] = 3, + [78481] = 4, + ACTIONS(8781), 1, + sym__quest, + STATE(5566), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8776), 2, + ACTIONS(4280), 36, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(8774), 36, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, - anon_sym_var, - 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, @@ -525290,175 +525380,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [78741] = 24, - ACTIONS(7323), 1, + [78530] = 24, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8778), 1, + ACTIONS(8787), 1, anon_sym_COMMA, - ACTIONS(8780), 1, + ACTIONS(8789), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(6989), 1, + STATE(6986), 1, sym_annotation, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7918), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8515), 1, - sym_parameter, - STATE(8519), 1, + STATE(8337), 1, sym__function_value_parameter, - STATE(9397), 1, + STATE(8513), 1, + sym_parameter, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6927), 2, + STATE(6928), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(6931), 2, + STATE(6934), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(9261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [78830] = 4, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8758), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(3948), 6, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3958), 30, - anon_sym_val, - anon_sym_var, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, - 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, - [78879] = 24, - ACTIONS(7323), 1, + [78619] = 24, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8782), 1, + ACTIONS(8791), 1, anon_sym_COMMA, - ACTIONS(8784), 1, + ACTIONS(8793), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(6989), 1, + STATE(6986), 1, sym_annotation, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7918), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8467), 1, + STATE(8341), 1, sym__function_value_parameter, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6927), 2, + STATE(6928), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(6931), 2, + STATE(6934), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(9261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -525466,64 +525510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [78968] = 3, + [78708] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8788), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(8786), 36, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_val, + ACTIONS(7064), 2, anon_sym_var, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [79015] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8792), 2, + ACTIONS(7066), 36, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(8790), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525544,7 +525546,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, @@ -525553,25 +525554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [79062] = 3, + [78755] = 4, + ACTIONS(8795), 1, + sym__quest, + STATE(5579), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7075), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(7077), 36, + ACTIONS(4246), 36, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_val, - 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, @@ -525590,6 +525590,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, @@ -525598,14 +525599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79109] = 3, + [78804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3950), 2, + ACTIONS(4977), 2, anon_sym_var, sym_property_modifier, - ACTIONS(8744), 36, + ACTIONS(4979), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525642,15 +525643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79156] = 4, - ACTIONS(8794), 1, + [78851] = 4, + ACTIONS(8781), 1, sym__quest, - STATE(5565), 1, + STATE(5566), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4322), 36, + ACTIONS(4253), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -525687,17 +525688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79205] = 3, - ACTIONS(4266), 1, - anon_sym_DASH_GT, + [78900] = 4, + ACTIONS(8798), 1, + anon_sym_DOT, + STATE(5584), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 37, + ACTIONS(4218), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -525731,14 +525733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79252] = 3, + [78949] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7013), 2, + ACTIONS(8802), 2, anon_sym_var, sym_property_modifier, - ACTIONS(7015), 36, + ACTIONS(8800), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -525775,26 +525777,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79299] = 3, + [78996] = 4, + ACTIONS(8804), 1, + anon_sym_DOT, + STATE(5584), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8790), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(8792), 36, + ACTIONS(4225), 36, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_val, - 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, @@ -525811,6 +525813,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, @@ -525819,18 +525822,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79346] = 3, + [79045] = 24, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8809), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6782), 1, + sym_type_modifiers, + STATE(6986), 1, + sym_annotation, + STATE(7447), 1, + sym_parameter_modifiers, + STATE(7721), 1, + sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8487), 1, + sym__function_value_parameter, + STATE(8513), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4396), 6, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6928), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(6934), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [79134] = 24, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + ACTIONS(8811), 1, + anon_sym_COMMA, + ACTIONS(8813), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6782), 1, + sym_type_modifiers, + STATE(6986), 1, + sym_annotation, + STATE(7447), 1, + sym_parameter_modifiers, + STATE(7721), 1, + sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8456), 1, + sym__function_value_parameter, + STATE(8513), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6928), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(6934), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [79223] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4434), 6, anon_sym_AT, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4394), 32, + ACTIONS(4432), 32, anon_sym_constructor, anon_sym_where, anon_sym_get, @@ -525863,59 +525996,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [79393] = 4, - ACTIONS(8794), 1, - sym__quest, - STATE(5565), 1, - aux_sym_nullable_type_repeat1, + [79270] = 24, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + ACTIONS(8815), 1, + anon_sym_COMMA, + ACTIONS(8817), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6782), 1, + sym_type_modifiers, + STATE(6986), 1, + sym_annotation, + STATE(7447), 1, + sym_parameter_modifiers, + STATE(7721), 1, + sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8513), 1, + sym_parameter, + STATE(8588), 1, + sym__function_value_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 36, - 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, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6928), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(6934), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, - 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, - [79442] = 3, + sym__alpha_identifier, + [79359] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8758), 2, + ACTIONS(8777), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(3958), 36, + ACTIONS(8779), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -525952,22 +526105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [79489] = 3, + [79406] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4883), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(4885), 36, + ACTIONS(8819), 2, anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3897), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, anon_sym_val, - anon_sym_companion, + anon_sym_var, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525988,6 +526139,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, @@ -525996,22 +526148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79536] = 3, + sym__alpha_identifier, + [79453] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8774), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(8776), 36, + ACTIONS(8759), 2, anon_sym_AT, + sym__backtick_identifier, + ACTIONS(8761), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, anon_sym_val, - anon_sym_companion, + anon_sym_var, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526032,50 +526183,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79583] = 4, - ACTIONS(8796), 1, - anon_sym_DOT, - STATE(5566), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4309), 36, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, @@ -526085,14 +526192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79632] = 3, + sym__alpha_identifier, + [79500] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8800), 2, + ACTIONS(7074), 2, anon_sym_var, sym_property_modifier, - ACTIONS(8798), 36, + ACTIONS(7076), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -526129,22 +526237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79679] = 3, + [79547] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8786), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(8788), 36, + ACTIONS(8800), 2, anon_sym_AT, + sym__backtick_identifier, + ACTIONS(8802), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, anon_sym_val, - anon_sym_companion, + anon_sym_var, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526165,6 +526271,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, @@ -526173,22 +526280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79726] = 3, + sym__alpha_identifier, + [79594] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7079), 2, - anon_sym_var, - sym_property_modifier, - ACTIONS(7081), 36, + ACTIONS(8763), 2, anon_sym_AT, + sym__backtick_identifier, + ACTIONS(8765), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, anon_sym_val, - anon_sym_companion, + anon_sym_var, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526209,6 +526315,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, @@ -526217,14 +526324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79773] = 3, + sym__alpha_identifier, + [79641] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(3950), 36, + ACTIONS(8771), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -526261,64 +526369,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [79820] = 24, - ACTIONS(7323), 1, + [79688] = 24, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8802), 1, + ACTIONS(8821), 1, anon_sym_COMMA, - ACTIONS(8804), 1, + ACTIONS(8823), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(6989), 1, + STATE(6986), 1, sym_annotation, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7918), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8558), 1, + STATE(8532), 1, sym__function_value_parameter, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6927), 2, + STATE(6928), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(6931), 2, + STATE(6934), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(9261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526326,85 +526434,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [79909] = 24, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8806), 1, - anon_sym_COMMA, - ACTIONS(8808), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(6989), 1, - sym_annotation, - STATE(7463), 1, - sym_parameter_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8515), 1, - sym_parameter, - STATE(8556), 1, - sym__function_value_parameter, - STATE(9397), 1, - sym_function_type_parameters, + [79777] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6927), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(6931), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(9400), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8819), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3871), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3897), 30, + 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_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, - [79998] = 3, + [79826] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8798), 2, + ACTIONS(3873), 2, + anon_sym_var, + sym_property_modifier, + ACTIONS(8773), 36, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(8800), 36, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, anon_sym_val, - anon_sym_var, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -526425,7 +526515,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, @@ -526434,15 +526523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [80045] = 3, + [79873] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7020), 2, + ACTIONS(3897), 2, anon_sym_var, sym_property_modifier, - ACTIONS(7022), 36, + ACTIONS(8819), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -526479,24 +526567,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80092] = 3, + [79920] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 6, + ACTIONS(8773), 2, anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3871), 6, anon_sym_COLON, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4458), 32, - anon_sym_constructor, - anon_sym_where, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3873), 30, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -526523,15 +526612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80139] = 4, - ACTIONS(8810), 1, + [79969] = 4, + ACTIONS(8825), 1, anon_sym_DOT, - STATE(5469), 1, + STATE(5460), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 35, + ACTIONS(4273), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -526567,59 +526656,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80187] = 21, - ACTIONS(7323), 1, + [80017] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4253), 36, + 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_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, + [80060] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8346), 1, + STATE(8372), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526627,59 +526757,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80268] = 21, - ACTIONS(7323), 1, + [80141] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8470), 1, + STATE(8471), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526687,59 +526817,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80349] = 21, - ACTIONS(7323), 1, + [80222] = 4, + ACTIONS(8755), 1, + sym__quest, + STATE(5516), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4280), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_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, + [80269] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8563), 1, + STATE(8507), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526747,59 +526920,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80430] = 21, - ACTIONS(7323), 1, + [80350] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8552), 1, + STATE(8593), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526807,59 +526980,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80511] = 21, - ACTIONS(7323), 1, + [80431] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4583), 36, + 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_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, + [80474] = 3, + ACTIONS(4269), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4267), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [80519] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8408), 1, + STATE(8517), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526867,59 +527123,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80592] = 21, - ACTIONS(7323), 1, + [80600] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8457), 1, + STATE(8481), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526927,59 +527183,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80673] = 21, - ACTIONS(7323), 1, + [80681] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8584), 1, + STATE(8685), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -526987,59 +527243,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80754] = 21, - ACTIONS(7323), 1, + [80762] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8478), 1, + STATE(8482), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527047,100 +527303,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80835] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4621), 36, - 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_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, - [80878] = 21, - ACTIONS(7323), 1, + [80843] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8364), 1, + STATE(8573), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527148,59 +527363,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [80959] = 21, - ACTIONS(7323), 1, + [80924] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8527), 1, + STATE(8442), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527208,102 +527423,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81040] = 4, - ACTIONS(8740), 1, - sym__quest, - STATE(5515), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4322), 34, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_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, - [81087] = 21, - ACTIONS(7323), 1, + [81005] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8438), 1, + STATE(8410), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527311,59 +527483,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81168] = 21, - ACTIONS(7323), 1, + [81086] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8767), 1, + STATE(8523), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527371,100 +527543,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81249] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4646), 36, - 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_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, - [81292] = 21, - ACTIONS(7323), 1, + [81167] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8464), 1, + STATE(8526), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527472,59 +527603,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81373] = 21, - ACTIONS(7323), 1, + [81248] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8508), 1, + STATE(8501), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527532,100 +527663,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81454] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4244), 36, - 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_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, - [81497] = 21, - ACTIONS(7323), 1, + [81329] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8397), 1, + STATE(8343), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527633,23 +527723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81578] = 3, - ACTIONS(4266), 1, - anon_sym_DASH_GT, + [81410] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 35, + ACTIONS(4595), 36, + 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, - sym__quest, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -527675,59 +527764,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81623] = 21, - ACTIONS(7323), 1, + [81453] = 21, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8812), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5803), 1, + STATE(6167), 1, sym_type_projection_modifiers, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(8447), 1, + STATE(8536), 1, sym_type_projection, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6929), 3, + STATE(6930), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8816), 3, + STATE(8741), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -527735,15 +527824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81704] = 4, - ACTIONS(8814), 1, + [81534] = 4, + ACTIONS(8829), 1, anon_sym_COMMA, - STATE(5625), 1, + STATE(5627), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4456), 33, + ACTIONS(4517), 33, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -527777,18 +527866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81750] = 2, + [81580] = 3, + ACTIONS(8740), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4527), 35, + ACTIONS(4144), 34, 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, @@ -527817,15 +527907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81792] = 4, - ACTIONS(8816), 1, + [81624] = 4, + ACTIONS(8831), 1, anon_sym_COMMA, STATE(5625), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4464), 33, + ACTIONS(4508), 33, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -527859,11 +527949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81838] = 2, + [81670] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4636), 35, + ACTIONS(4508), 35, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -527899,15 +527989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81880] = 4, - ACTIONS(8814), 1, + [81712] = 4, + ACTIONS(8829), 1, anon_sym_COMMA, - STATE(5623), 1, + STATE(5625), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 33, + ACTIONS(4523), 33, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -527941,11 +528031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81926] = 2, + [81758] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4464), 35, + ACTIONS(4587), 35, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -527981,263 +528071,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81968] = 3, - ACTIONS(8725), 1, - anon_sym_COLON, + [81800] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4109), 34, + ACTIONS(4591), 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_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, - [82012] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4696), 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, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [82053] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4464), 34, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_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, - [82094] = 5, - ACTIONS(8819), 1, - anon_sym_LT, - STATE(5654), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 5, - anon_sym_AT, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4113), 27, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [82141] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4700), 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, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [82182] = 4, - ACTIONS(8721), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 6, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym_label, - ACTIONS(3943), 27, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [82227] = 4, - ACTIONS(8821), 1, anon_sym_COMMA, - STATE(5635), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4464), 32, - anon_sym_AT, - anon_sym_EQ, anon_sym_by, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -528263,11 +528111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82272] = 2, + [81842] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 34, + ACTIONS(4253), 34, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -528302,15 +528150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82313] = 4, - ACTIONS(8824), 1, + [81883] = 4, + ACTIONS(8834), 1, anon_sym_COMMA, - STATE(5635), 1, + STATE(5644), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4456), 32, + ACTIONS(4523), 32, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -528343,20 +528191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82358] = 2, + [81928] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4244), 34, + ACTIONS(4696), 34, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - 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, @@ -528382,20 +528230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82399] = 2, + [81969] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4636), 34, + ACTIONS(4692), 34, + 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, @@ -528421,11 +528269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82440] = 2, + [82010] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 34, + ACTIONS(4583), 34, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -528460,11 +528308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82481] = 2, + [82051] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4603), 34, + ACTIONS(4670), 34, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -528499,16 +528347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82522] = 2, + [82092] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4527), 34, + ACTIONS(4595), 34, 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, @@ -528538,17 +528386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82563] = 3, - ACTIONS(8732), 1, - anon_sym_COLON, + [82133] = 4, + ACTIONS(8834), 1, + anon_sym_COMMA, + STATE(5631), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4109), 33, + ACTIONS(4517), 32, anon_sym_AT, anon_sym_EQ, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -528578,17 +528427,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82606] = 4, - ACTIONS(8824), 1, + [82178] = 5, + ACTIONS(8836), 1, + anon_sym_LT, + STATE(5655), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 5, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + ACTIONS(4148), 27, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [82225] = 4, + ACTIONS(8736), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3871), 6, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym_label, + ACTIONS(3866), 27, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [82270] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4591), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(5637), 1, - aux_sym_type_constraints_repeat1, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_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, + [82311] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 32, + ACTIONS(4587), 34, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_by, anon_sym_SEMI, anon_sym_get, @@ -528619,15 +528588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82651] = 2, + [82352] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4603), 33, + ACTIONS(4508), 34, 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, @@ -528657,11 +528627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82691] = 2, + [82393] = 3, + ACTIONS(8744), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4696), 33, + ACTIONS(4144), 33, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -528695,15 +528667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82731] = 2, + [82436] = 4, + ACTIONS(8838), 1, + anon_sym_COMMA, + STATE(5644), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4700), 33, + ACTIONS(4508), 32, anon_sym_AT, anon_sym_EQ, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -528733,18 +528708,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82771] = 3, + [82481] = 3, + ACTIONS(4432), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 6, + ACTIONS(4434), 32, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_where, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [82523] = 5, + ACTIONS(8841), 1, anon_sym_DOT, + STATE(5646), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4225), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, sym_label, - ACTIONS(3943), 27, + ACTIONS(4223), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -528772,13 +528788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82813] = 3, - ACTIONS(4394), 1, + [82569] = 3, + ACTIONS(4418), 1, sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4396), 32, + ACTIONS(4420), 32, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, @@ -528811,20 +528827,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82855] = 5, - ACTIONS(8826), 1, + [82611] = 5, + ACTIONS(8844), 1, anon_sym_DOT, - STATE(5650), 1, + STATE(5646), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 4, + ACTIONS(4218), 4, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4270), 27, + ACTIONS(4216), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -528852,20 +528868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82901] = 5, - ACTIONS(8829), 1, - anon_sym_DOT, - STATE(5650), 1, - aux_sym_user_type_repeat1, + [82657] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 4, + ACTIONS(3871), 6, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, sym_label, - ACTIONS(4220), 27, + ACTIONS(3866), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -528893,20 +528907,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82947] = 5, - ACTIONS(8829), 1, + [82699] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4696), 33, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_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, + [82739] = 5, + ACTIONS(8844), 1, anon_sym_DOT, - STATE(5651), 1, + STATE(5648), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 4, + ACTIONS(4273), 4, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4307), 27, + ACTIONS(4271), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -528934,21 +528986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82993] = 3, - ACTIONS(4458), 1, - sym_property_modifier, + [82785] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 32, - sym__automatic_semicolon, + ACTIONS(4670), 33, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + 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, @@ -528965,6 +529015,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, @@ -528973,19 +529024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83035] = 3, + [82825] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4515), 5, + ACTIONS(4692), 33, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4513), 27, + 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, @@ -529011,19 +529062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83076] = 5, - ACTIONS(8831), 1, - anon_sym_LPAREN, - STATE(5666), 1, - sym_value_arguments, + [82865] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(6930), 3, + ACTIONS(4225), 5, anon_sym_AT, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, sym_label, - ACTIONS(6928), 27, + ACTIONS(4223), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -529051,17 +529100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83121] = 3, + [82906] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 5, + ACTIONS(4488), 5, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, sym_label, - ACTIONS(4270), 27, + ACTIONS(4486), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -529089,15 +529138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83162] = 3, + [82947] = 5, + ACTIONS(8846), 1, + anon_sym_LPAREN, + STATE(5723), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7015), 3, + ACTIONS(7009), 3, anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(7013), 27, + ACTIONS(7007), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -529125,50 +529178,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83201] = 18, - ACTIONS(613), 1, + [82992] = 16, + ACTIONS(8848), 1, + anon_sym_AT, + ACTIONS(8851), 1, + anon_sym_LBRACK, + ACTIONS(8856), 1, + anon_sym_LBRACE, + ACTIONS(8859), 1, + anon_sym_LPAREN, + ACTIONS(8865), 1, + sym_label, + STATE(4736), 1, + sym_lambda_literal, + STATE(6378), 1, + sym_value_arguments, + STATE(6927), 1, + sym_annotated_lambda, + STATE(7413), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7894), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8862), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(8868), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(8854), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(5657), 6, + sym_indexing_suffix, + sym_navigation_suffix, + sym_call_suffix_without_type_arguments, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + [83058] = 16, + ACTIONS(1688), 1, + anon_sym_AT, + ACTIONS(1854), 1, + anon_sym_LBRACE, + ACTIONS(6408), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_LPAREN, + ACTIONS(6420), 1, + sym_label, + STATE(4736), 1, + sym_lambda_literal, + STATE(6378), 1, + sym_value_arguments, + STATE(6927), 1, + sym_annotated_lambda, + STATE(7413), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7894), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(6432), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(8873), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(8871), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(5657), 6, + sym_indexing_suffix, + sym_navigation_suffix, + sym_call_suffix_without_type_arguments, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + [83124] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5826), 1, + STATE(6160), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(570), 2, + STATE(2636), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7067), 2, + STATE(7117), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529176,15 +529329,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83270] = 3, + [83193] = 18, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6031), 1, + sym_type_parameters, + STATE(6932), 1, + sym_type_modifiers, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 3, + STATE(1554), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7035), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [83262] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4987), 3, anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(4863), 27, + ACTIONS(4985), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -529212,50 +529416,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83309] = 18, - ACTIONS(613), 1, + [83301] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6069), 1, + STATE(5803), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(632), 2, + STATE(440), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7062), 2, + STATE(7061), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529263,50 +529467,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83378] = 18, - ACTIONS(7323), 1, + [83370] = 18, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, + ACTIONS(8883), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7918), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8479), 1, + STATE(8448), 1, sym_parameter, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8548), 3, + STATE(8397), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529314,50 +529518,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83447] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [83439] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8887), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + STATE(5530), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(5531), 1, + sym_simple_identifier, + STATE(6075), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5255), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7126), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8480), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529365,50 +529569,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83516] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [83508] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6261), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7053), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8554), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529416,50 +529620,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83585] = 18, - ACTIONS(613), 1, + [83577] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6004), 1, + STATE(6260), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, + STATE(434), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7068), 2, + STATE(7045), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529467,50 +529671,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83654] = 18, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [83646] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8893), 1, + anon_sym_LPAREN, + ACTIONS(8895), 1, + sym__backtick_identifier, + STATE(5434), 1, sym__lexical_identifier, - STATE(6141), 1, + STATE(5535), 1, + sym_simple_identifier, + STATE(6236), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(442), 2, + STATE(5278), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7065), 2, + STATE(7060), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529518,15 +529722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83723] = 3, + [83715] = 4, + ACTIONS(8897), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4893), 3, - anon_sym_AT, + ACTIONS(8900), 2, anon_sym_LBRACE, sym_label, - ACTIONS(4891), 27, + ACTIONS(2038), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -529554,50 +529759,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83762] = 18, - ACTIONS(533), 1, + [83756] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(830), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6100), 1, + STATE(6257), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2326), 2, + STATE(429), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7020), 2, + STATE(7081), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529605,50 +529810,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83831] = 18, - ACTIONS(195), 1, + [83825] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5898), 1, + STATE(5982), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2390), 2, + STATE(1744), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7183), 2, + STATE(7150), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529656,50 +529861,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83900] = 18, - ACTIONS(195), 1, + [83894] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6002), 1, + STATE(6250), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2396), 2, + STATE(425), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7143), 2, + STATE(7082), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529707,50 +529912,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [83969] = 18, - ACTIONS(533), 1, + [83963] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6263), 1, + STATE(6021), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2662), 2, + STATE(1736), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7044), 2, + STATE(7147), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529758,50 +529963,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84038] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [84032] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(5837), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2586), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7170), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8360), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529809,50 +530014,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84107] = 18, - ACTIONS(533), 1, + [84101] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5989), 1, + STATE(6240), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1886), 2, + STATE(2416), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7111), 2, + STATE(7049), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529860,50 +530065,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84176] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [84170] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6246), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1312), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7128), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8574), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529911,50 +530116,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84245] = 18, - ACTIONS(195), 1, + [84239] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5796), 1, + STATE(5836), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1316), 2, + STATE(2635), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7187), 2, + STATE(7194), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -529962,50 +530167,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84314] = 18, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [84308] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8904), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + STATE(2926), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(6044), 1, + STATE(6284), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1315), 2, + STATE(1784), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7032), 2, + STATE(7092), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530013,50 +530218,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84383] = 18, - ACTIONS(613), 1, + [84377] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5790), 1, + STATE(5831), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(435), 2, + STATE(615), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7109), 2, + STATE(7037), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530064,50 +530269,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84452] = 18, - ACTIONS(533), 1, + [84446] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5986), 1, + STATE(6245), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1894), 2, + STATE(1311), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7168), 2, + STATE(7146), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530115,50 +530320,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84521] = 18, - ACTIONS(613), 1, + [84515] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5791), 1, + STATE(5830), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, + STATE(626), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7121), 2, + STATE(7042), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530166,50 +530371,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84590] = 18, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [84584] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8893), 1, + anon_sym_LPAREN, + ACTIONS(8895), 1, + sym__backtick_identifier, + STATE(5434), 1, sym__lexical_identifier, - STATE(5794), 1, + STATE(5535), 1, + sym_simple_identifier, + STATE(6170), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(437), 2, + STATE(5327), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, STATE(7156), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530217,50 +530422,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84659] = 18, - ACTIONS(7323), 1, + [84653] = 18, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, + ACTIONS(8883), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7918), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8479), 1, + STATE(8448), 1, sym_parameter, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8517), 3, + STATE(8468), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530268,50 +530473,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84728] = 18, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [84722] = 17, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(5828), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(602), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7083), 2, - sym__receiver_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8448), 4, + sym_parameter, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [84789] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6782), 1, + sym_type_modifiers, + STATE(7721), 1, + sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(8420), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530319,50 +530574,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84797] = 18, - ACTIONS(533), 1, + [84858] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(830), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5902), 1, + STATE(5847), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2625), 2, + STATE(450), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7150), 2, + STATE(7161), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530370,50 +530625,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84866] = 18, - ACTIONS(533), 1, + [84927] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5903), 1, + STATE(6158), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2584), 2, + STATE(2566), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7147), 2, + STATE(7024), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530421,50 +530676,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [84935] = 18, - ACTIONS(533), 1, + [84996] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6058), 1, + STATE(6141), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1555), 2, + STATE(1603), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7105), 2, + STATE(7074), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530472,50 +530727,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85004] = 18, - ACTIONS(613), 1, + [85065] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5795), 1, + STATE(6050), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(422), 2, + STATE(1604), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 2, + STATE(7168), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530523,86 +530778,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85073] = 3, + [85134] = 18, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8875), 1, + anon_sym_LPAREN, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, + sym__lexical_identifier, + STATE(5840), 1, + sym_type_parameters, + STATE(6932), 1, + sym_type_modifiers, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4859), 27, + STATE(2613), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7164), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, - 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, - [85112] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + sym__alpha_identifier, + [85203] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8904), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + STATE(2926), 1, + sym_simple_identifier, + STATE(2949), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6210), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1730), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7144), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8560), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530610,50 +530880,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85181] = 18, - ACTIONS(7330), 1, + [85272] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8845), 1, + ACTIONS(8887), 1, anon_sym_LPAREN, - ACTIONS(8847), 1, + ACTIONS(8889), 1, sym__backtick_identifier, - STATE(5419), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(5535), 1, + STATE(5531), 1, sym_simple_identifier, - STATE(5955), 1, + STATE(6238), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5303), 2, + STATE(5233), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7119), 2, + STATE(7023), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8843), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530661,86 +530931,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85250] = 3, + [85341] = 18, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, + sym__lexical_identifier, + STATE(5829), 1, + sym_type_parameters, + STATE(6932), 1, + sym_type_modifiers, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7022), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7020), 27, + STATE(447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7064), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, - 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, - [85289] = 18, - ACTIONS(533), 1, + sym__alpha_identifier, + [85410] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6294), 1, + STATE(5835), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2655), 2, + STATE(2598), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7054), 2, + STATE(7183), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530748,15 +531033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85358] = 3, + [85479] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7077), 3, + ACTIONS(4983), 3, anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(7075), 27, + ACTIONS(4981), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -530784,50 +531069,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85397] = 18, - ACTIONS(7330), 1, + [85518] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8851), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8853), 1, - sym__backtick_identifier, - STATE(5531), 1, - sym_simple_identifier, - STATE(5532), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(5804), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5261), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7179), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8849), 7, + STATE(8577), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530835,50 +531120,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85466] = 18, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [85587] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(5798), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1338), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(8585), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530886,50 +531171,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85535] = 18, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [85656] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(5825), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7064), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(8485), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530937,50 +531222,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85604] = 18, - ACTIONS(195), 1, + [85725] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5799), 1, + STATE(6041), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1340), 2, + STATE(2687), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7151), 2, + STATE(7130), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -530988,101 +531273,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85673] = 18, - ACTIONS(533), 1, + [85794] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(830), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6108), 1, + STATE(6061), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2223), 2, + STATE(556), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7134), 2, + STATE(7176), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(455), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [85742] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8474), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531090,50 +531324,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85811] = 18, - ACTIONS(613), 1, + [85863] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5827), 1, + STATE(5828), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(607), 2, + STATE(448), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7082), 2, + STATE(7083), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531141,50 +531375,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85880] = 18, - ACTIONS(613), 1, + [85932] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6139), 1, + STATE(6003), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, + STATE(560), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7185), 2, + STATE(7184), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531192,49 +531426,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85949] = 17, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [86001] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(5862), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(633), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7065), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8479), 4, - sym_parameter, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531242,50 +531477,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86016] = 18, - ACTIONS(195), 1, + [86070] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5900), 1, + STATE(6053), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2576), 2, + STATE(550), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7159), 2, + STATE(7191), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531293,50 +531528,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86085] = 18, - ACTIONS(195), 1, + [86139] = 18, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6257), 1, + STATE(5869), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2405), 2, + STATE(634), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7079), 2, + STATE(7026), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531344,50 +531579,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86154] = 18, - ACTIONS(7330), 1, + [86208] = 18, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8857), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - ACTIONS(8859), 1, - sym__backtick_identifier, - STATE(2901), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2903), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6137), 1, + STATE(6052), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1781), 2, + STATE(557), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7155), 2, + STATE(7192), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8855), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531395,50 +531630,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86223] = 18, - ACTIONS(195), 1, + [86277] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5829), 1, + STATE(5959), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1599), 2, + STATE(2680), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7091), 2, + STATE(7142), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531446,50 +531681,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86292] = 18, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [86346] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(6219), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1600), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7076), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(8360), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531497,50 +531732,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86361] = 18, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [86415] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(5899), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7164), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(8488), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531548,50 +531783,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86430] = 18, - ACTIONS(7330), 1, + [86484] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7089), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7087), 27, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [86523] = 18, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8845), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - ACTIONS(8847), 1, - sym__backtick_identifier, - STATE(5419), 1, - sym__lexical_identifier, - STATE(5535), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(5948), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6046), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5315), 2, + STATE(1555), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7103), 2, + STATE(7051), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8843), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531599,50 +531870,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86499] = 18, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [86592] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(6232), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2565), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7131), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + STATE(8339), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531650,16 +531921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86568] = 4, - ACTIONS(8861), 1, - anon_sym_AT, + [86661] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8864), 2, + ACTIONS(4979), 3, + anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(2038), 27, + ACTIONS(4977), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -531687,50 +531957,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86609] = 18, - ACTIONS(533), 1, + [86700] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6233), 1, + STATE(6190), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2563), 2, + STATE(2602), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7140), 2, + STATE(7068), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531738,50 +532008,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86678] = 18, - ACTIONS(195), 1, + [86769] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6181), 1, + STATE(6054), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2570), 2, + STATE(2654), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7144), 2, + STATE(7134), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531789,50 +532059,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86747] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [86838] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6247), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2407), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7055), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8430), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531840,15 +532110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86816] = 3, + [86907] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 3, + ACTIONS(7076), 3, anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(4867), 27, + ACTIONS(7074), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -531876,50 +532146,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86855] = 18, - ACTIONS(195), 1, + [86946] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6184), 1, + STATE(6076), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2624), 2, + STATE(2371), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7112), 2, + STATE(7114), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531927,50 +532197,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86924] = 18, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [87015] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(5865), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7918), 1, - sym_simple_identifier, - STATE(8479), 1, - sym_parameter, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2649), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7162), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8537), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -531978,50 +532248,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [86993] = 18, - ACTIONS(533), 1, + [87084] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6008), 1, + STATE(6296), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2681), 2, + STATE(2594), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7110), 2, + STATE(7167), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532029,50 +532299,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87062] = 18, - ACTIONS(613), 1, + [87153] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5897), 1, + STATE(6027), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(625), 2, + STATE(1551), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7145), 2, + STATE(7052), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532080,152 +532350,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87131] = 18, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, - sym__lexical_identifier, - STATE(5895), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, - sym__simple_user_type, + [87222] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(634), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7132), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(4969), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4967), 27, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, + 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, - [87200] = 18, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + [87261] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7066), 3, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8857), 1, - anon_sym_LPAREN, - ACTIONS(8859), 1, - sym__backtick_identifier, - STATE(2901), 1, - sym_simple_identifier, - STATE(2903), 1, - sym__lexical_identifier, - STATE(6134), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, - sym__simple_user_type, + anon_sym_LBRACE, + sym_label, + ACTIONS(7064), 27, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [87300] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1727), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7175), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8855), 7, + ACTIONS(4965), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4963), 27, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, + 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, - [87269] = 18, - ACTIONS(533), 1, + [87339] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5995), 1, + STATE(5834), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2689), 2, + STATE(2370), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7136), 2, + STATE(7100), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532233,50 +532509,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87338] = 18, - ACTIONS(613), 1, + [87408] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5894), 1, + STATE(6022), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(454), 2, + STATE(1550), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7028), 2, + STATE(7039), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532284,50 +532560,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87407] = 18, - ACTIONS(7323), 1, + [87477] = 18, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8837), 1, + ACTIONS(8883), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7918), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8479), 1, + STATE(8448), 1, sym_parameter, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8497), 3, + STATE(8495), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532335,50 +532611,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87476] = 18, - ACTIONS(533), 1, + [87546] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7058), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7056), 27, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + 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, + [87585] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5835), 1, + STATE(6249), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1546), 2, + STATE(1326), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7127), 2, + STATE(7087), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532386,15 +532698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87545] = 3, + [87654] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4885), 3, + ACTIONS(7100), 3, anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(4883), 27, + ACTIONS(7098), 27, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -532422,50 +532734,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87584] = 18, - ACTIONS(533), 1, + [87693] = 18, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5834), 1, + STATE(5937), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1547), 2, + STATE(1325), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7120), 2, + STATE(7093), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532473,50 +532785,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87653] = 18, - ACTIONS(195), 1, + [87762] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5831), 1, + STATE(5950), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1563), 2, + STATE(1605), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7102), 2, + STATE(7107), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532524,50 +532836,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87722] = 18, - ACTIONS(533), 1, + [87831] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6054), 1, + STATE(5985), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1554), 2, + STATE(1650), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7023), 2, + STATE(7125), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532575,50 +532887,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87791] = 18, - ACTIONS(7330), 1, + [87900] = 18, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8851), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8853), 1, - sym__backtick_identifier, - STATE(5531), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(5532), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5773), 1, + STATE(5952), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5264), 2, + STATE(1606), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7026), 2, + STATE(7111), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8849), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532626,50 +532938,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87860] = 18, - ACTIONS(613), 1, + [87969] = 18, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5893), 1, + STATE(5810), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(440), 2, + STATE(2065), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7031), 2, + STATE(7104), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532677,86 +532989,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [87929] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7081), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7079), 27, - anon_sym_get, - anon_sym_set, + [88038] = 18, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [87968] = 18, - ACTIONS(195), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(6221), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7907), 1, + sym_simple_identifier, + STATE(8448), 1, + sym_parameter, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2365), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7043), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(8551), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532764,50 +533040,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88037] = 18, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [88107] = 17, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5830), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7923), 1, + sym_simple_identifier, + STATE(8426), 1, + sym_variable_declaration, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1570), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7100), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532815,85 +533089,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88106] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7030), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7028), 27, - anon_sym_get, - anon_sym_set, + [88173] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - 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, - [88145] = 18, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8866), 1, + ACTIONS(8908), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4887), 1, + STATE(4614), 1, sym_function_value_parameters, - STATE(6334), 1, + STATE(6347), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7118), 1, + STATE(7131), 1, sym_simple_identifier, - STATE(7468), 1, + STATE(7581), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7540), 2, + STATE(7500), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532901,47 +533139,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88213] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [88241] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8910), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3017), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6330), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7918), 1, + STATE(7163), 1, sym_simple_identifier, - STATE(9397), 1, - sym_function_type_parameters, + STATE(7507), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7594), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8888), 4, - sym_parameter, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532949,49 +533189,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88277] = 18, - ACTIONS(7330), 1, + [88309] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8868), 1, + ACTIONS(8912), 1, anon_sym_LPAREN, - STATE(3412), 1, + STATE(3655), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6315), 1, + STATE(6340), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7138), 1, + STATE(7136), 1, sym_simple_identifier, - STATE(7568), 1, + STATE(7595), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7452), 2, + STATE(7569), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -532999,49 +533239,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88345] = 18, - ACTIONS(7330), 1, + [88377] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8866), 1, + ACTIONS(8914), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4713), 1, + STATE(4755), 1, sym_function_value_parameters, - STATE(6307), 1, + STATE(6337), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7128), 1, + STATE(7177), 1, sym_simple_identifier, - STATE(7559), 1, + STATE(7455), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7491), 2, + STATE(7444), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533049,49 +533289,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88413] = 18, - ACTIONS(7330), 1, + [88445] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_LPAREN, - STATE(3512), 1, + STATE(3017), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6320), 1, + STATE(6318), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, STATE(7073), 1, sym_simple_identifier, - STATE(7435), 1, + STATE(7507), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7441), 2, + STATE(7475), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533099,48 +533339,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88481] = 17, - ACTIONS(7323), 1, + [88513] = 17, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7904), 1, + STATE(7923), 1, sym_simple_identifier, - STATE(8482), 1, + STATE(8395), 1, sym_variable_declaration, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(9261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533148,49 +533388,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88547] = 18, - ACTIONS(7330), 1, + [88579] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8868), 1, + ACTIONS(8908), 1, anon_sym_LPAREN, - STATE(3645), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6324), 1, + STATE(4870), 1, + sym_function_value_parameters, + STATE(6346), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7053), 1, + STATE(7135), 1, sym_simple_identifier, - STATE(7516), 1, + STATE(7576), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7459), 2, + STATE(7446), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533198,49 +533438,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88615] = 18, - ACTIONS(7330), 1, + [88647] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8866), 1, + ACTIONS(8910), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4713), 1, + STATE(2896), 1, sym_function_value_parameters, - STATE(6333), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6335), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7149), 1, + STATE(7071), 1, sym_simple_identifier, - STATE(7559), 1, + STATE(7441), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7547), 2, + STATE(7509), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533248,49 +533488,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88683] = 18, - ACTIONS(7330), 1, + [88715] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8872), 1, + ACTIONS(8912), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4790), 1, + STATE(3428), 1, sym_function_value_parameters, - STATE(6311), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6324), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7180), 1, + STATE(7116), 1, sym_simple_identifier, - STATE(7573), 1, + STATE(7536), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7432), 2, + STATE(7472), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533298,49 +533538,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88751] = 18, - ACTIONS(7330), 1, + [88783] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8874), 1, + ACTIONS(8914), 1, anon_sym_LPAREN, - STATE(2846), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6325), 1, + STATE(4755), 1, + sym_function_value_parameters, + STATE(6309), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7059), 1, + STATE(7180), 1, sym_simple_identifier, - STATE(7539), 1, + STATE(7455), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7521), 2, + STATE(7436), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533348,49 +533588,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88819] = 18, - ACTIONS(7330), 1, + [88851] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8868), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(3412), 1, + STATE(833), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6328), 1, + STATE(6319), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7022), 1, + STATE(7047), 1, sym_simple_identifier, - STATE(7568), 1, + STATE(7556), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7504), 2, + STATE(7591), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533398,49 +533638,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88887] = 18, - ACTIONS(7330), 1, + [88919] = 17, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8870), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2851), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6302), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7033), 1, - sym_simple_identifier, - STATE(7571), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7923), 1, + sym_simple_identifier, + STATE(8520), 1, + sym_variable_declaration, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7508), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533448,49 +533687,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88955] = 18, - ACTIONS(7330), 1, + [88985] = 17, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8872), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4790), 1, - sym_function_value_parameters, - STATE(6297), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7104), 1, - sym_simple_identifier, - STATE(7573), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7923), 1, + sym_simple_identifier, + STATE(8589), 1, + sym_variable_declaration, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7574), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533498,49 +533736,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89023] = 18, - ACTIONS(7330), 1, + [89051] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8876), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(870), 1, + STATE(971), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6321), 1, + STATE(6353), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7048), 1, + STATE(7059), 1, sym_simple_identifier, - STATE(7588), 1, + STATE(7573), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7527), 2, + STATE(7583), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533548,49 +533786,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89091] = 18, - ACTIONS(7330), 1, + [89119] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8868), 1, + ACTIONS(8908), 1, anon_sym_LPAREN, - STATE(3645), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6327), 1, + STATE(4870), 1, + sym_function_value_parameters, + STATE(6342), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7184), 1, + STATE(7124), 1, sym_simple_identifier, - STATE(7516), 1, + STATE(7576), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7454), 2, + STATE(7435), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533598,49 +533836,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89159] = 18, - ACTIONS(7330), 1, + [89187] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8876), 1, + ACTIONS(8914), 1, anon_sym_LPAREN, - STATE(1031), 1, + STATE(4449), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6341), 1, + STATE(6349), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7063), 1, + STATE(7119), 1, sym_simple_identifier, - STATE(7462), 1, + STATE(7531), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7578), 2, + STATE(7485), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533648,97 +533886,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89227] = 17, - ACTIONS(7323), 1, + [89255] = 17, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7904), 1, + STATE(7923), 1, sym_simple_identifier, - STATE(8350), 1, + STATE(8571), 1, sym_variable_declaration, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(9400), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [89293] = 17, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7904), 1, - sym_simple_identifier, - STATE(8545), 1, - sym_variable_declaration, - STATE(9397), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(9261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533746,49 +533935,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89359] = 18, - ACTIONS(7330), 1, + [89321] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8872), 1, + ACTIONS(8918), 1, anon_sym_LPAREN, - STATE(4454), 1, + STATE(3483), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6319), 1, + STATE(6317), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7085), 1, + STATE(7067), 1, sym_simple_identifier, - STATE(7561), 1, + STATE(7513), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7496), 2, + STATE(7453), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533796,49 +533985,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89427] = 18, - ACTIONS(7330), 1, + [89389] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8874), 1, + ACTIONS(8910), 1, anon_sym_LPAREN, - STATE(2846), 1, + STATE(2896), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6298), 1, + STATE(6299), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7040), 1, + STATE(7038), 1, sym_simple_identifier, - STATE(7539), 1, + STATE(7441), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7520), 2, + STATE(7439), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533846,49 +534035,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89495] = 18, - ACTIONS(7330), 1, + [89457] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8874), 1, + ACTIONS(8912), 1, anon_sym_LPAREN, - STATE(3027), 1, + STATE(3428), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6329), 1, + STATE(6341), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7172), 1, + STATE(7110), 1, sym_simple_identifier, - STATE(7434), 1, + STATE(7536), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7532), 2, + STATE(7495), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533896,49 +534085,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89563] = 18, - ACTIONS(7330), 1, + [89525] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8866), 1, + ACTIONS(8918), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4887), 1, + STATE(2890), 1, sym_function_value_parameters, - STATE(6335), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6325), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7117), 1, + STATE(7113), 1, sym_simple_identifier, - STATE(7468), 1, + STATE(7544), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7475), 2, + STATE(7464), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533946,48 +534135,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89631] = 17, - ACTIONS(7323), 1, + [89593] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(7904), 1, + STATE(7907), 1, sym_simple_identifier, - STATE(8465), 1, - sym_variable_declaration, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(8705), 4, + sym_parameter, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -533995,48 +534183,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89697] = 17, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [89657] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8918), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2890), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6338), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7904), 1, + STATE(7090), 1, sym_simple_identifier, - STATE(8405), 1, - sym_variable_declaration, - STATE(9397), 1, - sym_function_type_parameters, + STATE(7544), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7501), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534044,48 +534233,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89763] = 17, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [89725] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8914), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4449), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6306), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7618), 1, - sym__simple_user_type, - STATE(7904), 1, + STATE(7029), 1, sym_simple_identifier, - STATE(8473), 1, - sym_variable_declaration, - STATE(9397), 1, - sym_function_type_parameters, + STATE(7531), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7516), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534093,49 +534283,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89829] = 18, - ACTIONS(7330), 1, + [89793] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8872), 1, + ACTIONS(8912), 1, anon_sym_LPAREN, - STATE(4454), 1, + STATE(3655), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6296), 1, + STATE(6303), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7045), 1, + STATE(7149), 1, sym_simple_identifier, - STATE(7561), 1, + STATE(7595), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7437), 2, + STATE(7452), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534143,49 +534333,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89897] = 18, - ACTIONS(7330), 1, + [89861] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8872), 1, + ACTIONS(8910), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4790), 1, + STATE(3017), 1, sym_function_value_parameters, - STATE(6345), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6302), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7097), 1, + STATE(7091), 1, sym_simple_identifier, - STATE(7573), 1, + STATE(7507), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7433), 2, + STATE(7560), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534193,49 +534383,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89965] = 18, - ACTIONS(7330), 1, + [89929] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8874), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(3027), 1, + STATE(971), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6351), 1, + STATE(6312), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7101), 1, + STATE(7040), 1, sym_simple_identifier, - STATE(7434), 1, + STATE(7573), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7458), 2, + STATE(7548), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534243,49 +534433,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90033] = 18, - ACTIONS(7330), 1, + [89997] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8876), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(870), 1, + STATE(833), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6301), 1, + STATE(6308), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7055), 1, + STATE(7063), 1, sym_simple_identifier, - STATE(7588), 1, + STATE(7556), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7498), 2, + STATE(7492), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534293,49 +534483,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90101] = 18, - ACTIONS(7330), 1, + [90065] = 17, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8874), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(3027), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6342), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7188), 1, - sym_simple_identifier, - STATE(7434), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(7923), 1, + sym_simple_identifier, + STATE(8559), 1, + sym_variable_declaration, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7530), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9261), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534343,49 +534532,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90169] = 18, - ACTIONS(7330), 1, + [90131] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8870), 1, + ACTIONS(8914), 1, anon_sym_LPAREN, - STATE(2851), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6343), 1, + STATE(4755), 1, + sym_function_value_parameters, + STATE(6300), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7142), 1, + STATE(7075), 1, sym_simple_identifier, - STATE(7571), 1, + STATE(7455), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7549), 2, + STATE(7456), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534393,49 +534582,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90237] = 18, - ACTIONS(7330), 1, + [90199] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8866), 1, + ACTIONS(8918), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4887), 1, + STATE(3483), 1, sym_function_value_parameters, - STATE(6310), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6350), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7046), 1, + STATE(7171), 1, sym_simple_identifier, - STATE(7468), 1, + STATE(7513), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7466), 2, + STATE(7517), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534443,49 +534632,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90305] = 18, - ACTIONS(7330), 1, + [90267] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8876), 1, + ACTIONS(8908), 1, anon_sym_LPAREN, - STATE(1031), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6348), 1, + STATE(4614), 1, + sym_function_value_parameters, + STATE(6307), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7077), 1, + STATE(7165), 1, sym_simple_identifier, - STATE(7462), 1, + STATE(7581), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7470), 2, + STATE(7584), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534493,49 +534682,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90373] = 18, - ACTIONS(7330), 1, + [90335] = 18, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8870), 1, + ACTIONS(8908), 1, anon_sym_LPAREN, - STATE(3512), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6305), 1, + STATE(4870), 1, + sym_function_value_parameters, + STATE(6332), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7113), 1, + STATE(7139), 1, sym_simple_identifier, - STATE(7435), 1, + STATE(7576), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7506), 2, + STATE(7563), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534543,46 +534732,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90441] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [90403] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3998), 3, + STATE(9480), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534590,46 +534779,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90504] = 16, - ACTIONS(281), 1, + [90466] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8922), 1, anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4661), 3, + STATE(4485), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534637,46 +534826,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90567] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [90529] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8178), 3, + STATE(3184), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534684,46 +534873,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90630] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [90592] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3977), 3, + STATE(8505), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534731,46 +534920,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90693] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [90655] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(6556), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3536), 3, + STATE(5628), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534778,46 +534967,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90756] = 16, - ACTIONS(7330), 1, + [90718] = 16, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8851), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8853), 1, - sym__backtick_identifier, - STATE(5531), 1, - sym_simple_identifier, - STATE(5532), 1, + ACTIONS(8938), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5261), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7179), 2, - sym__receiver_type, + STATE(856), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(1316), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8849), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534825,46 +535014,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90819] = 16, - ACTIONS(533), 1, + [90781] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3532), 3, + STATE(3608), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534872,46 +535061,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90882] = 16, - ACTIONS(613), 1, + [90844] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(995), 3, + STATE(5166), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -534919,42 +535108,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90945] = 16, + [90907] = 16, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4971), 3, + STATE(5169), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -534966,42 +535155,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91008] = 16, + [90970] = 16, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4972), 3, + STATE(5170), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -535013,47 +535202,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91071] = 17, - ACTIONS(7330), 1, + [91033] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6314), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7089), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7451), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8701), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535061,46 +535249,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91136] = 16, - ACTIONS(409), 1, + [91096] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3985), 3, + STATE(5174), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535108,46 +535296,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91199] = 16, - ACTIONS(7330), 1, + [91159] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8850), 3, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8211), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535155,42 +535343,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91262] = 16, + [91222] = 16, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4686), 3, + STATE(5176), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -535202,46 +535390,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91325] = 16, - ACTIONS(107), 1, + [91285] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4711), 3, + STATE(4638), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535249,46 +535437,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91388] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [91348] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4721), 3, + STATE(8283), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535296,46 +535484,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91451] = 16, - ACTIONS(107), 1, + [91411] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4737), 3, + STATE(1339), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535343,46 +535531,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91514] = 16, - ACTIONS(107), 1, + [91474] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4746), 3, + STATE(2933), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535390,46 +535578,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91577] = 16, - ACTIONS(7323), 1, + [91537] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8091), 3, + STATE(8273), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535437,46 +535625,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91640] = 16, - ACTIONS(107), 1, + [91600] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4768), 3, + STATE(4891), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535484,46 +535672,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91703] = 16, - ACTIONS(107), 1, + [91663] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4766), 3, + STATE(1323), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535531,46 +535719,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91766] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [91726] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8950), 1, anon_sym_dynamic, - STATE(4566), 1, + ACTIONS(8952), 1, + sym__backtick_identifier, + STATE(6483), 1, + sym_type_modifiers, + STATE(8043), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(8166), 1, sym_simple_identifier, - STATE(6567), 1, - sym_type_modifiers, - STATE(9181), 1, + STATE(8250), 1, + sym__simple_user_type, + STATE(9195), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4764), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(7658), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(8575), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535578,46 +535766,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91829] = 16, - ACTIONS(613), 1, + [91789] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4463), 1, sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(439), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7099), 2, - sym__receiver_type, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4888), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535625,46 +535813,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91892] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [91852] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 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(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7109), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(8199), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535672,46 +535860,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91955] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [91915] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9392), 3, + STATE(4897), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535719,46 +535907,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92018] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [91978] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9394), 3, + STATE(4890), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535766,46 +535954,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92081] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [92041] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(6556), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7580), 1, sym__simple_user_type, + STATE(9390), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7139), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7882), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535813,46 +536001,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92144] = 16, - ACTIONS(613), 1, + [92104] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 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(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7156), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(5265), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535860,46 +536048,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92207] = 16, - ACTIONS(195), 1, + [92167] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1337), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7181), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(5259), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535907,46 +536095,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92270] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [92230] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8199), 3, + STATE(4994), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -535954,46 +536142,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92333] = 16, - ACTIONS(195), 1, + [92293] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1334), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7178), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(5267), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536001,46 +536189,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92396] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [92356] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1338), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7157), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(8235), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536048,47 +536236,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92459] = 17, - ACTIONS(7330), 1, + [92419] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6310), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7046), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7466), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9003), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536096,46 +536283,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92524] = 16, - ACTIONS(107), 1, + [92482] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, - anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(832), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9181), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(450), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5013), 3, - sym__type, + STATE(7161), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536143,46 +536330,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92587] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [92545] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8932), 1, + anon_sym_dynamic, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(6556), 1, + sym_type_modifiers, + STATE(7580), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8749), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8801), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536190,46 +536377,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92650] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [92608] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8798), 3, + STATE(4019), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536237,46 +536424,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92713] = 16, - ACTIONS(7330), 1, + [92671] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8851), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8853), 1, - sym__backtick_identifier, - STATE(5531), 1, - sym_simple_identifier, - STATE(5532), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5219), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7036), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3537), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8849), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536284,46 +536471,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92776] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [92734] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9400), 3, + STATE(4652), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536331,46 +536518,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92839] = 16, - ACTIONS(533), 1, + [92797] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3522), 3, + STATE(3541), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536378,46 +536565,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92902] = 16, - ACTIONS(7330), 1, + [92860] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, - anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, + STATE(6305), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7173), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, - STATE(9337), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(7586), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8803), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8900), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536425,46 +536613,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92965] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [92925] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2195), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7122), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8194), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536472,46 +536660,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93028] = 16, - ACTIONS(533), 1, + [92988] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3533), 3, + STATE(4033), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536519,46 +536707,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93091] = 16, - ACTIONS(7323), 1, + [93051] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9321), 3, + STATE(8289), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536566,46 +536754,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93154] = 16, - ACTIONS(7323), 1, + [93114] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9325), 3, + STATE(8446), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536613,46 +536801,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93217] = 16, - ACTIONS(7323), 1, + [93177] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8658), 3, + STATE(8205), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536660,46 +536848,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93280] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [93240] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(6556), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(945), 3, + STATE(5629), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536707,46 +536895,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93343] = 16, - ACTIONS(7323), 1, + [93303] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8490), 3, + STATE(7715), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536754,46 +536942,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93406] = 16, - ACTIONS(7330), 1, + [93366] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - ACTIONS(8906), 1, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6729), 1, + STATE(6556), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7580), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7885), 3, + STATE(7891), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536801,46 +536989,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93469] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [93429] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8240), 3, + STATE(3530), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536848,46 +537036,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93532] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [93492] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9016), 3, + STATE(5026), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536895,46 +537083,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93595] = 16, - ACTIONS(7323), 1, + [93555] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7700), 3, + STATE(9043), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536942,46 +537130,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93658] = 16, - ACTIONS(281), 1, + [93618] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4501), 3, + STATE(4023), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -536989,46 +537177,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93721] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [93681] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4489), 3, + STATE(8291), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537036,46 +537224,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93784] = 16, - ACTIONS(7323), 1, + [93744] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9289), 3, + STATE(8292), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537083,46 +537271,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93847] = 16, - ACTIONS(7323), 1, + [93807] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9288), 3, + STATE(8293), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537130,93 +537318,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [93910] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [93870] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4480), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [93973] = 16, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8902), 1, - anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, - sym_type_modifiers, - STATE(7457), 1, - sym__simple_user_type, - STATE(9337), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(5582), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8774), 3, + STATE(8294), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537224,46 +537365,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94036] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [93933] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(559), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7027), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(9479), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537271,93 +537412,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94099] = 16, - ACTIONS(613), 1, + [93996] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7064), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [94162] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, - sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(571), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7069), 2, - sym__receiver_type, + STATE(3536), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537365,46 +537459,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94225] = 16, - ACTIONS(613), 1, + [94059] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(812), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(607), 2, + STATE(453), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7082), 2, + STATE(7098), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537412,46 +537506,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94288] = 16, - ACTIONS(195), 1, + [94122] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1607), 2, + STATE(448), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7087), 2, + STATE(7083), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537459,46 +537553,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94351] = 16, - ACTIONS(195), 1, + [94185] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1571), 2, + STATE(620), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7098), 2, + STATE(7043), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537506,46 +537600,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94414] = 16, - ACTIONS(195), 1, + [94248] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1570), 2, + STATE(626), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7100), 2, + STATE(7042), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537553,46 +537647,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94477] = 16, - ACTIONS(7323), 1, + [94311] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9260), 3, + STATE(9500), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537600,46 +537694,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94540] = 16, - ACTIONS(7323), 1, + [94374] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9259), 3, + STATE(9501), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537647,46 +537741,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94603] = 16, - ACTIONS(533), 1, + [94437] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1549), 2, + STATE(2372), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7114), 2, + STATE(7078), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537694,46 +537788,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94666] = 16, - ACTIONS(533), 1, + [94500] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1547), 2, + STATE(2571), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7120), 2, + STATE(7178), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537741,46 +537835,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94729] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [94563] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2598), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7183), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8383), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537788,46 +537882,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94792] = 16, - ACTIONS(7330), 1, + [94626] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(6729), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9337), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2604), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5626), 3, - sym__type, + STATE(7174), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8900), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537835,46 +537929,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94855] = 16, - ACTIONS(7323), 1, + [94689] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8896), 3, + STATE(9542), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537882,93 +537976,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [94918] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [94752] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3979), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [94981] = 16, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8902), 1, - anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, - sym_type_modifiers, - STATE(7457), 1, - sym__simple_user_type, - STATE(9337), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(5582), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7879), 3, + STATE(9544), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -537976,93 +538023,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95044] = 16, - ACTIONS(107), 1, + [94815] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(6567), 1, - sym_type_modifiers, - STATE(9181), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5061), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [95107] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2586), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7170), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9234), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538070,46 +538070,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95170] = 16, - ACTIONS(7323), 1, + [94878] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9232), 3, + STATE(8317), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538117,46 +538117,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95233] = 16, - ACTIONS(7323), 1, + [94941] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8327), 3, + STATE(8385), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538164,46 +538164,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95296] = 16, - ACTIONS(7330), 1, + [95004] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - ACTIONS(8906), 1, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6729), 1, + STATE(6556), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7580), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8822), 3, + STATE(7887), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538211,46 +538211,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95359] = 16, - ACTIONS(7323), 1, + [95067] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8319), 3, + STATE(9052), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538258,46 +538258,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95422] = 16, - ACTIONS(7323), 1, + [95130] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8338), 3, + STATE(9534), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538305,46 +538305,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95485] = 16, - ACTIONS(7330), 1, + [95193] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5624), 3, + STATE(9533), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538352,46 +538352,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95548] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [95256] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7121), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7604), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538399,46 +538399,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95611] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [95319] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8932), 1, + anon_sym_dynamic, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(6556), 1, + sym_type_modifiers, + STATE(7580), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8190), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7892), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538446,46 +538446,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95674] = 16, - ACTIONS(7330), 1, + [95382] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8950), 1, anon_sym_dynamic, - ACTIONS(8906), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(6483), 1, + sym_type_modifiers, + STATE(8043), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(8166), 1, sym_simple_identifier, - STATE(6729), 1, - sym_type_modifiers, - STATE(7457), 1, + STATE(8250), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9195), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7882), 3, + STATE(7715), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + STATE(8575), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538493,46 +538493,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95737] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [95445] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5082), 3, + STATE(8215), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538540,46 +538540,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95800] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [95508] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8949), 3, + STATE(3301), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538587,46 +538587,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95863] = 16, - ACTIONS(7323), 1, + [95571] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8968), 3, + STATE(8200), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538634,46 +538634,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95926] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [95634] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8290), 3, + STATE(3543), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538681,46 +538681,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [95989] = 16, - ACTIONS(7323), 1, + [95697] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8355), 3, + STATE(8216), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538728,46 +538728,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96052] = 16, - ACTIONS(7330), 1, + [95760] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7886), 3, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8217), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538775,46 +538775,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96115] = 16, - ACTIONS(107), 1, + [95823] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5155), 3, + STATE(3121), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538822,46 +538822,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96178] = 16, - ACTIONS(107), 1, + [95886] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5175), 3, + STATE(4713), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538869,46 +538869,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96241] = 16, - ACTIONS(107), 1, + [95949] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5188), 3, + STATE(4712), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538916,46 +538916,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96304] = 16, - ACTIONS(7323), 1, + [96012] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8977), 3, + STATE(8218), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -538963,46 +538963,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96367] = 16, - ACTIONS(107), 1, + [96075] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5192), 3, + STATE(1328), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539010,46 +539010,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96430] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [96138] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5191), 3, + STATE(9102), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539057,46 +539057,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96493] = 16, - ACTIONS(281), 1, + [96201] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(832), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9309), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(634), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4834), 3, - sym__type, + STATE(7026), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539104,46 +539104,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96556] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [96264] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(5569), 1, + sym__simple_user_type, + STATE(6784), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9458), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4833), 3, + STATE(5633), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539151,93 +539151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96619] = 16, - ACTIONS(281), 1, + [96327] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4878), 3, + STATE(3242), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [96682] = 16, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8902), 1, - anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, - sym_type_modifiers, - STATE(7457), 1, - sym__simple_user_type, - STATE(9337), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(5582), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7892), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8900), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539245,46 +539198,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96745] = 16, - ACTIONS(107), 1, + [96390] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9181), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2648), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5247), 3, - sym__type, + STATE(7079), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539292,46 +539245,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96808] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [96453] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(4566), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(6556), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5249), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(8810), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539339,46 +539292,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96871] = 16, - ACTIONS(107), 1, + [96516] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5265), 3, + STATE(4042), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539386,46 +539339,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96934] = 16, - ACTIONS(195), 1, + [96579] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3791), 3, + STATE(5246), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539433,46 +539386,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [96997] = 16, - ACTIONS(281), 1, + [96642] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(832), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9309), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4709), 3, - sym__type, + STATE(7153), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539480,46 +539433,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97060] = 16, - ACTIONS(281), 1, + [96705] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4712), 3, + STATE(5245), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539527,46 +539480,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97123] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [96768] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9021), 3, + STATE(3680), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539574,46 +539527,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97186] = 16, - ACTIONS(195), 1, + [96831] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3606), 3, + STATE(5197), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539621,46 +539574,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97249] = 16, - ACTIONS(195), 1, + [96894] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3812), 3, + STATE(5229), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539668,46 +539621,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97312] = 16, - ACTIONS(7323), 1, + [96957] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8311), 3, + STATE(8201), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539715,47 +539668,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97375] = 17, - ACTIONS(7330), 1, + [97020] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6332), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7152), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7541), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9141), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539763,46 +539715,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97440] = 16, - ACTIONS(195), 1, + [97083] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3604), 3, + STATE(951), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539810,46 +539762,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97503] = 16, - ACTIONS(7330), 1, + [97146] = 16, + ACTIONS(107), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8853), 1, - sym__backtick_identifier, - ACTIONS(8902), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(5532), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5591), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(6720), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9413), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5630), 3, + STATE(5223), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8849), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539857,46 +539809,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97566] = 16, - ACTIONS(281), 1, + [97209] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8922), 1, anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5074), 3, + STATE(5020), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539904,46 +539856,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97629] = 16, - ACTIONS(195), 1, + [97272] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3845), 3, + STATE(3681), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539951,46 +539903,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97692] = 16, - ACTIONS(7323), 1, + [97335] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9038), 3, + STATE(8209), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -539998,46 +539950,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97755] = 16, - ACTIONS(107), 1, + [97398] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4855), 3, + STATE(3687), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540045,46 +539997,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97818] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97461] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6613), 1, - sym_type_modifiers, - STATE(7692), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7924), 3, + STATE(4893), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540092,46 +540044,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97881] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97524] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8938), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(855), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9064), 3, + STATE(952), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540139,46 +540091,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [97944] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97587] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5639), 3, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4887), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540186,46 +540138,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98007] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97650] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8248), 3, + STATE(5365), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540233,46 +540185,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98070] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97713] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8251), 3, + STATE(5366), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540280,46 +540232,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98133] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97776] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8252), 3, + STATE(5378), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540327,46 +540279,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98196] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97839] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8255), 3, + STATE(5408), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540374,46 +540326,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98259] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [97902] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6613), 1, - sym_type_modifiers, - STATE(7692), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7908), 3, + STATE(5407), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540421,46 +540373,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98322] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [97965] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(6741), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7629), 1, sym__simple_user_type, + STATE(9137), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7042), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(7900), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540468,46 +540420,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98385] = 16, - ACTIONS(613), 1, + [98028] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(440), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7031), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(5404), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540515,46 +540467,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98448] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [98091] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(618), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7095), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(9246), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540562,46 +540514,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98511] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [98154] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4911), 3, + STATE(5641), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540609,45 +540561,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98574] = 16, + [98217] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(2893), 1, sym__simple_user_type, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(634), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7132), 2, - sym__receiver_type, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(2917), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, ACTIONS(537), 7, anon_sym_get, anon_sym_set, @@ -540656,46 +540608,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98637] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [98280] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6298), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7044), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2368), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7177), 2, + STATE(7519), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540703,46 +540656,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98700] = 16, - ACTIONS(195), 1, + [98345] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2616), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7174), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3577), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540750,45 +540703,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98763] = 16, - ACTIONS(195), 1, + [98408] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(2796), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4463), 1, sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7164), 2, - sym__receiver_type, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(5151), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, ACTIONS(111), 7, anon_sym_get, anon_sym_set, @@ -540797,46 +540750,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98826] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [98471] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(9087), 3, + STATE(3573), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540844,46 +540797,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98889] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [98534] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6333), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7069), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2606), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7153), 2, + STATE(7511), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540891,46 +540845,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [98952] = 16, - ACTIONS(533), 1, + [98599] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4463), 1, sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2625), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7150), 2, - sym__receiver_type, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(5146), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540938,46 +540892,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99015] = 16, - ACTIONS(7323), 1, + [98662] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5642), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8264), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -540985,46 +540939,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99078] = 16, - ACTIONS(107), 1, + [98725] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4877), 3, + STATE(3586), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541032,46 +540986,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99141] = 16, - ACTIONS(281), 1, + [98788] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8922), 1, anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4963), 3, + STATE(5144), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541079,46 +541033,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99204] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [98851] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(6613), 1, + STATE(6336), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7692), 1, + STATE(7089), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, - STATE(9202), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7503), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7901), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541126,46 +541081,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99267] = 16, - ACTIONS(7323), 1, + [98916] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(6613), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7692), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7902), 3, + STATE(8169), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541173,46 +541128,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99330] = 16, - ACTIONS(7323), 1, + [98979] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(6613), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7692), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7899), 3, + STATE(8263), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541220,46 +541175,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99393] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [99042] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8326), 3, + STATE(5147), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541267,46 +541222,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99456] = 16, - ACTIONS(7323), 1, + [99105] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8328), 3, + STATE(8261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541314,46 +541269,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99519] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [99168] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, - anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4566), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6339), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9181), 1, - sym_function_type_parameters, + STATE(7181), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4975), 3, - sym__type, + STATE(7496), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541361,46 +541317,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99582] = 16, - ACTIONS(107), 1, + [99233] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5069), 3, + STATE(3594), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541408,46 +541364,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99645] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [99296] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4525), 3, + STATE(8260), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541455,46 +541411,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99708] = 16, - ACTIONS(107), 1, + [99359] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4823), 3, + STATE(5150), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541502,46 +541458,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99771] = 16, - ACTIONS(107), 1, + [99422] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4967), 3, + STATE(3612), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541549,46 +541505,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99834] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [99485] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, - anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4566), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6344), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9181), 1, - sym_function_type_parameters, + STATE(7118), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5054), 3, - sym__type, + STATE(7486), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541596,46 +541553,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99897] = 16, - ACTIONS(107), 1, + [99550] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4776), 3, + STATE(3629), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541643,46 +541600,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [99960] = 16, - ACTIONS(107), 1, + [99613] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4998), 3, + STATE(1110), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541690,46 +541647,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100023] = 16, - ACTIONS(107), 1, + [99676] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5079), 3, + STATE(1116), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541737,46 +541694,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100086] = 16, - ACTIONS(281), 1, + [99739] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4522), 3, + STATE(1117), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541784,46 +541741,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100149] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [99802] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4820), 3, + STATE(8271), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541831,46 +541788,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100212] = 16, - ACTIONS(107), 1, + [99865] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4815), 3, + STATE(4629), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541878,46 +541835,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100275] = 16, - ACTIONS(281), 1, + [99928] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5170), 3, + STATE(1185), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541925,46 +541882,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100338] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [99991] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4804), 3, + STATE(8204), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -541972,46 +541929,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100401] = 16, - ACTIONS(7330), 1, + [100054] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5616), 3, + STATE(8320), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542019,46 +541976,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100464] = 16, - ACTIONS(7330), 1, + [100117] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8902), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - ACTIONS(8906), 1, - sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(6729), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5610), 3, + STATE(8325), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542066,46 +542023,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100527] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [100180] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, - anon_sym_dynamic, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3602), 3, + STATE(8328), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542113,46 +542070,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100590] = 16, - ACTIONS(7330), 1, + [100243] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8853), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8902), 1, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - STATE(5532), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(6782), 1, + sym_type_modifiers, + STATE(7518), 1, sym_simple_identifier, - STATE(5591), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(6720), 1, - sym_type_modifiers, - STATE(9413), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5616), 3, + STATE(8329), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8849), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542160,46 +542117,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100653] = 16, - ACTIONS(7330), 1, + [100306] = 16, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8853), 1, - sym__backtick_identifier, - ACTIONS(8902), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(5532), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(845), 1, sym_simple_identifier, - STATE(5591), 1, + STATE(855), 1, sym__simple_user_type, - STATE(6720), 1, + STATE(6825), 1, sym_type_modifiers, - STATE(9413), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5610), 3, + STATE(864), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8849), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542207,93 +542164,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100716] = 16, - ACTIONS(7330), 1, + [100369] = 16, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8914), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - ACTIONS(8916), 1, - sym__backtick_identifier, - STATE(6719), 1, - sym_type_modifiers, - STATE(8059), 1, - sym_simple_identifier, - STATE(8112), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(8187), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(9468), 1, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7700), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(8549), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8912), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [100779] = 16, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8914), 1, - anon_sym_dynamic, - ACTIONS(8916), 1, - sym__backtick_identifier, - STATE(6719), 1, - sym_type_modifiers, - STATE(8059), 1, - sym_simple_identifier, - STATE(8112), 1, - sym__lexical_identifier, - STATE(8187), 1, - sym__simple_user_type, - STATE(9468), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7604), 3, + STATE(861), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(8549), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8912), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542301,46 +542211,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100842] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [100432] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5165), 3, + STATE(8330), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542348,46 +542258,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100905] = 16, - ACTIONS(533), 1, + [100495] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3630), 3, + STATE(860), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542395,46 +542305,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [100968] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [100558] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3608), 3, + STATE(8327), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542442,46 +542352,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101031] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [100621] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, - anon_sym_dynamic, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3009), 3, + STATE(8322), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542489,46 +542399,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101094] = 16, - ACTIONS(195), 1, + [100684] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3034), 3, + STATE(859), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542536,46 +542446,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101157] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [100747] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3074), 3, + STATE(8321), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542583,42 +542493,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101220] = 16, - ACTIONS(409), 1, + [100810] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3109), 3, + STATE(858), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -542630,46 +542540,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101283] = 16, - ACTIONS(7330), 1, + [100873] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, - anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(6782), 1, + sym_type_modifiers, + STATE(7518), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(6679), 1, - sym_type_modifiers, - STATE(9563), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5068), 3, + STATE(8888), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542677,46 +542587,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101346] = 16, - ACTIONS(7330), 1, + [100936] = 16, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, - anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, sym_simple_identifier, - STATE(4637), 1, - sym__simple_user_type, - STATE(6679), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9563), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1326), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4933), 3, - sym__type, + STATE(7087), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542724,46 +542634,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101409] = 16, - ACTIONS(7330), 1, + [100999] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8859), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8926), 1, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, - anon_sym_dynamic, - STATE(2903), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2974), 1, + STATE(6782), 1, + sym_type_modifiers, + STATE(7518), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(6702), 1, - sym_type_modifiers, - STATE(9501), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3194), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3628), 3, + STATE(8967), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8855), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542771,46 +542681,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101472] = 16, - ACTIONS(7330), 1, + [101062] = 16, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8859), 1, - sym__backtick_identifier, - ACTIONS(8926), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2903), 1, - sym__lexical_identifier, - STATE(2974), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(6702), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9501), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3194), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3651), 3, + STATE(2847), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8855), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542818,46 +542728,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101535] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [101125] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(6741), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(999), 3, + STATE(7901), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542865,42 +542775,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101598] = 16, + [101188] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(983), 3, + STATE(2854), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -542912,46 +542822,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101661] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [101251] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5216), 3, + STATE(8313), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -542959,46 +542869,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101724] = 16, - ACTIONS(107), 1, + [101314] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5213), 3, + STATE(2862), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543006,46 +542916,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101787] = 16, - ACTIONS(7330), 1, + [101377] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8845), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8847), 1, - sym__backtick_identifier, - STATE(5419), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5535), 1, - sym_simple_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5303), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7119), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8843), 7, + STATE(8311), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543053,46 +542963,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101850] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [101440] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5203), 3, + STATE(8309), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543100,46 +543010,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101913] = 16, - ACTIONS(107), 1, + [101503] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5202), 3, + STATE(2868), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543147,46 +543057,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [101976] = 16, - ACTIONS(7323), 1, + [101566] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8216), 3, + STATE(8308), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543194,46 +543104,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102039] = 16, - ACTIONS(7330), 1, + [101629] = 16, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5368), 3, + STATE(2884), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543241,46 +543151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102102] = 16, - ACTIONS(7330), 1, + [101692] = 16, + ACTIONS(197), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8847), 1, - sym__backtick_identifier, - ACTIONS(8930), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8932), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(5187), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(5419), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(5601), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(6608), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9419), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5613), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5646), 3, + STATE(4927), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8843), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543288,46 +543198,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102165] = 16, - ACTIONS(107), 1, + [101755] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9181), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1546), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5199), 3, - sym__type, + STATE(7101), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543335,46 +543245,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102228] = 16, - ACTIONS(7330), 1, + [101818] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8845), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8847), 1, - sym__backtick_identifier, - STATE(5419), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5535), 1, - sym_simple_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5276), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7190), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8843), 7, + STATE(8202), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543382,46 +543292,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102291] = 16, - ACTIONS(7330), 1, + [101881] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(4637), 1, - sym__simple_user_type, - STATE(6679), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9563), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1605), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5275), 3, - sym__type, + STATE(7107), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543429,46 +543339,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102354] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [101944] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(6556), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5343), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7886), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543476,46 +543386,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102417] = 16, - ACTIONS(281), 1, + [102007] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5340), 3, + STATE(898), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543523,42 +543433,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102480] = 16, - ACTIONS(195), 1, + [102070] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3600), 3, + STATE(4659), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -543570,46 +543480,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102543] = 16, - ACTIONS(281), 1, + [102133] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5334), 3, + STATE(896), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543617,46 +543527,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102606] = 16, - ACTIONS(7330), 1, + [102196] = 16, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8847), 1, - sym__backtick_identifier, - ACTIONS(8930), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8932), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5601), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(6608), 1, + STATE(6825), 1, sym_type_modifiers, - STATE(9419), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5613), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5640), 3, + STATE(887), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8843), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543664,46 +543574,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102669] = 16, - ACTIONS(281), 1, + [102259] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5163), 3, + STATE(2843), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(2849), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543711,47 +543621,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102732] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [102322] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6350), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7096), 1, - sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2690), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7577), 2, + STATE(7157), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543759,46 +543668,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102797] = 16, - ACTIONS(107), 1, + [102385] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6567), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5410), 3, + STATE(2856), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543806,46 +543715,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102860] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [102448] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5406), 3, + STATE(8277), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543853,46 +543762,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102923] = 16, - ACTIONS(195), 1, + [102511] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3598), 3, + STATE(2897), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543900,46 +543809,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [102986] = 16, - ACTIONS(7330), 1, + [102574] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4829), 3, + STATE(3605), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543947,46 +543856,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103049] = 16, - ACTIONS(7323), 1, + [102637] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(6613), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7692), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7700), 3, + STATE(8276), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -543994,46 +543903,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103112] = 16, - ACTIONS(7323), 1, + [102700] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8202), 3, + STATE(8275), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544041,46 +543950,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103175] = 16, - ACTIONS(7330), 1, + [102763] = 16, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, - sym_simple_identifier, - STATE(4637), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5364), 3, + STATE(2891), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544088,46 +543997,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103238] = 16, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [102826] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8894), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8896), 1, - anon_sym_dynamic, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(6567), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9181), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4672), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5401), 3, + STATE(8274), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544135,46 +544044,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103301] = 16, - ACTIONS(7330), 1, + [102889] = 16, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8853), 1, - sym__backtick_identifier, - ACTIONS(8902), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(5532), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(5591), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(6720), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9413), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5626), 3, + STATE(2857), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8849), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544182,42 +544091,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103364] = 16, + [102952] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1092), 3, + STATE(2978), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -544229,46 +544138,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103427] = 16, - ACTIONS(7330), 1, + [103015] = 16, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4831), 3, + STATE(2976), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544276,46 +544185,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103490] = 16, - ACTIONS(7323), 1, + [103078] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(6741), 1, + sym_type_modifiers, + STATE(7629), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8272), 3, + STATE(7658), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544323,46 +544232,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103553] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [103141] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(6613), 1, - sym_type_modifiers, - STATE(7692), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(2953), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + ACTIONS(537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [103204] = 16, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8924), 1, + anon_sym_LPAREN, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(7604), 3, + STATE(3129), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544370,46 +544326,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103616] = 16, - ACTIONS(7330), 1, + [103267] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - ACTIONS(8924), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3459), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [103330] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - STATE(4537), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8940), 1, + anon_sym_LPAREN, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5293), 3, + STATE(3470), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544417,46 +544420,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103679] = 16, - ACTIONS(7323), 1, + [103393] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8280), 3, + STATE(8307), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544464,46 +544467,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103742] = 16, - ACTIONS(281), 1, + [103456] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(5161), 3, + STATE(3291), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544511,46 +544514,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103805] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [103519] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1080), 3, + STATE(8306), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544558,46 +544561,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103868] = 16, - ACTIONS(7330), 1, + [103582] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8853), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8902), 1, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_dynamic, - STATE(5532), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5591), 1, - sym__simple_user_type, - STATE(6720), 1, + STATE(6741), 1, sym_type_modifiers, - STATE(9413), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5582), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5624), 3, + STATE(7715), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8849), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544605,46 +544608,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103931] = 16, - ACTIONS(7330), 1, + [103645] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8847), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8930), 1, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8932), 1, - anon_sym_dynamic, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5601), 1, - sym__simple_user_type, - STATE(6608), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9419), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5613), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5636), 3, + STATE(8304), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8843), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544652,46 +544655,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [103994] = 16, - ACTIONS(7330), 1, + [103708] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(3289), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4832), 3, - sym__type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [103771] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8875), 1, + anon_sym_LPAREN, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, + sym_type_modifiers, + STATE(7419), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1736), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7147), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544699,47 +544749,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104057] = 17, - ACTIONS(7330), 1, + [103834] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6317), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7182), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7585), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8303), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544747,46 +544796,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104122] = 16, - ACTIONS(613), 1, + [103897] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(1076), 3, + STATE(3279), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544794,46 +544843,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104185] = 16, - ACTIONS(533), 1, + [103960] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1886), 2, + STATE(2065), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7111), 2, + STATE(7104), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544841,47 +544890,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104248] = 17, - ACTIONS(7330), 1, + [104023] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6306), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7049), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7528), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9271), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544889,46 +544937,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104313] = 16, - ACTIONS(281), 1, + [104086] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5159), 3, + STATE(2911), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544936,46 +544984,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104376] = 16, - ACTIONS(533), 1, + [104149] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7425), 1, - sym__simple_user_type, + STATE(9050), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2076), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7160), 2, - sym__receiver_type, + STATE(2849), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(2916), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [104212] = 16, + ACTIONS(197), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8920), 1, + anon_sym_LPAREN, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + STATE(4827), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -544983,46 +545078,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104439] = 16, - ACTIONS(409), 1, + [104275] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3825), 3, + STATE(2970), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545030,46 +545125,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104502] = 16, - ACTIONS(7323), 1, + [104338] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8173), 3, + STATE(8387), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545077,47 +545172,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104565] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [104401] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8920), 1, + anon_sym_LPAREN, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4465), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [104464] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6330), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7041), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7523), 2, - sym__receiver_type, + STATE(5640), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545125,46 +545266,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104630] = 16, - ACTIONS(409), 1, + [104527] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3823), 3, + STATE(4468), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545172,46 +545313,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104693] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [104590] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8167), 3, + STATE(4472), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545219,46 +545360,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104756] = 16, - ACTIONS(533), 1, + [104653] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4463), 1, sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2645), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7170), 2, - sym__receiver_type, + STATE(4458), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + sym_function_type, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545266,46 +545407,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104819] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [104716] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(8205), 3, + STATE(4446), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545313,46 +545454,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104882] = 16, - ACTIONS(409), 1, + [104779] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3816), 3, + STATE(4898), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545360,46 +545501,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [104945] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [104842] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8220), 3, + STATE(3626), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545407,47 +545548,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105008] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [104905] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6300), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7035), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7489), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3486), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545455,46 +545595,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105073] = 16, - ACTIONS(409), 1, + [104968] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3804), 3, + STATE(3092), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545502,46 +545642,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105136] = 16, - ACTIONS(409), 1, + [105031] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3899), 3, + STATE(3485), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545549,46 +545689,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105199] = 16, - ACTIONS(195), 1, + [105094] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2390), 2, + STATE(556), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7183), 2, + STATE(7176), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545596,47 +545736,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105262] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [105157] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6299), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7148), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7509), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3479), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545644,46 +545783,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105327] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [105220] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(6741), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7629), 1, sym__simple_user_type, + STATE(9137), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(623), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7038), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(7934), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545691,46 +545830,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105390] = 16, - ACTIONS(613), 1, + [105283] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(880), 3, + STATE(4935), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545738,47 +545877,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105453] = 17, - ACTIONS(7330), 1, + [105346] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6304), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7024), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7505), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8298), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545786,46 +545924,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105518] = 16, - ACTIONS(7323), 1, + [105409] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(6741), 1, + sym_type_modifiers, + STATE(7629), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8312), 3, + STATE(7931), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545833,46 +545971,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105581] = 16, - ACTIONS(533), 1, + [105472] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(2996), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(2893), 1, sym__simple_user_type, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2689), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7136), 2, - sym__receiver_type, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3294), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [105535] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(5181), 1, + sym_simple_identifier, + STATE(6741), 1, + sym_type_modifiers, + STATE(7629), 1, + sym__simple_user_type, + STATE(9137), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + STATE(7906), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545880,46 +546065,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105644] = 16, - ACTIONS(613), 1, + [105598] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(884), 3, + STATE(4583), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545927,46 +546112,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105707] = 16, - ACTIONS(7323), 1, + [105661] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8309), 3, + STATE(7658), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -545974,46 +546159,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105770] = 16, - ACTIONS(7323), 1, + [105724] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8303), 3, + STATE(8269), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546021,47 +546206,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105833] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [105787] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6316), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7084), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7497), 2, - sym__receiver_type, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4884), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546069,46 +546253,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105898] = 16, - ACTIONS(613), 1, + [105850] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(886), 3, + STATE(4045), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546116,46 +546300,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [105961] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [105913] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8938), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(855), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8292), 3, + STATE(1194), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546163,46 +546347,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106024] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [105976] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(6556), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(893), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(8936), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546210,42 +546394,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106087] = 16, + [106039] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(897), 3, + STATE(2954), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -546257,46 +546441,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106150] = 16, - ACTIONS(7323), 1, + [106102] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8307), 3, + STATE(8272), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546304,46 +546488,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106213] = 16, - ACTIONS(7330), 1, + [106165] = 16, + ACTIONS(197), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, ACTIONS(8920), 1, anon_sym_LPAREN, ACTIONS(8922), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(6679), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9563), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4838), 3, + STATE(4871), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546351,46 +546535,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106276] = 16, - ACTIONS(7330), 1, + [106228] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(4637), 1, - sym__simple_user_type, - STATE(6679), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9563), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2010), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4846), 3, - sym__type, + STATE(7132), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546398,46 +546582,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106339] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106291] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1551), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7052), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8271), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546445,46 +546629,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106402] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106354] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8270), 3, + STATE(3694), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546492,46 +546676,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106465] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106417] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8269), 3, + STATE(3181), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546539,46 +546723,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106528] = 16, - ACTIONS(533), 1, + [106480] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3848), 3, + STATE(4964), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546586,46 +546770,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106591] = 16, - ACTIONS(533), 1, + [106543] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3824), 3, + STATE(3182), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546633,46 +546817,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106654] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106606] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1552), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7108), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8236), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546680,46 +546864,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106717] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106669] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8234), 3, + STATE(3669), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546727,46 +546911,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106780] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106732] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8233), 3, + STATE(3816), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546774,46 +546958,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106843] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [106795] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8229), 3, + STATE(4117), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546821,46 +547005,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106906] = 16, - ACTIONS(613), 1, + [106858] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(834), 1, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(9486), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1555), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(849), 3, - sym__type, + STATE(7051), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546868,47 +547052,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [106969] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [106921] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6322), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7039), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7488), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4987), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546916,46 +547099,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107034] = 16, - ACTIONS(613), 1, + [106984] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(850), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(868), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(4517), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -546963,46 +547146,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107097] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [107047] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8191), 3, + STATE(4028), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547010,46 +547193,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107160] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [107110] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8267), 3, + STATE(4804), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547057,46 +547240,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107223] = 16, - ACTIONS(613), 1, + [107173] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(851), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(868), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(5011), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547104,46 +547287,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107286] = 16, - ACTIONS(7330), 1, + [107236] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8914), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - ACTIONS(8916), 1, - sym__backtick_identifier, - STATE(6719), 1, - sym_type_modifiers, - STATE(8059), 1, - sym_simple_identifier, - STATE(8112), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(8187), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(9468), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8091), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(8549), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8912), 7, + STATE(4135), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547151,46 +547334,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107349] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [107299] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8291), 3, + STATE(4091), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547198,46 +547381,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107412] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [107362] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8895), 1, + sym__backtick_identifier, + ACTIONS(8960), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8962), 1, + anon_sym_dynamic, + STATE(5181), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(5434), 1, + sym__lexical_identifier, + STATE(5601), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6554), 1, + sym_type_modifiers, + STATE(9336), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(5605), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8189), 3, + STATE(5640), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547245,46 +547428,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107475] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [107425] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8283), 3, + STATE(5024), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547292,46 +547475,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107538] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [107488] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2649), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7162), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8188), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547339,46 +547522,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107601] = 16, - ACTIONS(613), 1, + [107551] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(863), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(868), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(4798), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547386,46 +547569,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107664] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [107614] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8184), 3, + STATE(5038), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547433,46 +547616,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107727] = 16, - ACTIONS(613), 1, + [107677] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(864), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(868), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(5048), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547480,46 +547663,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107790] = 16, - ACTIONS(533), 1, + [107740] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4160), 3, + STATE(4096), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547527,46 +547710,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107853] = 16, - ACTIONS(195), 1, + [107803] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1316), 2, + STATE(1557), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7187), 2, + STATE(7154), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547574,46 +547757,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107916] = 16, - ACTIONS(409), 1, + [107866] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2859), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(4158), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547621,46 +547804,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [107979] = 16, - ACTIONS(409), 1, + [107929] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2866), 3, + STATE(4467), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4530), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [107992] = 16, + ACTIONS(107), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8944), 1, + anon_sym_LPAREN, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(4793), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547668,46 +547898,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108042] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [108055] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1562), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7123), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8172), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547715,46 +547945,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108105] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [108118] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8895), 1, + sym__backtick_identifier, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8962), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(5434), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(5601), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6554), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9336), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2870), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(2883), 3, + STATE(5605), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(5641), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547762,46 +547992,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108168] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [108181] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(550), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7191), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8171), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547809,46 +548039,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108231] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [108244] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7187), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8170), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547856,46 +548086,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108294] = 16, - ACTIONS(409), 1, + [108307] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9530), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2680), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2882), 3, - sym__type, + STATE(7142), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(2883), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547903,46 +548133,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108357] = 16, - ACTIONS(7323), 1, + [108370] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8169), 3, + STATE(8301), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547950,46 +548180,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108420] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [108433] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2896), 3, + STATE(8196), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -547997,46 +548227,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108483] = 16, - ACTIONS(533), 1, + [108496] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7025), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4993), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548044,46 +548274,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108546] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [108559] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8274), 3, + STATE(4789), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548091,46 +548321,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108609] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [108622] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6348), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7169), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7487), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8262), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548138,46 +548369,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108672] = 16, - ACTIONS(7330), 1, + [108687] = 16, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8847), 1, - sym__backtick_identifier, - ACTIONS(8930), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8932), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5601), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(6608), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9419), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5613), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5639), 3, + STATE(4144), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8843), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548185,46 +548416,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108735] = 16, - ACTIONS(533), 1, + [108750] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(830), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1554), 2, + STATE(608), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7023), 2, + STATE(7172), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548232,46 +548463,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108798] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [108813] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6313), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9486), 1, - sym_function_type_parameters, + STATE(7186), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(899), 3, - sym__type, + STATE(7528), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548279,46 +548511,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108861] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [108878] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8950), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8952), 1, + sym__backtick_identifier, + STATE(6483), 1, + sym_type_modifiers, + STATE(8043), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(8166), 1, + sym_simple_identifier, + STATE(8250), 1, sym__simple_user_type, - STATE(6614), 1, - sym_type_modifiers, - STATE(9486), 1, + STATE(9195), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(898), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(8028), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(8575), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548326,46 +548558,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108924] = 16, - ACTIONS(613), 1, + [108941] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6825), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(890), 3, + STATE(1493), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548373,46 +548605,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [108987] = 16, - ACTIONS(195), 1, + [109004] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2877), 3, + STATE(3727), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548420,46 +548652,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109050] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [109067] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4146), 3, + STATE(8195), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548467,46 +548699,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109113] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [109130] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, - anon_sym_dynamic, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2868), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(2876), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8192), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548514,46 +548746,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109176] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [109193] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6326), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7046), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7506), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8257), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548561,47 +548794,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109239] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [109258] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6326), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7129), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7566), 2, - sym__receiver_type, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3729), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548609,46 +548841,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109304] = 16, - ACTIONS(195), 1, + [109321] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2862), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(2876), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(3765), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548656,46 +548888,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109367] = 16, - ACTIONS(7323), 1, + [109384] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8245), 3, + STATE(8190), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548703,46 +548935,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109430] = 16, - ACTIONS(613), 1, + [109447] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7068), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(3778), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548750,46 +548982,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109493] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [109510] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8244), 3, + STATE(3735), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548797,46 +549029,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109556] = 16, - ACTIONS(195), 1, + [109573] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2857), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(2876), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(3754), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548844,46 +549076,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109619] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [109636] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8887), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + STATE(5530), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(5531), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(6932), 1, + sym_type_modifiers, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5234), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7189), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8237), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548891,46 +549123,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109682] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [109699] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2370), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7100), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8321), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548938,47 +549170,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109745] = 17, - ACTIONS(7330), 1, + [109762] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6337), 1, + STATE(6304), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7146), 1, + STATE(7036), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7538), 2, + STATE(7438), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -548986,46 +549218,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109810] = 16, - ACTIONS(195), 1, + [109827] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2844), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(2876), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(2918), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549033,46 +549265,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109873] = 16, - ACTIONS(7330), 1, + [109890] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8847), 1, - sym__backtick_identifier, - ACTIONS(8930), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8932), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(5601), 1, + STATE(4566), 1, + sym_simple_identifier, + STATE(4581), 1, sym__simple_user_type, - STATE(6608), 1, + STATE(6822), 1, sym_type_modifiers, - STATE(9419), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(5613), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5642), 3, + STATE(4854), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8843), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549080,42 +549312,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109936] = 16, - ACTIONS(409), 1, + [109953] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2921), 3, + STATE(929), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -549127,46 +549359,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [109999] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [110016] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2924), 3, + STATE(8172), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549174,42 +549406,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110062] = 16, - ACTIONS(409), 1, + [110079] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2935), 3, + STATE(931), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -549221,46 +549453,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110125] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [110142] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, - anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6315), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9488), 1, - sym_function_type_parameters, + STATE(7062), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3278), 3, - sym__type, + STATE(7450), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(3378), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549268,46 +549501,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110188] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [110207] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3284), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(8173), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [110270] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6782), 1, + sym_type_modifiers, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8174), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549315,46 +549595,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110251] = 16, - ACTIONS(533), 1, + [110333] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4142), 3, + STATE(938), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549362,46 +549642,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110314] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [110396] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8968), 1, + anon_sym_dynamic, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4581), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6822), 1, + sym_type_modifiers, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8168), 3, + STATE(5161), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549409,46 +549689,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110377] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [110459] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3301), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(3378), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(5154), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549456,46 +549736,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110440] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [110522] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6320), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7106), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7468), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8203), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549503,46 +549784,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110503] = 16, - ACTIONS(7323), 1, + [110587] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8206), 3, + STATE(8175), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549550,46 +549831,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110566] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [110650] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3315), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(3378), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(4842), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549597,46 +549878,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110629] = 16, - ACTIONS(7323), 1, + [110713] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8210), 3, + STATE(8284), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549644,46 +549925,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110692] = 16, - ACTIONS(533), 1, + [110776] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3327), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(3378), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(933), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549691,46 +549972,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110755] = 16, - ACTIONS(195), 1, + [110839] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2943), 3, + STATE(877), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549738,46 +550019,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110818] = 16, - ACTIONS(195), 1, + [110902] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2949), 3, + STATE(3062), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549785,46 +550066,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110881] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [110965] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, - anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2837), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(6311), 1, + sym_type_parameters, + STATE(6932), 1, + sym_type_modifiers, + STATE(7182), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(7419), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7480), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [111030] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8785), 1, + anon_sym_LPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3330), 3, + STATE(8178), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549832,46 +550161,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [110944] = 16, - ACTIONS(7323), 1, + [111093] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8213), 3, + STATE(8279), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549879,46 +550208,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111007] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111156] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(2858), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2957), 3, + STATE(4841), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549926,46 +550255,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111070] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111219] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8895), 1, + sym__backtick_identifier, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8962), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(5434), 1, + sym__lexical_identifier, + STATE(5601), 1, + sym__simple_user_type, + STATE(6554), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9336), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(5605), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4471), 3, + STATE(5636), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -549973,46 +550302,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111133] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111282] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4449), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8179), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550020,46 +550349,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111196] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111345] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(5569), 1, + sym__simple_user_type, + STATE(6784), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9458), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4448), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(4460), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(5629), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550067,46 +550396,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111259] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111408] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4447), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7523), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(8180), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550114,46 +550443,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111322] = 16, - ACTIONS(281), 1, + [111471] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4446), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(6931), 3, + STATE(1491), 3, + sym__type, + sym_nullable_type, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550161,46 +550490,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111385] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111534] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2223), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7134), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + STATE(8290), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550208,46 +550537,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111448] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111597] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3484), 3, + STATE(8183), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550255,46 +550584,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111511] = 16, - ACTIONS(533), 1, + [111660] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3483), 3, + STATE(1424), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550302,47 +550631,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111574] = 17, - ACTIONS(7330), 1, + [111723] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6338), 1, + STATE(6345), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7141), 1, + STATE(7133), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7480), 2, + STATE(7497), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550350,46 +550679,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111639] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [111788] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3508), 3, + STATE(5319), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550397,46 +550726,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111702] = 16, - ACTIONS(7323), 1, + [111851] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8211), 3, + STATE(8297), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550444,47 +550773,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111765] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [111914] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6312), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7093), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7473), 2, - sym__receiver_type, + STATE(2873), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(2922), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550492,46 +550820,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111830] = 16, - ACTIONS(281), 1, + [111977] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4590), 3, + STATE(3107), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550539,46 +550867,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111893] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [112040] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + ACTIONS(8968), 1, + anon_sym_dynamic, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(4566), 1, + sym_simple_identifier, + STATE(4581), 1, sym__simple_user_type, + STATE(6822), 1, + sym_type_modifiers, + STATE(9132), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2083), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7162), 2, - sym__receiver_type, + STATE(4767), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4830), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550586,46 +550914,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [111956] = 16, - ACTIONS(533), 1, + [112103] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3527), 3, + STATE(4481), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550633,47 +550961,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112019] = 17, - ACTIONS(7330), 1, + [112166] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6339), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7189), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7447), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8213), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550681,47 +551008,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112084] = 17, - ACTIONS(7330), 1, + [112229] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6344), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7133), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7442), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8280), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550729,47 +551055,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112149] = 17, - ACTIONS(7330), 1, + [112292] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6349), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7090), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8240), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550777,46 +551102,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112214] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [112355] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4835), 3, + STATE(8239), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550824,46 +551149,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112277] = 16, - ACTIONS(7323), 1, + [112418] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8310), 3, + STATE(8238), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550871,46 +551196,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112340] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [112481] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4738), 3, + STATE(8259), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550918,46 +551243,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112403] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [112544] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(5569), 1, + sym__simple_user_type, + STATE(6784), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9458), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3655), 3, + STATE(5628), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -550965,47 +551290,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112466] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [112607] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6347), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7075), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(4729), 1, sym__simple_user_type, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7474), 2, - sym__receiver_type, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4787), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551013,46 +551337,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112531] = 16, - ACTIONS(281), 1, + [112670] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8922), 1, anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(6851), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4859), 3, + STATE(4502), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551060,46 +551384,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112594] = 16, - ACTIONS(7323), 1, + [112733] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8323), 3, + STATE(8258), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551107,46 +551431,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112657] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [112796] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4688), 3, + STATE(8257), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551154,46 +551478,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112720] = 16, - ACTIONS(7323), 1, + [112859] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8322), 3, + STATE(8256), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551201,46 +551525,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112783] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [112922] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3668), 3, + STATE(8255), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551248,93 +551572,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112846] = 16, - ACTIONS(281), 1, + [112985] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4826), 3, + STATE(1263), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [112909] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(8320), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551342,46 +551619,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [112972] = 16, - ACTIONS(281), 1, + [113048] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4874), 3, + STATE(1265), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551389,46 +551666,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113035] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113111] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, - anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4851), 3, + STATE(8254), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551436,42 +551713,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113098] = 16, - ACTIONS(409), 1, + [113174] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3298), 3, + STATE(1266), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -551483,46 +551760,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113161] = 16, - ACTIONS(195), 1, + [113237] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3455), 3, + STATE(3042), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551530,46 +551807,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113224] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113300] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, - anon_sym_dynamic, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3453), 3, + STATE(8253), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551577,46 +551854,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113287] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113363] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3560), 3, + STATE(8252), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551624,46 +551901,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113350] = 16, - ACTIONS(195), 1, + [113426] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4099), 3, + STATE(1267), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551671,46 +551948,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113413] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113489] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, - anon_sym_dynamic, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4107), 3, + STATE(8251), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551718,46 +551995,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113476] = 16, - ACTIONS(195), 1, + [113552] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4108), 3, + STATE(1269), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551765,46 +552042,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113539] = 16, - ACTIONS(7330), 1, + [113615] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8857), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8859), 1, - sym__backtick_identifier, - STATE(2901), 1, - sym_simple_identifier, - STATE(2903), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1781), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7155), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8855), 7, + STATE(8266), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551812,46 +552089,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113602] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113678] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3674), 3, + STATE(5344), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551859,46 +552136,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113665] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113741] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3748), 3, + STATE(8177), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551906,46 +552183,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113728] = 16, - ACTIONS(7330), 1, + [113804] = 16, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8857), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - ACTIONS(8859), 1, - sym__backtick_identifier, - STATE(2901), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(2903), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1854), 2, + STATE(1604), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7108), 2, + STATE(7168), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8855), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -551953,46 +552230,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113791] = 16, - ACTIONS(7323), 1, + [113867] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8208), 3, + STATE(8270), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552000,93 +552277,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113854] = 16, + [113930] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(812), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(448), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7169), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [113917] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8878), 1, - anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_dynamic, - STATE(3377), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3750), 3, + STATE(3635), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552094,46 +552324,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [113980] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [113993] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8833), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_dynamic, - STATE(812), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7185), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(537), 7, + STATE(8310), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552141,46 +552371,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114043] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [114056] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4065), 3, + STATE(4828), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552188,46 +552418,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114106] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [114119] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8287), 3, + STATE(3634), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552235,46 +552465,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114169] = 16, - ACTIONS(533), 1, + [114182] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3718), 3, + STATE(1050), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552282,46 +552512,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114232] = 16, - ACTIONS(7330), 1, + [114245] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, - anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(6782), 1, + sym_type_modifiers, + STATE(7518), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(6679), 1, - sym_type_modifiers, - STATE(9563), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5177), 3, + STATE(8249), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552329,46 +552559,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114295] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [114308] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1295), 3, + STATE(8197), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552376,46 +552606,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114358] = 16, - ACTIONS(533), 1, + [114371] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4044), 3, + STATE(3627), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552423,46 +552653,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114421] = 16, - ACTIONS(7323), 1, + [114434] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8174), 3, + STATE(8248), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552470,47 +552700,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114484] = 17, - ACTIONS(7330), 1, + [114497] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6340), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7135), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7500), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8247), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552518,46 +552747,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114549] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [114560] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8895), 1, + sym__backtick_identifier, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8962), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(5434), 1, + sym__lexical_identifier, + STATE(5601), 1, + sym__simple_user_type, + STATE(6554), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9336), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(5605), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3768), 3, + STATE(5634), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552565,46 +552794,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114612] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [114623] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8198), 3, + STATE(3625), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552612,46 +552841,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114675] = 16, - ACTIONS(7330), 1, + [114686] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8920), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8922), 1, - anon_sym_dynamic, - ACTIONS(8924), 1, - sym__backtick_identifier, - STATE(4537), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(6782), 1, + sym_type_modifiers, + STATE(7518), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(6679), 1, - sym_type_modifiers, - STATE(9563), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4812), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(5180), 3, + STATE(8246), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8918), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552659,46 +552888,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114738] = 16, - ACTIONS(533), 1, + [114749] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3799), 3, + STATE(3624), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552706,46 +552935,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114801] = 16, - ACTIONS(533), 1, + [114812] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4087), 3, + STATE(3892), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552753,46 +552982,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114864] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [114875] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + STATE(3026), 1, + sym_simple_identifier, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2565), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7096), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8193), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552800,46 +553029,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114927] = 16, - ACTIONS(613), 1, + [114938] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6825), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1305), 3, + STATE(1321), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552847,46 +553076,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [114990] = 16, - ACTIONS(533), 1, + [115001] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8875), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(3026), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(3287), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9488), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2566), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4085), 3, - sym__type, + STATE(7024), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552894,46 +553123,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115053] = 16, - ACTIONS(7323), 1, + [115064] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8286), 3, + STATE(8212), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552941,46 +553170,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115116] = 16, - ACTIONS(533), 1, + [115127] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4060), 3, + STATE(1340), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -552988,42 +553217,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115179] = 16, - ACTIONS(409), 1, + [115190] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3350), 3, + STATE(1314), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -553035,42 +553264,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115242] = 16, - ACTIONS(409), 1, + [115253] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3349), 3, + STATE(1327), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -553082,46 +553311,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115305] = 16, - ACTIONS(7330), 1, + [115316] = 16, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8859), 1, - sym__backtick_identifier, - ACTIONS(8926), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2903), 1, - sym__lexical_identifier, - STATE(2974), 1, - sym_simple_identifier, - STATE(3097), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(6702), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9501), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3194), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3878), 3, + STATE(3214), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8855), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553129,46 +553358,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115368] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [115379] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(2837), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3313), 3, + STATE(5362), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553176,46 +553405,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115431] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [115442] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3206), 3, + STATE(8900), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553223,46 +553452,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115494] = 16, - ACTIONS(409), 1, + [115505] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3297), 3, + STATE(3215), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553270,46 +553499,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115557] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [115568] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1313), 3, + STATE(8222), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [115631] = 16, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8893), 1, + anon_sym_LPAREN, + ACTIONS(8895), 1, + sym__backtick_identifier, + STATE(5434), 1, + sym__lexical_identifier, + STATE(5535), 1, + sym_simple_identifier, + STATE(6932), 1, + sym_type_modifiers, + STATE(7419), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7050), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553317,46 +553593,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115620] = 16, - ACTIONS(195), 1, + [115694] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3119), 3, + STATE(3218), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553364,46 +553640,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115683] = 16, - ACTIONS(7323), 1, + [115757] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8293), 3, + STATE(8221), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553411,47 +553687,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115746] = 17, - ACTIONS(7330), 1, + [115820] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6331), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7052), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7465), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(8788), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553459,46 +553734,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115811] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [115883] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1175), 3, + STATE(8220), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553506,46 +553781,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115874] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [115946] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8938), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(855), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8297), 3, + STATE(1163), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553553,46 +553828,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [115937] = 16, - ACTIONS(613), 1, + [116009] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1321), 3, + STATE(3222), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553600,47 +553875,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116000] = 17, - ACTIONS(7330), 1, + [116072] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6309), 1, + STATE(6352), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7058), 1, + STATE(7048), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7544), 2, + STATE(7577), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553648,46 +553923,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116065] = 16, - ACTIONS(195), 1, + [116137] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3089), 3, + STATE(1053), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553695,46 +553970,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116128] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [116200] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1193), 3, + STATE(8219), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553742,46 +554017,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116191] = 16, - ACTIONS(533), 1, + [116263] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3785), 3, + STATE(3228), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553789,46 +554064,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116254] = 16, - ACTIONS(7323), 1, + [116326] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8313), 3, + STATE(8267), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553836,47 +554111,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116317] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [116389] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6323), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7070), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7439), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4043), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -553884,42 +554158,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116382] = 16, + [116452] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1288), 3, + STATE(3832), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -553931,42 +554205,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116445] = 16, + [116515] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1173), 3, + STATE(3901), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -553978,46 +554252,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116508] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [116578] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6322), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7155), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2608), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7171), 2, + STATE(7442), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554025,42 +554300,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116571] = 16, + [116643] = 16, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1113), 3, + STATE(3839), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -554072,47 +554347,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116634] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [116706] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6318), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7124), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7449), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4000), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554120,46 +554394,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116699] = 16, - ACTIONS(195), 1, + [116769] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8938), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2570), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7144), 2, - sym__receiver_type, + STATE(856), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(1014), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554167,46 +554441,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116762] = 16, - ACTIONS(613), 1, + [116832] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6455), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1032), 3, + STATE(4005), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554214,46 +554488,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116825] = 16, - ACTIONS(409), 1, + [116895] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, - anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9530), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2568), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(2910), 3, - sym__type, + STATE(7141), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554261,46 +554535,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116888] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [116958] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2913), 3, + STATE(8244), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554308,47 +554582,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [116951] = 17, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + [117021] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6313), 1, - sym_type_parameters, - STATE(6930), 1, - sym_type_modifiers, - STATE(7176), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7460), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4010), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554356,46 +554629,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117016] = 16, - ACTIONS(7323), 1, + [117084] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8175), 3, + STATE(8243), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554403,46 +554676,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117079] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [117147] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2922), 3, + STATE(8242), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554450,46 +554723,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117142] = 16, - ACTIONS(281), 1, + [117210] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4621), 3, + STATE(4024), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554497,46 +554770,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117205] = 16, - ACTIONS(7323), 1, + [117273] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8176), 3, + STATE(8241), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554544,46 +554817,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117268] = 16, - ACTIONS(409), 1, + [117336] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3143), 3, + STATE(4027), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554591,47 +554864,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117331] = 17, - ACTIONS(7330), 1, + [117399] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6308), 1, - sym_type_parameters, - STATE(6930), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7130), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7721), 1, sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7485), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(9433), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554639,46 +554911,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117396] = 16, - ACTIONS(7323), 1, + [117462] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8177), 3, + STATE(8268), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554686,46 +554958,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117459] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [117525] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6332), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7139), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7563), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8209), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554733,46 +555006,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117522] = 16, - ACTIONS(7323), 1, + [117590] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8217), 3, + STATE(9261), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554780,46 +555053,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117585] = 16, - ACTIONS(7323), 1, + [117653] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8218), 3, + STATE(8265), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [117716] = 16, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8956), 1, + anon_sym_LPAREN, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, + sym_type_modifiers, + STATE(9050), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(2849), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4034), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554827,38 +555147,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117648] = 16, - ACTIONS(7323), 1, + [117779] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -554866,7 +555186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554874,46 +555194,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117711] = 16, - ACTIONS(409), 1, + [117842] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2936), 3, + STATE(3593), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554921,46 +555241,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117774] = 16, - ACTIONS(195), 1, + [117905] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3324), 3, + STATE(3591), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -554968,46 +555288,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117837] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [117968] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8264), 3, + STATE(3587), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555015,46 +555335,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117900] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [118031] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8260), 3, + STATE(4584), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555062,46 +555382,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [117963] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [118094] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8259), 3, + STATE(4672), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555109,46 +555429,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118026] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [118157] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8904), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + STATE(2926), 1, + sym_simple_identifier, + STATE(2949), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1784), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7092), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8256), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555156,46 +555476,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118089] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [118220] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8895), 1, + sym__backtick_identifier, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8962), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(843), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5601), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6554), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9336), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(5605), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1241), 3, + STATE(5653), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555203,93 +555523,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118152] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [118283] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(8232), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [118215] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1234), 3, + STATE(4671), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555297,46 +555570,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118278] = 16, - ACTIONS(7323), 1, + [118346] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8254), 3, + STATE(8028), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555344,46 +555617,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118341] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [118409] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8219), 3, + STATE(4670), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555391,46 +555664,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118404] = 16, - ACTIONS(7323), 1, + [118472] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8263), 3, + STATE(8208), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555438,46 +555711,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118467] = 16, - ACTIONS(613), 1, + [118535] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8922), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6851), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1243), 3, + STATE(4669), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555485,46 +555758,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118530] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [118598] = 16, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8922), 1, + anon_sym_dynamic, + STATE(4455), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6851), 1, + sym_type_modifiers, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4467), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8201), 3, + STATE(4668), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555532,46 +555805,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118593] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [118661] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8958), 1, + anon_sym_dynamic, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8214), 3, + STATE(4035), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555579,46 +555852,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118656] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [118724] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4566), 1, + sym_simple_identifier, + STATE(4581), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6822), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1244), 3, + STATE(5385), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555626,46 +555899,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118719] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [118787] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + ACTIONS(8972), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8974), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2949), 1, + sym__lexical_identifier, + STATE(3076), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6806), 1, + sym_type_modifiers, + STATE(9282), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3197), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8207), 3, + STATE(3856), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555673,46 +555946,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118782] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [118850] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1245), 3, + STATE(9437), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555720,46 +555993,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118845] = 16, - ACTIONS(7323), 1, + [118913] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8166), 3, + STATE(8225), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555767,46 +556040,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118908] = 16, - ACTIONS(195), 1, + [118976] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6930), 1, - sym_type_modifiers, - STATE(7425), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1599), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7091), 2, - sym__receiver_type, + STATE(3359), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(4044), 3, + sym__type, sym_nullable_type, - STATE(6931), 3, + sym_function_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555814,46 +556087,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [118971] = 16, - ACTIONS(409), 1, + [119039] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3595), 3, + STATE(4085), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555861,46 +556134,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119034] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [119102] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, - anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_simple_identifier, - STATE(2858), 1, + ACTIONS(8932), 1, + anon_sym_dynamic, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(6556), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7580), 1, sym__simple_user_type, + STATE(9390), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2405), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7079), 2, - sym__receiver_type, - sym_nullable_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8790), 3, + sym__type, + sym_nullable_type, + sym_function_type, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555908,46 +556181,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119097] = 16, - ACTIONS(409), 1, + [119165] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3597), 3, + STATE(4074), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555955,46 +556228,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119160] = 16, - ACTIONS(281), 1, + [119228] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4616), 3, + STATE(3437), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556002,46 +556275,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119223] = 16, - ACTIONS(7323), 1, + [119291] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8181), 3, + STATE(8228), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556049,46 +556322,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119286] = 16, - ACTIONS(409), 1, + [119354] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3250), 3, + STATE(4029), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556096,46 +556369,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119349] = 16, - ACTIONS(409), 1, + [119417] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3599), 3, + STATE(3066), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556143,46 +556416,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119412] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [119480] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + ACTIONS(8972), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8974), 1, + anon_sym_dynamic, + STATE(2899), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2949), 1, + sym__lexical_identifier, + STATE(3076), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6806), 1, + sym_type_modifiers, + STATE(9282), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3197), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8182), 3, + STATE(3775), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556190,46 +556463,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119475] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [119543] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8932), 1, + anon_sym_dynamic, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(6556), 1, + sym_type_modifiers, + STATE(7580), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8183), 3, + STATE(5608), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556237,46 +556510,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119538] = 16, - ACTIONS(409), 1, + [119606] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3603), 3, + STATE(3468), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556284,46 +556557,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119601] = 16, - ACTIONS(7323), 1, + [119669] = 16, + ACTIONS(7338), 1, anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7721), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8185), 3, + STATE(8232), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556331,46 +556604,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119664] = 16, - ACTIONS(409), 1, + [119732] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3605), 3, + STATE(4020), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556378,46 +556651,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119727] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [119795] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8893), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + ACTIONS(8895), 1, + sym__backtick_identifier, + STATE(5434), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(5535), 1, + sym_simple_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2590), 2, + STATE(5327), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7106), 2, + STATE(7156), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556425,46 +556698,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119790] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [119858] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6351), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7025), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2565), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7131), 2, + STATE(7469), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556472,46 +556746,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119853] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [119923] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(8887), 1, + anon_sym_LPAREN, + ACTIONS(8889), 1, + sym__backtick_identifier, + STATE(5530), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(5531), 1, + sym_simple_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9486), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5255), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(1322), 3, - sym__type, + STATE(7126), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556519,46 +556793,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119916] = 16, - ACTIONS(613), 1, + [119986] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6595), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1324), 3, + STATE(3292), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556566,46 +556840,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [119979] = 16, - ACTIONS(613), 1, + [120049] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(834), 1, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(6614), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(9486), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2417), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(1325), 3, - sym__type, + STATE(7070), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556613,47 +556887,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120042] = 17, - ACTIONS(7330), 1, + [120112] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8330), 1, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6303), 1, + STATE(6301), 1, sym_type_parameters, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7123), 1, + STATE(7077), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7560), 2, + STATE(7451), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556661,46 +556935,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120107] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [120177] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(2858), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(6556), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3237), 3, + STATE(5621), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556708,46 +556982,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120170] = 16, - ACTIONS(195), 1, + [120240] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8958), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6595), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2849), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3236), 3, + STATE(3194), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556755,46 +557029,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120233] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [120303] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8253), 3, + STATE(3818), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556802,46 +557076,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120296] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [120366] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1312), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7128), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8179), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556849,93 +557123,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120359] = 16, - ACTIONS(195), 1, + [120429] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, - anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, - sym_type_modifiers, - STATE(9504), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(2876), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3234), 3, - sym__type, - sym_nullable_type, - sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [120422] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1313), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7103), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8250), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556943,46 +557170,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120485] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [120492] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2822), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(2416), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7049), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8246), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556990,46 +557217,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120548] = 16, - ACTIONS(409), 1, + [120555] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(2952), 3, + STATE(3738), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557037,46 +557264,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120611] = 16, - ACTIONS(195), 1, + [120618] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, - anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + ACTIONS(8879), 1, + anon_sym_LPAREN, + STATE(2822), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9504), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1318), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3233), 3, - sym__type, + STATE(7086), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557084,45 +557311,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120674] = 16, - ACTIONS(409), 1, + [120681] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, - anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(832), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9530), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(429), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3335), 3, - sym__type, + STATE(7081), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(333), 7, anon_sym_get, anon_sym_set, @@ -557131,46 +557358,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120737] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [120744] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6343), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7148), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7575), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8235), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557178,46 +557406,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120800] = 16, - ACTIONS(195), 1, + [120809] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3229), 3, + STATE(3814), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557225,46 +557453,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120863] = 16, - ACTIONS(409), 1, + [120872] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3854), 3, + STATE(4089), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557272,46 +557500,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120926] = 16, - ACTIONS(409), 1, + [120935] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6704), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3840), 3, + STATE(3742), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557319,46 +557547,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [120989] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [120998] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, - anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(2837), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6334), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9530), 1, - sym_function_type_parameters, + STATE(7175), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3771), 3, - sym__type, + STATE(7445), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557366,46 +557595,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121052] = 16, - ACTIONS(533), 1, + [121063] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4033), 3, + STATE(3003), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557413,46 +557642,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121115] = 16, - ACTIONS(533), 1, + [121126] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, - anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + ACTIONS(8881), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(832), 1, + sym__lexical_identifier, + STATE(6932), 1, sym_type_modifiers, - STATE(9488), 1, - sym_function_type_parameters, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4035), 3, - sym__type, + STATE(7076), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557460,46 +557689,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121178] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [121189] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6327), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7085), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7533), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8195), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557507,46 +557737,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121241] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [121254] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, - anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6328), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9488), 1, - sym_function_type_parameters, + STATE(7143), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4034), 3, - sym__type, + STATE(7459), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557554,46 +557785,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121304] = 16, - ACTIONS(195), 1, + [121319] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8841), 1, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(830), 1, sym_simple_identifier, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2424), 2, + STATE(435), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7126), 2, + STATE(7053), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557601,93 +557832,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121367] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [121382] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, - sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(8196), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [121430] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8881), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(830), 1, + sym_simple_identifier, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(439), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7030), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8197), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557695,46 +557879,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121493] = 16, - ACTIONS(533), 1, + [121445] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4010), 3, + STATE(4815), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557742,46 +557926,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121556] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [121508] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8946), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6676), 1, + sym_type_modifiers, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8200), 3, + STATE(4816), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557789,46 +557973,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121619] = 16, - ACTIONS(195), 1, + [121571] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8942), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(6455), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3271), 3, + STATE(3673), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557836,46 +558020,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121682] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [121634] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_simple_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6321), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7109), 1, + sym_simple_identifier, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2687), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7072), 2, + STATE(7467), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557883,46 +558068,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121745] = 16, - ACTIONS(195), 1, + [121699] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3566), 3, + STATE(4817), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557930,46 +558115,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121808] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [121762] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(5569), 1, + sym__simple_user_type, + STATE(6784), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9458), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3568), 3, + STATE(5608), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557977,46 +558162,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121871] = 16, - ACTIONS(195), 1, + [121825] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3574), 3, + STATE(3087), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558024,46 +558209,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121934] = 16, - ACTIONS(195), 1, + [121888] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(3969), 3, + STATE(4708), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558071,46 +558256,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [121997] = 16, - ACTIONS(281), 1, + [121951] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(6825), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4675), 3, + STATE(1103), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558118,46 +558303,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122060] = 16, - ACTIONS(281), 1, + [122014] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6741), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9309), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4674), 3, + STATE(4944), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558165,46 +558350,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122123] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [122077] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6329), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9309), 1, - sym_function_type_parameters, + STATE(7138), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4665), 3, - sym__type, + STATE(7582), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558212,46 +558398,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122186] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [122142] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6314), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9309), 1, - sym_function_type_parameters, + STATE(7094), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4640), 3, - sym__type, + STATE(7476), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558259,46 +558446,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122249] = 16, - ACTIONS(281), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [122207] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8882), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(6741), 1, + STATE(6310), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9309), 1, - sym_function_type_parameters, + STATE(7034), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(4460), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4569), 3, - sym__type, + STATE(7493), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(203), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558306,46 +558494,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122312] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [122272] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(2858), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3244), 3, + STATE(5047), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558353,46 +558541,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122375] = 16, - ACTIONS(7330), 1, + [122335] = 16, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8859), 1, - sym__backtick_identifier, - ACTIONS(8926), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2903), 1, - sym__lexical_identifier, - STATE(2974), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(6702), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9501), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3194), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3787), 3, + STATE(3458), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8855), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558400,46 +558588,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122438] = 16, - ACTIONS(533), 1, + [122398] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(6680), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(4052), 3, + STATE(3438), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558447,46 +558635,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122501] = 16, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [122461] = 17, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, - anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(6710), 1, + STATE(6331), 1, + sym_type_parameters, + STATE(6932), 1, sym_type_modifiers, - STATE(9488), 1, - sym_function_type_parameters, + STATE(7185), 1, + sym_simple_identifier, + STATE(7419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4059), 3, - sym__type, + STATE(7550), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + STATE(7428), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558494,46 +558683,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122564] = 16, - ACTIONS(533), 1, + [122526] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8878), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8880), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6710), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3378), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(4079), 3, + STATE(4710), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558541,46 +558730,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122627] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [122589] = 16, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8942), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6455), 1, + sym_type_modifiers, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(3359), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8298), 3, + STATE(4077), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558588,46 +558777,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122690] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [122652] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8966), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8968), 1, anon_sym_dynamic, - STATE(2858), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(6822), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4767), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3973), 3, + STATE(5071), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558635,46 +558824,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122753] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [122715] = 16, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8938), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(855), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6825), 1, + sym_type_modifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8296), 3, + STATE(953), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558682,46 +558871,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122816] = 16, - ACTIONS(195), 1, + [122778] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(6676), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(4730), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3190), 3, + STATE(4943), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558729,46 +558918,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122879] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, + [122841] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8877), 1, + anon_sym_dynamic, + ACTIONS(8904), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + STATE(2926), 1, + sym_simple_identifier, + STATE(2949), 1, sym__lexical_identifier, - STATE(6550), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7487), 1, - sym_simple_identifier, - STATE(7618), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(9397), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(1857), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, + STATE(7102), 2, + sym__receiver_type, + sym_nullable_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8295), 3, - sym__type, - sym_nullable_type, - sym_function_type, - ACTIONS(8384), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558776,46 +558965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [122942] = 16, - ACTIONS(7330), 1, + [122904] = 16, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8859), 1, - sym__backtick_identifier, - ACTIONS(8926), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, + ACTIONS(8938), 1, anon_sym_dynamic, - STATE(2903), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2974), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(855), 1, sym__simple_user_type, - STATE(6702), 1, + STATE(6825), 1, sym_type_modifiers, - STATE(9501), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(3194), 3, + STATE(856), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3681), 3, + STATE(948), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8855), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558823,46 +559012,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123005] = 16, - ACTIONS(195), 1, + [122967] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3981), 3, + STATE(3381), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558870,46 +559059,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123068] = 16, - ACTIONS(7323), 1, - anon_sym_dynamic, - ACTIONS(7330), 1, - anon_sym_suspend, - ACTIONS(8398), 1, + [123030] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(7345), 1, + anon_sym_suspend, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(6550), 1, - sym_type_modifiers, - STATE(7487), 1, + ACTIONS(8926), 1, + anon_sym_dynamic, + STATE(2878), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(6680), 1, + sym_type_modifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7537), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(8294), 3, + STATE(3370), 3, sym__type, sym_nullable_type, sym_function_type, - ACTIONS(8384), 7, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558917,46 +559106,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123131] = 16, - ACTIONS(195), 1, + [123093] = 16, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8926), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6680), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(2873), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3978), 3, + STATE(3371), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558964,46 +559153,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123194] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [123156] = 16, + ACTIONS(7338), 1, + anon_sym_dynamic, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, - anon_sym_dynamic, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(6709), 1, + STATE(6782), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(7518), 1, + sym_simple_identifier, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(6934), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7523), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3967), 3, + STATE(8278), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559011,46 +559200,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123257] = 16, - ACTIONS(613), 1, + [123219] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(1132), 3, + STATE(4714), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559058,46 +559247,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123320] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [123282] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + ACTIONS(8972), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8974), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3076), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6806), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9282), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(3197), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1107), 3, + STATE(3567), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559105,46 +559294,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123383] = 16, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [123345] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8908), 1, + ACTIONS(8889), 1, + sym__backtick_identifier, + ACTIONS(8930), 1, anon_sym_LPAREN, - ACTIONS(8910), 1, + ACTIONS(8932), 1, anon_sym_dynamic, - STATE(2858), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(6709), 1, + STATE(5569), 1, + sym__simple_user_type, + STATE(6784), 1, sym_type_modifiers, - STATE(9504), 1, + STATE(9458), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2876), 3, + STATE(5575), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3049), 3, + STATE(5621), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(111), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559152,46 +559341,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123446] = 16, - ACTIONS(613), 1, + [123408] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(1445), 3, + STATE(4718), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559199,46 +559388,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123509] = 16, - ACTIONS(613), 1, + [123471] = 16, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8946), 1, anon_sym_dynamic, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6676), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - STATE(1458), 3, + STATE(4721), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(4730), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559246,46 +559435,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123572] = 16, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [123534] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8890), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + ACTIONS(8972), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(8974), 1, anon_sym_dynamic, - STATE(834), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3076), 1, sym__simple_user_type, - STATE(6614), 1, + STATE(6806), 1, sym_type_modifiers, - STATE(9486), 1, + STATE(9282), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(868), 3, + STATE(3197), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(1463), 3, + STATE(3760), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(537), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559293,46 +559482,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123635] = 16, - ACTIONS(533), 1, + [123597] = 16, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(7330), 1, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8839), 1, + ACTIONS(8879), 1, anon_sym_LPAREN, - STATE(2996), 1, + STATE(2822), 1, sym_simple_identifier, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2662), 2, + STATE(2602), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7044), 2, + STATE(7068), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559340,46 +559529,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123698] = 16, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(7330), 1, + [123660] = 16, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8886), 1, + ACTIONS(8906), 1, + sym__backtick_identifier, + ACTIONS(8972), 1, anon_sym_LPAREN, - ACTIONS(8888), 1, + ACTIONS(8974), 1, anon_sym_dynamic, - STATE(2837), 1, + STATE(2899), 1, + sym_simple_identifier, + STATE(2949), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(3076), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(6704), 1, + STATE(6806), 1, sym_type_modifiers, - STATE(9530), 1, + STATE(9282), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(2883), 3, + STATE(3197), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - STATE(3425), 3, + STATE(3585), 3, sym__type, sym_nullable_type, sym_function_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(333), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559387,43 +559576,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123761] = 15, - ACTIONS(7330), 1, + [123723] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7129), 1, + STATE(7031), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7566), 2, + STATE(7520), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559431,43 +559620,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123820] = 15, - ACTIONS(7330), 1, + [123782] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7123), 1, + STATE(7036), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7560), 2, + STATE(7438), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559475,43 +559664,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123879] = 15, - ACTIONS(7330), 1, + [123841] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7041), 1, + STATE(7169), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7523), 2, + STATE(7487), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559519,43 +559708,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123938] = 15, - ACTIONS(7330), 1, + [123900] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7173), 1, + STATE(7188), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7524), 2, + STATE(7525), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559563,43 +559752,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [123997] = 15, - ACTIONS(7330), 1, + [123959] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7037), 1, + STATE(7138), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7515), 2, + STATE(7582), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559607,43 +559796,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124056] = 15, - ACTIONS(7330), 1, + [124018] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7052), 1, + STATE(7143), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7465), 2, + STATE(7459), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559651,43 +559840,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124115] = 15, - ACTIONS(7330), 1, + [124077] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7035), 1, + STATE(7027), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7489), 2, + STATE(7570), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559695,43 +559884,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124174] = 15, - ACTIONS(7330), 1, + [124136] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7186), 1, + STATE(7179), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7542), 2, + STATE(7567), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559739,43 +559928,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124233] = 15, - ACTIONS(7330), 1, + [124195] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7029), 1, + STATE(7025), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7507), 2, + STATE(7469), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559783,43 +559972,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124292] = 15, - ACTIONS(7330), 1, + [124254] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7148), 1, + STATE(7173), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7509), 2, + STATE(7586), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559827,43 +560016,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124351] = 15, - ACTIONS(7330), 1, + [124313] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7050), 1, + STATE(7044), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7535), 2, + STATE(7519), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559871,43 +560060,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124410] = 15, - ACTIONS(7330), 1, + [124372] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7130), 1, + STATE(7182), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7485), 2, + STATE(7480), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559915,43 +560104,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124469] = 15, - ACTIONS(7330), 1, + [124431] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7137), 1, + STATE(7028), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7478), 2, + STATE(7515), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559959,43 +560148,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124528] = 15, - ACTIONS(7330), 1, + [124490] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7056), 1, + STATE(7190), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7548), 2, + STATE(7477), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560003,43 +560192,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124587] = 15, - ACTIONS(7330), 1, + [124549] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7089), 1, + STATE(7034), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7451), 2, + STATE(7493), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560047,43 +560236,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124646] = 15, - ACTIONS(7330), 1, + [124608] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7176), 1, + STATE(7058), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7460), 2, + STATE(7527), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560091,43 +560280,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124705] = 15, - ACTIONS(7330), 1, + [124667] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7030), 1, + STATE(7054), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7472), 2, + STATE(7484), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560135,43 +560324,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124764] = 15, - ACTIONS(7330), 1, + [124726] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7166), 1, + STATE(7057), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7456), 2, + STATE(7443), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560179,43 +560368,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124823] = 15, - ACTIONS(7330), 1, + [124785] = 5, + ACTIONS(8976), 1, + anon_sym_DOT, + STATE(6323), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 16, + anon_sym_val, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [124824] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7066), 1, + STATE(7062), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, STATE(7450), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560223,43 +560446,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124882] = 15, - ACTIONS(7330), 1, + [124883] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7124), 1, + STATE(7094), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7449), 2, + STATE(7476), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560267,43 +560490,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [124941] = 15, - ACTIONS(7330), 1, + [124942] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7080), 1, + STATE(7046), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7503), 2, + STATE(7506), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560311,43 +560534,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125000] = 15, - ACTIONS(7330), 1, + [125001] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7167), 1, + STATE(7095), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7589), 2, + STATE(7457), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560355,43 +560578,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125059] = 15, - ACTIONS(7330), 1, + [125060] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7021), 1, + STATE(7097), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7446), 2, + STATE(7470), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560399,43 +560622,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125118] = 15, - ACTIONS(7330), 1, + [125119] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7084), 1, + STATE(7032), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7497), 2, + STATE(7542), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560443,43 +560666,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125177] = 15, - ACTIONS(7330), 1, + [125178] = 5, + ACTIONS(8978), 1, + anon_sym_DOT, + STATE(6323), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4225), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + sym__backtick_identifier, + ACTIONS(4223), 16, + anon_sym_val, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_while, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [125217] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7070), 1, + STATE(7106), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7439), 2, + STATE(7468), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560487,43 +560744,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125236] = 15, - ACTIONS(7330), 1, + [125276] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7049), 1, + STATE(7109), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7528), 2, + STATE(7467), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560531,43 +560788,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125295] = 15, - ACTIONS(7330), 1, + [125335] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7078), 1, + STATE(7033), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7512), 2, + STATE(7592), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560575,43 +560832,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125354] = 15, - ACTIONS(7330), 1, + [125394] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7060), 1, + STATE(7127), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7513), 2, + STATE(7558), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560619,43 +560876,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125413] = 15, - ACTIONS(7330), 1, + [125453] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7039), 1, + STATE(7129), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7488), 2, + STATE(7462), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560663,43 +560920,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125472] = 15, - ACTIONS(7330), 1, + [125512] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7058), 1, + STATE(7115), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7544), 2, + STATE(7460), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560707,43 +560964,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125531] = 15, - ACTIONS(7330), 1, + [125571] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7116), 1, + STATE(7185), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7444), 2, + STATE(7550), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560751,43 +561008,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125590] = 15, - ACTIONS(7330), 1, + [125630] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7189), 1, + STATE(7080), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7447), 2, + STATE(7538), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560795,43 +561052,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125649] = 15, - ACTIONS(7330), 1, + [125689] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7024), 1, + STATE(7077), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7505), 2, + STATE(7451), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560839,43 +561096,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125708] = 15, - ACTIONS(7330), 1, + [125748] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7141), 1, + STATE(7066), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7480), 2, + STATE(7482), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560883,43 +561140,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125767] = 15, - ACTIONS(7330), 1, + [125807] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7047), 1, + STATE(7166), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7525), 2, + STATE(7449), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560927,43 +561184,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125826] = 15, - ACTIONS(7330), 1, + [125866] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7051), 1, + STATE(7069), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7554), 2, + STATE(7511), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560971,43 +561228,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125885] = 15, - ACTIONS(7330), 1, + [125925] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7154), 1, + STATE(7084), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7533), 2, + STATE(7504), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561015,43 +561272,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [125944] = 15, - ACTIONS(7330), 1, + [125984] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7152), 1, + STATE(7175), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7541), 2, + STATE(7445), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561059,43 +561316,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126003] = 15, - ACTIONS(7330), 1, + [126043] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7146), 1, + STATE(7089), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7538), 2, + STATE(7503), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561103,43 +561360,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126062] = 15, - ACTIONS(7330), 1, + [126102] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7135), 1, + STATE(7099), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7500), 2, + STATE(7499), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561147,77 +561404,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126121] = 5, - ACTIONS(8934), 1, - anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4272), 8, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - sym__backtick_identifier, - ACTIONS(4270), 16, - anon_sym_val, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_data, - anon_sym_inner, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [126160] = 15, - ACTIONS(7330), 1, + [126161] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7191), 1, + STATE(7186), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7526), 2, + STATE(7528), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561225,43 +561448,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126219] = 15, - ACTIONS(7330), 1, + [126220] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7107), 1, + STATE(7181), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7453), 2, + STATE(7496), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561269,43 +561492,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126278] = 15, - ACTIONS(7330), 1, + [126279] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7158), 1, + STATE(7085), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7438), 2, + STATE(7533), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561313,43 +561536,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126337] = 15, - ACTIONS(7330), 1, + [126338] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7165), 1, + STATE(7159), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7592), 2, + STATE(7593), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561357,43 +561580,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126396] = 15, - ACTIONS(7330), 1, + [126397] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7096), 1, + STATE(7112), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7577), 2, + STATE(7488), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561401,43 +561624,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126455] = 15, - ACTIONS(7330), 1, + [126456] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7182), 1, + STATE(7140), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7585), 2, + STATE(7494), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561445,43 +561668,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126514] = 15, - ACTIONS(7330), 1, + [126515] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7133), 1, + STATE(7148), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7442), 2, + STATE(7575), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561489,43 +561712,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126573] = 15, - ACTIONS(7330), 1, + [126574] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7115), 1, + STATE(7133), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7448), 2, + STATE(7497), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561533,43 +561756,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126632] = 15, - ACTIONS(7330), 1, + [126633] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7093), 1, + STATE(7041), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7473), 2, + STATE(7557), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561577,77 +561800,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126691] = 5, - ACTIONS(8937), 1, - anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4222), 8, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 16, - anon_sym_val, - anon_sym_by, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_while, - anon_sym_suspend, - anon_sym_data, - anon_sym_inner, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [126730] = 15, - ACTIONS(7330), 1, + [126692] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7074), 1, + STATE(7118), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7514), 2, + STATE(7486), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561655,43 +561844,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126789] = 15, - ACTIONS(7330), 1, + [126751] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7075), 1, + STATE(7155), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7474), 2, + STATE(7442), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561699,43 +561888,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126848] = 15, - ACTIONS(7330), 1, + [126810] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7081), 1, + STATE(7072), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7469), 2, + STATE(7522), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561743,43 +561932,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126907] = 15, - ACTIONS(7330), 1, + [126869] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7071), 1, + STATE(7158), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7569), 2, + STATE(7454), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561787,43 +561976,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [126966] = 15, - ACTIONS(7330), 1, + [126928] = 15, + ACTIONS(7345), 1, anon_sym_suspend, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8750), 1, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8835), 1, + ACTIONS(8877), 1, anon_sym_dynamic, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(6930), 1, + STATE(6932), 1, sym_type_modifiers, - STATE(7090), 1, + STATE(7048), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7464), 2, + STATE(7577), 2, sym__receiver_type, sym_nullable_type, - STATE(6931), 3, + STATE(6934), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7427), 3, + STATE(7428), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561831,40 +562020,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127025] = 14, - ACTIONS(8398), 1, + [126987] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - ACTIONS(8941), 1, + ACTIONS(8807), 1, anon_sym_COMMA, - ACTIONS(8943), 1, + ACTIONS(8809), 1, anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8455), 1, + STATE(8487), 1, sym__function_value_parameter, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561872,40 +562061,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127080] = 14, - ACTIONS(8398), 1, + [127042] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8754), 1, + ACTIONS(8981), 1, + anon_sym_AT, + ACTIONS(8983), 1, anon_sym_COMMA, - ACTIONS(8756), 1, + ACTIONS(8985), 1, anon_sym_RPAREN, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8337), 1, + STATE(8460), 1, sym__function_value_parameter, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561913,40 +562102,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127135] = 14, - ACTIONS(8398), 1, + [127097] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - ACTIONS(8945), 1, + ACTIONS(8815), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(8817), 1, anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8442), 1, - sym__function_value_parameter, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(9239), 1, + STATE(8588), 1, + sym__function_value_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561954,40 +562143,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127190] = 14, - ACTIONS(8398), 1, + [127152] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8778), 1, + ACTIONS(8821), 1, anon_sym_COMMA, - ACTIONS(8780), 1, + ACTIONS(8823), 1, anon_sym_RPAREN, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8519), 1, + STATE(8532), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561995,40 +562184,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127245] = 14, - ACTIONS(8398), 1, + [127207] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8782), 1, + ACTIONS(8981), 1, + anon_sym_AT, + ACTIONS(8987), 1, anon_sym_COMMA, - ACTIONS(8784), 1, + ACTIONS(8989), 1, anon_sym_RPAREN, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8467), 1, - sym__function_value_parameter, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(9239), 1, + STATE(8564), 1, + sym__function_value_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562036,40 +562225,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127300] = 14, - ACTIONS(8398), 1, + [127262] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8770), 1, + ACTIONS(8787), 1, anon_sym_COMMA, - ACTIONS(8772), 1, + ACTIONS(8789), 1, anon_sym_RPAREN, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8366), 1, + STATE(8337), 1, sym__function_value_parameter, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562077,40 +562266,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127355] = 14, - ACTIONS(8398), 1, + [127317] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8802), 1, + ACTIONS(8791), 1, anon_sym_COMMA, - ACTIONS(8804), 1, + ACTIONS(8793), 1, anon_sym_RPAREN, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, - sym_parameter, - STATE(8558), 1, + STATE(8341), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(8513), 1, + sym_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562118,40 +562307,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127410] = 14, - ACTIONS(8398), 1, + [127372] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - ACTIONS(8949), 1, + ACTIONS(8811), 1, anon_sym_COMMA, - ACTIONS(8951), 1, + ACTIONS(8813), 1, anon_sym_RPAREN, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, - sym_parameter, - STATE(8526), 1, + STATE(8456), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(8513), 1, + sym_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562159,40 +562348,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127465] = 14, - ACTIONS(8398), 1, + [127427] = 14, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8806), 1, + ACTIONS(8981), 1, + anon_sym_AT, + ACTIONS(8991), 1, anon_sym_COMMA, - ACTIONS(8808), 1, + ACTIONS(8993), 1, anon_sym_RPAREN, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, - sym_parameter, - STATE(8556), 1, + STATE(8418), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(8513), 1, + sym_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562200,38 +562389,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127520] = 13, - ACTIONS(8398), 1, + [127482] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8953), 1, + ACTIONS(8995), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562239,38 +562428,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127572] = 13, - ACTIONS(8398), 1, + [127534] = 13, + ACTIONS(1750), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8997), 1, + anon_sym_file, + ACTIONS(8999), 1, + anon_sym_LBRACK, + STATE(3668), 1, + sym_simple_identifier, + STATE(3710), 1, + sym__simple_user_type, + STATE(3751), 1, + sym__lexical_identifier, + STATE(3955), 1, + sym_user_type, + STATE(7002), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9001), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(1686), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(9003), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [127586] = 13, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8955), 1, + ACTIONS(9005), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562278,38 +562506,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127624] = 13, - ACTIONS(8398), 1, + [127638] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8957), 1, + ACTIONS(9007), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562317,38 +562545,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127676] = 13, - ACTIONS(8398), 1, + [127690] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8959), 1, + ACTIONS(9009), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562356,38 +562584,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127728] = 13, - ACTIONS(8398), 1, + [127742] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8961), 1, + ACTIONS(9011), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562395,38 +562623,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127780] = 13, - ACTIONS(8398), 1, + [127794] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8963), 1, + ACTIONS(9013), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562434,38 +562662,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127832] = 13, - ACTIONS(8398), 1, + [127846] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8965), 1, + ACTIONS(9015), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562473,77 +562701,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127884] = 13, - ACTIONS(1750), 1, + [127898] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8967), 1, - anon_sym_file, - ACTIONS(8969), 1, - anon_sym_LBRACK, - STATE(3593), 1, - sym_simple_identifier, - STATE(3789), 1, - sym__lexical_identifier, - STATE(3866), 1, - sym__simple_user_type, - STATE(3913), 1, - sym_user_type, - STATE(6982), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8971), 2, - anon_sym_get, - anon_sym_set, - STATE(3968), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(1686), 5, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(8973), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [127936] = 13, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8975), 1, + ACTIONS(9017), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562551,38 +562740,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [127988] = 13, - ACTIONS(8398), 1, + [127950] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8977), 1, + ACTIONS(9019), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562590,38 +562779,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [128040] = 13, - ACTIONS(8398), 1, + [128002] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8979), 1, + ACTIONS(9021), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562629,38 +562818,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [128092] = 13, - ACTIONS(8398), 1, + [128054] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, ACTIONS(8981), 1, + anon_sym_AT, + ACTIONS(9023), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562668,38 +562857,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [128144] = 13, - ACTIONS(8398), 1, + [128106] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8983), 1, + ACTIONS(9025), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562707,38 +562896,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [128196] = 13, - ACTIONS(8398), 1, + [128158] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8985), 1, + ACTIONS(9027), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562746,38 +562935,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [128248] = 13, - ACTIONS(8398), 1, + [128210] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8987), 1, + ACTIONS(9029), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562785,38 +562974,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, + [128262] = 6, + STATE(4736), 1, + sym_lambda_literal, + STATE(6933), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7894), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(9031), 17, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, [128300] = 13, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8989), 1, + ACTIONS(9033), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562825,37 +563046,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128352] = 13, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8991), 1, + ACTIONS(9035), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562864,37 +563085,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128404] = 13, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8993), 1, + ACTIONS(9037), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562903,37 +563124,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128456] = 13, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8995), 1, + ACTIONS(9039), 1, anon_sym_RPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, + STATE(7447), 1, sym_parameter_modifiers, - STATE(8515), 1, + STATE(8513), 1, sym_parameter, - STATE(8681), 1, + STATE(8863), 1, sym__function_value_parameter, - STATE(9239), 1, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562942,109 +563163,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128508] = 12, - ACTIONS(8398), 1, + ACTIONS(9043), 1, + anon_sym_LBRACK, + ACTIONS(9047), 1, sym__backtick_identifier, - ACTIONS(8997), 1, - anon_sym_AT, - ACTIONS(8999), 1, - sym_reification_modifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7631), 1, - sym_type_parameter_modifiers, - STATE(8460), 1, - sym_type_parameter, - STATE(8522), 1, + STATE(6959), 1, sym_simple_identifier, + STATE(6995), 1, + sym_use_site_target, + STATE(7001), 1, + sym__lexical_identifier, + STATE(7019), 1, + sym__simple_user_type, + STATE(7193), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, - anon_sym_in, - anon_sym_out, - STATE(7430), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6875), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(9045), 2, anon_sym_get, anon_sym_set, + STATE(7430), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9041), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, + ACTIONS(9003), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, [128557] = 12, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8997), 1, - anon_sym_AT, - ACTIONS(8999), 1, - sym_reification_modifier, - STATE(4533), 1, + ACTIONS(9049), 1, + anon_sym_LBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(7631), 1, - sym_type_parameter_modifiers, - STATE(8333), 1, - sym_type_parameter, - STATE(8522), 1, + STATE(5529), 1, sym_simple_identifier, + STATE(5536), 1, + sym__simple_user_type, + STATE(5543), 1, + sym_user_type, + STATE(6988), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, - anon_sym_in, - anon_sym_out, - STATE(7430), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6875), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(9051), 2, anon_sym_get, anon_sym_set, + STATE(5571), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8434), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, + ACTIONS(9003), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, [128606] = 12, - ACTIONS(8398), 1, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(9053), 1, + anon_sym_LBRACK, + STATE(5181), 1, + sym_simple_identifier, + STATE(5434), 1, + sym__lexical_identifier, + STATE(5539), 1, + sym__simple_user_type, + STATE(5540), 1, + sym_user_type, + STATE(7016), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9055), 2, + anon_sym_get, + anon_sym_set, + STATE(5542), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8891), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(9003), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [128655] = 12, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, anon_sym_AT, - STATE(4533), 1, + ACTIONS(9059), 1, + sym_reification_modifier, + STATE(4522), 1, sym__lexical_identifier, - STATE(7463), 1, - sym_parameter_modifiers, - STATE(8515), 1, - sym_parameter, - STATE(8681), 1, - sym__function_value_parameter, - STATE(9239), 1, + STATE(7757), 1, + sym_type_parameter_modifiers, + STATE(8572), 1, sym_simple_identifier, + STATE(8581), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + ACTIONS(7343), 2, + anon_sym_in, + anon_sym_out, + STATE(7431), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(87), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(6927), 3, - sym_parameter_modifier, + STATE(6912), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563052,147 +563310,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [128655] = 12, - ACTIONS(8847), 1, + [128704] = 12, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9001), 1, + ACTIONS(9053), 1, anon_sym_LBRACK, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5538), 1, - sym__simple_user_type, - STATE(5539), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(5540), 1, sym_user_type, + STATE(6842), 1, + sym__simple_user_type, STATE(7000), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9003), 2, + ACTIONS(9055), 2, anon_sym_get, anon_sym_set, - STATE(5544), 2, + STATE(5542), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8843), 5, + ACTIONS(8434), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(8973), 6, + ACTIONS(9003), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [128704] = 12, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9001), 1, + [128753] = 12, + ACTIONS(9063), 1, anon_sym_LBRACK, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + ACTIONS(9067), 1, + sym__backtick_identifier, + STATE(5638), 1, sym_simple_identifier, - STATE(6746), 1, + STATE(5649), 1, + sym__lexical_identifier, + STATE(5651), 1, sym__simple_user_type, - STATE(6961), 1, + STATE(5656), 1, sym_user_type, - STATE(7011), 1, + STATE(6998), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9003), 2, + ACTIONS(9065), 2, anon_sym_get, anon_sym_set, - STATE(5544), 2, + STATE(5727), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8384), 5, + ACTIONS(9061), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(8973), 6, + ACTIONS(9003), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [128753] = 12, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8997), 1, - anon_sym_AT, - ACTIONS(8999), 1, - sym_reification_modifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7631), 1, - sym_type_parameter_modifiers, - STATE(8419), 1, - sym_type_parameter, - STATE(8522), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7328), 2, - anon_sym_in, - anon_sym_out, - STATE(7430), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6875), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, [128802] = 12, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8997), 1, + ACTIONS(9057), 1, anon_sym_AT, - ACTIONS(8999), 1, + ACTIONS(9059), 1, sym_reification_modifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7631), 1, + STATE(7757), 1, sym_type_parameter_modifiers, - STATE(8522), 1, - sym_simple_identifier, - STATE(8655), 1, + STATE(8531), 1, sym_type_parameter, + STATE(8572), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(7430), 2, + STATE(7431), 2, sym__single_annotation, sym__multi_annotation, - STATE(6875), 4, + STATE(6912), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563201,35 +563422,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128851] = 12, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8997), 1, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(8999), 1, - sym_reification_modifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7631), 1, - sym_type_parameter_modifiers, - STATE(8353), 1, - sym_type_parameter, - STATE(8522), 1, + STATE(7447), 1, + sym_parameter_modifiers, + STATE(8513), 1, + sym_parameter, + STATE(8863), 1, + sym__function_value_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, - anon_sym_in, - anon_sym_out, - STATE(7430), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6875), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + ACTIONS(87), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(6928), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563238,35 +563459,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128900] = 12, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8997), 1, + ACTIONS(9057), 1, anon_sym_AT, - ACTIONS(8999), 1, + ACTIONS(9059), 1, sym_reification_modifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7631), 1, + STATE(7757), 1, sym_type_parameter_modifiers, - STATE(8335), 1, - sym_type_parameter, - STATE(8522), 1, + STATE(8572), 1, sym_simple_identifier, + STATE(8579), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(7430), 2, + STATE(7431), 2, sym__single_annotation, sym__multi_annotation, - STATE(6875), 4, + STATE(6912), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563275,36 +563496,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [128949] = 12, - ACTIONS(9007), 1, - anon_sym_LBRACK, - ACTIONS(9011), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5632), 1, - sym_simple_identifier, - STATE(5648), 1, + ACTIONS(9053), 1, + anon_sym_LBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(5652), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(6842), 1, sym__simple_user_type, - STATE(5655), 1, + STATE(6937), 1, sym_user_type, - STATE(7014), 1, + STATE(6997), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9009), 2, + ACTIONS(9055), 2, anon_sym_get, anon_sym_set, - STATE(5657), 2, + STATE(5542), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9005), 5, + ACTIONS(8434), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(8973), 6, + ACTIONS(9003), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, @@ -563312,146 +563533,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_setparam, anon_sym_delegate, [128998] = 12, - ACTIONS(1750), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8969), 1, - anon_sym_LBRACK, - STATE(3593), 1, - sym_simple_identifier, - STATE(3789), 1, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, + sym_reification_modifier, + STATE(4522), 1, sym__lexical_identifier, - STATE(3866), 1, - sym__simple_user_type, - STATE(3913), 1, - sym_user_type, - STATE(6982), 1, - sym_use_site_target, + STATE(7757), 1, + sym_type_parameter_modifiers, + STATE(8572), 1, + sym_simple_identifier, + STATE(8893), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8971), 2, + ACTIONS(7343), 2, + anon_sym_in, + anon_sym_out, + STATE(7431), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6912), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - STATE(3968), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(1686), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(8973), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, [129047] = 12, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9001), 1, - anon_sym_LBRACK, - STATE(4533), 1, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, + sym_reification_modifier, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(7757), 1, + sym_type_parameter_modifiers, + STATE(8436), 1, + sym_type_parameter, + STATE(8572), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, - STATE(7019), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9003), 2, + ACTIONS(7343), 2, + anon_sym_in, + anon_sym_out, + STATE(7431), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6912), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - STATE(5544), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8384), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(8973), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, [129096] = 12, - ACTIONS(9015), 1, - anon_sym_LBRACK, - ACTIONS(9019), 1, - sym__backtick_identifier, - STATE(6965), 1, - sym_simple_identifier, - STATE(6986), 1, - sym_use_site_target, - STATE(6998), 1, - sym__lexical_identifier, - STATE(7017), 1, - sym__simple_user_type, - STATE(7057), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9017), 2, - anon_sym_get, - anon_sym_set, - STATE(7429), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9013), 5, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(8973), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [129145] = 12, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8997), 1, + ACTIONS(9057), 1, anon_sym_AT, - ACTIONS(8999), 1, + ACTIONS(9059), 1, sym_reification_modifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7631), 1, + STATE(7757), 1, sym_type_parameter_modifiers, - STATE(8522), 1, - sym_simple_identifier, - STATE(8551), 1, + STATE(8375), 1, sym_type_parameter, + STATE(8572), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - STATE(7430), 2, + STATE(7431), 2, sym__single_annotation, sym__multi_annotation, - STATE(6875), 4, + STATE(6912), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563459,71 +563643,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [129194] = 12, - ACTIONS(8398), 1, + [129145] = 12, + ACTIONS(1750), 1, sym__backtick_identifier, - ACTIONS(9021), 1, + ACTIONS(8999), 1, anon_sym_LBRACK, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5530), 1, + STATE(3668), 1, sym_simple_identifier, - STATE(5540), 1, + STATE(3710), 1, sym__simple_user_type, - STATE(5542), 1, + STATE(3751), 1, + sym__lexical_identifier, + STATE(3955), 1, sym_user_type, - STATE(6976), 1, + STATE(7002), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9023), 2, + ACTIONS(9001), 2, anon_sym_get, anon_sym_set, - STATE(5584), 2, + STATE(3980), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8384), 5, + ACTIONS(1686), 5, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(8973), 6, + ACTIONS(9003), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, + [129194] = 12, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, + sym_reification_modifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7757), 1, + sym_type_parameter_modifiers, + STATE(8365), 1, + sym_type_parameter, + STATE(8572), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7343), 2, + anon_sym_in, + anon_sym_out, + STATE(7431), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6912), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, [129243] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9569), 1, + STATE(9228), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563532,33 +563753,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129289] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9430), 1, + STATE(9214), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563567,33 +563788,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129335] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9270), 1, + STATE(9358), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563602,33 +563823,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129381] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9348), 1, + STATE(8998), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563637,33 +563858,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129427] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9492), 1, + STATE(9196), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563672,33 +563893,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129473] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9449), 1, + STATE(9353), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563707,33 +563928,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129519] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9266), 1, + STATE(9351), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563742,33 +563963,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129565] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9295), 1, + STATE(8951), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563777,33 +563998,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129611] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9256), 1, + STATE(9399), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563812,33 +564033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129657] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9293), 1, + STATE(9423), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563847,33 +564068,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129703] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9428), 1, + STATE(9409), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563882,33 +564103,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129749] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9498), 1, + STATE(9412), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563917,33 +564138,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129795] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9254), 1, + STATE(9427), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563952,33 +564173,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129841] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9284), 1, + STATE(9429), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563987,33 +564208,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129887] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9249), 1, + STATE(9269), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564022,33 +564243,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129933] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9471), 1, + STATE(9347), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564057,33 +564278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [129979] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9243), 1, + STATE(9251), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564092,33 +564313,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130025] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9281), 1, + STATE(9247), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564127,33 +564348,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130071] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9184), 1, + STATE(9446), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564162,33 +564383,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130117] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9575), 1, + STATE(9236), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564197,33 +564418,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130163] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9506), 1, + STATE(9233), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564232,33 +564453,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130209] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9566), 1, + STATE(9454), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564267,33 +564488,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130255] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9354), 1, + STATE(9575), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564302,33 +564523,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130301] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9515), 1, + STATE(9226), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564337,33 +564558,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130347] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9564), 1, + STATE(9002), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564372,33 +564593,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130393] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9550), 1, + STATE(9218), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564407,33 +564628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130439] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9548), 1, + STATE(9571), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564442,33 +564663,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130485] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9545), 1, + STATE(9388), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564477,33 +564698,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130531] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9543), 1, + STATE(9568), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564512,33 +564733,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130577] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9448), 1, + STATE(9205), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564547,33 +564768,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130623] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9539), 1, + STATE(9341), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564582,33 +564803,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130669] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9537), 1, + STATE(9201), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564617,33 +564838,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130715] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9535), 1, + STATE(9566), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564652,33 +564873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130761] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9532), 1, + STATE(9059), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564687,33 +564908,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130807] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9297), 1, + STATE(9553), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564722,33 +564943,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130853] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9311), 1, + STATE(9325), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564757,33 +564978,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130899] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9387), 1, + STATE(9114), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564792,33 +565013,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130945] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9048), 1, + STATE(9550), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564827,33 +565048,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [130991] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9044), 1, + STATE(9547), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564862,33 +565083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131037] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9390), 1, + STATE(8949), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564897,33 +565118,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131083] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9393), 1, + STATE(9015), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564932,33 +565153,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131129] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9396), 1, + STATE(9545), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564967,33 +565188,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131175] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9405), 1, + STATE(9538), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565002,33 +565223,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131221] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9412), 1, + STATE(9401), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565037,33 +565258,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131267] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9418), 1, + STATE(9397), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565072,33 +565293,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131313] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9424), 1, + STATE(9361), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565107,33 +565328,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131359] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9109), 1, + STATE(9535), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565142,33 +565363,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131405] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9404), 1, + STATE(9413), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565177,33 +565398,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131451] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9433), 1, + STATE(9531), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565212,33 +565433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131497] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9280), 1, + STATE(9528), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565247,33 +565468,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131543] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9435), 1, + STATE(9013), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565282,33 +565503,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131589] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9440), 1, + STATE(9010), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565317,33 +565538,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131635] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9443), 1, + STATE(9040), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565352,33 +565573,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131681] = 11, - ACTIONS(8398), 1, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7820), 1, + STATE(7769), 1, sym_parameter_modifiers, - STATE(8782), 1, + STATE(8621), 1, sym_simple_identifier, - STATE(9201), 1, + STATE(9393), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6927), 3, + STATE(6928), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565387,32 +565608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131727] = 12, - ACTIONS(533), 1, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3578), 2, + STATE(2919), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565421,33 +565642,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131773] = 13, - ACTIONS(281), 1, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(4488), 1, - sym__delegation_specifiers, - STATE(5128), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(5150), 1, + STATE(5128), 1, sym_function_type, - STATE(5280), 1, + STATE(5130), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(5138), 1, + sym__delegation_specifiers, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565456,33 +565677,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [131821] = 13, - ACTIONS(8906), 1, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(4581), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(4928), 1, sym_user_type, - STATE(7949), 1, + STATE(5096), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(7951), 1, + STATE(5130), 1, sym_delegation_specifier, - STATE(8349), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565490,34 +565711,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [131869] = 13, - ACTIONS(8924), 1, + [131869] = 11, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8940), 1, anon_sym_LPAREN, - STATE(4537), 1, + ACTIONS(9071), 1, + anon_sym_dynamic, + STATE(3287), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(5005), 1, - sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5126), 1, - sym__delegation_specifiers, - STATE(5137), 1, - sym_function_type, - STATE(9563), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8918), 7, + STATE(3558), 2, + sym_nullable_type, + sym_function_type, + STATE(3196), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565525,34 +565744,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [131917] = 13, - ACTIONS(8906), 1, + [131913] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(3487), 1, + sym__delegation_specifiers, + STATE(4098), 1, sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(7951), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(7981), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565560,34 +565779,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [131965] = 13, - ACTIONS(613), 1, + [131961] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(887), 1, + STATE(4807), 1, sym__delegation_specifiers, - STATE(1352), 1, + STATE(4812), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(4882), 1, sym_function_type, - STATE(9486), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565595,34 +565814,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132013] = 13, - ACTIONS(8906), 1, + [132009] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(7457), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(7949), 1, + STATE(3064), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(7980), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(2941), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565630,34 +565848,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132061] = 13, - ACTIONS(613), 1, + [132055] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(878), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(2942), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(3064), 1, sym_function_type, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3025), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565665,34 +565882,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132109] = 13, - ACTIONS(8924), 1, + [132101] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(5005), 1, - sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5092), 1, + STATE(4806), 1, sym__delegation_specifiers, - STATE(5137), 1, + STATE(4812), 1, + sym_user_type, + STATE(4882), 1, sym_function_type, - STATE(9563), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565700,34 +565917,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132157] = 13, - ACTIONS(613), 1, + [132149] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(877), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(2942), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(3064), 1, sym_function_type, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(2985), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565735,34 +565951,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132205] = 13, - ACTIONS(8906), 1, + [132195] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(881), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(7951), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(8344), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(1533), 1, + sym_function_type, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565770,34 +565986,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132253] = 13, - ACTIONS(8906), 1, + [132243] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(5109), 1, sym_user_type, - STATE(7949), 1, + STATE(5160), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(8376), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(4540), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565805,34 +566020,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132301] = 13, - ACTIONS(8924), 1, + [132289] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, - sym_simple_identifier, - STATE(4637), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5084), 1, - sym__delegation_specifiers, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5137), 1, + STATE(3064), 1, sym_function_type, - STATE(9563), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(2979), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565840,34 +566054,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132349] = 13, - ACTIONS(8924), 1, + [132335] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(5109), 1, sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5094), 1, - sym__delegation_specifiers, - STATE(5137), 1, + STATE(5160), 1, sym_function_type, - STATE(9563), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(4494), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565875,34 +566088,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132397] = 13, - ACTIONS(8924), 1, + [132381] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(855), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(901), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(5086), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(5109), 1, - sym__delegation_specifiers, - STATE(5137), 1, + STATE(1533), 1, sym_function_type, - STATE(9563), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565910,34 +566123,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132445] = 13, - ACTIONS(613), 1, + [132429] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(937), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(5109), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(5160), 1, sym_function_type, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4495), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565945,34 +566157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132493] = 13, - ACTIONS(8906), 1, + [132475] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(7580), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(7880), 1, sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(7951), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(7984), 1, + STATE(7950), 1, + sym_function_type, + STATE(8227), 1, sym__delegation_specifiers, - STATE(9337), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565980,34 +566192,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132541] = 13, - ACTIONS(8906), 1, + [132523] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(7457), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(7949), 1, + STATE(3064), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(7973), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(2968), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566015,34 +566226,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132589] = 13, - ACTIONS(8924), 1, + [132569] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(855), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(902), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(5086), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(5110), 1, - sym__delegation_specifiers, - STATE(5137), 1, + STATE(1533), 1, sym_function_type, - STATE(9563), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566050,34 +566261,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132637] = 13, - ACTIONS(8924), 1, + [132617] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, - sym_simple_identifier, - STATE(4637), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5124), 1, - sym__delegation_specifiers, - STATE(5137), 1, + STATE(3064), 1, sym_function_type, - STATE(9563), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(3059), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566085,34 +566295,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132685] = 13, - ACTIONS(613), 1, + [132663] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(924), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(2942), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(3064), 1, sym_function_type, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(2901), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566120,34 +566329,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132733] = 13, - ACTIONS(8924), 1, + [132709] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(855), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(943), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(5086), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(5131), 1, - sym__delegation_specifiers, - STATE(5137), 1, + STATE(1533), 1, sym_function_type, - STATE(9563), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566155,34 +566364,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132781] = 13, - ACTIONS(8924), 1, + [132757] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(855), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(916), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(5086), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(5137), 1, + STATE(1533), 1, sym_function_type, - STATE(5234), 1, - sym__delegation_specifiers, - STATE(9563), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566190,33 +566399,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132829] = 12, - ACTIONS(281), 1, + [132805] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4488), 2, + STATE(4493), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566224,34 +566433,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132875] = 13, - ACTIONS(8398), 1, + [132851] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(4790), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(5416), 1, sym_function_type, - STATE(8769), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566259,33 +566468,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132923] = 12, - ACTIONS(281), 1, + [132899] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4509), 2, + STATE(4540), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566293,33 +566502,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [132969] = 12, - ACTIONS(281), 1, + [132945] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4791), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5150), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4488), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566327,34 +566537,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133015] = 13, - ACTIONS(8924), 1, + [132993] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(5005), 1, - sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5115), 1, + STATE(4792), 1, sym__delegation_specifiers, - STATE(5137), 1, + STATE(5346), 1, + sym_user_type, + STATE(5416), 1, sym_function_type, - STATE(9563), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566362,33 +566572,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133063] = 12, - ACTIONS(281), 1, + [133041] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5150), 1, + STATE(3064), 1, sym_function_type, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4509), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566396,33 +566606,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133109] = 12, - ACTIONS(281), 1, + [133087] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4505), 2, + STATE(4474), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566430,22 +566640,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133155] = 12, - ACTIONS(281), 1, + [133133] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, @@ -566453,10 +566663,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(4478), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566464,34 +566674,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133201] = 13, - ACTIONS(8924), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, + [133179] = 11, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4537), 1, + ACTIONS(8952), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_dynamic, + STATE(8043), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(8166), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(8250), 1, sym__simple_user_type, - STATE(5005), 1, - sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5089), 1, - sym__delegation_specifiers, - STATE(5137), 1, - sym_function_type, - STATE(9563), 1, + STATE(9195), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8918), 7, + STATE(7633), 2, + sym_nullable_type, + sym_function_type, + STATE(8451), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566499,34 +566707,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133249] = 13, - ACTIONS(8924), 1, + [133223] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, - sym_simple_identifier, - STATE(4637), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5085), 1, - sym__delegation_specifiers, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5137), 1, + STATE(3064), 1, sym_function_type, - STATE(9563), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(2913), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566534,34 +566741,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133297] = 13, - ACTIONS(8924), 1, + [133269] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(7580), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(7880), 1, sym_user_type, - STATE(5086), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(5137), 1, + STATE(7950), 1, sym_function_type, - STATE(5256), 1, + STATE(7973), 1, sym__delegation_specifiers, - STATE(9563), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566569,33 +566776,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133345] = 12, - ACTIONS(281), 1, + [133317] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4507), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4794), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(4529), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4481), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566603,33 +566811,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133391] = 12, - ACTIONS(281), 1, + [133365] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4511), 2, + STATE(4507), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566637,34 +566845,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133437] = 13, - ACTIONS(8924), 1, + [133411] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(4480), 1, sym_user_type, - STATE(5086), 1, - sym_delegation_specifier, - STATE(5111), 1, - sym__delegation_specifiers, - STATE(5137), 1, + STATE(4563), 1, sym_function_type, - STATE(9563), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(4560), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566672,33 +566879,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133485] = 12, - ACTIONS(281), 1, + [133457] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4507), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(4529), 1, + STATE(3064), 1, sym_function_type, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4487), 2, + STATE(2914), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566706,33 +566913,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133531] = 12, - ACTIONS(281), 1, + [133503] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4492), 2, + STATE(4494), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566740,33 +566947,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133577] = 12, - ACTIONS(281), 1, + [133549] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(5128), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(5150), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4505), 2, + STATE(4500), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566774,33 +566981,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133623] = 12, - ACTIONS(281), 1, + [133595] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4495), 2, + STATE(4491), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566808,33 +567015,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133669] = 12, - ACTIONS(281), 1, + [133641] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4500), 2, + STATE(4484), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566842,33 +567049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133715] = 12, - ACTIONS(281), 1, + [133687] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4477), 2, + STATE(4495), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566876,34 +567083,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133761] = 13, - ACTIONS(613), 1, + [133733] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(943), 1, + STATE(4796), 1, sym__delegation_specifiers, - STATE(1352), 1, + STATE(5346), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(5416), 1, sym_function_type, - STATE(9486), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566911,33 +567118,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133809] = 12, - ACTIONS(281), 1, + [133781] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4503), 2, + STATE(4504), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566945,33 +567152,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133855] = 12, - ACTIONS(281), 1, + [133827] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4474), 2, + STATE(4508), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566979,33 +567186,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133901] = 12, - ACTIONS(281), 1, + [133873] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(5128), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(5150), 1, + STATE(4563), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4478), 2, + STATE(4492), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567013,33 +567220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133947] = 12, - ACTIONS(281), 1, + [133919] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4507), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4797), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(4529), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4485), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567047,34 +567255,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [133993] = 13, - ACTIONS(613), 1, + [133967] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(892), 1, + STATE(4799), 1, sym__delegation_specifiers, - STATE(1352), 1, + STATE(5346), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(5416), 1, sym_function_type, - STATE(9486), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567082,33 +567290,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134041] = 12, - ACTIONS(281), 1, + [134015] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4800), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5150), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4481), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567116,33 +567325,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134087] = 12, - ACTIONS(281), 1, + [134063] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4860), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5150), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4511), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567150,33 +567360,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134133] = 12, - ACTIONS(281), 1, + [134111] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4803), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5150), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4487), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567184,33 +567395,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134179] = 12, - ACTIONS(281), 1, + [134159] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5150), 1, + STATE(3064), 1, sym_function_type, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4492), 2, + STATE(2923), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567218,34 +567429,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134225] = 13, - ACTIONS(8906), 1, + [134205] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(919), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(7951), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(8186), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(1533), 1, + sym_function_type, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567253,34 +567464,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134273] = 13, - ACTIONS(107), 1, + [134253] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(4796), 1, - sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(3064), 1, sym_function_type, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(2931), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567288,33 +567498,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134321] = 12, - ACTIONS(281), 1, + [134299] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4806), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5150), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4495), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567322,33 +567533,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134367] = 12, - ACTIONS(281), 1, + [134347] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(5150), 1, + STATE(5122), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(9309), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4500), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567356,33 +567568,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134413] = 12, - ACTIONS(281), 1, + [134395] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4807), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5150), 1, + STATE(5416), 1, sym_function_type, - STATE(9309), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4477), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567390,33 +567603,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134459] = 12, - ACTIONS(281), 1, + [134443] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5150), 1, + STATE(3064), 1, sym_function_type, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4503), 2, + STATE(2934), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567424,33 +567637,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134505] = 12, - ACTIONS(281), 1, + [134489] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(5128), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(5109), 1, sym_user_type, - STATE(5150), 1, + STATE(5160), 1, sym_function_type, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4474), 2, + STATE(4500), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567458,34 +567671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134551] = 13, - ACTIONS(281), 1, + [134535] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4488), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4493), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567493,34 +567706,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134599] = 13, - ACTIONS(8398), 1, + [134583] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(4872), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(5416), 1, sym_function_type, - STATE(8725), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567528,34 +567741,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134647] = 13, - ACTIONS(281), 1, + [134631] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4509), 1, + STATE(4540), 1, sym__delegation_specifiers, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567563,33 +567776,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134695] = 12, - ACTIONS(281), 1, + [134679] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(5128), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(5150), 1, + STATE(3064), 1, sym_function_type, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4485), 2, + STATE(2951), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4585), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567597,30 +567810,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134741] = 12, + [134725] = 13, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4811), 1, + sym__delegation_specifiers, + STATE(5346), 1, sym_user_type, - STATE(5439), 1, + STATE(5416), 1, sym_function_type, - STATE(9181), 1, + STATE(5451), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4808), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(7), 7, @@ -567631,33 +567845,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134787] = 12, - ACTIONS(107), 1, + [134773] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(4478), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(5439), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4825), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567665,33 +567880,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134833] = 12, - ACTIONS(107), 1, + [134821] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(927), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(5439), 1, + STATE(1497), 1, + sym_delegation_specifier, + STATE(1533), 1, sym_function_type, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4818), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567699,33 +567915,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134879] = 12, - ACTIONS(107), 1, + [134869] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(2989), 1, sym_user_type, - STATE(5439), 1, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4819), 2, + STATE(2971), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567733,34 +567949,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134925] = 13, - ACTIONS(281), 1, + [134915] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4505), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4474), 1, sym__delegation_specifiers, - STATE(4507), 1, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567768,34 +567984,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [134973] = 13, - ACTIONS(281), 1, + [134963] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, + STATE(4463), 1, + sym__simple_user_type, STATE(4478), 1, sym__delegation_specifiers, - STATE(4507), 1, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567803,33 +568019,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135021] = 12, - ACTIONS(107), 1, + [135011] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3575), 1, + sym__delegation_specifiers, + STATE(4098), 1, sym_user_type, - STATE(5439), 1, + STATE(4121), 1, + sym_delegation_specifier, + STATE(4161), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4803), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567837,34 +568054,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135067] = 13, - ACTIONS(8398), 1, + [135059] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(2989), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3006), 1, sym_function_type, - STATE(8880), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3035), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567872,33 +568088,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135115] = 12, - ACTIONS(107), 1, + [135105] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(2989), 1, sym_user_type, - STATE(5439), 1, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4799), 2, + STATE(2948), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567906,33 +568122,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135161] = 12, - ACTIONS(107), 1, + [135151] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(885), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(5439), 1, + STATE(1497), 1, + sym_delegation_specifier, + STATE(1533), 1, sym_function_type, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4765), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567940,33 +568157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135207] = 12, - ACTIONS(107), 1, + [135199] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(5439), 1, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, sym_function_type, - STATE(9181), 1, + STATE(7986), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4758), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567974,33 +568192,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135253] = 12, - ACTIONS(107), 1, + [135247] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(2989), 1, sym_user_type, - STATE(5439), 1, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(2946), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568008,34 +568226,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135299] = 13, - ACTIONS(281), 1, + [135293] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4481), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4507), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568043,34 +568261,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135347] = 13, - ACTIONS(281), 1, + [135341] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4511), 1, + STATE(4560), 1, sym__delegation_specifiers, - STATE(4529), 1, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568078,33 +568296,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135395] = 12, - ACTIONS(107), 1, + [135389] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(5439), 1, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9181), 1, + STATE(8334), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4798), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568112,33 +568331,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135441] = 12, - ACTIONS(107), 1, + [135437] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(2989), 1, sym_user_type, - STATE(5439), 1, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4824), 2, + STATE(2930), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568146,34 +568365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135487] = 13, - ACTIONS(281), 1, + [135483] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4487), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4494), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568181,34 +568400,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135535] = 13, - ACTIONS(281), 1, + [135531] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4492), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4500), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568216,34 +568435,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135583] = 13, - ACTIONS(613), 1, + [135579] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(1027), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(3962), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(3969), 1, sym_function_type, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(2941), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568251,33 +568469,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135631] = 12, - ACTIONS(107), 1, + [135625] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(2989), 1, sym_user_type, - STATE(5439), 1, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4822), 2, + STATE(3086), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568285,33 +568503,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135677] = 12, - ACTIONS(195), 1, + [135671] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2923), 1, + sym__delegation_specifiers, + STATE(3962), 1, sym_user_type, - STATE(4000), 1, + STATE(3969), 1, sym_function_type, - STATE(9504), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2972), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568319,63 +568538,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135723] = 7, - ACTIONS(9027), 1, - anon_sym_LBRACK, - STATE(7345), 1, - sym__member_access_operator, + [135719] = 12, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, + sym_user_type, + STATE(3969), 1, + sym_function_type, + STATE(9050), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9032), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9035), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(6534), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9030), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [135759] = 13, - ACTIONS(281), 1, + STATE(3025), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [135765] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4495), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4491), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568383,34 +568607,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135807] = 13, - ACTIONS(281), 1, + [135813] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4500), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4484), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568418,33 +568642,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135855] = 12, - ACTIONS(107), 1, + [135861] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5361), 1, + STATE(4492), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(5439), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4886), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568452,34 +568677,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135901] = 13, - ACTIONS(281), 1, + [135909] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4477), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4495), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568487,34 +568712,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135949] = 13, - ACTIONS(8398), 1, + [135957] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(2989), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3006), 1, sym_function_type, - STATE(8935), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(2920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568522,33 +568746,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [135997] = 12, - ACTIONS(195), 1, + [136003] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(3922), 1, + STATE(2989), 1, sym_user_type, - STATE(4000), 1, + STATE(3006), 1, sym_function_type, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3063), 2, + STATE(2919), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568556,34 +568780,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136043] = 13, - ACTIONS(281), 1, + [136049] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4503), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4504), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568591,34 +568815,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136091] = 13, - ACTIONS(281), 1, + [136097] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4474), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4480), 1, sym_user_type, - STATE(4529), 1, + STATE(4508), 1, + sym__delegation_specifiers, + STATE(4563), 1, sym_function_type, - STATE(4770), 1, + STATE(4782), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568626,33 +568850,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136139] = 12, - ACTIONS(107), 1, + [136145] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(7580), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(7880), 1, + sym_user_type, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, + sym_function_type, + STATE(7981), 1, + sym__delegation_specifiers, + STATE(9390), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8058), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8928), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [136193] = 12, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(2878), 1, sym_simple_identifier, - STATE(5361), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2989), 1, sym_user_type, - STATE(5439), 1, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4796), 2, + STATE(2910), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568660,34 +568919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136185] = 13, - ACTIONS(8398), 1, + [136239] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(2989), 1, sym_user_type, - STATE(7994), 1, - sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3006), 1, sym_function_type, - STATE(9202), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(2909), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568695,31 +568953,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136233] = 13, + [136285] = 12, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(894), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(2989), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(3006), 1, sym_function_type, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(2905), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(537), 7, @@ -568730,34 +568987,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136281] = 13, - ACTIONS(8398), 1, + [136331] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(4480), 1, sym_user_type, - STATE(8027), 1, + STATE(4492), 1, sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(4563), 1, sym_function_type, - STATE(9202), 1, + STATE(4782), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568765,34 +569022,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136329] = 13, - ACTIONS(281), 1, + [136379] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(4485), 1, - sym__delegation_specifiers, - STATE(4507), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4529), 1, - sym_function_type, - STATE(4770), 1, + STATE(8117), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(8123), 1, + sym_function_type, + STATE(8929), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568800,34 +569057,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136377] = 13, - ACTIONS(8906), 1, + [136427] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(1012), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(7951), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(7986), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(1533), 1, + sym_function_type, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568835,34 +569092,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136425] = 13, - ACTIONS(8906), 1, + [136475] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(2989), 1, sym_user_type, - STATE(7949), 1, + STATE(3006), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(7988), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(2912), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568870,67 +569126,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136473] = 11, - ACTIONS(8398), 1, + [136521] = 11, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(8752), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9038), 1, + ACTIONS(9075), 1, anon_sym_dynamic, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(7618), 1, + STATE(5434), 1, + sym__lexical_identifier, + STATE(5601), 1, sym__simple_user_type, - STATE(9397), 1, + STATE(9336), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7699), 2, + STATE(5630), 2, sym_nullable_type, sym_function_type, - STATE(5547), 3, + STATE(5544), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [136517] = 13, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(7692), 1, - sym__simple_user_type, - STATE(7927), 1, - sym_user_type, - STATE(8028), 1, - sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, - sym_function_type, - STATE(9202), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8231), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568939,33 +569160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [136565] = 13, - ACTIONS(8906), 1, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(4803), 1, + sym__delegation_specifiers, + STATE(4812), 1, sym_user_type, - STATE(7949), 1, + STATE(4882), 1, sym_function_type, - STATE(7951), 1, + STATE(4883), 1, sym_delegation_specifier, - STATE(7957), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568973,34 +569194,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136613] = 13, - ACTIONS(8906), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, + [136613] = 11, + ACTIONS(8930), 1, anon_sym_LPAREN, - STATE(5536), 1, + ACTIONS(8934), 1, + sym__backtick_identifier, + ACTIONS(9077), 1, + anon_sym_dynamic, + STATE(5534), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(7580), 1, sym__simple_user_type, - STATE(7888), 1, - sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(7950), 1, - sym__delegation_specifiers, - STATE(7951), 1, - sym_delegation_specifier, - STATE(9337), 1, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8900), 7, + STATE(5602), 2, + sym_nullable_type, + sym_function_type, + STATE(5581), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569008,34 +569227,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136661] = 13, - ACTIONS(281), 1, + [136657] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4509), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(897), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(1377), 1, sym_user_type, - STATE(5150), 1, - sym_function_type, - STATE(5280), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(1533), 1, + sym_function_type, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569043,34 +569262,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136709] = 13, - ACTIONS(8906), 1, + [136705] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, - sym__lexical_identifier, - STATE(5537), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(2989), 1, sym_user_type, - STATE(7949), 1, + STATE(3006), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(7961), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(2915), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569078,34 +569296,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136757] = 13, - ACTIONS(8398), 1, + [136751] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(4812), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, - sym_function_type, - STATE(8634), 1, + STATE(4860), 1, sym__delegation_specifiers, - STATE(9202), 1, + STATE(4882), 1, + sym_function_type, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569113,30 +569331,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136805] = 12, + [136799] = 12, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(2989), 1, sym_user_type, - STATE(1508), 1, + STATE(3006), 1, sym_function_type, - STATE(9486), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(949), 2, + STATE(2921), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(537), 7, @@ -569147,34 +569365,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136851] = 13, - ACTIONS(8398), 1, + [136845] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(3516), 1, sym_user_type, - STATE(8035), 1, - sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3572), 1, sym_function_type, - STATE(9202), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3520), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569182,34 +569399,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136899] = 13, - ACTIONS(8398), 1, + [136891] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, - sym_user_type, - STATE(8038), 1, + STATE(3490), 1, sym__delegation_specifiers, - STATE(8081), 1, + STATE(4098), 1, + sym_user_type, + STATE(4121), 1, sym_delegation_specifier, - STATE(8097), 1, + STATE(4161), 1, sym_function_type, - STATE(9202), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569217,34 +569434,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136947] = 13, - ACTIONS(8398), 1, + [136939] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(3516), 1, sym_user_type, - STATE(8041), 1, - sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3572), 1, sym_function_type, - STATE(9202), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3575), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569252,34 +569468,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [136995] = 13, - ACTIONS(8398), 1, + [136985] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(3516), 1, sym_user_type, - STATE(8067), 1, - sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3572), 1, sym_function_type, - STATE(9202), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3508), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569287,34 +569502,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137043] = 13, - ACTIONS(8398), 1, + [137031] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(3516), 1, sym_user_type, - STATE(8074), 1, - sym__delegation_specifiers, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3572), 1, sym_function_type, - STATE(9202), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3510), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569322,34 +569536,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137091] = 13, - ACTIONS(8398), 1, + [137077] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(7629), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(7936), 1, sym_user_type, - STATE(8081), 1, + STATE(8101), 1, + sym__delegation_specifiers, + STATE(8117), 1, sym_delegation_specifier, - STATE(8097), 1, + STATE(8123), 1, sym_function_type, - STATE(8452), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569357,34 +569571,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137139] = 13, - ACTIONS(8398), 1, + [137125] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(3516), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(3572), 1, sym_function_type, - STATE(8105), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3487), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569392,34 +569605,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137187] = 13, - ACTIONS(281), 1, + [137171] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4505), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4800), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(4812), 1, sym_user_type, - STATE(5150), 1, + STATE(4882), 1, sym_function_type, - STATE(5280), 1, + STATE(4883), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569427,34 +569640,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137235] = 13, - ACTIONS(107), 1, + [137219] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4796), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(934), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(1377), 1, sym_user_type, - STATE(5405), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(5439), 1, + STATE(1533), 1, sym_function_type, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569462,32 +569675,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137283] = 11, - ACTIONS(107), 1, + [137267] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8894), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9040), 1, - anon_sym_dynamic, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(9181), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2914), 1, + sym__delegation_specifiers, + STATE(3962), 1, + sym_user_type, + STATE(3969), 1, + sym_function_type, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4864), 2, - sym_nullable_type, - sym_function_type, - STATE(4731), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(7), 7, + STATE(3421), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569495,34 +569710,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137327] = 13, - ACTIONS(107), 1, + [137315] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4886), 1, + STATE(4508), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(5109), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569530,34 +569745,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137375] = 13, - ACTIONS(281), 1, + [137363] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4478), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(919), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(940), 1, sym_user_type, - STATE(5150), 1, + STATE(954), 1, sym_function_type, - STATE(5280), 1, + STATE(981), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569565,34 +569780,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137423] = 13, - ACTIONS(107), 1, + [137411] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4822), 1, - sym__delegation_specifiers, - STATE(5361), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3570), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569600,34 +569814,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137471] = 13, - ACTIONS(107), 1, + [137457] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4824), 1, + STATE(4504), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(5109), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569635,34 +569849,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137519] = 13, - ACTIONS(107), 1, + [137505] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2931), 1, + sym__delegation_specifiers, + STATE(3962), 1, sym_user_type, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(3969), 1, sym_function_type, - STATE(4886), 1, - sym__delegation_specifiers, - STATE(9181), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569670,34 +569884,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137567] = 13, - ACTIONS(107), 1, + [137553] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4798), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(916), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(940), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(954), 1, sym_function_type, - STATE(9181), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569705,34 +569919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137615] = 13, - ACTIONS(107), 1, + [137601] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4860), 1, - sym__delegation_specifiers, - STATE(5361), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3490), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569740,34 +569953,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137663] = 13, - ACTIONS(107), 1, + [137647] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4758), 1, - sym__delegation_specifiers, - STATE(5361), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(943), 1, + sym__delegation_specifiers, + STATE(954), 1, sym_function_type, - STATE(9181), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569775,34 +569988,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137711] = 13, - ACTIONS(107), 1, + [137695] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4765), 1, - sym__delegation_specifiers, - STATE(5361), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3491), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569810,34 +570022,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137759] = 13, - ACTIONS(107), 1, + [137741] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4799), 1, + STATE(4495), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(5109), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569845,34 +570057,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137807] = 13, - ACTIONS(107), 1, + [137789] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(4822), 1, - sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3493), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569880,33 +570091,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137855] = 12, - ACTIONS(613), 1, + [137835] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(3516), 1, sym_user_type, - STATE(1508), 1, + STATE(3572), 1, sym_function_type, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(887), 2, + STATE(3494), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569914,34 +570125,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137901] = 13, - ACTIONS(107), 1, + [137881] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(4824), 1, - sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(5128), 1, sym_function_type, - STATE(9181), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(5208), 1, + sym__delegation_specifiers, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569949,34 +570160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137949] = 13, - ACTIONS(107), 1, + [137929] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4803), 1, - sym__delegation_specifiers, - STATE(5361), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3513), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569984,33 +570194,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [137997] = 12, - ACTIONS(195), 1, + [137975] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(4000), 1, + STATE(3572), 1, sym_function_type, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2912), 2, + STATE(3525), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570018,33 +570228,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138043] = 12, - ACTIONS(613), 1, + [138021] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(902), 1, + sym__delegation_specifiers, + STATE(940), 1, sym_user_type, - STATE(1508), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(878), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570052,34 +570263,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138089] = 13, - ACTIONS(107), 1, + [138069] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4819), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2941), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(3962), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3969), 1, sym_function_type, - STATE(9181), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570087,33 +570298,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138137] = 12, - ACTIONS(613), 1, + [138117] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(7629), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(7936), 1, sym_user_type, - STATE(1508), 1, + STATE(8067), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9486), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(877), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570121,33 +570333,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138183] = 12, - ACTIONS(613), 1, + [138165] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(3516), 1, sym_user_type, - STATE(1508), 1, + STATE(3572), 1, sym_function_type, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(937), 2, + STATE(3528), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570155,33 +570367,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138229] = 12, - ACTIONS(613), 1, + [138211] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(1352), 1, + STATE(2934), 1, + sym__delegation_specifiers, + STATE(3962), 1, sym_user_type, - STATE(1508), 1, + STATE(3969), 1, sym_function_type, - STATE(9486), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(924), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570189,34 +570402,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138275] = 13, - ACTIONS(107), 1, + [138259] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4785), 1, - sym_user_type, - STATE(4798), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(901), 1, sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(940), 1, + sym_user_type, + STATE(954), 1, sym_function_type, - STATE(9181), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570224,34 +570437,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138323] = 13, - ACTIONS(613), 1, + [138307] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4566), 1, + sym_simple_identifier, + STATE(4581), 1, sym__simple_user_type, - STATE(885), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(4928), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(5128), 1, sym_function_type, - STATE(9486), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(5137), 1, + sym__delegation_specifiers, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570259,34 +570472,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138371] = 13, - ACTIONS(107), 1, + [138355] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4818), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2913), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(3962), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3969), 1, sym_function_type, - STATE(9181), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570294,34 +570507,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138419] = 13, - ACTIONS(107), 1, + [138403] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4860), 1, - sym__delegation_specifiers, - STATE(4866), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3544), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570329,33 +570541,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138467] = 12, - ACTIONS(195), 1, + [138449] = 11, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8956), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + ACTIONS(9079), 1, + anon_sym_dynamic, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3922), 1, - sym_user_type, - STATE(4000), 1, - sym_function_type, - STATE(9504), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2990), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(111), 7, + STATE(3091), 2, + sym_nullable_type, + sym_function_type, + STATE(2839), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570363,34 +570574,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138513] = 13, - ACTIONS(613), 1, + [138493] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(891), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(5109), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(5160), 1, sym_function_type, - STATE(9486), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4504), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570398,33 +570608,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138561] = 12, - ACTIONS(613), 1, + [138539] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(7580), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(7880), 1, sym_user_type, - STATE(1508), 1, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, sym_function_type, - STATE(9486), 1, + STATE(8540), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(936), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570432,34 +570643,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138607] = 13, - ACTIONS(107), 1, + [138587] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4825), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2951), 1, sym__delegation_specifiers, - STATE(5361), 1, + STATE(3962), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(3969), 1, sym_function_type, - STATE(9181), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570467,34 +570678,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138655] = 13, - ACTIONS(107), 1, + [138635] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4808), 1, - sym__delegation_specifiers, - STATE(5361), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, sym_user_type, - STATE(5405), 1, - sym_delegation_specifier, - STATE(5439), 1, + STATE(954), 1, sym_function_type, - STATE(9181), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(892), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570502,34 +570712,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138703] = 13, - ACTIONS(8398), 1, + [138681] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(940), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(954), 1, sym_function_type, - STATE(8110), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(993), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570537,34 +570746,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138751] = 13, - ACTIONS(8398), 1, + [138727] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(881), 1, + sym__delegation_specifiers, + STATE(940), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(954), 1, sym_function_type, - STATE(8107), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570572,33 +570781,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138799] = 12, - ACTIONS(613), 1, + [138775] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(7629), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(7936), 1, sym_user_type, - STATE(1508), 1, + STATE(8073), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9486), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(892), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570606,33 +570816,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138845] = 12, - ACTIONS(613), 1, + [138823] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(940), 1, sym_user_type, - STATE(1508), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1027), 2, + STATE(913), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570640,33 +570850,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138891] = 12, - ACTIONS(613), 1, + [138869] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(885), 1, + sym__delegation_specifiers, + STATE(940), 1, sym_user_type, - STATE(1508), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(894), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570674,34 +570885,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138937] = 13, - ACTIONS(107), 1, + [138917] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4758), 1, - sym__delegation_specifiers, - STATE(4785), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, sym_user_type, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(954), 1, sym_function_type, - STATE(9181), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(1012), 1, + sym__delegation_specifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570709,34 +570920,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138985] = 13, - ACTIONS(281), 1, + [138965] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4481), 1, - sym__delegation_specifiers, - STATE(5128), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, sym_user_type, - STATE(5150), 1, + STATE(954), 1, sym_function_type, - STATE(5280), 1, - sym_delegation_specifier, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(934), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570744,34 +570954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139033] = 13, - ACTIONS(281), 1, + [139011] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4511), 1, - sym__delegation_specifiers, - STATE(5128), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, sym_user_type, - STATE(5150), 1, + STATE(954), 1, sym_function_type, - STATE(5280), 1, - sym_delegation_specifier, - STATE(9309), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(897), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570779,34 +570988,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139081] = 13, - ACTIONS(107), 1, + [139057] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4765), 1, - sym__delegation_specifiers, - STATE(4785), 1, + STATE(5109), 1, sym_user_type, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(4508), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570814,34 +571022,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139129] = 13, - ACTIONS(8906), 1, + [139103] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(940), 1, sym_user_type, - STATE(7949), 1, + STATE(954), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(8342), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(1012), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570849,34 +571056,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139177] = 13, - ACTIONS(8398), 1, + [139149] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(940), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, + STATE(954), 1, sym_function_type, - STATE(8483), 1, - sym__delegation_specifiers, - STATE(9202), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(885), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570884,32 +571090,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139225] = 11, - ACTIONS(8847), 1, + [139195] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8930), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9038), 1, - anon_sym_dynamic, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5601), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(9419), 1, + STATE(897), 1, + sym__delegation_specifiers, + STATE(940), 1, + sym_user_type, + STATE(954), 1, + sym_function_type, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5638), 2, - sym_nullable_type, - sym_function_type, - STATE(5547), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8843), 7, + STATE(1112), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570917,63 +571125,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139269] = 7, - ACTIONS(6399), 1, - anon_sym_LBRACK, - STATE(7345), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(6423), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9044), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(6534), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9042), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [139305] = 13, - ACTIONS(8398), 1, + [139243] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(855), 1, sym__simple_user_type, - STATE(7927), 1, - sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8087), 1, + STATE(934), 1, sym__delegation_specifiers, - STATE(8097), 1, + STATE(940), 1, + sym_user_type, + STATE(954), 1, sym_function_type, - STATE(9202), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570981,33 +571160,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139353] = 12, - ACTIONS(613), 1, + [139291] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(913), 1, + sym__delegation_specifiers, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(887), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571015,33 +571195,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139399] = 12, - ACTIONS(613), 1, + [139339] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(878), 2, + STATE(881), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571049,32 +571229,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139445] = 11, - ACTIONS(8398), 1, + [139385] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(8752), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9038), 1, - anon_sym_dynamic, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(845), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(855), 1, sym__simple_user_type, - STATE(9202), 1, + STATE(940), 1, + sym_user_type, + STATE(954), 1, + sym_function_type, + STATE(981), 1, + sym_delegation_specifier, + STATE(993), 1, + sym__delegation_specifiers, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7699), 2, - sym_nullable_type, - sym_function_type, - STATE(5547), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8384), 7, + STATE(1112), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571082,32 +571264,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139489] = 11, - ACTIONS(613), 1, + [139433] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(8890), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9046), 1, - anon_sym_dynamic, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(9486), 1, + STATE(4484), 1, + sym__delegation_specifiers, + STATE(5109), 1, + sym_user_type, + STATE(5160), 1, + sym_function_type, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1005), 2, - sym_nullable_type, - sym_function_type, - STATE(847), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(537), 7, + STATE(4662), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571115,33 +571299,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139533] = 12, - ACTIONS(613), 1, + [139481] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4491), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(1018), 1, + STATE(5160), 1, sym_function_type, - STATE(9486), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(877), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571149,33 +571334,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139579] = 12, - ACTIONS(613), 1, + [139529] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(937), 2, + STATE(901), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571183,33 +571368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139625] = 12, - ACTIONS(613), 1, + [139575] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(924), 2, + STATE(902), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571217,33 +571402,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139671] = 12, - ACTIONS(613), 1, + [139621] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(936), 2, + STATE(943), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571251,33 +571436,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139717] = 12, - ACTIONS(613), 1, + [139667] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(943), 2, + STATE(916), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571285,33 +571470,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139763] = 12, - ACTIONS(613), 1, + [139713] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4500), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(1018), 1, + STATE(5160), 1, sym_function_type, - STATE(9486), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(892), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571319,33 +571505,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139809] = 12, - ACTIONS(195), 1, + [139761] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, sym_user_type, - STATE(4000), 1, + STATE(954), 1, sym_function_type, - STATE(9504), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2956), 2, + STATE(919), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571353,33 +571539,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139855] = 12, - ACTIONS(613), 1, + [139807] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(4494), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(1508), 1, + STATE(5160), 1, sym_function_type, - STATE(9486), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(885), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571387,33 +571574,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139901] = 12, - ACTIONS(195), 1, + [139855] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(892), 1, + sym__delegation_specifiers, + STATE(940), 1, sym_user_type, - STATE(4000), 1, + STATE(954), 1, sym_function_type, - STATE(9504), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3084), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571421,33 +571609,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139947] = 12, - ACTIONS(613), 1, + [139903] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(940), 1, sym_user_type, - STATE(1018), 1, + STATE(954), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1027), 2, + STATE(927), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571455,33 +571643,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [139993] = 12, - ACTIONS(613), 1, + [139949] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(3491), 1, + sym__delegation_specifiers, + STATE(4098), 1, sym_user_type, - STATE(1508), 1, + STATE(4121), 1, + sym_delegation_specifier, + STATE(4161), 1, sym_function_type, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(891), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571489,33 +571678,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140039] = 12, - ACTIONS(613), 1, + [139997] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(843), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4560), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(1018), 1, + STATE(5160), 1, sym_function_type, - STATE(9486), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(894), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571523,34 +571713,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140085] = 13, - ACTIONS(281), 1, + [140045] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4487), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4507), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(5109), 1, sym_user_type, - STATE(5150), 1, + STATE(5160), 1, sym_function_type, - STATE(5280), 1, + STATE(5357), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571558,33 +571748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140133] = 12, - ACTIONS(613), 1, + [140093] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(896), 1, + STATE(2901), 1, + sym__delegation_specifiers, + STATE(3962), 1, sym_user_type, - STATE(1018), 1, + STATE(3969), 1, sym_function_type, - STATE(9486), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(885), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571592,33 +571783,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140179] = 12, - ACTIONS(613), 1, + [140141] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4566), 1, + sym_simple_identifier, + STATE(4581), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4928), 1, sym_user_type, - STATE(1018), 1, + STATE(5097), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(9486), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(891), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571626,30 +571818,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140225] = 12, + [140189] = 13, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(896), 1, + STATE(2921), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(1018), 1, + STATE(3972), 1, sym_function_type, - STATE(9486), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(949), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(537), 7, @@ -571660,30 +571853,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140271] = 12, + [140237] = 13, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(896), 1, + STATE(2915), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(1018), 1, + STATE(3972), 1, sym_function_type, - STATE(9486), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(939), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(537), 7, @@ -571694,34 +571888,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140317] = 13, - ACTIONS(281), 1, + [140285] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(4492), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, + sym_user_type, + STATE(5123), 1, sym__delegation_specifiers, STATE(5128), 1, - sym_user_type, - STATE(5150), 1, sym_function_type, - STATE(5280), 1, + STATE(5130), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571729,33 +571923,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140365] = 12, - ACTIONS(613), 1, + [140333] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(7629), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(7936), 1, sym_user_type, - STATE(1508), 1, + STATE(8081), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9486), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(943), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571763,34 +571958,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140411] = 13, - ACTIONS(281), 1, + [140381] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(4495), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2912), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(3940), 1, sym_user_type, - STATE(5150), 1, + STATE(3972), 1, sym_function_type, - STATE(5280), 1, + STATE(4036), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571798,33 +571993,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140459] = 12, - ACTIONS(533), 1, + [140429] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2905), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3495), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571832,33 +572028,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140505] = 12, - ACTIONS(195), 1, + [140477] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4000), 1, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9504), 1, + STATE(8862), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2932), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571866,33 +572063,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140551] = 12, - ACTIONS(533), 1, + [140525] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(927), 1, + sym__delegation_specifiers, + STATE(940), 1, sym_user_type, - STATE(3659), 1, + STATE(954), 1, sym_function_type, - STATE(9488), 1, + STATE(981), 1, + sym_delegation_specifier, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3503), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571900,33 +572098,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140597] = 12, - ACTIONS(533), 1, + [140573] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2904), 1, + sym__delegation_specifiers, + STATE(3962), 1, sym_user_type, - STATE(3659), 1, + STATE(3969), 1, sym_function_type, - STATE(9488), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3489), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571934,33 +572133,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140643] = 12, - ACTIONS(195), 1, + [140621] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4000), 1, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9504), 1, + STATE(8374), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2926), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571968,33 +572168,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140689] = 12, - ACTIONS(533), 1, + [140669] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2971), 1, + sym__delegation_specifiers, + STATE(2989), 1, sym_user_type, - STATE(3659), 1, + STATE(3006), 1, sym_function_type, - STATE(9488), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3488), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572002,34 +572203,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140735] = 13, - ACTIONS(281), 1, + [140717] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, + STATE(4455), 1, + sym_simple_identifier, STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4500), 1, + STATE(4463), 1, + sym__simple_user_type, + STATE(4474), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(5109), 1, sym_user_type, - STATE(5150), 1, + STATE(5160), 1, sym_function_type, - STATE(5280), 1, + STATE(5357), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572037,33 +572238,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140783] = 12, - ACTIONS(533), 1, + [140765] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(913), 1, + sym__delegation_specifiers, + STATE(1377), 1, sym_user_type, - STATE(3659), 1, + STATE(1497), 1, + sym_delegation_specifier, + STATE(1533), 1, sym_function_type, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3482), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572071,30 +572273,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140829] = 12, + [140813] = 13, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(1352), 1, + STATE(2909), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(1508), 1, + STATE(3972), 1, sym_function_type, - STATE(9486), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(939), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1075), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(537), 7, @@ -572105,33 +572308,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140875] = 12, - ACTIONS(533), 1, + [140861] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(3659), 1, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, sym_function_type, - STATE(9488), 1, + STATE(8412), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3480), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572139,34 +572343,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140921] = 13, - ACTIONS(281), 1, + [140909] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(4477), 1, - sym__delegation_specifiers, - STATE(5128), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(5150), 1, - sym_function_type, - STATE(5280), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(7950), 1, + sym_function_type, + STATE(8414), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572174,33 +572378,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [140969] = 12, - ACTIONS(533), 1, + [140957] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2910), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3478), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572208,33 +572413,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141015] = 12, - ACTIONS(533), 1, + [141005] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(3659), 1, + STATE(5107), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(9488), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3477), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572242,33 +572448,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141061] = 12, - ACTIONS(533), 1, + [141053] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2919), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3670), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572276,33 +572483,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141107] = 12, - ACTIONS(533), 1, + [141101] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3570), 1, + sym__delegation_specifiers, + STATE(4098), 1, sym_user_type, - STATE(4128), 1, + STATE(4121), 1, + sym_delegation_specifier, + STATE(4161), 1, sym_function_type, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3495), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572310,33 +572518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141153] = 12, - ACTIONS(533), 1, + [141149] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, + sym__simple_user_type, + STATE(4540), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(3659), 1, + STATE(5160), 1, sym_function_type, - STATE(9488), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3490), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572344,33 +572553,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141199] = 12, - ACTIONS(533), 1, + [141197] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3486), 2, + STATE(2915), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572378,33 +572587,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141245] = 12, - ACTIONS(533), 1, + [141243] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2920), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3491), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572413,33 +572623,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [141291] = 13, - ACTIONS(281), 1, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(4503), 1, - sym__delegation_specifiers, - STATE(5128), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(5150), 1, - sym_function_type, - STATE(5280), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(7950), 1, + sym_function_type, + STATE(7984), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572448,32 +572658,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [141339] = 12, - ACTIONS(533), 1, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, + sym__simple_user_type, + STATE(5109), 1, sym_user_type, - STATE(3659), 1, + STATE(5160), 1, sym_function_type, - STATE(9488), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3535), 2, + STATE(4478), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572481,33 +572691,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141385] = 12, - ACTIONS(409), 1, + [141385] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(3086), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(9530), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2899), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572515,33 +572726,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141431] = 12, - ACTIONS(409), 1, + [141433] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(2930), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(9530), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2917), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572549,33 +572761,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141477] = 12, - ACTIONS(409), 1, + [141481] = 13, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(4493), 1, + sym__delegation_specifiers, + STATE(5109), 1, sym_user_type, - STATE(3000), 1, + STATE(5160), 1, sym_function_type, - STATE(9530), 1, + STATE(5357), 1, + sym_delegation_specifier, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2918), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572583,33 +572796,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141523] = 12, - ACTIONS(409), 1, + [141529] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(2946), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(9530), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2925), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572617,33 +572831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141569] = 12, - ACTIONS(409), 1, + [141577] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(2948), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(9530), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2930), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572651,34 +572866,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141615] = 13, - ACTIONS(613), 1, + [141625] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(949), 1, + STATE(993), 1, sym__delegation_specifiers, - STATE(1352), 1, + STATE(1377), 1, sym_user_type, - STATE(1470), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(1508), 1, + STATE(1533), 1, sym_function_type, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572686,34 +572901,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141663] = 13, - ACTIONS(281), 1, + [141673] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4474), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2979), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(3962), 1, sym_user_type, - STATE(5150), 1, + STATE(3969), 1, sym_function_type, - STATE(5280), 1, + STATE(4092), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572721,33 +572936,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141711] = 12, - ACTIONS(409), 1, + [141721] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(3035), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(9530), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2934), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572755,33 +572971,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141757] = 12, - ACTIONS(533), 1, + [141769] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2985), 1, + sym__delegation_specifiers, + STATE(3962), 1, sym_user_type, - STATE(4128), 1, + STATE(3969), 1, sym_function_type, - STATE(9488), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3503), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572789,30 +573006,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141803] = 12, - ACTIONS(195), 1, + [141817] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(3922), 1, + STATE(5109), 1, sym_user_type, - STATE(4000), 1, + STATE(5160), 1, sym_function_type, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2905), 2, + STATE(4484), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(111), 7, @@ -572823,33 +573040,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141849] = 12, - ACTIONS(533), 1, + [141863] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(4128), 1, + STATE(4872), 1, + sym__delegation_specifiers, + STATE(4882), 1, sym_function_type, - STATE(9488), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3489), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572857,33 +573075,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141895] = 12, - ACTIONS(409), 1, + [141911] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3000), 1, + STATE(8048), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9530), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2944), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572891,33 +573110,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141941] = 12, - ACTIONS(409), 1, + [141959] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4799), 1, + sym__delegation_specifiers, + STATE(4812), 1, sym_user_type, - STATE(3000), 1, + STATE(4882), 1, sym_function_type, - STATE(9530), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2945), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572925,34 +573145,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141987] = 13, - ACTIONS(281), 1, + [142007] = 13, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(845), 1, sym_simple_identifier, - STATE(4485), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(892), 1, sym__delegation_specifiers, - STATE(5128), 1, + STATE(1377), 1, sym_user_type, - STATE(5150), 1, - sym_function_type, - STATE(5280), 1, + STATE(1497), 1, sym_delegation_specifier, - STATE(9309), 1, + STATE(1533), 1, + sym_function_type, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572960,33 +573180,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142035] = 12, - ACTIONS(409), 1, + [142055] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(3000), 1, + STATE(3969), 1, sym_function_type, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3083), 2, + STATE(2979), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572994,34 +573214,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142081] = 13, - ACTIONS(613), 1, + [142101] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(7629), 1, sym__simple_user_type, - STATE(939), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(7936), 1, sym_user_type, - STATE(1470), 1, + STATE(8045), 1, + sym__delegation_specifiers, + STATE(8117), 1, sym_delegation_specifier, - STATE(1508), 1, + STATE(8123), 1, sym_function_type, - STATE(9486), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573029,33 +573249,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142129] = 12, - ACTIONS(409), 1, + [142149] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(2971), 1, + sym__delegation_specifiers, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(9530), 1, + STATE(4036), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2951), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573063,33 +573284,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142175] = 12, - ACTIONS(533), 1, + [142197] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4128), 1, + STATE(8014), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9488), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3488), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573097,33 +573319,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142221] = 12, - ACTIONS(409), 1, + [142245] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2991), 1, + STATE(5109), 1, sym_user_type, - STATE(3000), 1, + STATE(5160), 1, sym_function_type, - STATE(9530), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2960), 2, + STATE(4492), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573131,33 +573353,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142267] = 12, - ACTIONS(533), 1, + [142291] = 11, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8944), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(9081), 1, + anon_sym_dynamic, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, - sym_user_type, - STATE(4128), 1, - sym_function_type, - STATE(9488), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3482), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(455), 7, + STATE(4875), 2, + sym_nullable_type, + sym_function_type, + STATE(4705), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573165,67 +573386,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142313] = 12, - ACTIONS(533), 1, + [142335] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4128), 1, - sym_function_type, - STATE(9488), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3480), 2, + STATE(8016), 1, sym__delegation_specifiers, + STATE(8117), 1, sym_delegation_specifier, - STATE(3882), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(455), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [142359] = 12, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(3922), 1, - sym_user_type, - STATE(4000), 1, + STATE(8123), 1, sym_function_type, - STATE(9504), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2906), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573233,33 +573421,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142405] = 12, - ACTIONS(409), 1, + [142383] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(3000), 1, + STATE(2951), 1, + sym__delegation_specifiers, + STATE(3064), 1, sym_function_type, - STATE(9530), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2961), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573267,33 +573456,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142451] = 12, - ACTIONS(409), 1, + [142431] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2934), 1, + sym__delegation_specifiers, + STATE(2942), 1, sym_user_type, - STATE(3000), 1, + STATE(3064), 1, sym_function_type, - STATE(9530), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3032), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573301,32 +573491,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142497] = 11, - ACTIONS(8920), 1, - anon_sym_LPAREN, - ACTIONS(8924), 1, + [142479] = 11, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9048), 1, + ACTIONS(8924), 1, + anon_sym_LPAREN, + ACTIONS(9083), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(9563), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4937), 2, + STATE(3029), 2, sym_nullable_type, sym_function_type, - STATE(4757), 3, + STATE(2861), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8918), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573334,33 +573524,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142541] = 12, - ACTIONS(409), 1, + [142523] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2931), 1, + sym__delegation_specifiers, + STATE(2942), 1, sym_user_type, - STATE(3000), 1, + STATE(3064), 1, sym_function_type, - STATE(9530), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2982), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573368,34 +573559,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142587] = 13, - ACTIONS(409), 1, + [142571] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(2899), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3000), 1, - sym_function_type, - STATE(3094), 1, + STATE(8038), 1, + sym__delegation_specifiers, + STATE(8117), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(8123), 1, + sym_function_type, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573403,33 +573594,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142635] = 12, - ACTIONS(195), 1, + [142619] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2923), 1, + sym__delegation_specifiers, + STATE(2942), 1, sym_user_type, - STATE(4000), 1, + STATE(3064), 1, sym_function_type, - STATE(9504), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2916), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573437,30 +573629,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142681] = 12, - ACTIONS(195), 1, + [142667] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2942), 1, + STATE(5109), 1, sym_user_type, - STATE(3035), 1, + STATE(5160), 1, sym_function_type, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2948), 2, + STATE(4493), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(111), 7, @@ -573471,34 +573663,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142727] = 13, - ACTIONS(409), 1, + [142713] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(2917), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3000), 1, - sym_function_type, - STATE(3094), 1, + STATE(8060), 1, + sym__delegation_specifiers, + STATE(8117), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(8123), 1, + sym_function_type, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573506,34 +573698,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142775] = 13, - ACTIONS(409), 1, + [142761] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2918), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(3000), 1, + STATE(4882), 1, sym_function_type, - STATE(3094), 1, - sym_delegation_specifier, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(4790), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573541,33 +573732,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142823] = 12, - ACTIONS(195), 1, + [142807] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3035), 1, + STATE(8063), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9504), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2931), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573575,34 +573767,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142869] = 13, - ACTIONS(409), 1, + [142855] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2925), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2914), 1, sym__delegation_specifiers, - STATE(2991), 1, + STATE(2942), 1, sym_user_type, - STATE(3000), 1, + STATE(3064), 1, sym_function_type, - STATE(3094), 1, + STATE(3501), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573610,33 +573802,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142917] = 12, - ACTIONS(195), 1, + [142903] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3035), 1, + STATE(8084), 1, + sym__delegation_specifiers, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9504), 1, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2928), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573644,33 +573837,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142963] = 12, - ACTIONS(195), 1, + [142951] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(3035), 1, + STATE(4882), 1, sym_function_type, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2916), 2, + STATE(4791), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573678,33 +573871,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143009] = 12, - ACTIONS(195), 1, + [142997] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4811), 1, + sym__delegation_specifiers, + STATE(4812), 1, sym_user_type, - STATE(3035), 1, + STATE(4882), 1, sym_function_type, - STATE(9504), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2906), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573712,33 +573906,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143055] = 12, - ACTIONS(533), 1, + [143045] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2913), 1, + sym__delegation_specifiers, + STATE(2942), 1, sym_user_type, - STATE(4128), 1, + STATE(3064), 1, sym_function_type, - STATE(9488), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3478), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573746,33 +573941,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143101] = 12, - ACTIONS(195), 1, + [143093] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2904), 1, + sym__delegation_specifiers, STATE(2942), 1, sym_user_type, - STATE(3035), 1, + STATE(3064), 1, sym_function_type, - STATE(9504), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2905), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573780,33 +573976,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143147] = 12, - ACTIONS(195), 1, + [143141] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2901), 1, + sym__delegation_specifiers, STATE(2942), 1, sym_user_type, - STATE(3035), 1, + STATE(3064), 1, sym_function_type, - STATE(9504), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2926), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573814,33 +574011,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143193] = 12, - ACTIONS(195), 1, + [143189] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, STATE(2942), 1, sym_user_type, - STATE(3035), 1, + STATE(3059), 1, + sym__delegation_specifiers, + STATE(3064), 1, sym_function_type, - STATE(9504), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2932), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573848,30 +574046,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143239] = 12, - ACTIONS(195), 1, + [143237] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2942), 1, + STATE(5109), 1, sym_user_type, - STATE(3035), 1, + STATE(5160), 1, sym_function_type, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3084), 2, + STATE(4560), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(111), 7, @@ -573882,34 +574080,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143285] = 13, - ACTIONS(613), 1, + [143283] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(936), 1, - sym__delegation_specifiers, - STATE(1352), 1, + STATE(2942), 1, sym_user_type, - STATE(1470), 1, - sym_delegation_specifier, - STATE(1508), 1, + STATE(2968), 1, + sym__delegation_specifiers, + STATE(3064), 1, sym_function_type, - STATE(9486), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573917,33 +574115,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143333] = 12, - ACTIONS(533), 1, + [143331] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2921), 1, + sym__delegation_specifiers, + STATE(2989), 1, sym_user_type, - STATE(4128), 1, + STATE(3006), 1, sym_function_type, - STATE(9488), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3477), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573952,32 +574151,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [143379] = 12, - ACTIONS(533), 1, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(4128), 1, + STATE(4882), 1, sym_function_type, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3670), 2, + STATE(4792), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573986,32 +574185,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [143425] = 12, - ACTIONS(195), 1, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(3035), 1, + STATE(5416), 1, sym_function_type, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2956), 2, + STATE(4811), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574020,32 +574219,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, [143471] = 12, - ACTIONS(195), 1, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(3035), 1, + STATE(5416), 1, sym_function_type, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2990), 2, + STATE(4872), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574053,33 +574252,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143517] = 12, - ACTIONS(195), 1, + [143517] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(3922), 1, + STATE(2915), 1, + sym__delegation_specifiers, + STATE(2989), 1, sym_user_type, - STATE(4000), 1, + STATE(3006), 1, sym_function_type, - STATE(9504), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2928), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574087,32 +574287,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143563] = 11, - ACTIONS(8859), 1, + [143565] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(8926), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9050), 1, - anon_sym_dynamic, - STATE(2903), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2974), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9501), 1, + STATE(5346), 1, + sym_user_type, + STATE(5416), 1, + sym_function_type, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3618), 2, - sym_nullable_type, - sym_function_type, - STATE(3405), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8855), 7, + STATE(4807), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574120,33 +574321,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143607] = 12, - ACTIONS(195), 1, + [143611] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(3035), 1, + STATE(5416), 1, sym_function_type, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2912), 2, + STATE(4806), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574154,32 +574355,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143653] = 11, - ACTIONS(409), 1, + [143657] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(8886), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9052), 1, - anon_sym_dynamic, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(9530), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3061), 2, - sym_nullable_type, - sym_function_type, - STATE(2855), 3, - sym__type_reference, + STATE(2912), 1, + sym__delegation_specifiers, + STATE(2989), 1, sym_user_type, - sym_parenthesized_type, - ACTIONS(333), 7, + STATE(3006), 1, + sym_function_type, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3307), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574187,33 +574390,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143697] = 12, - ACTIONS(195), 1, + [143705] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4000), 1, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, sym_function_type, - STATE(9504), 1, + STATE(8234), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2931), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574221,33 +574425,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143743] = 12, - ACTIONS(195), 1, + [143753] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3035), 1, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9504), 1, + STATE(8623), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3063), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3342), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574255,33 +574460,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143789] = 12, - ACTIONS(195), 1, + [143801] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(3035), 1, + STATE(4882), 1, sym_function_type, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2972), 2, + STATE(4794), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574289,34 +574494,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143835] = 13, - ACTIONS(613), 1, + [143847] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(887), 1, - sym__delegation_specifiers, - STATE(896), 1, + STATE(5346), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(5416), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4803), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574324,32 +574528,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143883] = 11, - ACTIONS(195), 1, + [143893] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8908), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9054), 1, - anon_sym_dynamic, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(9504), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, + sym_user_type, + STATE(2979), 1, + sym__delegation_specifiers, + STATE(3064), 1, + sym_function_type, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3002), 2, - sym_nullable_type, - sym_function_type, - STATE(2850), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(111), 7, + STATE(3421), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574357,32 +574563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143927] = 11, - ACTIONS(533), 1, + [143941] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(8878), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - ACTIONS(9056), 1, - anon_sym_dynamic, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(9488), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, + sym_user_type, + STATE(2985), 1, + sym__delegation_specifiers, + STATE(3064), 1, + sym_function_type, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3649), 2, - sym_nullable_type, - sym_function_type, - STATE(3242), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(455), 7, + STATE(3421), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574390,34 +574598,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143971] = 13, - ACTIONS(613), 1, + [143989] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(878), 1, - sym__delegation_specifiers, - STATE(896), 1, + STATE(2942), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(3025), 1, + sym__delegation_specifiers, + STATE(3064), 1, sym_function_type, - STATE(9486), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574425,34 +574633,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144019] = 13, - ACTIONS(409), 1, + [144037] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(2930), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(3000), 1, + STATE(5128), 1, sym_function_type, - STATE(3094), 1, + STATE(5130), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(5216), 1, + sym__delegation_specifiers, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574460,34 +574668,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144067] = 13, - ACTIONS(409), 1, + [144085] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2934), 1, + STATE(2905), 1, sym__delegation_specifiers, - STATE(2991), 1, + STATE(2989), 1, sym_user_type, - STATE(3000), 1, + STATE(3006), 1, sym_function_type, - STATE(3094), 1, + STATE(3073), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574495,33 +574703,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144115] = 12, - ACTIONS(195), 1, + [144133] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(3922), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(4000), 1, + STATE(4882), 1, sym_function_type, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2948), 2, + STATE(4796), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574529,33 +574737,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144161] = 12, - ACTIONS(533), 1, + [144179] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(4128), 1, + STATE(5416), 1, sym_function_type, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3490), 2, + STATE(4860), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574563,34 +574771,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144207] = 13, - ACTIONS(613), 1, + [144225] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(877), 1, + STATE(3508), 1, sym__delegation_specifiers, - STATE(896), 1, + STATE(4098), 1, sym_user_type, - STATE(1008), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(1018), 1, + STATE(4161), 1, sym_function_type, - STATE(9486), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574598,33 +574806,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144255] = 12, - ACTIONS(409), 1, + [144273] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(4009), 1, + STATE(4882), 1, sym_function_type, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2982), 2, + STATE(4797), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574632,34 +574840,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144301] = 13, - ACTIONS(613), 1, + [144319] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4566), 1, + sym_simple_identifier, + STATE(4581), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4928), 1, sym_user_type, - STATE(937), 1, + STATE(5090), 1, sym__delegation_specifiers, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(5128), 1, sym_function_type, - STATE(9486), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574667,65 +574875,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144349] = 11, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8916), 1, + [144367] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9058), 1, - anon_sym_dynamic, - STATE(8059), 1, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(2878), 1, sym_simple_identifier, - STATE(8112), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(8187), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(9468), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7699), 2, - sym_nullable_type, - sym_function_type, - STATE(8411), 3, - sym__type_reference, + STATE(2909), 1, + sym__delegation_specifiers, + STATE(2989), 1, sym_user_type, - sym_parenthesized_type, - ACTIONS(8912), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [144393] = 11, - ACTIONS(8853), 1, - sym__backtick_identifier, - ACTIONS(8902), 1, - anon_sym_LPAREN, - ACTIONS(9060), 1, - anon_sym_dynamic, - STATE(5532), 1, - sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(5591), 1, - sym__simple_user_type, - STATE(9413), 1, + STATE(3006), 1, + sym_function_type, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5619), 2, - sym_nullable_type, - sym_function_type, - STATE(5587), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8849), 7, + STATE(3307), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574733,34 +574910,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144437] = 13, - ACTIONS(613), 1, + [144415] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(7580), 1, sym__simple_user_type, - STATE(896), 1, + STATE(7880), 1, sym_user_type, - STATE(924), 1, - sym__delegation_specifiers, - STATE(1008), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(1018), 1, + STATE(7950), 1, sym_function_type, - STATE(9486), 1, + STATE(7969), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574768,33 +574945,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144485] = 12, - ACTIONS(409), 1, + [144463] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4009), 1, + STATE(3969), 1, sym_function_type, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3032), 2, + STATE(2985), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574802,34 +574979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144531] = 13, - ACTIONS(533), 1, + [144509] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3535), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2941), 1, sym__delegation_specifiers, - STATE(4116), 1, + STATE(2942), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3064), 1, sym_function_type, - STATE(9488), 1, + STATE(3501), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574837,34 +575014,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144579] = 13, - ACTIONS(613), 1, + [144557] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4812), 1, sym_user_type, - STATE(936), 1, - sym__delegation_specifiers, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(4882), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4799), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574872,34 +575048,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144627] = 13, - ACTIONS(613), 1, + [144603] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4812), 1, sym_user_type, - STATE(943), 1, - sym__delegation_specifiers, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(4882), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4800), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574907,34 +575082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144675] = 13, - ACTIONS(613), 1, + [144649] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(892), 1, - sym__delegation_specifiers, - STATE(896), 1, + STATE(5346), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(5416), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4800), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574942,31 +575116,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144723] = 13, + [144695] = 13, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(896), 1, + STATE(2910), 1, + sym__delegation_specifiers, + STATE(2989), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(3006), 1, sym_function_type, - STATE(1027), 1, - sym__delegation_specifiers, - STATE(9486), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(537), 7, @@ -574977,34 +575151,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144771] = 13, - ACTIONS(8906), 1, + [144743] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(3516), 1, sym_user_type, - STATE(7949), 1, + STATE(3544), 1, + sym__delegation_specifiers, + STATE(3572), 1, sym_function_type, - STATE(7951), 1, + STATE(3609), 1, sym_delegation_specifier, - STATE(7955), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575012,32 +575186,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144819] = 11, - ACTIONS(8902), 1, - anon_sym_LPAREN, - ACTIONS(8906), 1, + [144791] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9060), 1, - anon_sym_dynamic, - STATE(5536), 1, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(4558), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(9337), 1, + STATE(4812), 1, + sym_user_type, + STATE(4882), 1, + sym_function_type, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5619), 2, - sym_nullable_type, - sym_function_type, - STATE(5587), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8900), 7, + STATE(4860), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575045,34 +575220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144863] = 13, - ACTIONS(533), 1, + [144837] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3578), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3510), 1, sym__delegation_specifiers, - STATE(4116), 1, + STATE(4098), 1, sym_user_type, - STATE(4126), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(4128), 1, + STATE(4161), 1, sym_function_type, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575080,34 +575255,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144911] = 13, - ACTIONS(613), 1, + [144885] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(894), 1, - sym__delegation_specifiers, - STATE(896), 1, + STATE(5346), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(5416), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4799), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575115,34 +575289,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144959] = 13, - ACTIONS(8398), 1, + [144931] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(3516), 1, sym_user_type, - STATE(8081), 1, - sym_delegation_specifier, - STATE(8097), 1, - sym_function_type, - STATE(8742), 1, + STATE(3528), 1, sym__delegation_specifiers, - STATE(9202), 1, + STATE(3572), 1, + sym_function_type, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575150,34 +575324,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145007] = 13, - ACTIONS(8906), 1, + [144979] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(3516), 1, sym_user_type, - STATE(7949), 1, + STATE(3525), 1, + sym__delegation_specifiers, + STATE(3572), 1, sym_function_type, - STATE(7951), 1, + STATE(3609), 1, sym_delegation_specifier, - STATE(8266), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575185,34 +575359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145055] = 13, - ACTIONS(613), 1, + [145027] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(885), 1, - sym__delegation_specifiers, - STATE(896), 1, + STATE(4812), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(4882), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4803), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575220,34 +575393,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145103] = 13, - ACTIONS(613), 1, + [145073] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, + STATE(2848), 1, + sym__simple_user_type, + STATE(2888), 1, sym_simple_identifier, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(865), 1, - sym__simple_user_type, - STATE(891), 1, - sym__delegation_specifiers, - STATE(896), 1, + STATE(3962), 1, sym_user_type, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(3969), 1, sym_function_type, - STATE(9486), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3059), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575255,34 +575427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145151] = 13, - ACTIONS(613), 1, + [145119] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3335), 1, + sym_simple_identifier, + STATE(3360), 1, sym__simple_user_type, - STATE(896), 1, - sym_user_type, - STATE(949), 1, + STATE(3513), 1, sym__delegation_specifiers, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(3516), 1, + sym_user_type, + STATE(3572), 1, sym_function_type, - STATE(9486), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575290,33 +575462,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145199] = 12, - ACTIONS(533), 1, + [145167] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(4128), 1, + STATE(5128), 1, sym_function_type, - STATE(9488), 1, + STATE(5129), 1, + sym__delegation_specifiers, + STATE(5130), 1, + sym_delegation_specifier, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3486), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3882), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575324,33 +575497,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145245] = 12, - ACTIONS(533), 1, + [145215] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(4128), 1, + STATE(4882), 1, sym_function_type, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3491), 2, + STATE(4806), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575358,33 +575531,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145291] = 12, - ACTIONS(409), 1, + [145261] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3544), 1, + sym__delegation_specifiers, + STATE(4098), 1, sym_user_type, - STATE(4009), 1, + STATE(4121), 1, + sym_delegation_specifier, + STATE(4161), 1, sym_function_type, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2961), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575392,33 +575566,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145337] = 12, - ACTIONS(409), 1, + [145309] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3494), 1, + sym__delegation_specifiers, + STATE(3516), 1, sym_user_type, - STATE(4009), 1, + STATE(3572), 1, sym_function_type, - STATE(9530), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2960), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575426,32 +575601,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145383] = 11, - ACTIONS(281), 1, + [145357] = 11, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8882), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - ACTIONS(9062), 1, + ACTIONS(9075), 1, anon_sym_dynamic, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(9309), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4561), 2, + STATE(7633), 2, sym_nullable_type, sym_function_type, - STATE(4455), 3, + STATE(5544), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575459,34 +575634,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145427] = 13, - ACTIONS(613), 1, + [145401] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, sym__simple_user_type, - STATE(896), 1, + STATE(4812), 1, sym_user_type, - STATE(939), 1, - sym__delegation_specifiers, - STATE(1008), 1, - sym_delegation_specifier, - STATE(1018), 1, + STATE(4882), 1, sym_function_type, - STATE(9486), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(4807), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575494,34 +575668,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145475] = 13, - ACTIONS(533), 1, + [145447] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3491), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2919), 1, sym__delegation_specifiers, - STATE(4116), 1, + STATE(2989), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3006), 1, sym_function_type, - STATE(9488), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575529,34 +575703,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145523] = 13, - ACTIONS(533), 1, + [145495] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(3486), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4126), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(4128), 1, + STATE(7950), 1, sym_function_type, - STATE(9488), 1, + STATE(7970), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575564,31 +575738,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145571] = 13, - ACTIONS(409), 1, + [145543] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(2899), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(927), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -575599,61 +575772,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145619] = 5, - ACTIONS(8937), 1, - anon_sym_DOT, - STATE(6346), 1, - aux_sym_user_type_repeat1, + [145589] = 12, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym__lexical_identifier, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, + sym_user_type, + STATE(1533), 1, + sym_function_type, + STATE(9315), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 4, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4307), 13, - anon_sym_val, + STATE(919), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145651] = 13, - ACTIONS(533), 1, + [145635] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3490), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(1533), 1, sym_function_type, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(916), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575661,34 +575840,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145699] = 13, - ACTIONS(409), 1, + [145681] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2917), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(4882), 1, sym_function_type, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(4872), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575696,34 +575874,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145747] = 13, - ACTIONS(533), 1, + [145727] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3670), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2920), 1, sym__delegation_specifiers, - STATE(4116), 1, + STATE(2989), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3006), 1, sym_function_type, - STATE(9488), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575731,34 +575909,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145795] = 13, - ACTIONS(409), 1, + [145775] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2918), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4812), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(4882), 1, sym_function_type, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(4811), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575766,31 +575943,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145843] = 13, - ACTIONS(409), 1, + [145821] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(2925), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(943), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -575801,30 +575977,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145891] = 12, - ACTIONS(409), 1, + [145867] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2951), 2, + STATE(902), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -575835,34 +576011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145937] = 13, - ACTIONS(533), 1, + [145913] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3477), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(1533), 1, sym_function_type, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(901), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575870,34 +576045,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [145985] = 13, - ACTIONS(533), 1, + [145959] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(3478), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4126), 1, + STATE(8117), 1, sym_delegation_specifier, - STATE(4128), 1, + STATE(8123), 1, sym_function_type, - STATE(9488), 1, + STATE(8773), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575905,34 +576080,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146033] = 13, - ACTIONS(409), 1, + [146007] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2930), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3493), 1, sym__delegation_specifiers, - STATE(3920), 1, + STATE(3516), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(3572), 1, sym_function_type, - STATE(9530), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575940,30 +576115,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146081] = 12, - ACTIONS(409), 1, + [146055] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3083), 2, + STATE(881), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -575974,34 +576149,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146127] = 13, - ACTIONS(533), 1, + [146101] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3480), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2989), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3006), 1, sym_function_type, - STATE(9488), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(3086), 1, + sym__delegation_specifiers, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576009,31 +576184,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146175] = 13, - ACTIONS(409), 1, + [146149] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(2934), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(885), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -576044,33 +576218,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146223] = 12, - ACTIONS(409), 1, + [146195] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4009), 1, + STATE(3969), 1, sym_function_type, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2945), 2, + STATE(2901), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576078,34 +576252,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146269] = 13, - ACTIONS(533), 1, + [146241] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3482), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3491), 1, sym__delegation_specifiers, - STATE(4116), 1, + STATE(3516), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3572), 1, sym_function_type, - STATE(9488), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576113,31 +576287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146317] = 13, - ACTIONS(409), 1, + [146289] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(2944), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(1012), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -576148,30 +576321,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146365] = 12, - ACTIONS(409), 1, + [146335] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2944), 2, + STATE(897), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -576182,34 +576355,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146411] = 13, - ACTIONS(409), 1, + [146381] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2945), 1, + STATE(2930), 1, sym__delegation_specifiers, - STATE(3920), 1, + STATE(2989), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(3006), 1, sym_function_type, - STATE(9530), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576217,34 +576390,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146459] = 13, - ACTIONS(409), 1, + [146429] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3083), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3490), 1, sym__delegation_specifiers, - STATE(3920), 1, + STATE(3516), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(3572), 1, sym_function_type, - STATE(9530), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576252,33 +576425,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146507] = 12, - ACTIONS(533), 1, + [146477] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(4128), 1, + STATE(5416), 1, sym_function_type, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3578), 2, + STATE(4797), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576286,34 +576459,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146553] = 13, - ACTIONS(533), 1, + [146523] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3488), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3969), 1, sym_function_type, - STATE(9488), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(2904), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576321,33 +576493,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146601] = 12, - ACTIONS(409), 1, + [146569] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(4009), 1, + STATE(3570), 1, + sym__delegation_specifiers, + STATE(3572), 1, sym_function_type, - STATE(9530), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2934), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576355,34 +576528,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146647] = 13, - ACTIONS(107), 1, + [146617] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4785), 1, - sym_user_type, - STATE(4808), 1, + STATE(2946), 1, sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(2989), 1, + sym_user_type, + STATE(3006), 1, sym_function_type, - STATE(9181), 1, + STATE(3073), 1, + sym_delegation_specifier, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576390,31 +576563,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146695] = 13, - ACTIONS(409), 1, + [146665] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2951), 1, + STATE(2948), 1, sym__delegation_specifiers, - STATE(3920), 1, + STATE(2989), 1, sym_user_type, - STATE(3988), 1, + STATE(3006), 1, + sym_function_type, + STATE(3073), 1, sym_delegation_specifier, - STATE(4009), 1, + STATE(9087), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3307), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [146713] = 12, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym__lexical_identifier, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, + sym_user_type, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(934), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -576425,34 +576632,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146743] = 13, - ACTIONS(533), 1, + [146759] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3489), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(1533), 1, sym_function_type, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(913), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576460,34 +576666,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146791] = 13, - ACTIONS(533), 1, + [146805] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3503), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3487), 1, sym__delegation_specifiers, - STATE(4116), 1, + STATE(3516), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(3572), 1, sym_function_type, - STATE(9488), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576495,30 +576701,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146839] = 12, + [146853] = 13, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4797), 1, + sym__delegation_specifiers, + STATE(4812), 1, sym_user_type, - STATE(4866), 1, + STATE(4882), 1, sym_function_type, - STATE(9181), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4808), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(7), 7, @@ -576529,34 +576736,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146885] = 13, - ACTIONS(533), 1, + [146901] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3495), 1, - sym__delegation_specifiers, - STATE(4116), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4126), 1, - sym_delegation_specifier, - STATE(4128), 1, + STATE(1533), 1, sym_function_type, - STATE(9488), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(993), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576564,34 +576770,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146933] = 13, - ACTIONS(107), 1, + [146947] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4825), 1, - sym__delegation_specifiers, - STATE(4858), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(4866), 1, + STATE(7950), 1, sym_function_type, - STATE(9181), 1, + STATE(7985), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576599,34 +576805,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [146981] = 13, - ACTIONS(409), 1, + [146995] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2960), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4796), 1, sym__delegation_specifiers, - STATE(3920), 1, + STATE(4812), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(4882), 1, sym_function_type, - STATE(9530), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576634,34 +576840,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147029] = 13, - ACTIONS(409), 1, + [147043] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(2961), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(3988), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(4009), 1, + STATE(7950), 1, sym_function_type, - STATE(9530), 1, + STATE(7982), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576669,34 +576875,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147077] = 13, - ACTIONS(409), 1, + [147091] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3032), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2968), 1, sym__delegation_specifiers, - STATE(3920), 1, + STATE(3962), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(3969), 1, sym_function_type, - STATE(9530), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576704,30 +576910,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147125] = 12, - ACTIONS(409), 1, + [147139] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(1377), 1, sym_user_type, - STATE(4009), 1, + STATE(1533), 1, sym_function_type, - STATE(9530), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2930), 2, + STATE(892), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(333), 7, @@ -576738,34 +576944,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147171] = 13, - ACTIONS(107), 1, + [147185] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4818), 1, - sym__delegation_specifiers, - STATE(4858), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(4866), 1, + STATE(7950), 1, sym_function_type, - STATE(9181), 1, + STATE(7960), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576773,33 +576979,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147219] = 12, - ACTIONS(533), 1, + [147233] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4116), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(4128), 1, + STATE(5416), 1, sym_function_type, - STATE(9488), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3535), 2, + STATE(4796), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3882), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576807,31 +577013,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147265] = 13, - ACTIONS(107), 1, + [147279] = 11, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8785), 1, anon_sym_LPAREN, - STATE(4566), 1, + ACTIONS(9075), 1, + anon_sym_dynamic, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(7721), 1, + sym__simple_user_type, + STATE(9258), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7633), 2, + sym_nullable_type, + sym_function_type, + STATE(5544), 3, + sym__type_reference, sym_user_type, - STATE(4819), 1, + sym_parenthesized_type, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [147323] = 13, + ACTIONS(107), 1, + sym__backtick_identifier, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(4558), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym_simple_identifier, + STATE(4729), 1, + sym__simple_user_type, + STATE(4794), 1, sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(4812), 1, + sym_user_type, + STATE(4882), 1, sym_function_type, - STATE(9181), 1, + STATE(4883), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(7), 7, @@ -576842,34 +577081,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147313] = 13, - ACTIONS(195), 1, + [147371] = 11, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8930), 1, anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(9077), 1, + anon_sym_dynamic, + STATE(5530), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(5538), 1, + sym_simple_identifier, + STATE(5569), 1, + sym__simple_user_type, + STATE(9458), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5602), 2, + sym_nullable_type, + sym_function_type, + STATE(5581), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8885), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [147415] = 12, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2972), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4000), 1, + STATE(3969), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(2913), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576877,34 +577148,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147361] = 13, - ACTIONS(409), 1, + [147461] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2898), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2982), 1, - sym__delegation_specifiers, - STATE(3920), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(3988), 1, - sym_delegation_specifier, - STATE(4009), 1, + STATE(3969), 1, sym_function_type, - STATE(9530), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(2914), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576912,33 +577182,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147409] = 12, - ACTIONS(107), 1, + [147507] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(4866), 1, + STATE(8117), 1, + sym_delegation_specifier, + STATE(8123), 1, sym_function_type, - STATE(9181), 1, + STATE(8707), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4825), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576946,34 +577217,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147455] = 13, - ACTIONS(107), 1, + [147555] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4803), 1, - sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(3969), 1, sym_function_type, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(2968), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576981,34 +577251,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147503] = 13, - ACTIONS(107), 1, + [147601] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4799), 1, - sym__delegation_specifiers, - STATE(4858), 1, - sym_delegation_specifier, - STATE(4866), 1, + STATE(4161), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3544), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577016,34 +577285,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147551] = 13, - ACTIONS(195), 1, + [147647] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3063), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4000), 1, + STATE(4161), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3528), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577051,34 +577319,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147599] = 13, - ACTIONS(409), 1, + [147693] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(2944), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(3000), 1, - sym_function_type, - STATE(3094), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(7950), 1, + sym_function_type, + STATE(8370), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577086,34 +577354,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147647] = 13, - ACTIONS(195), 1, + [147741] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(2948), 1, - sym__delegation_specifiers, - STATE(3035), 1, + STATE(4161), 1, sym_function_type, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3525), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577121,34 +577388,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147695] = 13, - ACTIONS(8906), 1, + [147787] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(3360), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(4098), 1, sym_user_type, - STATE(7949), 1, + STATE(4161), 1, sym_function_type, - STATE(7951), 1, - sym_delegation_specifier, - STATE(7974), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(3513), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577156,33 +577422,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147743] = 12, - ACTIONS(409), 1, + [147833] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4009), 1, + STATE(4161), 1, sym_function_type, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2899), 2, + STATE(3494), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577190,34 +577456,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147789] = 13, - ACTIONS(409), 1, + [147879] = 13, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2945), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(2989), 1, sym_user_type, - STATE(3000), 1, + STATE(3006), 1, sym_function_type, - STATE(3094), 1, + STATE(3035), 1, + sym__delegation_specifiers, + STATE(3073), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577225,33 +577491,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147837] = 12, - ACTIONS(107), 1, + [147927] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4866), 1, + STATE(4161), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4818), 2, + STATE(3493), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577259,33 +577525,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147883] = 12, - ACTIONS(409), 1, + [147973] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(4009), 1, + STATE(5416), 1, sym_function_type, - STATE(9530), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2917), 2, + STATE(4794), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577293,34 +577559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147929] = 13, - ACTIONS(195), 1, + [148019] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2912), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4000), 1, + STATE(3969), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(2931), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577328,34 +577593,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147977] = 13, - ACTIONS(195), 1, + [148065] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3510), 1, sym__delegation_specifiers, - STATE(2942), 1, + STATE(3516), 1, sym_user_type, - STATE(3035), 1, + STATE(3572), 1, sym_function_type, - STATE(3544), 1, + STATE(3609), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577363,34 +577628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148025] = 13, - ACTIONS(195), 1, + [148113] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2928), 1, - sym__delegation_specifiers, - STATE(2942), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(3035), 1, + STATE(3969), 1, sym_function_type, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(2934), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577398,34 +577662,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148073] = 13, - ACTIONS(195), 1, + [148159] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2990), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4792), 1, sym__delegation_specifiers, - STATE(3922), 1, + STATE(4812), 1, sym_user_type, - STATE(4000), 1, + STATE(4882), 1, sym_function_type, - STATE(4092), 1, + STATE(4883), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577433,33 +577697,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148121] = 12, - ACTIONS(107), 1, + [148207] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(4866), 1, + STATE(5116), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(9181), 1, + STATE(5130), 1, + sym_delegation_specifier, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4796), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577467,33 +577732,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148167] = 12, - ACTIONS(107), 1, + [148255] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4785), 1, + STATE(5109), 1, sym_user_type, - STATE(4866), 1, + STATE(5160), 1, sym_function_type, - STATE(9181), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4886), 2, + STATE(4491), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577501,34 +577766,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148213] = 13, - ACTIONS(409), 1, + [148301] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2991), 1, - sym_user_type, - STATE(3000), 1, - sym_function_type, - STATE(3083), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3493), 1, sym__delegation_specifiers, - STATE(3094), 1, + STATE(4098), 1, + sym_user_type, + STATE(4121), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577536,34 +577801,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148261] = 13, - ACTIONS(8906), 1, + [148349] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(7457), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(4791), 1, + sym__delegation_specifiers, + STATE(4812), 1, sym_user_type, - STATE(7949), 1, + STATE(4882), 1, sym_function_type, - STATE(7951), 1, + STATE(4883), 1, sym_delegation_specifier, - STATE(7979), 1, - sym__delegation_specifiers, - STATE(9337), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8900), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577571,34 +577836,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148309] = 13, - ACTIONS(409), 1, + [148397] = 11, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8972), 1, anon_sym_LPAREN, - STATE(2837), 1, + ACTIONS(9085), 1, + anon_sym_dynamic, + STATE(2899), 1, + sym_simple_identifier, + STATE(2949), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(3076), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2951), 1, - sym__delegation_specifiers, - STATE(2991), 1, - sym_user_type, - STATE(3000), 1, - sym_function_type, - STATE(3094), 1, - sym_delegation_specifier, - STATE(9530), 1, + STATE(9282), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(333), 7, + STATE(3615), 2, + sym_nullable_type, + sym_function_type, + STATE(3408), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577606,34 +577869,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148357] = 13, - ACTIONS(195), 1, + [148441] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2916), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3494), 1, sym__delegation_specifiers, - STATE(2942), 1, + STATE(4098), 1, sym_user_type, - STATE(3035), 1, - sym_function_type, - STATE(3544), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577641,33 +577904,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148405] = 12, - ACTIONS(107), 1, + [148489] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3508), 1, + sym__delegation_specifiers, + STATE(3516), 1, sym_user_type, - STATE(4866), 1, + STATE(3572), 1, sym_function_type, - STATE(9181), 1, + STATE(3609), 1, + sym_delegation_specifier, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4822), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577675,34 +577939,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148451] = 13, - ACTIONS(195), 1, + [148537] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2906), 1, - sym__delegation_specifiers, - STATE(2942), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(3035), 1, + STATE(3969), 1, sym_function_type, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(2951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577710,34 +577973,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148499] = 13, - ACTIONS(195), 1, + [148583] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2905), 1, - sym__delegation_specifiers, - STATE(2942), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(3035), 1, + STATE(3572), 1, sym_function_type, - STATE(3544), 1, + STATE(3575), 1, + sym__delegation_specifiers, + STATE(3609), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577745,34 +578008,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148547] = 13, - ACTIONS(195), 1, + [148631] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2926), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3513), 1, sym__delegation_specifiers, - STATE(2942), 1, + STATE(4098), 1, sym_user_type, - STATE(3035), 1, - sym_function_type, - STATE(3544), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577780,33 +578043,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148595] = 12, - ACTIONS(409), 1, + [148679] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4009), 1, + STATE(4161), 1, sym_function_type, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2925), 2, + STATE(3491), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577814,34 +578077,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148641] = 13, - ACTIONS(195), 1, + [148725] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(2956), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4000), 1, - sym_function_type, - STATE(4092), 1, + STATE(7945), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(7950), 1, + sym_function_type, + STATE(7955), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577849,34 +578112,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148689] = 13, - ACTIONS(195), 1, + [148773] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(3084), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(4000), 1, + STATE(5115), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(4092), 1, + STATE(5130), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577884,33 +578147,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148737] = 12, - ACTIONS(107), 1, + [148821] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4866), 1, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, sym_function_type, - STATE(9181), 1, + STATE(7958), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4824), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577918,34 +578182,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148783] = 13, - ACTIONS(195), 1, + [148869] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2932), 1, - sym__delegation_specifiers, - STATE(2942), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, sym_user_type, - STATE(3035), 1, + STATE(3520), 1, + sym__delegation_specifiers, + STATE(3572), 1, sym_function_type, - STATE(3544), 1, + STATE(3609), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577953,34 +578217,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148831] = 13, - ACTIONS(409), 1, + [148917] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2960), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3520), 1, sym__delegation_specifiers, - STATE(2991), 1, + STATE(4098), 1, sym_user_type, - STATE(3000), 1, - sym_function_type, - STATE(3094), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577988,34 +578252,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148879] = 13, - ACTIONS(195), 1, + [148965] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(3035), 1, + STATE(4161), 1, sym_function_type, - STATE(3084), 1, - sym__delegation_specifiers, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3490), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578023,34 +578286,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148927] = 13, - ACTIONS(409), 1, + [149011] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2961), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(3094), 1, - sym_delegation_specifier, - STATE(9530), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(2971), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578058,34 +578320,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [148975] = 13, - ACTIONS(195), 1, + [149057] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2932), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4000), 1, + STATE(4161), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3570), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578093,31 +578354,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149023] = 13, - ACTIONS(195), 1, + [149103] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2942), 1, + STATE(5109), 1, sym_user_type, - STATE(2956), 1, - sym__delegation_specifiers, - STATE(3035), 1, + STATE(5160), 1, sym_function_type, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(4474), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(111), 7, @@ -578128,34 +578388,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149071] = 13, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, + [149149] = 11, + ACTIONS(8966), 1, anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(8970), 1, + sym__backtick_identifier, + ACTIONS(9087), 1, + anon_sym_dynamic, + STATE(4559), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(2926), 1, - sym__delegation_specifiers, - STATE(3922), 1, - sym_user_type, - STATE(4000), 1, - sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(111), 7, + STATE(5039), 2, + sym_nullable_type, + sym_function_type, + STATE(4761), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578163,33 +578421,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149119] = 12, - ACTIONS(107), 1, + [149193] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4785), 1, + STATE(3940), 1, sym_user_type, - STATE(4866), 1, + STATE(3972), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4819), 2, + STATE(3035), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578197,33 +578455,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149165] = 12, - ACTIONS(409), 1, + [149239] = 13, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(3920), 1, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, sym_user_type, - STATE(4009), 1, + STATE(7945), 1, + sym_delegation_specifier, + STATE(7950), 1, sym_function_type, - STATE(9530), 1, + STATE(7956), 1, + sym__delegation_specifiers, + STATE(9390), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2918), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3227), 2, + STATE(8058), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578231,34 +578490,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149211] = 13, - ACTIONS(533), 1, + [149287] = 11, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8936), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + ACTIONS(9089), 1, + anon_sym_dynamic, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3501), 1, - sym_user_type, - STATE(3535), 1, - sym__delegation_specifiers, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, - sym_function_type, - STATE(9488), 1, + STATE(855), 1, + sym__simple_user_type, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(455), 7, + STATE(947), 2, + sym_nullable_type, + sym_function_type, + STATE(851), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578266,34 +578523,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149259] = 13, - ACTIONS(195), 1, + [149331] = 13, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, - sym_user_type, - STATE(2990), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(4790), 1, sym__delegation_specifiers, - STATE(3035), 1, + STATE(4812), 1, + sym_user_type, + STATE(4882), 1, sym_function_type, - STATE(3544), 1, + STATE(4883), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578301,33 +578558,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149307] = 12, - ACTIONS(107), 1, + [149379] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4866), 1, + STATE(4161), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4798), 2, + STATE(3487), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578335,34 +578592,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149353] = 13, - ACTIONS(195), 1, + [149425] = 13, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(2912), 1, - sym__delegation_specifiers, - STATE(2942), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(3035), 1, + STATE(5087), 1, + sym__delegation_specifiers, + STATE(5128), 1, sym_function_type, - STATE(3544), 1, + STATE(5130), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578370,34 +578627,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149401] = 13, - ACTIONS(195), 1, + [149473] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(3035), 1, + STATE(5416), 1, sym_function_type, - STATE(3063), 1, - sym__delegation_specifiers, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(4792), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578405,30 +578661,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149449] = 12, + [149519] = 12, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(4866), 1, + STATE(5416), 1, sym_function_type, - STATE(9181), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4791), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(7), 7, @@ -578439,34 +578695,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149495] = 13, - ACTIONS(195), 1, + [149565] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2905), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3525), 1, sym__delegation_specifiers, - STATE(3922), 1, + STATE(4098), 1, sym_user_type, - STATE(4000), 1, - sym_function_type, - STATE(4092), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578474,34 +578730,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149543] = 13, - ACTIONS(195), 1, + [149613] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(2906), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3025), 1, sym__delegation_specifiers, - STATE(3922), 1, + STATE(3962), 1, sym_user_type, - STATE(4000), 1, + STATE(3969), 1, sym_function_type, STATE(4092), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578509,34 +578765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149591] = 13, - ACTIONS(195), 1, + [149661] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2942), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(2972), 1, - sym__delegation_specifiers, - STATE(3035), 1, + STATE(4161), 1, sym_function_type, - STATE(3544), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3510), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578544,34 +578799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149639] = 13, - ACTIONS(409), 1, + [149707] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(3000), 1, + STATE(4161), 1, sym_function_type, - STATE(3032), 1, - sym__delegation_specifiers, - STATE(3094), 1, - sym_delegation_specifier, - STATE(9530), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(3508), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578579,34 +578833,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149687] = 13, - ACTIONS(533), 1, + [149753] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(3578), 1, - sym__delegation_specifiers, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(4161), 1, sym_function_type, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3575), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578614,33 +578867,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149735] = 12, - ACTIONS(107), 1, + [149799] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(4098), 1, sym_user_type, - STATE(4866), 1, + STATE(4161), 1, sym_function_type, - STATE(9181), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4758), 2, + STATE(3520), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578648,34 +578901,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149781] = 13, - ACTIONS(533), 1, + [149845] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3495), 1, - sym__delegation_specifiers, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(2948), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578683,34 +578935,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149829] = 13, - ACTIONS(195), 1, + [149891] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(2874), 1, - sym__simple_user_type, - STATE(2897), 1, + STATE(4674), 1, sym_simple_identifier, - STATE(2916), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(4729), 1, + sym__simple_user_type, + STATE(5346), 1, sym_user_type, - STATE(4000), 1, + STATE(5416), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(4790), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578718,34 +578969,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149877] = 13, - ACTIONS(533), 1, + [149937] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, + sym__simple_user_type, + STATE(5109), 1, sym_user_type, - STATE(3503), 1, - sym__delegation_specifiers, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(5160), 1, sym_function_type, - STATE(9488), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(4507), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578753,34 +579003,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149925] = 13, - ACTIONS(409), 1, + [149983] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(2982), 1, - sym__delegation_specifiers, - STATE(2991), 1, + STATE(3940), 1, sym_user_type, - STATE(3000), 1, + STATE(3972), 1, sym_function_type, - STATE(3094), 1, - sym_delegation_specifier, - STATE(9530), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(2921), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578788,34 +579037,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149973] = 13, - ACTIONS(533), 1, + [150029] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3489), 1, - sym__delegation_specifiers, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(2946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578823,68 +579071,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150021] = 12, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4785), 1, - sym_user_type, - STATE(4866), 1, - sym_function_type, - STATE(9181), 1, - sym_function_type_parameters, + [150075] = 5, + ACTIONS(8976), 1, + anon_sym_DOT, + STATE(6316), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4765), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4976), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(4273), 4, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4271), 13, + anon_sym_val, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150067] = 13, - ACTIONS(533), 1, + [150107] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3488), 1, - sym__delegation_specifiers, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(2930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578892,34 +579132,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150115] = 13, - ACTIONS(533), 1, + [150153] = 13, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(3482), 1, - sym__delegation_specifiers, - STATE(3501), 1, + STATE(7629), 1, + sym__simple_user_type, + STATE(7936), 1, sym_user_type, - STATE(3613), 1, + STATE(8117), 1, sym_delegation_specifier, - STATE(3659), 1, + STATE(8123), 1, sym_function_type, - STATE(9488), 1, + STATE(8602), 1, + sym__delegation_specifiers, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578927,34 +579167,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150163] = 13, - ACTIONS(533), 1, + [150201] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3480), 1, - sym__delegation_specifiers, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3086), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578962,34 +579201,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150211] = 13, - ACTIONS(533), 1, + [150247] = 13, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(3335), 1, sym_simple_identifier, - STATE(3491), 1, + STATE(3360), 1, + sym__simple_user_type, + STATE(3528), 1, sym__delegation_specifiers, - STATE(3501), 1, + STATE(4098), 1, sym_user_type, - STATE(3613), 1, + STATE(4121), 1, sym_delegation_specifier, - STATE(3659), 1, + STATE(4161), 1, sym_function_type, - STATE(9488), 1, + STATE(9263), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3723), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578997,34 +579236,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150259] = 13, - ACTIONS(195), 1, + [150295] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2928), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(3940), 1, sym_user_type, - STATE(4000), 1, + STATE(3972), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(2920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579032,33 +579270,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150307] = 12, - ACTIONS(107), 1, + [150341] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3962), 1, sym_user_type, - STATE(4866), 1, + STATE(3969), 1, sym_function_type, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4803), 2, + STATE(2923), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579066,34 +579304,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150353] = 13, - ACTIONS(533), 1, + [150387] = 13, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3478), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3059), 1, sym__delegation_specifiers, - STATE(3501), 1, + STATE(3962), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3969), 1, sym_function_type, - STATE(9488), 1, + STATE(4092), 1, + sym_delegation_specifier, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579101,34 +579339,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150401] = 13, - ACTIONS(533), 1, + [150435] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3477), 1, - sym__delegation_specifiers, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(2910), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579136,33 +579373,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150449] = 13, - ACTIONS(195), 1, + [150481] = 11, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(8920), 1, anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(9091), 1, + anon_sym_dynamic, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__delegation_specifiers, - STATE(3922), 1, - sym_user_type, - STATE(4000), 1, - sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, - sym_constructor_invocation, - sym_explicit_delegation, + STATE(4547), 2, + sym_nullable_type, + sym_function_type, + STATE(4462), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(111), 7, anon_sym_get, anon_sym_set, @@ -579171,34 +579406,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150497] = 13, - ACTIONS(533), 1, + [150525] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(3940), 1, sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, + STATE(3972), 1, sym_function_type, - STATE(3670), 1, - sym__delegation_specifiers, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(2909), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579206,33 +579440,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150545] = 12, - ACTIONS(107), 1, + [150571] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(4673), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(4785), 1, + STATE(3940), 1, sym_user_type, - STATE(4866), 1, + STATE(3972), 1, sym_function_type, - STATE(9181), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4799), 2, + STATE(2905), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4976), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579240,34 +579474,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150591] = 13, - ACTIONS(195), 1, + [150617] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2878), 1, + sym_simple_identifier, + STATE(2889), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(2893), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2948), 1, - sym__delegation_specifiers, - STATE(3922), 1, + STATE(3940), 1, sym_user_type, - STATE(4000), 1, + STATE(3972), 1, sym_function_type, - STATE(4092), 1, - sym_delegation_specifier, - STATE(9504), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(2912), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579275,34 +579508,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150639] = 13, - ACTIONS(533), 1, + [150663] = 10, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(8622), 1, sym_simple_identifier, - STATE(3490), 1, - sym__delegation_specifiers, - STATE(3501), 1, - sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, - sym_function_type, - STATE(9488), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(455), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6860), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9077), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579310,34 +579539,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150687] = 13, - ACTIONS(533), 1, + [150704] = 10, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(8622), 1, sym_simple_identifier, - STATE(3486), 1, - sym__delegation_specifiers, - STATE(3501), 1, - sym_user_type, - STATE(3613), 1, - sym_delegation_specifier, - STATE(3659), 1, - sym_function_type, - STATE(9488), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(455), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7152), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9009), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579345,30 +579570,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150735] = 10, - ACTIONS(8750), 1, + [150745] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8958), 2, + STATE(9094), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579376,30 +579601,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150776] = 10, - ACTIONS(8750), 1, + [150786] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6892), 2, + STATE(6857), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9126), 2, + STATE(9092), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579407,30 +579632,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150817] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [150827] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(3335), 1, sym_simple_identifier, + STATE(3360), 1, + sym__simple_user_type, + STATE(3713), 1, + sym_delegation_specifier, + STATE(4098), 1, + sym_user_type, + STATE(4161), 1, + sym_function_type, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9094), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, + STATE(3723), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579438,30 +579665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150858] = 10, - ACTIONS(8750), 1, + [150872] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6856), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9112), 2, + STATE(9068), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579469,30 +579696,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150899] = 10, - ACTIONS(8750), 1, + [150913] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9338), 2, + STATE(9108), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579500,29 +579727,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150940] = 12, - ACTIONS(195), 1, + [150954] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(2874), 1, + STATE(4463), 1, sym__simple_user_type, - STATE(2897), 1, - sym_simple_identifier, - STATE(2942), 1, + STATE(4480), 1, sym_user_type, - STATE(3035), 1, + STATE(4563), 1, sym_function_type, - STATE(3254), 1, + STATE(4647), 1, sym_delegation_specifier, - STATE(9504), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(111), 7, @@ -579533,30 +579760,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [150985] = 10, - ACTIONS(8750), 1, + [150999] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6889), 2, + STATE(6861), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9277), 2, + STATE(9067), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579564,30 +579791,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151026] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [151040] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(4674), 1, sym_simple_identifier, + STATE(4729), 1, + sym__simple_user_type, + STATE(5001), 1, + sym_delegation_specifier, + STATE(5346), 1, + sym_user_type, + STATE(5416), 1, + sym_function_type, + STATE(9438), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9026), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, + STATE(4957), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579595,30 +579824,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151067] = 10, - ACTIONS(8750), 1, + [151085] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9149), 2, + STATE(9064), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579626,30 +579855,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151108] = 10, - ACTIONS(8750), 1, + [151126] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6862), 2, + STATE(6865), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9180), 2, + STATE(9058), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579657,30 +579886,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151149] = 10, - ACTIONS(8750), 1, + [151167] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6861), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8946), 2, + STATE(9039), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579688,32 +579917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151190] = 12, - ACTIONS(409), 1, + [151208] = 12, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(2898), 1, + STATE(4566), 1, sym_simple_identifier, - STATE(2991), 1, + STATE(4581), 1, + sym__simple_user_type, + STATE(4928), 1, sym_user_type, - STATE(3000), 1, + STATE(5128), 1, sym_function_type, - STATE(3286), 1, + STATE(5182), 1, sym_delegation_specifier, - STATE(9530), 1, + STATE(9132), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(5145), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579721,30 +579950,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151235] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [151253] = 12, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(3335), 1, sym_simple_identifier, + STATE(3360), 1, + sym__simple_user_type, + STATE(3516), 1, + sym_user_type, + STATE(3572), 1, + sym_function_type, + STATE(3713), 1, + sym_delegation_specifier, + STATE(9263), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6858), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9189), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, + STATE(3723), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579752,63 +579983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151276] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [151298] = 12, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(4674), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9141), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [151317] = 12, - ACTIONS(409), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym__lexical_identifier, - STATE(2881), 1, + STATE(4729), 1, sym__simple_user_type, - STATE(2898), 1, - sym_simple_identifier, - STATE(3286), 1, - sym_delegation_specifier, - STATE(3920), 1, + STATE(4812), 1, sym_user_type, - STATE(4009), 1, + STATE(4882), 1, sym_function_type, - STATE(9530), 1, + STATE(5001), 1, + sym_delegation_specifier, + STATE(9438), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3227), 2, + STATE(4957), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(333), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579816,32 +580016,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151362] = 12, - ACTIONS(281), 1, + [151343] = 10, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(8622), 1, sym_simple_identifier, - STATE(4707), 1, - sym_delegation_specifier, - STATE(5128), 1, - sym_user_type, - STATE(5150), 1, - sym_function_type, - STATE(9309), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(203), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6867), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9032), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579849,30 +580047,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151407] = 10, - ACTIONS(8750), 1, + [151384] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9031), 2, + STATE(9174), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579880,30 +580078,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151448] = 10, - ACTIONS(8750), 1, + [151425] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9051), 2, + STATE(9473), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579911,30 +580109,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151489] = 10, - ACTIONS(8750), 1, + [151466] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6909), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9042), 2, + STATE(9169), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579942,32 +580140,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151530] = 12, - ACTIONS(8906), 1, + [151507] = 10, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(8622), 1, sym_simple_identifier, - STATE(7457), 1, - sym__simple_user_type, - STATE(7888), 1, - sym_user_type, - STATE(7949), 1, - sym_function_type, - STATE(8114), 1, - sym_delegation_specifier, - STATE(9337), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8082), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8900), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7152), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9028), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579975,30 +580171,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151575] = 10, - ACTIONS(8750), 1, + [151548] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6867), 2, + STATE(6875), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9140), 2, + STATE(9026), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580006,28 +580202,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151616] = 8, - ACTIONS(8997), 1, + [151589] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(9068), 1, - sym_reification_modifier, - ACTIONS(9070), 1, + ACTIONS(8952), 1, sym__backtick_identifier, + ACTIONS(9093), 1, + anon_sym_LPAREN, + STATE(8043), 1, + sym__lexical_identifier, + STATE(8622), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, - anon_sym_in, - anon_sym_out, - STATE(7430), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6918), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(6874), 2, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9066), 7, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9168), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580035,32 +580233,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151653] = 12, - ACTIONS(195), 1, + [151630] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2874), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(2897), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(3254), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3354), 1, sym_delegation_specifier, - STATE(3922), 1, + STATE(3962), 1, sym_user_type, - STATE(4000), 1, + STATE(3969), 1, sym_function_type, - STATE(9504), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3342), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580068,32 +580266,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151698] = 12, - ACTIONS(533), 1, + [151675] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(3501), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, + sym__simple_user_type, + STATE(2989), 1, sym_user_type, - STATE(3659), 1, + STATE(3006), 1, sym_function_type, - STATE(3901), 1, + STATE(3219), 1, sym_delegation_specifier, - STATE(9488), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3882), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580101,30 +580299,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151743] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [151720] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(845), 1, sym_simple_identifier, + STATE(855), 1, + sym__simple_user_type, + STATE(940), 1, + sym_user_type, + STATE(954), 1, + sym_function_type, + STATE(1187), 1, + sym_delegation_specifier, + STATE(9315), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9138), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, + STATE(1112), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580132,30 +580332,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151784] = 10, - ACTIONS(8750), 1, + [151765] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6878), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9137), 2, + STATE(8977), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580163,63 +580363,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151825] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [151806] = 12, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8732), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9135), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [151866] = 12, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(834), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(843), 1, - sym__lexical_identifier, - STATE(865), 1, + STATE(7629), 1, sym__simple_user_type, - STATE(1195), 1, - sym_delegation_specifier, - STATE(1352), 1, + STATE(7936), 1, sym_user_type, - STATE(1508), 1, + STATE(8123), 1, sym_function_type, - STATE(9486), 1, + STATE(8191), 1, + sym_delegation_specifier, + STATE(9137), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(8312), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580227,30 +580396,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151911] = 10, - ACTIONS(8750), 1, + [151851] = 8, + ACTIONS(9097), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(9103), 1, + sym_reification_modifier, + ACTIONS(9106), 1, sym__backtick_identifier, - ACTIONS(9064), 1, - anon_sym_LPAREN, - STATE(8112), 1, - sym__lexical_identifier, - STATE(8732), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + ACTIONS(9100), 2, + anon_sym_in, + anon_sym_out, + STATE(7431), 2, sym__single_annotation, sym__multi_annotation, - STATE(6883), 2, + STATE(6883), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8986), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9095), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580258,30 +580425,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151952] = 10, - ACTIONS(8750), 1, + [151888] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6913), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8950), 2, + STATE(9194), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580289,30 +580456,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [151993] = 10, - ACTIONS(8750), 1, + [151929] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6880), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9134), 2, + STATE(9165), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580320,63 +580487,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152034] = 10, - ACTIONS(8750), 1, + [151970] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6854), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8951), 2, + STATE(9100), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [152075] = 12, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, - sym__simple_user_type, - STATE(4677), 1, - sym_simple_identifier, - STATE(5008), 1, - sym_delegation_specifier, - STATE(5361), 1, - sym_user_type, - STATE(5439), 1, - sym_function_type, - STATE(9181), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4976), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580384,30 +580518,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152120] = 10, - ACTIONS(8750), 1, + [152011] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6881), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9131), 2, + STATE(9193), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580415,30 +580549,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152161] = 10, - ACTIONS(8750), 1, + [152052] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6887), 2, + STATE(6890), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9130), 2, + STATE(9104), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580446,30 +580580,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152202] = 10, - ACTIONS(8750), 1, + [152093] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6924), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9159), 2, + STATE(9177), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580477,30 +580611,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152243] = 10, - ACTIONS(8750), 1, + [152134] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6891), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9164), 2, + STATE(9105), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580508,30 +580642,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152284] = 10, - ACTIONS(8750), 1, + [152175] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6895), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9147), 2, + STATE(9112), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580539,30 +580673,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152325] = 10, - ACTIONS(8750), 1, + [152216] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6893), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9128), 2, + STATE(9019), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580570,30 +580704,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152366] = 10, - ACTIONS(8750), 1, + [152257] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6870), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9028), 2, + STATE(9022), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580601,30 +580735,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152407] = 10, - ACTIONS(8750), 1, + [152298] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6895), 2, + STATE(6872), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8964), 2, + STATE(9172), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580632,30 +580766,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152448] = 10, - ACTIONS(8750), 1, + [152339] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8969), 2, + STATE(9115), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580663,63 +580797,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152489] = 12, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(3377), 1, - sym__simple_user_type, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3446), 1, - sym_simple_identifier, - STATE(3901), 1, - sym_delegation_specifier, - STATE(4116), 1, - sym_user_type, - STATE(4128), 1, - sym_function_type, - STATE(9488), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3882), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(455), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [152534] = 10, - ACTIONS(8750), 1, + [152380] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6898), 2, + STATE(6886), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8976), 2, + STATE(9099), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580727,30 +580828,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152575] = 10, - ACTIONS(8750), 1, + [152421] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6904), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8978), 2, + STATE(9118), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580758,30 +580859,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152616] = 10, - ACTIONS(8750), 1, + [152462] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9124), 2, + STATE(9212), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580789,30 +580890,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152657] = 10, - ACTIONS(8750), 1, + [152503] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6899), 2, + STATE(6898), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9111), 2, + STATE(9211), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580820,30 +580921,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152698] = 10, - ACTIONS(8750), 1, + [152544] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6907), 2, + STATE(6856), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8983), 2, + STATE(9007), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580851,30 +580952,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152739] = 10, - ACTIONS(8750), 1, + [152585] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9194), 2, + STATE(9208), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580882,30 +580983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152780] = 10, - ACTIONS(8750), 1, + [152626] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6901), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9148), 2, + STATE(9207), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580913,32 +581014,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152821] = 12, - ACTIONS(8924), 1, + [152667] = 12, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(2878), 1, sym_simple_identifier, - STATE(4637), 1, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2893), 1, sym__simple_user_type, - STATE(5005), 1, + STATE(3219), 1, + sym_delegation_specifier, + STATE(3940), 1, sym_user_type, - STATE(5137), 1, + STATE(3972), 1, sym_function_type, - STATE(5186), 1, - sym_delegation_specifier, - STATE(9563), 1, + STATE(9087), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5195), 2, + STATE(3307), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8918), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580946,30 +581047,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152866] = 10, - ACTIONS(8750), 1, + [152712] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6903), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9078), 2, + STATE(9122), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580977,30 +581078,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152907] = 10, - ACTIONS(8750), 1, + [152753] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6907), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9067), 2, + STATE(9126), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581008,30 +581109,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152948] = 10, - ACTIONS(8750), 1, - anon_sym_AT, - ACTIONS(8916), 1, + [152794] = 12, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(5538), 1, sym_simple_identifier, + STATE(7580), 1, + sym__simple_user_type, + STATE(7880), 1, + sym_user_type, + STATE(7950), 1, + sym_function_type, + STATE(8114), 1, + sym_delegation_specifier, + STATE(9390), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(8984), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8912), 7, + STATE(8058), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581039,30 +581142,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [152989] = 10, - ACTIONS(8750), 1, + [152839] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9019), 2, + STATE(9127), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581070,30 +581173,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153030] = 10, - ACTIONS(8750), 1, + [152880] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9043), 2, + STATE(9200), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581101,30 +581204,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153071] = 10, - ACTIONS(8750), 1, + [152921] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6906), 2, + STATE(6908), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9059), 2, + STATE(9199), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581132,32 +581235,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153112] = 12, - ACTIONS(107), 1, + [152962] = 12, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4673), 1, + STATE(2848), 1, sym__simple_user_type, - STATE(4677), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4785), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_user_type, - STATE(4866), 1, + STATE(3064), 1, sym_function_type, - STATE(5008), 1, + STATE(3354), 1, sym_delegation_specifier, - STATE(9181), 1, + STATE(9050), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4976), 2, + STATE(3421), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(7), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581165,30 +581268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153157] = 10, - ACTIONS(8750), 1, + [153007] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6915), 2, + STATE(6914), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9034), 2, + STATE(9139), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581196,32 +581299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153198] = 12, - ACTIONS(281), 1, + [153048] = 8, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9110), 1, + sym_reification_modifier, + ACTIONS(9112), 1, sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(4459), 1, - sym__simple_user_type, - STATE(4461), 1, - sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4507), 1, - sym_user_type, - STATE(4529), 1, - sym_function_type, - STATE(4707), 1, - sym_delegation_specifier, - STATE(9309), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(203), 7, + ACTIONS(7343), 2, + anon_sym_in, + anon_sym_out, + STATE(7431), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6883), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9108), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581229,30 +581328,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153243] = 10, - ACTIONS(8750), 1, + [153085] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6908), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9018), 2, + STATE(9161), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581260,30 +581359,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153284] = 10, - ACTIONS(8750), 1, + [153126] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(8992), 2, + STATE(9202), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581291,30 +581390,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153325] = 10, - ACTIONS(8750), 1, + [153167] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6871), 2, + STATE(6885), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9083), 2, + STATE(9164), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581322,32 +581421,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153366] = 12, - ACTIONS(8398), 1, + [153208] = 12, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, + STATE(4455), 1, sym_simple_identifier, - STATE(7692), 1, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4463), 1, sym__simple_user_type, - STATE(7927), 1, + STATE(4647), 1, + sym_delegation_specifier, + STATE(5109), 1, sym_user_type, - STATE(8097), 1, + STATE(5160), 1, sym_function_type, - STATE(8221), 1, - sym_delegation_specifier, - STATE(9202), 1, + STATE(9224), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8231), 2, + STATE(4662), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581355,28 +581454,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153411] = 8, - ACTIONS(9074), 1, + [153253] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(9080), 1, - sym_reification_modifier, - ACTIONS(9083), 1, + ACTIONS(8952), 1, sym__backtick_identifier, + ACTIONS(9093), 1, + anon_sym_LPAREN, + STATE(8043), 1, + sym__lexical_identifier, + STATE(8622), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9077), 2, - anon_sym_in, - anon_sym_out, - STATE(7430), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6918), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7152), 2, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9072), 7, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9188), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581384,30 +581485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153448] = 10, - ACTIONS(8750), 1, + [153294] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6925), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9054), 2, + STATE(9160), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581415,32 +581516,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153489] = 12, - ACTIONS(613), 1, + [153335] = 12, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(845), 1, + sym_simple_identifier, + STATE(855), 1, sym__simple_user_type, - STATE(896), 1, + STATE(1187), 1, + sym_delegation_specifier, + STATE(1377), 1, sym_user_type, - STATE(1018), 1, + STATE(1533), 1, sym_function_type, - STATE(1195), 1, - sym_delegation_specifier, - STATE(9486), 1, + STATE(9315), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1075), 2, + STATE(1112), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581448,30 +581549,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153534] = 10, - ACTIONS(8750), 1, + [153380] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6902), 2, + STATE(6917), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9248), 2, + STATE(9185), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581479,30 +581580,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153575] = 10, - ACTIONS(8750), 1, + [153421] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6919), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9053), 2, + STATE(9183), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581510,30 +581611,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153616] = 10, - ACTIONS(8750), 1, + [153462] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6924), 2, + STATE(6921), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9007), 2, + STATE(9182), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581541,30 +581642,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153657] = 10, - ACTIONS(8750), 1, + [153503] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(8916), 1, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - STATE(8112), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(8732), 1, + STATE(8622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(6873), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(9008), 2, + STATE(9498), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8912), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581572,80 +581673,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153698] = 7, - ACTIONS(9087), 1, + [153544] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(9092), 1, - anon_sym_suspend, + ACTIONS(8952), 1, + sym__backtick_identifier, + ACTIONS(9093), 1, + anon_sym_LPAREN, + STATE(8043), 1, + sym__lexical_identifier, + STATE(8622), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9090), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6925), 3, - sym__type_modifier, + STATE(7152), 2, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9085), 8, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9178), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153732] = 7, - ACTIONS(9097), 1, + [153585] = 10, + ACTIONS(8783), 1, anon_sym_AT, - ACTIONS(9103), 1, + ACTIONS(8952), 1, sym__backtick_identifier, + ACTIONS(9093), 1, + anon_sym_LPAREN, + STATE(8043), 1, + sym__lexical_identifier, + STATE(8622), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7152), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9124), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8948), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [153626] = 7, + ACTIONS(9116), 1, + anon_sym_AT, + ACTIONS(9121), 1, + anon_sym_suspend, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9119), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9100), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, STATE(6926), 3, - sym_parameter_modifier, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9095), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(9114), 8, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153766] = 7, - ACTIONS(8939), 1, + [153660] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9031), 17, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + [153684] = 7, + ACTIONS(8981), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9126), 1, sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(87), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(6926), 3, + STATE(6931), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(9105), 7, + ACTIONS(9124), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581653,22 +581811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153800] = 5, + [153718] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9113), 2, + ACTIONS(9132), 2, anon_sym_in, anon_sym_out, - ACTIONS(9111), 3, + ACTIONS(9130), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - STATE(6928), 3, + STATE(6929), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9109), 9, + ACTIONS(9128), 9, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -581678,22 +581836,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153830] = 5, + [153748] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7328), 2, + ACTIONS(7343), 2, anon_sym_in, anon_sym_out, - ACTIONS(9118), 3, + ACTIONS(9137), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - STATE(6928), 3, + STATE(6929), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9116), 9, + ACTIONS(9135), 9, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -581703,29 +581861,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153860] = 10, - ACTIONS(8398), 1, + [153778] = 7, + ACTIONS(9141), 1, + anon_sym_AT, + ACTIONS(9147), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9144), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(6931), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9139), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [153812] = 10, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8898), 1, + ACTIONS(8954), 1, anon_sym_LPAREN, - ACTIONS(9120), 1, + ACTIONS(9149), 1, anon_sym_dynamic, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(7425), 1, + STATE(7419), 1, sym__simple_user_type, - STATE(7661), 1, + STATE(7816), 1, sym_nullable_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7423), 3, + STATE(7433), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581733,25 +581918,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153900] = 7, - ACTIONS(8750), 1, + [153852] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9151), 17, + sym_safe_nav, anon_sym_AT, - ACTIONS(9126), 1, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + sym_label, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + [153876] = 7, + ACTIONS(8783), 1, + anon_sym_AT, + ACTIONS(9157), 1, anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9124), 2, + ACTIONS(9155), 2, anon_sym_LPAREN, sym__backtick_identifier, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6925), 3, + STATE(6926), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9122), 8, + ACTIONS(9153), 8, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -581760,27 +581967,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153934] = 9, - ACTIONS(8398), 1, + [153910] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3502), 1, + STATE(3607), 1, sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9335), 1, + STATE(9525), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7004), 2, + STATE(7022), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581788,27 +581995,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [153971] = 9, - ACTIONS(8398), 1, + [153947] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(9159), 1, + anon_sym_RBRACK, + STATE(4522), 1, + sym__lexical_identifier, + STATE(5181), 1, + sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6967), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [153984] = 5, + ACTIONS(9161), 1, + anon_sym_LPAREN, + STATE(5510), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7009), 2, anon_sym_AT, - STATE(4533), 1, + sym__backtick_identifier, + ACTIONS(7007), 12, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [154013] = 9, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9164), 1, + anon_sym_RBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(5172), 1, - sym_type_constraint, - STATE(9315), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7015), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(6967), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581816,27 +582075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154008] = 9, - ACTIONS(8398), 1, + [154050] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8090), 1, + STATE(5626), 1, sym_type_constraint, - STATE(9190), 1, + STATE(9385), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6975), 2, + STATE(7021), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581844,27 +582103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154045] = 9, - ACTIONS(8398), 1, + [154087] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3652), 1, + STATE(2969), 1, sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9335), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7004), 2, + STATE(7017), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581872,27 +582131,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154082] = 9, - ACTIONS(8398), 1, + [154124] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + ACTIONS(9166), 1, + anon_sym_RBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(5631), 1, - sym_type_constraint, - STATE(9190), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6975), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(6967), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [154161] = 9, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9168), 1, + anon_sym_RBRACK, + STATE(4522), 1, + sym__lexical_identifier, + STATE(5181), 1, + sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6967), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581900,27 +582187,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154119] = 9, - ACTIONS(8398), 1, + [154198] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(998), 1, - sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9191), 1, + STATE(4878), 1, + sym_type_constraint, + STATE(9503), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7007), 2, + STATE(6983), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581928,27 +582215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154156] = 9, - ACTIONS(8398), 1, + [154235] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5133), 1, + STATE(4534), 1, sym_type_constraint, - STATE(9315), 1, + STATE(9543), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7015), 2, + STATE(7018), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581956,27 +582243,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154193] = 9, - ACTIONS(8398), 1, + [154272] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5644), 1, + STATE(5626), 1, sym_type_constraint, - STATE(9331), 1, + STATE(9054), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6997), 2, + STATE(6975), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581984,27 +582271,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154230] = 9, - ACTIONS(8398), 1, + [154309] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7987), 1, + STATE(4585), 1, sym_type_constraint, - STATE(9220), 1, + STATE(9543), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7013), 2, + STATE(7018), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582012,27 +582299,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154267] = 9, - ACTIONS(8398), 1, + [154346] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9128), 1, + ACTIONS(9170), 1, anon_sym_RBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582040,27 +582327,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154304] = 9, - ACTIONS(8398), 1, + [154383] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(2980), 1, - sym_type_constraint, - STATE(4533), 1, + ACTIONS(9172), 1, + anon_sym_RBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(9226), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7008), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(6967), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582068,27 +582355,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154341] = 9, - ACTIONS(8398), 1, + [154420] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5047), 1, + STATE(950), 1, sym_type_constraint, - STATE(9345), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(9357), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6990), 2, + STATE(6985), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582096,27 +582383,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154378] = 9, - ACTIONS(8398), 1, + [154457] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4873), 1, + STATE(3299), 1, sym_type_constraint, - STATE(9345), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(9467), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6990), 2, + STATE(7010), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582124,27 +582411,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154415] = 9, - ACTIONS(8398), 1, + [154494] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9130), 1, + ACTIONS(9174), 1, anon_sym_RBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582152,55 +582439,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154452] = 9, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9132), 1, - anon_sym_RBRACK, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, + [154531] = 4, + ACTIONS(8736), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(3871), 5, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(3866), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154489] = 9, - ACTIONS(8398), 1, + [154558] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(907), 1, + STATE(3077), 1, sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9191), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7007), 2, + STATE(7017), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582208,27 +582490,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154526] = 9, - ACTIONS(8398), 1, + [154595] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9134), 1, - anon_sym_RBRACK, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(936), 1, + sym_type_constraint, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(9357), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6985), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582236,27 +582518,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154563] = 9, - ACTIONS(8398), 1, + [154632] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5627), 1, + STATE(5637), 1, sym_type_constraint, - STATE(9415), 1, + STATE(8968), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6985), 2, + STATE(6991), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582264,27 +582546,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154600] = 9, - ACTIONS(8398), 1, + [154669] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9136), 1, - anon_sym_RBRACK, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(3060), 1, + sym_type_constraint, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(9467), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7010), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582292,27 +582574,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154637] = 9, - ACTIONS(8398), 1, + [154706] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5628), 1, + STATE(5114), 1, sym_type_constraint, - STATE(9220), 1, + STATE(9494), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7013), 2, + STATE(6977), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582320,27 +582602,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154674] = 9, - ACTIONS(8398), 1, + [154743] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9138), 1, - anon_sym_RBRACK, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5642), 1, + sym_type_constraint, + STATE(8968), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6991), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582348,55 +582630,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154711] = 9, - ACTIONS(9143), 1, - anon_sym_RBRACK, - ACTIONS(9145), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, + [154780] = 5, + ACTIONS(9176), 1, + anon_sym_LT, + STATE(7160), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(9140), 7, + ACTIONS(4230), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4148), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154748] = 9, - ACTIONS(8398), 1, + [154809] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5628), 1, + STATE(5167), 1, sym_type_constraint, - STATE(9415), 1, + STATE(9494), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6985), 2, + STATE(6977), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582404,27 +582682,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154785] = 9, - ACTIONS(8398), 1, + [154846] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9148), 1, + ACTIONS(9178), 1, anon_sym_RBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582432,78 +582710,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154822] = 9, - ACTIONS(8398), 1, + [154883] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9150), 1, + ACTIONS(9180), 1, anon_sym_RBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [154859] = 4, - ACTIONS(8721), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(3943), 10, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154886] = 9, - ACTIONS(8398), 1, + [154920] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3640), 1, - sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9267), 1, + STATE(5642), 1, + sym_type_constraint, + STATE(9403), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6983), 2, + STATE(7012), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582511,27 +582766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154923] = 9, - ACTIONS(8398), 1, + [154957] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3676), 1, + STATE(3527), 1, sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9267), 1, + STATE(9474), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6983), 2, + STATE(6984), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582539,79 +582794,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [154960] = 9, - ACTIONS(8398), 1, + [154994] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9152), 1, + ACTIONS(9182), 1, anon_sym_RBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [154997] = 5, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(5504), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(6930), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(6928), 12, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155026] = 9, - ACTIONS(8398), 1, + [155031] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5631), 1, + STATE(7964), 1, sym_type_constraint, - STATE(9331), 1, + STATE(9054), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6997), 2, + STATE(6975), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582619,27 +582850,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155063] = 9, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9157), 1, + [155068] = 9, + ACTIONS(9187), 1, anon_sym_RBRACK, - STATE(4533), 1, + ACTIONS(9189), 1, + sym__backtick_identifier, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(9184), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582647,27 +582878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155100] = 9, - ACTIONS(8398), 1, + [155105] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4510), 1, + STATE(3810), 1, sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9237), 1, + STATE(9525), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6987), 2, + STATE(7022), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582675,51 +582906,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155137] = 5, - ACTIONS(9159), 1, - anon_sym_LT, - STATE(7086), 1, - sym_type_arguments, + [155142] = 9, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8168), 1, + sym_type_constraint, + STATE(9403), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4113), 10, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7012), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155166] = 9, - ACTIONS(8398), 1, + [155179] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3080), 1, + STATE(3603), 1, sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9207), 1, + STATE(9474), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6977), 2, + STATE(6984), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582727,27 +582962,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155203] = 9, - ACTIONS(8398), 1, + [155216] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4613), 1, + STATE(5623), 1, sym_type_constraint, - STATE(9237), 1, + STATE(9385), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6987), 2, + STATE(7021), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582755,27 +582990,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155240] = 9, - ACTIONS(8398), 1, + [155253] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9161), 1, + ACTIONS(9192), 1, anon_sym_RBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6953), 3, + STATE(6967), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582783,27 +583018,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155277] = 9, - ACTIONS(8398), 1, + [155290] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3087), 1, - sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9226), 1, + STATE(5022), 1, + sym_type_constraint, + STATE(9503), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7008), 2, + STATE(6983), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [155327] = 8, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(5181), 1, + sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6961), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582811,27 +583072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155314] = 9, - ACTIONS(8398), 1, + [155361] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(3296), 1, - sym_type_constraint, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9207), 1, + STATE(8955), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6977), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582839,19 +583098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155351] = 5, - ACTIONS(9163), 1, + [155395] = 5, + ACTIONS(9194), 1, anon_sym_DOT, - STATE(6994), 1, + STATE(6976), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 3, + ACTIONS(4225), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4220), 10, + ACTIONS(4223), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -582862,25 +583121,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155379] = 8, - ACTIONS(8398), 1, + [155423] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(9496), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6946), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582888,25 +583147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155413] = 8, - ACTIONS(8398), 1, + [155457] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6955), 3, + STATE(6941), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582914,25 +583173,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155447] = 8, - ACTIONS(8398), 1, + [155491] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(8970), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6963), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(6994), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582940,25 +583199,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155481] = 8, - ACTIONS(8398), 1, + [155525] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9204), 1, + STATE(9505), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(6992), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582966,26 +583225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155515] = 9, - ACTIONS(8398), 1, + [155559] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9165), 1, - anon_sym_LBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5530), 1, + STATE(5181), 1, sym_simple_identifier, STATE(5540), 1, - sym__simple_user_type, - STATE(5542), 1, sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5580), 2, + STATE(6948), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8384), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582993,25 +583251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155551] = 8, - ACTIONS(8398), 1, + [155593] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9198), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(6942), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583019,25 +583277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155585] = 8, - ACTIONS(8398), 1, + [155627] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9011), 1, + STATE(9345), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7003), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583045,72 +583303,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155619] = 8, - ACTIONS(8398), 1, + [155661] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(9478), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(6952), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [155653] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9169), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(9167), 12, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_in, - anon_sym_suspend, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155677] = 8, - ACTIONS(8398), 1, + [155695] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(9344), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6960), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583118,26 +583355,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155711] = 9, - ACTIONS(1750), 1, - sym__backtick_identifier, - ACTIONS(9171), 1, - anon_sym_LBRACK, - STATE(3593), 1, - sym_simple_identifier, - STATE(3789), 1, - sym__lexical_identifier, - STATE(3866), 1, - sym__simple_user_type, - STATE(3913), 1, - sym_user_type, + [155729] = 6, + ACTIONS(9203), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4002), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(1686), 7, + ACTIONS(9200), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9205), 2, + anon_sym_dynamic, + anon_sym_suspend, + ACTIONS(9207), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(9197), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583145,25 +583379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155747] = 8, - ACTIONS(8398), 1, + [155759] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9221), 1, + STATE(9338), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(6989), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583171,25 +583405,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155781] = 8, - ACTIONS(8398), 1, + [155793] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9209), 1, + anon_sym_LBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5529), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, + STATE(5536), 1, sym__simple_user_type, + STATE(5543), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6945), 3, + STATE(5578), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583197,25 +583432,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155815] = 8, - ACTIONS(8398), 1, + [155829] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9403), 1, + STATE(9337), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583223,26 +583458,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155849] = 9, - ACTIONS(9019), 1, + [155863] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9173), 1, - anon_sym_LBRACK, - STATE(6965), 1, - sym_simple_identifier, - STATE(6998), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7017), 1, - sym__simple_user_type, - STATE(7057), 1, + STATE(5181), 1, + sym_simple_identifier, + STATE(5540), 1, sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7428), 2, + STATE(6972), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9013), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583250,25 +583484,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155885] = 8, - ACTIONS(8398), 1, + [155897] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9235), 1, + STATE(8954), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583276,25 +583510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155919] = 8, - ACTIONS(8398), 1, + [155931] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9517), 1, + STATE(9504), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7002), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583302,49 +583536,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155953] = 6, - ACTIONS(9181), 1, - anon_sym_LPAREN, + [155965] = 5, + ACTIONS(9211), 1, + anon_sym_DOT, + STATE(6976), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9178), 2, + ACTIONS(4218), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9183), 2, - anon_sym_dynamic, - anon_sym_suspend, - ACTIONS(9185), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9175), 7, + ACTIONS(4216), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [155983] = 8, - ACTIONS(8398), 1, + [155993] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9326), 1, + STATE(9006), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583352,25 +583585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156017] = 8, - ACTIONS(8398), 1, + [156027] = 9, + ACTIONS(9047), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(9215), 1, + ACTIONS(9213), 1, + anon_sym_LBRACK, + STATE(6959), 1, sym_simple_identifier, + STATE(7001), 1, + sym__lexical_identifier, + STATE(7019), 1, + sym__simple_user_type, + STATE(7193), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(7429), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9041), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583378,100 +583612,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156051] = 8, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5187), 1, - sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, + [156063] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6941), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(9217), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9215), 12, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_in, + anon_sym_suspend, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156085] = 8, - ACTIONS(8398), 1, + [156087] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9219), 1, + anon_sym_LBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, + STATE(6937), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6968), 3, + STATE(5541), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [156119] = 5, - ACTIONS(9187), 1, - anon_sym_DOT, - STATE(6994), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4272), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4270), 10, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156147] = 8, - ACTIONS(8398), 1, + [156123] = 9, + ACTIONS(9067), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(9216), 1, + ACTIONS(9221), 1, + anon_sym_LBRACK, + STATE(5638), 1, sym_simple_identifier, + STATE(5649), 1, + sym__lexical_identifier, + STATE(5651), 1, + sym__simple_user_type, + STATE(5656), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(6991), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(5722), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9061), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583479,25 +583687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156181] = 8, - ACTIONS(8398), 1, + [156159] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6948), 3, + STATE(6962), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583505,25 +583713,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156215] = 8, - ACTIONS(8398), 1, + [156193] = 9, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + ACTIONS(9219), 1, + anon_sym_LBRACK, + STATE(4522), 1, sym__lexical_identifier, - STATE(9322), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(5541), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583531,17 +583740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156249] = 3, + [156229] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 5, + ACTIONS(3871), 5, anon_sym_AT, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, sym__backtick_identifier, - ACTIONS(3943), 10, + ACTIONS(3866), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -583552,52 +583761,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156273] = 8, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(9218), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [156307] = 9, - ACTIONS(8847), 1, + [156253] = 9, + ACTIONS(1750), 1, sym__backtick_identifier, - ACTIONS(9190), 1, + ACTIONS(9223), 1, anon_sym_LBRACK, - STATE(5187), 1, + STATE(3668), 1, sym_simple_identifier, - STATE(5419), 1, - sym__lexical_identifier, - STATE(5538), 1, + STATE(3710), 1, sym__simple_user_type, - STATE(5539), 1, + STATE(3751), 1, + sym__lexical_identifier, + STATE(3955), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5550), 2, + STATE(3988), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8843), 7, + ACTIONS(1686), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583605,26 +583788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156343] = 9, - ACTIONS(8906), 1, + [156289] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5536), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(9155), 1, sym_simple_identifier, - STATE(8289), 1, - sym__simple_user_type, - STATE(8394), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8665), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8900), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7004), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583632,25 +583814,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156379] = 8, - ACTIONS(8398), 1, + [156323] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9516), 1, + STATE(9154), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583658,25 +583840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156413] = 8, - ACTIONS(8398), 1, + [156357] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8955), 1, + STATE(9241), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7008), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583684,25 +583866,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156447] = 8, - ACTIONS(8398), 1, + [156391] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9329), 1, + STATE(9152), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7009), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583710,25 +583892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156481] = 8, - ACTIONS(8398), 1, + [156425] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9208), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(6947), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583736,25 +583918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156515] = 8, - ACTIONS(8398), 1, + [156459] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9219), 1, + STATE(9245), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(6999), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583762,25 +583944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156549] = 8, - ACTIONS(8398), 1, + [156493] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9175), 1, + STATE(9151), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583788,25 +583970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156583] = 8, - ACTIONS(8398), 1, + [156527] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9224), 1, + STATE(9419), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583814,25 +583996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156617] = 8, - ACTIONS(8398), 1, + [156561] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6956), 3, + STATE(6965), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583840,25 +584022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156651] = 8, - ACTIONS(8398), 1, + [156595] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9382), 1, + STATE(9350), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7012), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583866,26 +584048,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156685] = 9, - ACTIONS(8398), 1, + [156629] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9190), 1, - anon_sym_LBRACK, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(6746), 1, - sym__simple_user_type, - STATE(6961), 1, + STATE(5540), 1, sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5550), 2, + STATE(6936), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8384), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583893,25 +584074,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156721] = 8, - ACTIONS(8398), 1, + [156663] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9381), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(5540), 1, + sym_user_type, + STATE(6842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(6951), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583919,25 +584100,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156755] = 8, - ACTIONS(8398), 1, + [156697] = 9, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(8939), 1, - anon_sym_AT, - STATE(4533), 1, + ACTIONS(9225), 1, + anon_sym_LBRACK, + STATE(5534), 1, sym__lexical_identifier, - STATE(9069), 1, + STATE(5538), 1, sym_simple_identifier, + STATE(8170), 1, + sym__simple_user_type, + STATE(8469), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + STATE(8603), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583945,26 +584127,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156789] = 9, - ACTIONS(9011), 1, + [156733] = 9, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9194), 1, + ACTIONS(9219), 1, anon_sym_LBRACK, - STATE(5632), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5648), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(5652), 1, + STATE(5539), 1, sym__simple_user_type, - STATE(5655), 1, + STATE(5540), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5691), 2, + STATE(5541), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9005), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583972,25 +584154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156825] = 8, - ACTIONS(8398), 1, + [156769] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9290), 1, + STATE(9493), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7034), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583998,25 +584180,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156859] = 8, - ACTIONS(8398), 1, + [156803] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(8939), 1, + ACTIONS(8981), 1, anon_sym_AT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9206), 1, + STATE(9536), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7005), 2, + STATE(7088), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584024,19 +584206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156893] = 5, - ACTIONS(9163), 1, + [156837] = 5, + ACTIONS(9211), 1, anon_sym_DOT, - STATE(6971), 1, + STATE(6993), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 3, + ACTIONS(4273), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4307), 10, + ACTIONS(4271), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -584047,25 +584229,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156921] = 8, - ACTIONS(8398), 1, + [156865] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, - STATE(5539), 1, + STATE(5540), 1, sym_user_type, - STATE(6746), 1, + STATE(6842), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6950), 3, + STATE(6938), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584073,26 +584255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156955] = 9, - ACTIONS(8398), 1, + [156899] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9190), 1, - anon_sym_LBRACK, - STATE(4533), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5187), 1, + STATE(8948), 1, sym_simple_identifier, - STATE(5539), 1, - sym_user_type, - STATE(6746), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5550), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8384), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584100,24 +584281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [156991] = 8, - ACTIONS(533), 1, + [156933] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - anon_sym_DOT, - STATE(3382), 1, + ACTIONS(8981), 1, + anon_sym_AT, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(9540), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2223), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584125,47 +584307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157024] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3914), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, + [156967] = 8, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [157055] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9227), 1, anon_sym_LPAREN, - STATE(3037), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9229), 1, + anon_sym_DOT, + STATE(5530), 1, + sym__lexical_identifier, + STATE(5624), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(5255), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584173,24 +584332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157086] = 8, - ACTIONS(533), 1, + [157000] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9233), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1569), 2, + STATE(2565), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584198,23 +584357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157119] = 7, - ACTIONS(6347), 1, + [157033] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3041), 1, + STATE(4773), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584222,24 +584381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157150] = 8, - ACTIONS(533), 1, + [157064] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9204), 1, + ACTIONS(9239), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1568), 2, + STATE(617), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584247,74 +584406,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157183] = 8, - ACTIONS(8853), 1, - sym__backtick_identifier, - ACTIONS(9206), 1, + [157097] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9241), 1, anon_sym_LPAREN, - ACTIONS(9208), 1, - anon_sym_DOT, - STATE(5532), 1, - sym__lexical_identifier, - STATE(5629), 1, - sym_simple_identifier, + STATE(3519), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5261), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8849), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [157216] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - ACTIONS(9212), 1, + ACTIONS(4230), 3, anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(568), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [157249] = 8, - ACTIONS(613), 1, + sym__quest, sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - ACTIONS(9214), 1, - anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(440), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584322,23 +584430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157282] = 7, - ACTIONS(6347), 1, + [157128] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(3045), 1, + STATE(848), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584346,23 +584454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157313] = 7, - ACTIONS(6347), 1, + [157159] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(5122), 1, + STATE(4774), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584370,24 +584478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157344] = 8, - ACTIONS(613), 1, + [157190] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9218), 1, + ACTIONS(9245), 1, anon_sym_DOT, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, + STATE(436), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584395,24 +584503,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157377] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [157223] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(805), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1316), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584420,23 +584527,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157410] = 7, - ACTIONS(6347), 1, + [157254] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2825), 1, + STATE(3914), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584444,22 +584551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157441] = 6, - ACTIONS(9228), 1, - anon_sym_AT, - ACTIONS(9231), 1, - sym__backtick_identifier, + [157285] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(1230), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(9226), 8, - anon_sym_val, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584467,23 +584575,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157470] = 7, - ACTIONS(6347), 1, + [157316] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(2826), 1, + STATE(847), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584491,24 +584599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157501] = 8, - ACTIONS(8853), 1, + [157347] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9206), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9233), 1, + ACTIONS(9251), 1, anon_sym_DOT, - STATE(5532), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5629), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5242), 2, + STATE(1555), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8849), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584516,23 +584624,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157534] = 7, - ACTIONS(6347), 1, + [157380] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(2832), 1, + STATE(3518), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584540,24 +584648,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157565] = 8, - ACTIONS(613), 1, + [157411] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9235), 1, + ACTIONS(9253), 1, anon_sym_DOT, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(609), 2, + STATE(626), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584565,23 +584673,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157598] = 7, - ACTIONS(6347), 1, + [157444] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3975), 1, + STATE(3517), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584589,23 +584697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157629] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9237), 1, + [157475] = 8, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2806), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9255), 1, + anon_sym_DOT, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(1551), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584613,23 +584722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157660] = 7, - ACTIONS(6347), 1, + [157508] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9237), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(2809), 1, + STATE(846), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584637,24 +584746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157691] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, + [157539] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9257), 1, anon_sym_LPAREN, - ACTIONS(9239), 1, - anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, + STATE(5098), 1, + sym_type_arguments, + STATE(7885), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(449), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584662,24 +584770,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157724] = 8, - ACTIONS(195), 1, + [157570] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9241), 1, + ACTIONS(9259), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2405), 2, + STATE(620), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584687,24 +584795,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157757] = 8, - ACTIONS(533), 1, + [157603] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9243), 1, + ACTIONS(9261), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2687), 2, + STATE(613), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584712,23 +584820,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157790] = 7, - ACTIONS(6347), 1, + [157636] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4797), 1, + STATE(807), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584736,71 +584844,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157821] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9245), 1, - anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(7871), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, + [157667] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [157852] = 7, - ACTIONS(6347), 1, - anon_sym_LT, ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2813), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(9263), 1, anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [157883] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(788), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584808,23 +584869,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157914] = 7, - ACTIONS(6347), 1, + [157700] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9247), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(789), 1, + STATE(1232), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584832,23 +584893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157945] = 7, - ACTIONS(6347), 1, + [157731] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9247), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(793), 1, + STATE(1233), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584856,23 +584917,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [157976] = 7, - ACTIONS(6347), 1, + [157762] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9247), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(1218), 1, + STATE(1243), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584880,47 +584941,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158007] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(1217), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, + [157793] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [158038] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3982), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9265), 1, + anon_sym_DOT, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(2417), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584928,24 +584966,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158069] = 8, - ACTIONS(533), 1, + [157826] = 8, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9267), 1, anon_sym_LPAREN, - ACTIONS(9249), 1, + ACTIONS(9269), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5643), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2662), 2, + STATE(5384), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584953,93 +584991,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158102] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(1216), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, + [157859] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [158133] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9237), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3521), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(9271), 1, anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [158164] = 5, - ACTIONS(9251), 1, - anon_sym_LPAREN, - STATE(7422), 1, - sym_value_arguments, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(6930), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(6928), 10, + STATE(1557), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158191] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9237), 1, + [157892] = 8, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, anon_sym_LPAREN, + ACTIONS(9273), 1, + anon_sym_DOT, + STATE(3287), 1, + sym__lexical_identifier, STATE(3523), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(1552), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585047,23 +585041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158222] = 7, - ACTIONS(6347), 1, - anon_sym_LT, + [157925] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3524), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9275), 1, + anon_sym_DOT, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(439), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585071,23 +585066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158253] = 7, - ACTIONS(6347), 1, + [157958] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(2998), 1, + STATE(3659), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585095,23 +585090,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158284] = 7, - ACTIONS(8398), 1, + [157989] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9064), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(9277), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8726), 3, + STATE(2416), 2, sym_variable_declaration, sym_multi_variable_declaration, - sym__lambda_parameter, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585119,24 +585115,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158315] = 8, - ACTIONS(613), 1, + [158022] = 9, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - ACTIONS(9253), 1, - anon_sym_DOT, - STATE(843), 1, + ACTIONS(9279), 1, + anon_sym_COLON, + ACTIONS(9281), 1, + sym__automatic_semicolon, + STATE(5534), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(8193), 1, sym_simple_identifier, + STATE(8964), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585144,23 +585141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158348] = 7, - ACTIONS(6347), 1, + [158057] = 7, + ACTIONS(6365), 1, anon_sym_LT, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(1263), 1, + STATE(3056), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585168,49 +585165,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158379] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, + [158088] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9255), 1, - anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, + STATE(3981), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(559), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [158412] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - ACTIONS(9257), 1, + ACTIONS(4230), 3, anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(459), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585218,48 +585189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158445] = 7, - ACTIONS(6347), 1, + [158119] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9245), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(7873), 1, + STATE(1253), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [158476] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - ACTIONS(9259), 1, - anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585267,24 +585213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158509] = 8, - ACTIONS(613), 1, + [158150] = 8, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9267), 1, anon_sym_LPAREN, - ACTIONS(9261), 1, + ACTIONS(9285), 1, anon_sym_DOT, - STATE(843), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5643), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(623), 2, + STATE(5327), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585292,24 +585238,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158542] = 8, - ACTIONS(613), 1, + [158183] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9263), 1, + ACTIONS(9287), 1, anon_sym_DOT, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(548), 2, + STATE(450), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585317,23 +585263,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158575] = 7, - ACTIONS(6347), 1, + [158216] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2997), 1, + STATE(3049), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585341,23 +585287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158606] = 7, - ACTIONS(6347), 1, + [158247] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9247), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(1251), 1, + STATE(793), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585365,24 +585311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158637] = 8, - ACTIONS(533), 1, + [158278] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9265), 1, + ACTIONS(9289), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2660), 2, + STATE(448), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585390,23 +585336,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158670] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9224), 1, + [158311] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2995), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9291), 1, + anon_sym_DOT, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(634), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585414,23 +585361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158701] = 7, - ACTIONS(6347), 1, + [158344] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9247), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(876), 1, + STATE(2809), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585438,23 +585385,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158732] = 7, - ACTIONS(6347), 1, + [158375] = 7, + ACTIONS(6365), 1, anon_sym_LT, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(873), 1, + STATE(3048), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585462,48 +585409,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158763] = 8, - ACTIONS(195), 1, + [158406] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9267), 1, + ACTIONS(9293), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1599), 2, + STATE(2568), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [158796] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(872), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585511,23 +585434,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158827] = 7, - ACTIONS(6347), 1, + [158439] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3995), 1, + STATE(2818), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585535,24 +585458,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158858] = 8, - ACTIONS(195), 1, + [158470] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9269), 1, + ACTIONS(9295), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2424), 2, + STATE(2428), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585560,23 +585483,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158891] = 7, - ACTIONS(6347), 1, + [158503] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4441), 1, + STATE(2837), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585584,23 +585507,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158922] = 7, - ACTIONS(6347), 1, + [158534] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9237), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3583), 1, + STATE(4770), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585608,24 +585531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158953] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, + [158565] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9241), 1, anon_sym_LPAREN, - ACTIONS(9271), 1, - anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, + STATE(3638), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(571), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585633,24 +585555,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [158986] = 8, - ACTIONS(613), 1, + [158596] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9273), 1, + ACTIONS(9297), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(607), 2, + STATE(1604), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585658,23 +585580,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159019] = 7, - ACTIONS(6347), 1, + [158629] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9257), 1, anon_sym_LPAREN, - STATE(4442), 1, - sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, + STATE(7881), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585682,23 +585604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159050] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9216), 1, + [158660] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4443), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9299), 1, + anon_sym_DOT, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(430), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585706,44 +585629,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159081] = 3, + [158693] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9301), 1, + anon_sym_LPAREN, + STATE(5098), 1, + sym_type_arguments, + STATE(7875), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4515), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4230), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4513), 10, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159104] = 8, - ACTIONS(195), 1, + [158724] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9275), 1, + ACTIONS(9303), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1608), 2, + STATE(2373), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585751,43 +585678,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159137] = 3, + [158757] = 8, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, + anon_sym_LPAREN, + ACTIONS(9305), 1, + anon_sym_DOT, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4270), 10, + STATE(2655), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159160] = 7, - ACTIONS(6347), 1, + [158790] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9245), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(7872), 1, + STATE(4780), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585795,23 +585727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159191] = 7, - ACTIONS(6347), 1, - anon_sym_LT, + [158821] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3591), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9309), 1, + anon_sym_DOT, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585819,24 +585752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159222] = 8, - ACTIONS(195), 1, + [158854] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9277), 1, + ACTIONS(9311), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1607), 2, + STATE(429), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585844,43 +585777,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159255] = 3, + [158887] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9237), 1, + anon_sym_LPAREN, + ACTIONS(9313), 1, + anon_sym_DOT, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 4, - anon_sym_AT, + STATE(453), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [158920] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9247), 1, anon_sym_LPAREN, + STATE(2812), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4489), 10, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159278] = 7, - ACTIONS(6347), 1, + [158951] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(5125), 1, + STATE(4678), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585888,44 +585850,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159309] = 3, + [158982] = 8, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(9249), 1, + anon_sym_LPAREN, + ACTIONS(9317), 1, + anon_sym_DOT, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4469), 10, + STATE(1319), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159332] = 8, - ACTIONS(613), 1, + [159015] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9279), 1, + ACTIONS(9319), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(619), 2, + STATE(1318), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [159048] = 6, + ACTIONS(9323), 1, + anon_sym_AT, + ACTIONS(9326), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(9321), 8, + anon_sym_val, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585933,23 +585923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159365] = 7, - ACTIONS(6347), 1, + [159077] = 7, + ACTIONS(6365), 1, anon_sym_LT, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(1259), 1, + STATE(2799), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585957,23 +585947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159396] = 7, - ACTIONS(6347), 1, + [159108] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(5129), 1, + STATE(2797), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585981,24 +585971,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159427] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [159139] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9241), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(2845), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1576), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586006,24 +585995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159460] = 8, - ACTIONS(613), 1, + [159170] = 8, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9328), 1, anon_sym_LPAREN, - ACTIONS(9283), 1, + ACTIONS(9330), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(427), 2, + STATE(1857), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586031,24 +586020,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159493] = 8, - ACTIONS(195), 1, + [159203] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9285), 1, + ACTIONS(9332), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1571), 2, + STATE(1326), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586056,23 +586045,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159526] = 7, - ACTIONS(6347), 1, + [159236] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9237), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3592), 1, + STATE(3645), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586080,24 +586069,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159557] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [159267] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9287), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(3931), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1570), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586105,24 +586093,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159590] = 8, - ACTIONS(8847), 1, + [159298] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9289), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9291), 1, + ACTIONS(9334), 1, anon_sym_DOT, - STATE(5419), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5643), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5303), 2, + STATE(2616), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8843), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586130,23 +586118,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159623] = 7, - ACTIONS(6347), 1, + [159331] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9293), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(7877), 1, + STATE(3475), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586154,24 +586142,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159654] = 8, - ACTIONS(533), 1, + [159362] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9295), 1, + ACTIONS(9336), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1554), 2, + STATE(456), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586179,24 +586167,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159687] = 8, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9196), 1, + [159395] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9297), 1, - anon_sym_DOT, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3540), 1, - sym_simple_identifier, + STATE(3027), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2598), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586204,23 +586191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159720] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9299), 1, + [159426] = 8, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(4760), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9338), 1, + anon_sym_DOT, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(2372), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586228,24 +586216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159751] = 8, - ACTIONS(8859), 1, + [159459] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9301), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9303), 1, + ACTIONS(9340), 1, anon_sym_DOT, - STATE(2903), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1910), 2, + STATE(1544), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8855), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586253,24 +586241,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159784] = 8, - ACTIONS(613), 1, + [159492] = 8, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9328), 1, anon_sym_LPAREN, - ACTIONS(9305), 1, + ACTIONS(9342), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(439), 2, + STATE(1913), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586278,24 +586266,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159817] = 8, - ACTIONS(533), 1, + [159525] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9307), 1, + ACTIONS(9344), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2689), 2, + STATE(1288), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586303,24 +586291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159850] = 8, - ACTIONS(533), 1, + [159558] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9309), 1, + ACTIONS(9346), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2076), 2, + STATE(2195), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586328,24 +586316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159883] = 8, - ACTIONS(195), 1, + [159591] = 9, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9220), 1, - anon_sym_LPAREN, - ACTIONS(9311), 1, - anon_sym_DOT, - STATE(2858), 1, + ACTIONS(9348), 1, + anon_sym_COLON, + ACTIONS(9350), 1, + sym__automatic_semicolon, + STATE(5534), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(8233), 1, sym_simple_identifier, + STATE(8999), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2570), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586353,23 +586342,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159916] = 7, - ACTIONS(6347), 1, + [159626] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3921), 1, + STATE(3930), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586377,24 +586366,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159947] = 8, - ACTIONS(533), 1, + [159657] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9313), 1, + ACTIONS(9352), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1556), 2, + STATE(1546), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586402,47 +586391,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [159980] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(3541), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, + [159690] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [160011] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(4816), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9354), 1, + anon_sym_DOT, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(1553), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586450,23 +586416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160042] = 7, - ACTIONS(6347), 1, + [159723] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9315), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4577), 1, + STATE(3539), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586474,23 +586440,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160073] = 7, - ACTIONS(6347), 1, + [159754] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9315), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(5167), 1, + STATE(2992), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586498,24 +586464,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160104] = 8, - ACTIONS(8847), 1, + [159785] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9289), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9317), 1, + ACTIONS(9356), 1, anon_sym_DOT, - STATE(5419), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5643), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5276), 2, + STATE(1605), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8843), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586523,24 +586489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160137] = 8, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9196), 1, + [159818] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9235), 1, anon_sym_LPAREN, - ACTIONS(9319), 1, - anon_sym_DOT, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3540), 1, - sym_simple_identifier, + STATE(4444), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1549), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586548,24 +586513,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160170] = 8, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9210), 1, + [159849] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9247), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_DOT, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, - sym_simple_identifier, + STATE(3540), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(435), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586573,25 +586537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160203] = 9, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8906), 1, + [159880] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9323), 1, - anon_sym_COLON, - ACTIONS(9325), 1, - sym__automatic_semicolon, - STATE(5536), 1, + ACTIONS(9249), 1, + anon_sym_LPAREN, + ACTIONS(9358), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(8222), 1, + STATE(2980), 1, sym_simple_identifier, - STATE(9037), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + STATE(2370), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586599,23 +586562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160238] = 7, - ACTIONS(6347), 1, + [159913] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9293), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(7881), 1, + STATE(2887), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586623,74 +586586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160269] = 7, - ACTIONS(6347), 1, + [159944] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3934), 1, + STATE(3921), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [160300] = 9, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8906), 1, - sym__backtick_identifier, - ACTIONS(9327), 1, - anon_sym_COLON, - ACTIONS(9329), 1, - sym__automatic_semicolon, - STATE(5536), 1, - sym__lexical_identifier, - STATE(8224), 1, - sym_simple_identifier, - STATE(8952), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8900), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [160335] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, - anon_sym_LPAREN, - ACTIONS(9331), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2385), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586698,24 +586610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160368] = 8, - ACTIONS(533), 1, + [159975] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9333), 1, + ACTIONS(9360), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1547), 2, + STATE(2566), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586723,23 +586635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160401] = 7, - ACTIONS(6347), 1, + [160008] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9315), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(5123), 1, + STATE(4442), 1, sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586747,23 +586659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160432] = 7, - ACTIONS(6347), 1, + [160039] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4755), 1, + STATE(4440), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586771,48 +586683,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160463] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(5104), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + [160070] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4225), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4223), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160494] = 8, - ACTIONS(533), 1, + [160093] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9335), 1, + ACTIONS(9362), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2590), 2, + STATE(459), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586820,48 +586728,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160527] = 8, - ACTIONS(613), 1, + [160126] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9337), 1, + ACTIONS(9364), 1, anon_sym_DOT, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(618), 2, + STATE(1772), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [160560] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(3543), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586869,24 +586753,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160591] = 8, - ACTIONS(533), 1, + [160159] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9339), 1, + ACTIONS(9366), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2083), 2, + STATE(1564), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586894,23 +586778,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160624] = 7, - ACTIONS(6347), 1, + [160192] = 7, + ACTIONS(6365), 1, anon_sym_LT, ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4615), 1, + STATE(4679), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586918,24 +586802,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160655] = 8, - ACTIONS(533), 1, + [160223] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9341), 1, + ACTIONS(9368), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2645), 2, + STATE(2065), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586943,23 +586827,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160688] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9315), 1, + [160256] = 8, + ACTIONS(8889), 1, + sym__backtick_identifier, + ACTIONS(9227), 1, anon_sym_LPAREN, - STATE(5103), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9370), 1, + anon_sym_DOT, + STATE(5530), 1, + sym__lexical_identifier, + STATE(5624), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(5234), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586967,23 +586852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160719] = 7, - ACTIONS(6347), 1, + [160289] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(3954), 1, + STATE(4677), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586991,24 +586876,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160750] = 8, - ACTIONS(613), 1, + [160320] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9343), 1, + ACTIONS(9372), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(438), 2, + STATE(1313), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587016,24 +586901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160783] = 8, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9196), 1, + [160353] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9345), 1, - anon_sym_DOT, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3540), 1, - sym_simple_identifier, + STATE(3188), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2565), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587041,23 +586925,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160816] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9299), 1, + [160384] = 8, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(4780), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + ACTIONS(9374), 1, + anon_sym_DOT, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, + STATE(2649), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587065,23 +586950,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160847] = 7, - ACTIONS(6347), 1, + [160417] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(3475), 1, - sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, + STATE(5124), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587089,24 +586974,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160878] = 8, - ACTIONS(195), 1, + [160448] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9347), 1, + ACTIONS(9376), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2390), 2, + STATE(2008), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587114,24 +586999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160911] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [160481] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9315), 1, anon_sym_LPAREN, - ACTIONS(9349), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(5098), 1, + sym_type_arguments, + STATE(5119), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2608), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587139,24 +587023,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160944] = 8, - ACTIONS(613), 1, + [160512] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9351), 1, + ACTIONS(9378), 1, anon_sym_DOT, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(634), 2, + STATE(2680), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587164,23 +587048,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [160977] = 7, - ACTIONS(6347), 1, + [160545] = 7, + ACTIONS(6365), 1, anon_sym_LT, ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, - STATE(5184), 1, + STATE(5177), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587188,48 +587072,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161008] = 8, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9196), 1, + [160576] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9353), 1, + STATE(4007), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, anon_sym_DOT, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3540), 1, - sym_simple_identifier, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [160607] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2625), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(4450), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + sym__backtick_identifier, + ACTIONS(4448), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161041] = 7, - ACTIONS(6347), 1, + [160630] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3964), 1, + STATE(2880), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [160661] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9301), 1, + anon_sym_LPAREN, + STATE(5098), 1, sym_type_arguments, + STATE(7876), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587237,23 +587164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161072] = 7, - ACTIONS(6347), 1, + [160692] = 7, + ACTIONS(6365), 1, anon_sym_LT, ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4515), 1, + STATE(5083), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587261,24 +587188,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161103] = 8, - ACTIONS(533), 1, + [160723] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9355), 1, + ACTIONS(9380), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2606), 2, + STATE(2576), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587286,24 +587213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161136] = 8, - ACTIONS(195), 1, + [160756] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9357), 1, + ACTIONS(9382), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1338), 2, + STATE(2690), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587311,23 +587238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161169] = 7, - ACTIONS(6347), 1, + [160789] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9315), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4516), 1, + STATE(3199), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587335,24 +587262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161200] = 8, - ACTIONS(533), 1, + [160820] = 8, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9328), 1, anon_sym_LPAREN, - ACTIONS(9359), 1, + ACTIONS(9384), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2567), 2, + STATE(1784), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587360,48 +587287,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161233] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4518), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + [160853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4466), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4464), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161264] = 8, - ACTIONS(8859), 1, + [160876] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9301), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9361), 1, + ACTIONS(9386), 1, anon_sym_DOT, - STATE(2903), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1854), 2, + STATE(1312), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8855), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587409,24 +587332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161297] = 8, - ACTIONS(613), 1, + [160909] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9363), 1, + ACTIONS(9388), 1, anon_sym_DOT, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, + STATE(2010), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587434,24 +587357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161330] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [160942] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9315), 1, anon_sym_LPAREN, - ACTIONS(9365), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(5098), 1, + sym_type_arguments, + STATE(5175), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1334), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587459,23 +587381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161363] = 7, - ACTIONS(6347), 1, + [160973] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3252), 1, + STATE(3200), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587483,24 +587405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161394] = 8, - ACTIONS(195), 1, + [161004] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9367), 1, + ACTIONS(9390), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2569), 2, + STATE(1736), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587508,24 +587430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161427] = 8, - ACTIONS(533), 1, + [161037] = 7, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9093), 1, anon_sym_LPAREN, - ACTIONS(9369), 1, - anon_sym_DOT, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(8125), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2071), 2, + STATE(8814), 3, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + sym__lambda_parameter, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587533,22 +587454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161460] = 6, - ACTIONS(9371), 1, + [161068] = 6, + ACTIONS(9392), 1, anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9231), 2, + ACTIONS(9326), 2, anon_sym_LPAREN, sym__backtick_identifier, - STATE(5546), 2, + STATE(5551), 2, sym__single_annotation, sym__multi_annotation, - STATE(7161), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(9226), 7, + ACTIONS(9321), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587556,24 +587477,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161489] = 8, - ACTIONS(533), 1, + [161097] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9374), 1, + ACTIONS(9395), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1878), 2, + STATE(612), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587581,24 +587502,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161522] = 8, - ACTIONS(613), 1, + [161130] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9376), 1, + ACTIONS(9397), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(437), 2, + STATE(1558), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161163] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3912), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587606,24 +587551,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161555] = 8, - ACTIONS(195), 1, + [161194] = 8, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9267), 1, anon_sym_LPAREN, - ACTIONS(9378), 1, + ACTIONS(9399), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(5643), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2616), 2, + STATE(5364), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587631,23 +587576,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161588] = 7, - ACTIONS(6347), 1, + [161227] = 8, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, + anon_sym_LPAREN, + ACTIONS(9401), 1, + anon_sym_DOT, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2692), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161260] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9315), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4710), 1, + STATE(1254), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587655,23 +587625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161619] = 7, - ACTIONS(6347), 1, + [161291] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4553), 1, - sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, + STATE(5171), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587679,48 +587649,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161650] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_function_value_parameters, - STATE(5112), 1, - sym_type_arguments, + [161322] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4488), 4, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4486), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161681] = 8, - ACTIONS(533), 1, + [161345] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9380), 1, + ACTIONS(9403), 1, anon_sym_DOT, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1886), 2, + STATE(451), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587728,24 +587694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161714] = 8, - ACTIONS(613), 1, + [161378] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9382), 1, + ACTIONS(9405), 1, anon_sym_DOT, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, + STATE(2648), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587753,24 +587719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161747] = 8, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9196), 1, + [161411] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9307), 1, anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_DOT, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3540), 1, - sym_simple_identifier, + STATE(4786), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587778,24 +587743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161780] = 8, - ACTIONS(195), 1, + [161442] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9407), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2589), 2, + STATE(2586), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587803,23 +587768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161813] = 7, - ACTIONS(6347), 1, + [161475] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9299), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4784), 1, + STATE(4552), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587827,23 +587792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161844] = 7, - ACTIONS(6347), 1, + [161506] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9224), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3956), 1, - sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, + STATE(5104), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587851,24 +587816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161875] = 8, - ACTIONS(195), 1, + [161537] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9388), 1, + ACTIONS(9409), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2630), 2, + STATE(2602), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587876,24 +587841,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161908] = 8, - ACTIONS(8859), 1, + [161570] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9301), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9390), 1, + ACTIONS(9411), 1, anon_sym_DOT, - STATE(2903), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1781), 2, + STATE(1562), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8855), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587901,23 +587866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161941] = 7, - ACTIONS(6347), 1, + [161603] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9257), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, + STATE(7895), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587925,24 +587890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [161972] = 8, - ACTIONS(195), 1, + [161634] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9392), 1, + ACTIONS(9413), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2374), 2, + STATE(2604), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587950,24 +587915,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162005] = 8, - ACTIONS(195), 1, + [161667] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3958), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(4148), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161698] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9394), 1, + ACTIONS(9415), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1323), 2, + STATE(546), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587975,24 +587964,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162038] = 8, - ACTIONS(8853), 1, + [161731] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4533), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(9206), 1, + ACTIONS(4148), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161762] = 8, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, anon_sym_LPAREN, - ACTIONS(9396), 1, + ACTIONS(9417), 1, anon_sym_DOT, - STATE(5532), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5629), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5219), 2, + STATE(2618), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8849), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588000,23 +588013,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162071] = 7, - ACTIONS(6347), 1, + [161795] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9216), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4562), 1, + STATE(5098), 1, + sym_type_arguments, + STATE(5105), 1, sym_function_value_parameters, - STATE(5112), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161826] = 8, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9237), 1, + anon_sym_LPAREN, + ACTIONS(9419), 1, + anon_sym_DOT, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(608), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161859] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(5098), 1, sym_type_arguments, + STATE(5103), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588024,24 +588086,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162102] = 8, - ACTIONS(195), 1, + [161890] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9398), 1, + ACTIONS(9421), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1335), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + STATE(2599), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [161923] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4525), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588049,23 +588135,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162135] = 7, - ACTIONS(6347), 1, + [161954] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9237), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(2863), 1, + STATE(4519), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588073,24 +588159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162166] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [161985] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9283), 1, anon_sym_LPAREN, - ACTIONS(9400), 1, - anon_sym_DOT, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(2994), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2368), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588098,23 +588183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162199] = 7, - ACTIONS(6347), 1, + [162016] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3310), 1, + STATE(4523), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588122,24 +588207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162230] = 8, - ACTIONS(613), 1, + [162047] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - ACTIONS(9402), 1, + ACTIONS(9423), 1, anon_sym_DOT, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(448), 2, + STATE(2571), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588147,48 +588232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162263] = 7, - ACTIONS(6347), 1, - anon_sym_LT, - ACTIONS(9293), 1, - anon_sym_LPAREN, - STATE(5112), 1, - sym_type_arguments, - STATE(7884), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4113), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [162294] = 8, - ACTIONS(195), 1, + [162080] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9404), 1, + ACTIONS(9425), 1, anon_sym_DOT, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1337), 2, + STATE(556), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588196,23 +588257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162327] = 7, - ACTIONS(6347), 1, + [162113] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9237), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(2839), 1, + STATE(4784), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588220,23 +588281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162358] = 7, - ACTIONS(6347), 1, + [162144] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9200), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3264), 1, + STATE(3989), 1, sym_function_value_parameters, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588244,24 +588305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162389] = 8, - ACTIONS(8847), 1, + [162175] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9289), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - ACTIONS(9406), 1, + ACTIONS(9427), 1, anon_sym_DOT, - STATE(5419), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5643), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5345), 2, + STATE(573), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8843), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588269,23 +588330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162422] = 7, - ACTIONS(6347), 1, + [162208] = 7, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(9315), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, - STATE(5189), 1, + STATE(7879), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 3, + ACTIONS(4230), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4113), 7, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588293,22 +588354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162453] = 7, - ACTIONS(613), 1, + [162239] = 8, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9227), 1, anon_sym_LPAREN, - STATE(843), 1, + ACTIONS(9429), 1, + anon_sym_DOT, + STATE(5530), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5624), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(446), 2, + STATE(5219), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588316,23 +588379,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162483] = 8, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(5177), 1, - anon_sym_LBRACE, - ACTIONS(9408), 1, - anon_sym_COLON, - STATE(2858), 1, - sym__lexical_identifier, - STATE(3381), 1, - sym_class_body, - STATE(4123), 1, - sym_simple_identifier, + [162272] = 7, + ACTIONS(6365), 1, + anon_sym_LT, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4527), 1, + sym_function_value_parameters, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4148), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588340,22 +588403,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162515] = 7, - ACTIONS(195), 1, + [162303] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(9431), 1, + anon_sym_DOT, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1335), 2, + STATE(569), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588363,22 +588428,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162545] = 7, - ACTIONS(129), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, + [162336] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9410), 1, - anon_sym_class, - STATE(2858), 1, + ACTIONS(9237), 1, + anon_sym_LPAREN, + ACTIONS(9433), 1, + anon_sym_DOT, + STATE(832), 1, sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3210), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(111), 7, + STATE(550), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588386,46 +588453,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162575] = 7, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9220), 1, + [162369] = 5, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym__lexical_identifier, - STATE(2966), 1, - sym_simple_identifier, + STATE(7426), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1337), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(7009), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7007), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162605] = 8, - ACTIONS(8398), 1, + [162396] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(9437), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2598), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588433,22 +588500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162637] = 7, - ACTIONS(533), 1, + [162429] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3413), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2076), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588456,23 +588524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162667] = 8, - ACTIONS(195), 1, + [162461] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(5177), 1, - anon_sym_LBRACE, - ACTIONS(9408), 1, - anon_sym_COLON, - STATE(2858), 1, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(1364), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(2953), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(3381), 1, - sym_class_body, + STATE(8922), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588480,23 +588548,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162699] = 8, - ACTIONS(613), 1, + [162493] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(3180), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_COLON, - STATE(843), 1, + ACTIONS(9241), 1, + anon_sym_LPAREN, + STATE(3947), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(1072), 1, - sym_class_body, - STATE(1544), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588504,22 +588572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162731] = 7, - ACTIONS(8847), 1, + [162525] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9289), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(5419), 1, + STATE(4114), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5643), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5370), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8843), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588527,22 +588596,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162761] = 7, - ACTIONS(613), 1, + [162557] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(448), 2, + STATE(1564), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588550,21 +588619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162791] = 7, - ACTIONS(195), 1, + [162587] = 8, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9220), 1, - anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(9439), 1, + anon_sym_COLON, + STATE(4459), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(4488), 1, sym_simple_identifier, + STATE(4726), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2597), 2, - sym_variable_declaration, - sym_multi_variable_declaration, ACTIONS(111), 7, anon_sym_get, anon_sym_set, @@ -588573,22 +588643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162821] = 7, - ACTIONS(533), 1, + [162619] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3017), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8779), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1620), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588596,23 +588667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162851] = 8, - ACTIONS(3144), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, + [162651] = 7, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9414), 1, - anon_sym_COLON, - STATE(3454), 1, - sym_class_body, - STATE(4537), 1, + ACTIONS(9328), 1, + anon_sym_LPAREN, + STATE(2949), 1, sym__lexical_identifier, - STATE(5153), 1, + STATE(3552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8918), 7, + STATE(1913), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588620,23 +588690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162883] = 8, - ACTIONS(8398), 1, + [162681] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(2980), 1, sym_simple_identifier, - STATE(9049), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1566), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588644,23 +588713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162915] = 8, - ACTIONS(8398), 1, + [162711] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3428), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(7518), 1, sym_simple_identifier, - STATE(9197), 1, - sym_function_type_parameters, + STATE(8641), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588668,23 +588737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162947] = 8, - ACTIONS(8398), 1, + [162743] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3487), 1, + STATE(3948), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588692,22 +588761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [162979] = 7, - ACTIONS(195), 1, + [162775] = 7, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9267), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(5643), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2368), 2, + STATE(5364), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588715,23 +588784,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163009] = 8, - ACTIONS(8398), 1, + [162805] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4870), 1, + STATE(1365), 1, sym_function_value_parameters, - STATE(5083), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588739,23 +588808,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163041] = 8, - ACTIONS(8398), 1, + [162837] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3485), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588763,23 +588831,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163073] = 8, - ACTIONS(8398), 1, + [162867] = 8, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3929), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(4674), 1, sym_simple_identifier, + STATE(4785), 1, + sym__simple_user_type, + STATE(9395), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588787,23 +588855,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163105] = 8, - ACTIONS(8398), 1, + [162899] = 8, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(1031), 1, - sym_function_value_parameters, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7487), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(8604), 1, + STATE(2949), 1, + sym__lexical_identifier, + STATE(3471), 1, sym__simple_user_type, + STATE(9311), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588811,22 +588879,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163137] = 7, - ACTIONS(8847), 1, + [162931] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9289), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(5419), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5643), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5345), 2, + STATE(625), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8843), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588834,23 +588902,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163167] = 8, - ACTIONS(533), 1, + [162961] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(5358), 1, - anon_sym_LBRACE, - ACTIONS(9416), 1, - anon_sym_COLON, - STATE(3382), 1, + ACTIONS(9237), 1, + anon_sym_LPAREN, + STATE(832), 1, sym__lexical_identifier, - STATE(3481), 1, + STATE(930), 1, sym_simple_identifier, - STATE(3690), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + STATE(573), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588858,23 +588925,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163199] = 8, - ACTIONS(281), 1, + [162991] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4461), 1, + STATE(4049), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(4466), 1, - sym_simple_identifier, - STATE(4473), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(9323), 1, - sym_function_type_parameters, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588882,23 +588949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163231] = 8, - ACTIONS(8398), 1, + [163023] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(987), 1, + STATE(3505), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588906,23 +588973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163263] = 8, - ACTIONS(8398), 1, + [163055] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(870), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, - STATE(8877), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(583), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588930,22 +588996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163295] = 7, - ACTIONS(195), 1, + [163085] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3506), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2374), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588953,22 +589020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163325] = 7, - ACTIONS(533), 1, + [163117] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3670), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2071), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588976,22 +589044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163355] = 7, - ACTIONS(195), 1, + [163149] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3506), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1310), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588999,22 +589068,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163385] = 7, - ACTIONS(613), 1, + [163181] = 7, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9267), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(5434), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5643), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(609), 2, + STATE(5384), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589022,23 +589091,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163415] = 8, - ACTIONS(8398), 1, + [163211] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(994), 1, + STATE(3623), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8815), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589046,23 +589115,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163447] = 8, - ACTIONS(8398), 1, + [163243] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3637), 1, + STATE(4449), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8879), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589070,23 +589139,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163479] = 8, - ACTIONS(409), 1, + [163275] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACE, - ACTIONS(9414), 1, - anon_sym_COLON, - STATE(2837), 1, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3671), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(2946), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, - STATE(3454), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589094,23 +589163,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163511] = 8, - ACTIONS(8398), 1, + [163307] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5157), 1, + STATE(4889), 1, sym_function_value_parameters, - STATE(7487), 1, - sym_simple_identifier, - STATE(8645), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589118,23 +589187,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163543] = 8, - ACTIONS(8398), 1, + [163339] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3930), 1, + STATE(2896), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8938), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589142,22 +589211,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163575] = 7, - ACTIONS(195), 1, + [163371] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, - anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(9441), 1, + anon_sym_COLON, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3420), 1, + sym_class_body, + STATE(4160), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2592), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589165,22 +589235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163605] = 7, - ACTIONS(195), 1, + [163403] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2424), 2, + STATE(2568), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589188,23 +589258,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163635] = 8, - ACTIONS(8916), 1, + [163433] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(8059), 1, - sym_simple_identifier, - STATE(8112), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(8431), 1, - sym__simple_user_type, - STATE(9482), 1, - sym_function_type_parameters, + STATE(2980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8912), 7, + STATE(2582), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589212,22 +589281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163667] = 7, - ACTIONS(195), 1, + [163463] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2876), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2385), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589235,23 +589305,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163697] = 8, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9224), 1, + [163495] = 7, + ACTIONS(27), 1, anon_sym_LPAREN, - STATE(4058), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(107), 1, + sym__backtick_identifier, + ACTIONS(9443), 1, + anon_sym_class, + STATE(4558), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8614), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(4946), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589259,22 +589328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163729] = 8, - ACTIONS(409), 1, + [163525] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2898), 1, + STATE(930), 1, sym_simple_identifier, - STATE(2919), 1, - sym__simple_user_type, - STATE(9568), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + STATE(608), 2, + sym_variable_declaration, + sym_multi_variable_declaration, ACTIONS(333), 7, anon_sym_get, anon_sym_set, @@ -589283,22 +589351,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163761] = 7, - ACTIONS(533), 1, + [163555] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3505), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2036), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589306,22 +589375,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163791] = 7, - ACTIONS(533), 1, + [163587] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3999), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589329,23 +589399,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163821] = 8, - ACTIONS(8398), 1, + [163619] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3073), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(9445), 1, + anon_sym_COLON, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(1073), 1, + sym_class_body, + STATE(1545), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589353,23 +589423,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163853] = 8, - ACTIONS(107), 1, + [163651] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4566), 1, + STATE(3992), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(4677), 1, - sym_simple_identifier, - STATE(4783), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(9205), 1, - sym_function_type_parameters, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589377,23 +589447,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163885] = 8, - ACTIONS(8398), 1, + [163683] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(3057), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2655), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589401,23 +589470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163917] = 8, - ACTIONS(8398), 1, + [163713] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3639), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589425,22 +589493,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163949] = 7, - ACTIONS(533), 1, + [163743] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2645), 2, + STATE(2571), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589448,22 +589516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [163979] = 7, - ACTIONS(613), 1, + [163773] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, + STATE(8958), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(629), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589471,22 +589540,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164009] = 7, - ACTIONS(195), 1, + [163805] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1329), 2, + STATE(546), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589494,22 +589563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164039] = 7, - ACTIONS(8853), 1, + [163835] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9206), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(5532), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5629), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5242), 2, + STATE(2634), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8849), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589517,23 +589586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164069] = 8, - ACTIONS(8398), 1, + [163865] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4026), 1, + STATE(2875), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589541,23 +589610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164101] = 8, - ACTIONS(8398), 1, + [163897] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4030), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(4755), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, + STATE(8842), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589565,22 +589634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164133] = 7, - ACTIONS(533), 1, + [163929] = 8, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9196), 1, - anon_sym_LPAREN, - STATE(3382), 1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + ACTIONS(9447), 1, + anon_sym_COLON, + STATE(2889), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3337), 1, + sym_class_body, + STATE(3961), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2590), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589588,23 +589658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164163] = 8, - ACTIONS(195), 1, + [163961] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2897), 1, + STATE(2980), 1, sym_simple_identifier, - STATE(2941), 1, - sym__simple_user_type, - STATE(9519), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + STATE(2599), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589612,22 +589681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164195] = 7, - ACTIONS(613), 1, + [163991] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, + STATE(609), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589635,23 +589704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164225] = 8, - ACTIONS(8398), 1, + [164021] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4830), 1, + STATE(2890), 1, sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7518), 1, sym_simple_identifier, + STATE(8659), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589659,23 +589728,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164257] = 8, - ACTIONS(8398), 1, + [164053] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(1250), 1, + STATE(1234), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8616), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589683,22 +589752,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164289] = 7, - ACTIONS(195), 1, + [164085] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2409), 2, + STATE(2618), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589706,23 +589775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164319] = 8, - ACTIONS(613), 1, + [164115] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(3180), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_COLON, - STATE(843), 1, + ACTIONS(9231), 1, + anon_sym_LPAREN, + STATE(3287), 1, sym__lexical_identifier, - STATE(883), 1, + STATE(3523), 1, sym_simple_identifier, - STATE(1072), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + STATE(2565), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589730,22 +589798,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164351] = 7, - ACTIONS(8847), 1, + [164145] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9289), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(5419), 1, + STATE(2876), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5643), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5276), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8843), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589753,22 +589822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164381] = 7, - ACTIONS(533), 1, + [164177] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2598), 2, + STATE(2675), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589776,23 +589845,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164411] = 8, - ACTIONS(8398), 1, + [164207] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2875), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5312), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589800,22 +589869,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164443] = 7, - ACTIONS(195), 1, + [164239] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(1240), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2630), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589823,23 +589893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164473] = 8, - ACTIONS(8398), 1, + [164271] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(1248), 1, + STATE(3643), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589847,22 +589917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164505] = 7, - ACTIONS(195), 1, + [164303] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1323), 2, + STATE(1559), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589870,23 +589940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164535] = 8, - ACTIONS(613), 1, + [164333] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(928), 1, + STATE(4614), 1, + sym_function_value_parameters, + STATE(7518), 1, + sym_simple_identifier, + STATE(8916), 1, sym__simple_user_type, - STATE(9458), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589894,14 +589964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164567] = 7, - ACTIONS(195), 1, + [164365] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -589909,7 +589979,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2616), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589917,23 +589987,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164597] = 8, - ACTIONS(8924), 1, + [164395] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(4537), 1, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(9445), 1, + anon_sym_COLON, + STATE(832), 1, sym__lexical_identifier, - STATE(4554), 1, + STATE(880), 1, sym_simple_identifier, - STATE(4788), 1, - sym__simple_user_type, - STATE(9531), 1, - sym_function_type_parameters, + STATE(1073), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8918), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589941,22 +590011,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164629] = 7, - ACTIONS(195), 1, + [164427] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1334), 2, + STATE(2692), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589964,23 +590034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164659] = 8, - ACTIONS(8398), 1, + [164457] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(3487), 1, + STATE(1239), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589988,23 +590058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164691] = 8, - ACTIONS(8398), 1, + [164489] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4844), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590012,23 +590081,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164723] = 8, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(8906), 1, + [164519] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9418), 1, - anon_sym_COLON, - STATE(4904), 1, - sym_class_body, - STATE(5536), 1, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(3642), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(7995), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590036,23 +590105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164755] = 8, - ACTIONS(8398), 1, + [164551] = 8, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(5325), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(5538), 1, sym_simple_identifier, - STATE(8830), 1, + STATE(5555), 1, sym__simple_user_type, + STATE(9457), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590060,22 +590129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164787] = 7, - ACTIONS(533), 1, + [164583] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(4772), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2628), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590083,22 +590153,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164817] = 7, - ACTIONS(195), 1, + [164615] = 7, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9328), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2589), 2, + STATE(1857), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590106,23 +590176,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164847] = 8, - ACTIONS(533), 1, + [164645] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(845), 1, sym_simple_identifier, - STATE(3506), 1, + STATE(921), 1, sym__simple_user_type, - STATE(9499), 1, + STATE(9318), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590130,23 +590200,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164879] = 8, - ACTIONS(409), 1, + [164677] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACE, - ACTIONS(9414), 1, - anon_sym_COLON, - STATE(2837), 1, + ACTIONS(9231), 1, + anon_sym_LPAREN, + STATE(3287), 1, sym__lexical_identifier, - STATE(3454), 1, - sym_class_body, - STATE(3962), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + STATE(2604), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590154,23 +590223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164911] = 8, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(8398), 1, + [164707] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_COLON, - STATE(4533), 1, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4618), 1, - sym_class_body, - STATE(8273), 1, + STATE(4771), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590178,23 +590247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164943] = 8, - ACTIONS(8398), 1, + [164739] = 8, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4455), 1, + sym_simple_identifier, + STATE(4459), 1, sym__lexical_identifier, - STATE(4811), 1, - sym_function_value_parameters, - STATE(5083), 1, + STATE(4506), 1, sym__simple_user_type, - STATE(7487), 1, - sym_simple_identifier, + STATE(8959), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590202,23 +590271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [164975] = 8, - ACTIONS(8398), 1, + [164771] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4810), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2633), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590226,23 +590294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165007] = 8, - ACTIONS(8398), 1, + [164801] = 7, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9227), 1, anon_sym_LPAREN, - STATE(3027), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(5624), 1, sym_simple_identifier, - STATE(8776), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(5219), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590250,23 +590317,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165039] = 8, - ACTIONS(8398), 1, + [164831] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3638), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(2980), 1, sym_simple_identifier, - STATE(8718), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2627), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590274,23 +590340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165071] = 8, - ACTIONS(8398), 1, + [164861] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(987), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(4701), 1, + sym_function_value_parameters, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590298,23 +590364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165103] = 8, - ACTIONS(613), 1, + [164893] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(3180), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_COLON, - STATE(843), 1, + ACTIONS(9231), 1, + anon_sym_LPAREN, + STATE(3287), 1, sym__lexical_identifier, - STATE(1061), 1, + STATE(3523), 1, sym_simple_identifier, - STATE(1072), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + STATE(2010), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590322,23 +590387,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165135] = 8, - ACTIONS(107), 1, + [164923] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(9418), 1, - anon_sym_COLON, - STATE(4566), 1, + ACTIONS(9249), 1, + anon_sym_LPAREN, + STATE(2892), 1, sym__lexical_identifier, - STATE(4805), 1, + STATE(2980), 1, sym_simple_identifier, - STATE(4904), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + STATE(2388), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590346,22 +590410,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165167] = 7, - ACTIONS(195), 1, + [164953] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2370), 2, + STATE(453), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590369,23 +590433,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165197] = 8, - ACTIONS(8398), 1, + [164983] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(3548), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(4881), 1, + sym_function_value_parameters, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590393,23 +590457,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165229] = 8, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9224), 1, + [165015] = 7, + ACTIONS(345), 1, anon_sym_LPAREN, - STATE(3485), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9449), 1, + anon_sym_class, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1111), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590417,23 +590480,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165261] = 8, - ACTIONS(281), 1, + [165045] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(5159), 1, - anon_sym_LBRACE, - ACTIONS(9420), 1, - anon_sym_COLON, - STATE(4461), 1, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(4494), 1, + STATE(4886), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, - STATE(4618), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590441,23 +590504,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165293] = 8, - ACTIONS(8398), 1, + [165077] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(3584), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(3523), 1, sym_simple_identifier, - STATE(8594), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2690), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590465,23 +590527,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165325] = 8, - ACTIONS(409), 1, + [165107] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACE, - ACTIONS(9414), 1, - anon_sym_COLON, - STATE(2837), 1, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(971), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3454), 1, - sym_class_body, - STATE(4066), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8807), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590489,22 +590551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165357] = 7, - ACTIONS(533), 1, + [165139] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2577), 2, + STATE(1558), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590512,22 +590574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165387] = 7, - ACTIONS(613), 1, + [165169] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(623), 2, + STATE(2648), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590535,23 +590597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165417] = 8, - ACTIONS(8398), 1, + [165199] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3637), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1557), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590559,23 +590620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165449] = 8, - ACTIONS(8398), 1, + [165229] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4844), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(612), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590583,23 +590643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165481] = 8, - ACTIONS(8398), 1, + [165259] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4117), 1, + STATE(3655), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8817), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590607,22 +590667,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165513] = 7, - ACTIONS(533), 1, + [165291] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(1000), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2567), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590630,45 +590691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165543] = 7, - ACTIONS(8859), 1, + [165323] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9301), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(2903), 1, + STATE(3643), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1854), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8855), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [165573] = 7, - ACTIONS(549), 1, - anon_sym_LPAREN, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9422), 1, - anon_sym_class, - STATE(843), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1149), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590676,23 +590715,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165603] = 8, - ACTIONS(8398), 1, + [165355] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(3639), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(4700), 1, + sym_function_value_parameters, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590700,22 +590739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165635] = 7, - ACTIONS(533), 1, + [165387] = 8, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(3382), 1, - sym__lexical_identifier, - STATE(3540), 1, + STATE(2878), 1, sym_simple_identifier, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2940), 1, + sym__simple_user_type, + STATE(9109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2606), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590723,18 +590763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165665] = 8, + [165419] = 8, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(5399), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(9418), 1, + ACTIONS(9451), 1, anon_sym_COLON, - STATE(4566), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4904), 1, + STATE(4991), 1, sym_class_body, - STATE(5384), 1, + STATE(5466), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -590747,23 +590787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165697] = 8, - ACTIONS(8398), 1, + [165451] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(4454), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(3523), 1, sym_simple_identifier, - STATE(8911), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2008), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590771,22 +590810,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165729] = 7, - ACTIONS(533), 1, + [165481] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(992), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1878), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590794,23 +590834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165759] = 8, - ACTIONS(281), 1, + [165513] = 8, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(5159), 1, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(9420), 1, + ACTIONS(9439), 1, anon_sym_COLON, - STATE(4461), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4726), 1, sym_class_body, - STATE(4897), 1, + STATE(5084), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590818,23 +590858,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165791] = 8, - ACTIONS(8906), 1, + [165545] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(5536), 1, + STATE(3083), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(5558), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(9351), 1, - sym_function_type_parameters, + STATE(5181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590842,22 +590882,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165823] = 7, - ACTIONS(613), 1, + [165577] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5211), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, + STATE(8889), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590865,23 +590906,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165853] = 8, - ACTIONS(8398), 1, + [165609] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4853), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1625), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590889,23 +590929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165885] = 8, - ACTIONS(8398), 1, + [165639] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(4748), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1997), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590913,23 +590952,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165917] = 8, - ACTIONS(533), 1, + [165669] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(5358), 1, - anon_sym_LBRACE, - ACTIONS(9416), 1, - anon_sym_COLON, - STATE(3382), 1, + ACTIONS(9237), 1, + anon_sym_LPAREN, + STATE(832), 1, sym__lexical_identifier, - STATE(3690), 1, - sym_class_body, - STATE(4167), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590937,22 +590975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165949] = 7, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9196), 1, + [165699] = 7, + ACTIONS(549), 1, anon_sym_LPAREN, - STATE(3382), 1, + ACTIONS(613), 1, + sym__backtick_identifier, + ACTIONS(9453), 1, + anon_sym_class, + STATE(2889), 1, sym__lexical_identifier, - STATE(3540), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2648), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + STATE(3185), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590960,22 +590998,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [165979] = 7, - ACTIONS(195), 1, + [165729] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2608), 2, + STATE(2428), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590983,23 +591021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166009] = 8, - ACTIONS(8398), 1, + [165759] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4889), 1, + STATE(4107), 1, sym_function_value_parameters, - STATE(7487), 1, - sym_simple_identifier, - STATE(8813), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591007,23 +591045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166041] = 8, - ACTIONS(8398), 1, + [165791] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(3645), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(3523), 1, sym_simple_identifier, - STATE(8600), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2676), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591031,22 +591068,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166073] = 7, - ACTIONS(533), 1, + [165821] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2687), 2, + STATE(636), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591054,23 +591091,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166103] = 8, - ACTIONS(8398), 1, + [165851] = 8, + ACTIONS(8952), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4083), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(8043), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(8166), 1, sym_simple_identifier, + STATE(8591), 1, + sym__simple_user_type, + STATE(9386), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591078,23 +591115,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166135] = 8, - ACTIONS(8398), 1, + [165883] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(2851), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, + STATE(5184), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, - STATE(8927), 1, + STATE(8855), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591102,22 +591139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166167] = 7, - ACTIONS(613), 1, + [165915] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(438), 2, + STATE(1772), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591125,23 +591162,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166197] = 8, - ACTIONS(107), 1, + [165945] = 8, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(9418), 1, - anon_sym_COLON, - STATE(4566), 1, + ACTIONS(9069), 1, + anon_sym_LPAREN, + STATE(5534), 1, sym__lexical_identifier, - STATE(4904), 1, - sym_class_body, - STATE(5454), 1, + STATE(5538), 1, sym_simple_identifier, + STATE(5555), 1, + sym__simple_user_type, + STATE(9420), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591149,23 +591186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166229] = 8, - ACTIONS(8398), 1, + [165977] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3412), 1, + STATE(4447), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8713), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(5181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591173,23 +591210,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166261] = 8, - ACTIONS(8398), 1, + [166009] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4811), 1, + STATE(5375), 1, sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8703), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591197,23 +591234,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166293] = 8, - ACTIONS(8398), 1, + [166041] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4098), 1, + STATE(1367), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591221,23 +591258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166325] = 8, - ACTIONS(8398), 1, + [166073] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4810), 1, + STATE(4870), 1, sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8657), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591245,23 +591282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166357] = 8, - ACTIONS(533), 1, + [166105] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(5358), 1, - anon_sym_LBRACE, - ACTIONS(9416), 1, - anon_sym_COLON, - STATE(3382), 1, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(3690), 1, - sym_class_body, - STATE(3820), 1, + STATE(4881), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591269,23 +591306,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166389] = 8, - ACTIONS(8398), 1, + [166137] = 7, + ACTIONS(8906), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9328), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(4748), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(3552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1988), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591293,23 +591329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166421] = 8, - ACTIONS(8398), 1, + [166167] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(3550), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(9445), 1, + anon_sym_COLON, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(1040), 1, sym_simple_identifier, + STATE(1073), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591317,22 +591353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166453] = 7, - ACTIONS(533), 1, + [166199] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(4464), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2083), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591340,23 +591377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166483] = 8, - ACTIONS(8398), 1, + [166231] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(1422), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8685), 1, + STATE(4832), 1, + sym_function_value_parameters, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591364,21 +591401,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166515] = 7, + [166263] = 8, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - STATE(843), 1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + ACTIONS(9447), 1, + anon_sym_COLON, + STATE(2889), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3331), 1, sym_simple_identifier, + STATE(3337), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(450), 2, - sym_variable_declaration, - sym_multi_variable_declaration, ACTIONS(537), 7, anon_sym_get, anon_sym_set, @@ -591387,23 +591425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166545] = 8, - ACTIONS(8398), 1, + [166295] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3994), 1, + STATE(3043), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8666), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(5181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591411,21 +591449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166577] = 7, + [166327] = 8, ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - STATE(843), 1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + ACTIONS(9447), 1, + anon_sym_COLON, + STATE(2889), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3337), 1, + sym_class_body, + STATE(4041), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(423), 2, - sym_variable_declaration, - sym_multi_variable_declaration, ACTIONS(537), 7, anon_sym_get, anon_sym_set, @@ -591434,23 +591473,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166607] = 8, - ACTIONS(8398), 1, + [166359] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3073), 1, + STATE(3642), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591458,23 +591497,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166639] = 8, - ACTIONS(8398), 1, + [166391] = 8, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(9451), 1, + anon_sym_COLON, + STATE(4558), 1, sym__lexical_identifier, - STATE(4632), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(4763), 1, sym_simple_identifier, + STATE(4991), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591482,47 +591521,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166671] = 8, - ACTIONS(8398), 1, + [166423] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4887), 1, + STATE(1000), 1, sym_function_value_parameters, - STATE(7487), 1, - sym_simple_identifier, - STATE(8654), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [166703] = 8, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5171), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591530,23 +591545,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166735] = 8, - ACTIONS(8398), 1, + [166455] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4458), 1, + STATE(4447), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591554,23 +591569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166767] = 8, - ACTIONS(8853), 1, + [166487] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(5532), 1, + STATE(4464), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, - sym_simple_identifier, - STATE(5558), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(9452), 1, - sym_function_type_parameters, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8849), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591578,23 +591593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166799] = 8, - ACTIONS(8398), 1, + [166519] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4457), 1, + STATE(3409), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591602,23 +591617,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166831] = 8, - ACTIONS(8398), 1, + [166551] = 8, + ACTIONS(3172), 1, + anon_sym_LBRACE, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4533), 1, + ACTIONS(9447), 1, + anon_sym_COLON, + STATE(3337), 1, + sym_class_body, + STATE(4559), 1, sym__lexical_identifier, - STATE(4632), 1, - sym_function_value_parameters, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(5153), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591626,22 +591641,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166863] = 7, - ACTIONS(8859), 1, + [166583] = 8, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9301), 1, - anon_sym_LPAREN, - STATE(2903), 1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + ACTIONS(9447), 1, + anon_sym_COLON, + STATE(2889), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(2900), 1, sym_simple_identifier, + STATE(3337), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1910), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8855), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591649,22 +591665,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166893] = 7, - ACTIONS(533), 1, + [166615] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3413), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1549), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591672,22 +591689,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166923] = 7, - ACTIONS(533), 1, + [166647] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(992), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1556), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591695,23 +591713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166953] = 8, - ACTIONS(8398), 1, + [166679] = 7, + ACTIONS(411), 1, sym__backtick_identifier, ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3057), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(613), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591719,22 +591736,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [166985] = 7, - ACTIONS(533), 1, + [166709] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1559), 2, + STATE(426), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591742,23 +591759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167015] = 8, - ACTIONS(281), 1, + [166739] = 8, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(5159), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(9420), 1, + ACTIONS(9451), 1, anon_sym_COLON, - STATE(4461), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(4618), 1, - sym_class_body, - STATE(5424), 1, + STATE(4947), 1, sym_simple_identifier, + STATE(4991), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591766,23 +591783,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167047] = 8, - ACTIONS(8398), 1, + [166771] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(1412), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5217), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591790,23 +591807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167079] = 8, - ACTIONS(8398), 1, + [166803] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4053), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591814,23 +591830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167111] = 8, - ACTIONS(8398), 1, + [166833] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4106), 1, + STATE(3083), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8599), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591838,23 +591854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167143] = 8, - ACTIONS(8398), 1, + [166865] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3432), 1, + STATE(3043), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591862,23 +591878,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167175] = 8, - ACTIONS(8398), 1, + [166897] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3512), 1, + STATE(3409), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8687), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591886,23 +591902,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167207] = 8, - ACTIONS(8398), 1, + [166929] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5166), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(439), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591910,22 +591925,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167239] = 7, - ACTIONS(215), 1, - anon_sym_LPAREN, - ACTIONS(281), 1, + [166959] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9424), 1, - anon_sym_class, - STATE(4461), 1, + ACTIONS(5439), 1, + anon_sym_LBRACE, + ACTIONS(9455), 1, + anon_sym_COLON, + STATE(3287), 1, sym__lexical_identifier, + STATE(3844), 1, + sym_class_body, + STATE(4189), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4714), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(203), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591933,23 +591949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167269] = 8, - ACTIONS(8398), 1, + [166991] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4713), 1, + STATE(3483), 1, sym_function_value_parameters, - STATE(7487), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7518), 1, sym_simple_identifier, - STATE(8879), 1, + STATE(8682), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591957,22 +591973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167301] = 7, - ACTIONS(613), 1, + [167023] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(618), 2, + STATE(1562), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591980,22 +591996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167331] = 7, - ACTIONS(613), 1, + [167053] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2881), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(439), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592003,22 +592020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167361] = 7, - ACTIONS(195), 1, + [167085] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1571), 2, + STATE(620), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592026,22 +592043,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167391] = 7, - ACTIONS(613), 1, + [167115] = 8, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(843), 1, - sym__lexical_identifier, - STATE(934), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, + STATE(5434), 1, + sym__lexical_identifier, + STATE(9406), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(427), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592049,23 +592067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167421] = 8, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9200), 1, + [167147] = 7, + ACTIONS(217), 1, anon_sym_LPAREN, - STATE(3427), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(283), 1, + sym__backtick_identifier, + ACTIONS(9457), 1, + anon_sym_class, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(3201), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592073,22 +592090,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167453] = 7, - ACTIONS(613), 1, + [167177] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(619), 2, + STATE(1313), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592096,22 +592113,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167483] = 7, - ACTIONS(195), 1, + [167207] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, - anon_sym_LPAREN, - STATE(2858), 1, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(9441), 1, + anon_sym_COLON, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3420), 1, + sym_class_body, + STATE(3657), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1576), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592119,22 +592137,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167513] = 7, - ACTIONS(613), 1, + [167239] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2886), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592142,23 +592161,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167543] = 8, - ACTIONS(8398), 1, + [167271] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(836), 1, + STATE(4099), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8757), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592166,23 +592185,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167575] = 8, - ACTIONS(8398), 1, + [167303] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(838), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(2576), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592190,22 +592208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167607] = 7, - ACTIONS(8853), 1, + [167333] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9206), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(5532), 1, + STATE(3599), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(5629), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5219), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8849), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592213,22 +592232,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167637] = 7, - ACTIONS(195), 1, + [167365] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3335), 1, sym_simple_identifier, + STATE(3499), 1, + sym__simple_user_type, + STATE(8961), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1573), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592236,23 +592256,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167667] = 8, - ACTIONS(8398), 1, + [167397] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3579), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5214), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592260,23 +592280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167699] = 8, - ACTIONS(8398), 1, + [167429] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(1240), 1, + STATE(4066), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8763), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592284,23 +592304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167731] = 8, - ACTIONS(8398), 1, + [167461] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(994), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592308,23 +592327,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167763] = 8, - ACTIONS(8398), 1, + [167491] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(2846), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8827), 1, + STATE(4701), 1, + sym_function_value_parameters, + STATE(5094), 1, sym__simple_user_type, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592332,23 +592351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167795] = 8, - ACTIONS(409), 1, + [167523] = 7, + ACTIONS(8895), 1, sym__backtick_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACE, - ACTIONS(9414), 1, - anon_sym_COLON, - STATE(2837), 1, + ACTIONS(9267), 1, + anon_sym_LPAREN, + STATE(5434), 1, sym__lexical_identifier, - STATE(3451), 1, + STATE(5643), 1, sym_simple_identifier, - STATE(3454), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + STATE(5377), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592356,23 +592374,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167827] = 8, - ACTIONS(195), 1, + [167553] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(5177), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(9408), 1, + ACTIONS(9441), 1, anon_sym_COLON, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3381), 1, - sym_class_body, - STATE(3614), 1, + STATE(2956), 1, sym_simple_identifier, + STATE(3420), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592380,23 +592398,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167859] = 8, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(5358), 1, + [167585] = 8, + ACTIONS(5121), 1, anon_sym_LBRACE, - ACTIONS(9416), 1, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9439), 1, anon_sym_COLON, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3690), 1, + STATE(4726), 1, sym_class_body, - STATE(4113), 1, + STATE(8300), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592404,23 +592422,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167891] = 8, - ACTIONS(107), 1, + [167617] = 7, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(9418), 1, - anon_sym_COLON, - STATE(4566), 1, + ACTIONS(9227), 1, + anon_sym_LPAREN, + STATE(5530), 1, sym__lexical_identifier, - STATE(4904), 1, - sym_class_body, - STATE(5045), 1, + STATE(5624), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + STATE(5207), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592428,23 +592445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167923] = 8, - ACTIONS(8398), 1, + [167647] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(3575), 1, + STATE(2881), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592452,23 +592469,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167955] = 8, - ACTIONS(8398), 1, + [167679] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2864), 1, + STATE(2886), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592476,22 +592493,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [167987] = 7, - ACTIONS(8853), 1, + [167711] = 7, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(9206), 1, + ACTIONS(9227), 1, anon_sym_LPAREN, - STATE(5532), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(5629), 1, + STATE(5624), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5220), 2, + STATE(5234), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(8849), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592499,22 +592516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168017] = 7, - ACTIONS(345), 1, - anon_sym_LPAREN, - ACTIONS(409), 1, + [167741] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9426), 1, - anon_sym_class, - STATE(2837), 1, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, + STATE(5094), 1, + sym__simple_user_type, + STATE(5148), 1, + sym_function_value_parameters, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3452), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592522,23 +592540,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168047] = 8, - ACTIONS(8398), 1, + [167773] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2879), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1549), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592546,23 +592563,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168079] = 8, - ACTIONS(8398), 1, + [167803] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2869), 1, + STATE(4059), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8777), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592570,22 +592587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168111] = 7, - ACTIONS(195), 1, + [167835] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1607), 2, + STATE(1288), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592593,23 +592610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168141] = 8, - ACTIONS(8398), 1, + [167865] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(4790), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(8839), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2943), 1, sym__simple_user_type, + STATE(9063), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592617,23 +592634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168173] = 8, - ACTIONS(8398), 1, + [167897] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(1362), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(5439), 1, + anon_sym_LBRACE, + ACTIONS(9455), 1, + anon_sym_COLON, + STATE(3287), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(3507), 1, sym_simple_identifier, + STATE(3844), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592641,23 +592658,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168205] = 8, - ACTIONS(8398), 1, + [167929] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5230), 1, + STATE(5386), 1, sym_function_value_parameters, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592665,22 +592682,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168237] = 7, - ACTIONS(195), 1, + [167961] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1608), 2, + STATE(1553), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592688,45 +592705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168267] = 7, - ACTIONS(613), 1, + [167991] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(4700), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(449), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [168297] = 7, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(533), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, - anon_sym_class, - STATE(3382), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3810), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592734,23 +592729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168327] = 8, - ACTIONS(195), 1, + [168023] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(5177), 1, - anon_sym_LBRACE, - ACTIONS(9408), 1, - anon_sym_COLON, - STATE(2858), 1, + ACTIONS(9237), 1, + anon_sym_LPAREN, + STATE(832), 1, sym__lexical_identifier, - STATE(3381), 1, - sym_class_body, - STATE(3955), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592758,22 +592752,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168359] = 7, - ACTIONS(195), 1, + [168053] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9220), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2858), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(2966), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1578), 2, + STATE(1552), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(111), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592781,23 +592775,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168389] = 8, - ACTIONS(8398), 1, + [168083] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(2880), 1, + STATE(3602), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592805,23 +592799,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168421] = 8, - ACTIONS(8398), 1, + [168115] = 8, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(2869), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(9439), 1, + anon_sym_COLON, + STATE(4459), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(4726), 1, + sym_class_body, + STATE(5398), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592829,23 +592823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168453] = 8, - ACTIONS(8398), 1, + [168147] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(2879), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5149), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592853,23 +592847,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168485] = 8, - ACTIONS(8398), 1, + [168179] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4853), 1, - sym_function_value_parameters, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, + STATE(9128), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592877,23 +592871,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168517] = 8, - ACTIONS(8398), 1, + [168211] = 8, + ACTIONS(8970), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9069), 1, anon_sym_LPAREN, - STATE(4458), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4559), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(4566), 1, sym_simple_identifier, + STATE(4758), 1, + sym__simple_user_type, + STATE(9240), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592901,22 +592895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168549] = 7, - ACTIONS(613), 1, + [168243] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, + STATE(2374), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592924,23 +592918,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168579] = 8, - ACTIONS(8398), 1, + [168273] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4457), 1, + STATE(834), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592948,23 +592942,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168611] = 8, - ACTIONS(281), 1, + [168305] = 8, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(5159), 1, + ACTIONS(3128), 1, anon_sym_LBRACE, - ACTIONS(9420), 1, + ACTIONS(9445), 1, anon_sym_COLON, - STATE(4461), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(1073), 1, sym_class_body, - STATE(5096), 1, + STATE(1378), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592972,22 +592966,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168643] = 7, - ACTIONS(613), 1, + [168337] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(3991), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8712), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(610), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592995,22 +592990,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168673] = 7, - ACTIONS(613), 1, + [168369] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(571), 2, + STATE(1302), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593018,23 +593013,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168703] = 8, - ACTIONS(8398), 1, + [168399] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9224), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(2864), 1, + STATE(835), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593042,22 +593037,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168735] = 7, - ACTIONS(533), 1, + [168431] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1566), 2, + STATE(2372), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593065,23 +593060,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168765] = 8, - ACTIONS(8859), 1, + [168461] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(2903), 1, + ACTIONS(5439), 1, + anon_sym_LBRACE, + ACTIONS(9455), 1, + anon_sym_COLON, + STATE(3287), 1, sym__lexical_identifier, - STATE(2974), 1, + STATE(3831), 1, sym_simple_identifier, - STATE(3471), 1, - sym__simple_user_type, - STATE(9523), 1, - sym_function_type_parameters, + STATE(3844), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8855), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593089,23 +593084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168797] = 8, - ACTIONS(8398), 1, + [168493] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5232), 1, - sym_function_value_parameters, - STATE(7487), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(428), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593113,23 +593107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168829] = 8, - ACTIONS(8398), 1, + [168523] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9237), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(3907), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7487), 1, - sym_simple_identifier, - STATE(8840), 1, + STATE(5094), 1, sym__simple_user_type, + STATE(5387), 1, + sym_function_value_parameters, + STATE(7518), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593137,22 +593131,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168861] = 7, - ACTIONS(613), 1, + [168555] = 8, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - STATE(843), 1, + ACTIONS(9451), 1, + anon_sym_COLON, + STATE(4991), 1, + sym_class_body, + STATE(5534), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(8059), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(548), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593160,22 +593155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168891] = 7, - ACTIONS(613), 1, + [168587] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(544), 2, + STATE(1546), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593183,23 +593178,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168921] = 8, - ACTIONS(8398), 1, + [168617] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(836), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(4832), 1, + sym_function_value_parameters, + STATE(5094), 1, sym__simple_user_type, - STATE(7487), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593207,23 +593202,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168953] = 8, - ACTIONS(8398), 1, + [168649] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9216), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(4533), 1, - sym__lexical_identifier, - STATE(5233), 1, + STATE(833), 1, sym_function_value_parameters, - STATE(7487), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7518), 1, sym_simple_identifier, - STATE(8719), 1, + STATE(8717), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593231,22 +593226,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [168985] = 7, - ACTIONS(533), 1, + [168681] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1568), 2, + STATE(2417), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593254,21 +593249,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169015] = 7, - ACTIONS(27), 1, - anon_sym_LPAREN, + [168711] = 8, ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9430), 1, - anon_sym_class, - STATE(4566), 1, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(9451), 1, + anon_sym_COLON, + STATE(4558), 1, sym__lexical_identifier, + STATE(4991), 1, + sym_class_body, + STATE(5348), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4974), 2, - sym_parenthesized_expression, - sym_simple_identifier, ACTIONS(7), 7, anon_sym_get, anon_sym_set, @@ -593277,22 +593273,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169045] = 7, - ACTIONS(613), 1, + [168743] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(834), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(553), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593300,23 +593297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169075] = 8, - ACTIONS(8398), 1, + [168775] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9247), 1, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(838), 1, + STATE(3596), 1, sym_function_value_parameters, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(7518), 1, sym_simple_identifier, + STATE(8895), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593324,22 +593321,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169107] = 7, - ACTIONS(613), 1, + [168807] = 7, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9210), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3523), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(568), 2, + STATE(1544), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593347,22 +593344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169137] = 7, - ACTIONS(8859), 1, + [168837] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9301), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(2903), 1, + STATE(835), 1, + sym_function_value_parameters, + STATE(4522), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1985), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(8855), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593370,23 +593368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169167] = 8, - ACTIONS(8398), 1, + [168869] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3427), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1318), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593394,22 +593391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169199] = 7, - ACTIONS(533), 1, + [168899] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1569), 2, + STATE(1319), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593417,23 +593414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169229] = 8, - ACTIONS(8847), 1, + [168929] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9025), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(9401), 1, - sym_function_type_parameters, + STATE(2980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8843), 7, + STATE(2373), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593441,23 +593437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169261] = 8, - ACTIONS(8398), 1, + [168959] = 7, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9200), 1, + ACTIONS(9249), 1, anon_sym_LPAREN, - STATE(3432), 1, - sym_function_value_parameters, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(2980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + STATE(1320), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593465,22 +593460,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169293] = 7, - ACTIONS(533), 1, + [168989] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2672), 2, + STATE(454), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593488,22 +593483,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169323] = 7, - ACTIONS(613), 1, + [169019] = 8, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9210), 1, - anon_sym_LPAREN, - STATE(843), 1, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(9441), 1, + anon_sym_COLON, + STATE(2892), 1, sym__lexical_identifier, - STATE(934), 1, + STATE(3420), 1, + sym_class_body, + STATE(3954), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(559), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(537), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593511,22 +593507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169353] = 7, - ACTIONS(533), 1, + [169051] = 7, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9196), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3540), 1, + STATE(930), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2660), 2, + STATE(430), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593534,23 +593530,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169383] = 8, - ACTIONS(8398), 1, + [169081] = 8, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(2880), 1, - sym_function_value_parameters, - STATE(4533), 1, + ACTIONS(5439), 1, + anon_sym_LBRACE, + ACTIONS(9455), 1, + anon_sym_COLON, + STATE(3287), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, + STATE(3844), 1, + sym_class_body, + STATE(4111), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593558,23 +593554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169415] = 8, - ACTIONS(613), 1, + [169113] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(3180), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_COLON, - STATE(843), 1, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(1072), 1, - sym_class_body, - STATE(1413), 1, + STATE(4772), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593582,19 +593578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169447] = 5, - ACTIONS(9432), 1, - anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + [169145] = 7, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, + anon_sym_LPAREN, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 3, - anon_sym_LPAREN, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + STATE(1556), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593602,127 +593601,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169472] = 3, + [169175] = 8, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4522), 1, + sym__lexical_identifier, + STATE(4771), 1, + sym_function_value_parameters, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7081), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7079), 10, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169493] = 3, + [169207] = 8, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9241), 1, + anon_sym_LPAREN, + STATE(3937), 1, + sym_function_value_parameters, + STATE(4522), 1, + sym__lexical_identifier, + STATE(7518), 1, + sym_simple_identifier, + STATE(8828), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4859), 10, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169514] = 3, + [169239] = 7, + ACTIONS(129), 1, + anon_sym_LPAREN, + ACTIONS(197), 1, + sym__backtick_identifier, + ACTIONS(9459), 1, + anon_sym_class, + STATE(4459), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4863), 10, + STATE(4711), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169535] = 3, + [169269] = 7, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9231), 1, + anon_sym_LPAREN, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3523), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4867), 10, + STATE(2195), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169556] = 3, + [169299] = 7, + ACTIONS(427), 1, + anon_sym_LPAREN, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9461), 1, + anon_sym_class, + STATE(3287), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4885), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4883), 10, + STATE(3764), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169577] = 3, + [169329] = 7, + ACTIONS(411), 1, + sym__backtick_identifier, + ACTIONS(9237), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym__lexical_identifier, + STATE(930), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4893), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4891), 10, + STATE(438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169598] = 5, - ACTIONS(8740), 1, - sym__quest, - STATE(5515), 1, - aux_sym_nullable_type_repeat1, + [169359] = 8, + ACTIONS(197), 1, + sym__backtick_identifier, + ACTIONS(5121), 1, + anon_sym_LBRACE, + ACTIONS(9439), 1, + anon_sym_COLON, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4726), 1, + sym_class_body, + STATE(4892), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9437), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(9435), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593730,20 +593765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169623] = 6, - ACTIONS(8398), 1, + [169391] = 8, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4522), 1, sym__lexical_identifier, - STATE(9085), 1, + STATE(4829), 1, + sym_function_value_parameters, + STATE(7518), 1, sym_simple_identifier, + STATE(8749), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9439), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593751,19 +593789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169650] = 5, - ACTIONS(9441), 1, + [169423] = 5, + ACTIONS(9463), 1, anon_sym_DOT, - STATE(7416), 1, + STATE(7434), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 3, + ACTIONS(4273), 3, anon_sym_LPAREN, sym__quest, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593771,60 +593809,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169675] = 11, - ACTIONS(9444), 1, + [169448] = 11, + ACTIONS(9466), 1, anon_sym_typealias, - ACTIONS(9448), 1, + ACTIONS(9470), 1, anon_sym_enum, - ACTIONS(9450), 1, + ACTIONS(9472), 1, anon_sym_constructor, - ACTIONS(9454), 1, + ACTIONS(9476), 1, anon_sym_companion, - ACTIONS(9456), 1, + ACTIONS(9478), 1, anon_sym_object, - ACTIONS(9458), 1, + ACTIONS(9480), 1, anon_sym_fun, - ACTIONS(9460), 1, + ACTIONS(9482), 1, anon_sym_get, - ACTIONS(9462), 1, + ACTIONS(9484), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9446), 2, + ACTIONS(9468), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9452), 2, + ACTIONS(9474), 2, anon_sym_val, anon_sym_var, - [169712] = 5, - ACTIONS(8740), 1, - sym__quest, - STATE(5515), 1, - aux_sym_nullable_type_repeat1, + [169485] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9466), 3, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(4979), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4977), 10, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169506] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7089), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(9464), 7, + ACTIONS(7087), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169737] = 3, + [169527] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7077), 2, + ACTIONS(4969), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7075), 10, + ACTIONS(4967), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -593835,14 +593889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169758] = 3, + [169548] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7015), 2, + ACTIONS(4983), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7013), 10, + ACTIONS(4981), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -593853,14 +593907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169779] = 3, + [169569] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7030), 2, + ACTIONS(4987), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7028), 10, + ACTIONS(4985), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -593871,14 +593925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169800] = 3, + [169590] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7022), 2, + ACTIONS(4965), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7020), 10, + ACTIONS(4963), 10, anon_sym_get, anon_sym_set, anon_sym_in, @@ -593889,39 +593943,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169821] = 6, - ACTIONS(8398), 1, + [169611] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7076), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(9468), 1, + ACTIONS(7074), 10, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169632] = 5, + ACTIONS(8755), 1, + sym__quest, + STATE(5516), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9488), 3, + anon_sym_LPAREN, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8799), 1, - sym_simple_identifier, + sym__backtick_identifier, + ACTIONS(9486), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169657] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7066), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7064), 10, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169678] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7058), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7056), 10, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169847] = 6, - ACTIONS(8398), 1, + [169699] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7100), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(9470), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(7098), 10, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169720] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, sym__lexical_identifier, - STATE(8795), 1, + STATE(8952), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9490), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593929,18 +594056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169873] = 5, - ACTIONS(9472), 1, - anon_sym_DOT, - STATE(7518), 1, - aux_sym_user_type_repeat1, + [169747] = 5, + ACTIONS(8755), 1, + sym__quest, + STATE(5516), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, + ACTIONS(9494), 3, + anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(9492), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593948,18 +594076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169897] = 5, - ACTIONS(9475), 1, + [169772] = 5, + ACTIONS(9496), 1, anon_sym_DOT, - STATE(7545), 1, + STATE(6323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, + ACTIONS(4218), 3, + anon_sym_LPAREN, sym__quest, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593967,19 +594096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169921] = 6, - ACTIONS(8398), 1, + [169797] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9499), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8718), 1, sym_simple_identifier, - STATE(8545), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593987,19 +594116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169947] = 6, - ACTIONS(8398), 1, + [169823] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9478), 1, + ACTIONS(9501), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8852), 1, + STATE(8607), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594007,19 +594136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169973] = 6, - ACTIONS(8398), 1, + [169849] = 6, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9480), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(9503), 1, + anon_sym_class, + STATE(4459), 1, sym__lexical_identifier, - STATE(8684), 1, + STATE(4709), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594027,19 +594156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [169999] = 6, - ACTIONS(8398), 1, + [169875] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9482), 1, + ACTIONS(9505), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8892), 1, + STATE(8647), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594047,19 +594176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170025] = 6, - ACTIONS(8916), 1, + [169901] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(8059), 1, - sym_simple_identifier, - STATE(8112), 1, + ACTIONS(9507), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(8431), 1, - sym__simple_user_type, + STATE(8646), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8912), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594067,19 +594196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170051] = 6, - ACTIONS(8398), 1, + [169927] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9484), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8885), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8969), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594087,19 +594216,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170077] = 6, - ACTIONS(8398), 1, + [169953] = 5, + ACTIONS(9509), 1, + anon_sym_DOT, + STATE(7508), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4273), 2, + sym__quest, sym__backtick_identifier, - ACTIONS(9486), 1, + ACTIONS(4271), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169977] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9512), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8671), 1, + STATE(8764), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594107,18 +594255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170103] = 5, - ACTIONS(9488), 1, + [170003] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9514), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8629), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594126,19 +594275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170127] = 6, - ACTIONS(8398), 1, + [170029] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9516), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8714), 1, + STATE(8925), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594146,19 +594295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170153] = 6, - ACTIONS(409), 1, + [170055] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9493), 1, - anon_sym_class, - STATE(2837), 1, + ACTIONS(9518), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(3444), 1, + STATE(8924), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594166,19 +594315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170179] = 6, - ACTIONS(8398), 1, + [170081] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9495), 1, + ACTIONS(9520), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8875), 1, + STATE(8902), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594186,19 +594335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170205] = 6, - ACTIONS(8398), 1, + [170107] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9497), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8733), 1, + STATE(8541), 1, + sym_parameter, + STATE(9073), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594206,19 +594355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170231] = 6, - ACTIONS(8398), 1, + [170133] = 6, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9499), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(8651), 1, + STATE(4674), 1, sym_simple_identifier, + STATE(4785), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594226,19 +594375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170257] = 6, - ACTIONS(8398), 1, + [170159] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9501), 1, + ACTIONS(9522), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8866), 1, + STATE(8921), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594246,19 +594395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170283] = 6, - ACTIONS(8398), 1, + [170185] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9524), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8692), 1, + STATE(8628), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594266,19 +594415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170309] = 6, - ACTIONS(8398), 1, + [170211] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9505), 1, + ACTIONS(9526), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8674), 1, + STATE(8719), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594286,19 +594435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170335] = 6, - ACTIONS(8398), 1, + [170237] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9507), 1, + ACTIONS(9528), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8854), 1, + STATE(8899), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594306,19 +594455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170361] = 6, - ACTIONS(8398), 1, + [170263] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9509), 1, + ACTIONS(9530), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8603), 1, + STATE(8627), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594326,19 +594475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170387] = 6, - ACTIONS(8398), 1, + [170289] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9511), 1, + ACTIONS(9532), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8744), 1, + STATE(8945), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594346,19 +594495,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170413] = 6, - ACTIONS(8906), 1, + [170315] = 5, + ACTIONS(9534), 1, + anon_sym_DOT, + STATE(7489), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4273), 2, + sym__quest, sym__backtick_identifier, - STATE(5536), 1, + ACTIONS(4271), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [170339] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9537), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(8030), 1, - sym_identifier, - STATE(8055), 1, + STATE(8615), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594366,19 +594534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170439] = 6, - ACTIONS(8398), 1, + [170365] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9513), 1, + ACTIONS(9539), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8807), 1, + STATE(8620), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594386,37 +594554,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170465] = 4, - ACTIONS(9515), 1, + [170391] = 5, + ACTIONS(9541), 1, anon_sym_DOT, - STATE(7517), 1, + STATE(6323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + ACTIONS(4218), 2, sym__quest, - [170487] = 6, - ACTIONS(8398), 1, sym__backtick_identifier, - ACTIONS(9517), 1, + ACTIONS(4216), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [170415] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9544), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8642), 1, + STATE(8894), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594424,19 +594593,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170513] = 6, - ACTIONS(8398), 1, + [170441] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9519), 1, + ACTIONS(9546), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8923), 1, + STATE(8809), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [170467] = 6, + ACTIONS(8895), 1, + sym__backtick_identifier, + STATE(5094), 1, + sym__simple_user_type, + STATE(5181), 1, sym_simple_identifier, + STATE(5434), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8891), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594444,19 +594633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170539] = 6, - ACTIONS(8398), 1, + [170493] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9521), 1, + ACTIONS(9548), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8804), 1, + STATE(8891), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594464,19 +594653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170565] = 6, - ACTIONS(409), 1, + [170519] = 6, + ACTIONS(9067), 1, sym__backtick_identifier, - ACTIONS(9523), 1, - anon_sym_class, - STATE(2837), 1, - sym__lexical_identifier, - STATE(3336), 1, + STATE(5638), 1, sym_simple_identifier, + STATE(5649), 1, + sym__lexical_identifier, + STATE(5654), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(9061), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594484,18 +594673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170591] = 5, - ACTIONS(9525), 1, + [170545] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9550), 1, anon_sym_DOT, - STATE(7490), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8867), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594503,19 +594693,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170615] = 6, - ACTIONS(8398), 1, + [170571] = 10, + ACTIONS(1612), 1, + anon_sym_LBRACE, + ACTIONS(1688), 1, + anon_sym_AT, + ACTIONS(3610), 1, + anon_sym_LPAREN, + ACTIONS(3624), 1, + sym_label, + STATE(2895), 1, + sym_value_arguments, + STATE(3696), 1, + sym_annotated_lambda, + STATE(3770), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7884), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [170605] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8532), 1, - sym_parameter, - STATE(9239), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8395), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594523,19 +594737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170641] = 6, - ACTIONS(8398), 1, + [170631] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9528), 1, + ACTIONS(9552), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8639), 1, + STATE(8860), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594543,19 +594757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170667] = 6, - ACTIONS(8398), 1, + [170657] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9530), 1, + ACTIONS(9554), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8942), 1, + STATE(8617), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594563,19 +594777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170693] = 6, - ACTIONS(8398), 1, + [170683] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9532), 1, + ACTIONS(9556), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8696), 1, + STATE(8667), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594583,19 +594797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170719] = 6, - ACTIONS(533), 1, + [170709] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9534), 1, - anon_sym_class, - STATE(3382), 1, + ACTIONS(9558), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(3783), 1, + STATE(8854), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594603,18 +594817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170745] = 5, - ACTIONS(9536), 1, + [170735] = 5, + ACTIONS(9560), 1, anon_sym_DOT, - STATE(7443), 1, + STATE(6323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, + ACTIONS(4218), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594622,19 +594836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170769] = 6, - ACTIONS(8398), 1, + [170759] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9539), 1, + ACTIONS(9563), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8638), 1, + STATE(8596), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594642,19 +594856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170795] = 6, - ACTIONS(8398), 1, + [170785] = 6, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9541), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(8632), 1, + STATE(845), 1, sym_simple_identifier, + STATE(921), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594662,19 +594876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170821] = 6, - ACTIONS(533), 1, + [170811] = 6, + ACTIONS(411), 1, sym__backtick_identifier, - ACTIONS(9543), 1, + ACTIONS(9565), 1, anon_sym_class, - STATE(3382), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(3847), 1, + STATE(1072), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594682,19 +594896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170847] = 6, - ACTIONS(8398), 1, + [170837] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9545), 1, + ACTIONS(9567), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8789), 1, + STATE(8847), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594702,19 +594916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170873] = 6, - ACTIONS(8398), 1, + [170863] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9547), 1, + ACTIONS(9569), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8792), 1, + STATE(8846), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594722,19 +594936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170899] = 6, - ACTIONS(8398), 1, + [170889] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9549), 1, + ACTIONS(9571), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8630), 1, + STATE(8601), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594742,38 +594956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170925] = 6, - ACTIONS(8398), 1, + [170915] = 6, + ACTIONS(8889), 1, sym__backtick_identifier, - ACTIONS(9551), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(5530), 1, sym__lexical_identifier, - STATE(8739), 1, + STATE(5538), 1, sym_simple_identifier, + STATE(5555), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [170951] = 5, - ACTIONS(9553), 1, - anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8885), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594781,19 +594976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170975] = 6, - ACTIONS(8398), 1, + [170941] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8125), 1, sym_simple_identifier, - STATE(8465), 1, + STATE(8589), 1, sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594801,19 +594996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171001] = 6, - ACTIONS(8398), 1, + [170967] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9556), 1, + ACTIONS(9573), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8601), 1, + STATE(8604), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594821,19 +595016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171027] = 6, - ACTIONS(9011), 1, + [170993] = 6, + ACTIONS(8906), 1, sym__backtick_identifier, - STATE(5632), 1, + STATE(2899), 1, sym_simple_identifier, - STATE(5648), 1, + STATE(2949), 1, sym__lexical_identifier, - STATE(5656), 1, + STATE(3471), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9005), 7, + ACTIONS(8902), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594841,19 +595036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171053] = 6, - ACTIONS(8398), 1, + [171019] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9558), 1, + ACTIONS(9575), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8613), 1, + STATE(8644), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594861,19 +595056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171079] = 6, - ACTIONS(8398), 1, + [171045] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5530), 1, + STATE(8125), 1, sym_simple_identifier, - STATE(5541), 1, - sym__simple_user_type, + STATE(8972), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594881,19 +595076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171105] = 6, - ACTIONS(8398), 1, + [171071] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9577), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8841), 1, sym_simple_identifier, - STATE(8350), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594901,37 +595096,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171131] = 4, - ACTIONS(9560), 1, + [171097] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9579), 1, anon_sym_DOT, - STATE(7483), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8873), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - [171153] = 6, - ACTIONS(107), 1, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [171123] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4566), 1, + ACTIONS(9581), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(4677), 1, + STATE(8870), 1, sym_simple_identifier, - STATE(4783), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594939,19 +595136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171179] = 6, - ACTIONS(8398), 1, + [171149] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9563), 1, + ACTIONS(9583), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8612), 1, + STATE(8626), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594959,19 +595156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171205] = 6, - ACTIONS(281), 1, + [171175] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9565), 1, - anon_sym_class, - STATE(4461), 1, + ACTIONS(9585), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(4717), 1, + STATE(8856), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594979,37 +595176,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171231] = 4, - ACTIONS(8819), 1, - anon_sym_LT, - STATE(5112), 1, - sym_type_arguments, + [171201] = 5, + ACTIONS(9587), 1, + anon_sym_DOT, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4190), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4218), 2, sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [171253] = 6, - ACTIONS(8398), 1, sym__backtick_identifier, - ACTIONS(9567), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(4216), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [171225] = 6, + ACTIONS(8970), 1, + sym__backtick_identifier, + STATE(4559), 1, sym__lexical_identifier, - STATE(8868), 1, + STATE(4566), 1, sym_simple_identifier, + STATE(4758), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595017,19 +595215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171279] = 6, - ACTIONS(8398), 1, + [171251] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9569), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8757), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8571), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595037,18 +595235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171305] = 5, - ACTIONS(9571), 1, + [171277] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9590), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8609), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595056,19 +595255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171329] = 6, - ACTIONS(8398), 1, + [171303] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9574), 1, + ACTIONS(9592), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8623), 1, + STATE(8837), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595076,40 +595275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171355] = 10, - ACTIONS(1688), 1, - anon_sym_AT, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(4545), 1, - anon_sym_LPAREN, - ACTIONS(9576), 1, - sym_label, - STATE(2762), 1, - sym_value_arguments, - STATE(3352), 1, - sym_annotated_lambda, - STATE(3415), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5733), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7887), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [171389] = 3, + [171329] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9594), 1, + anon_sym_DOT, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8632), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4262), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595117,18 +595295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171409] = 5, - ACTIONS(9578), 1, + [171355] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9596), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8823), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595136,19 +595315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171433] = 6, - ACTIONS(8398), 1, + [171381] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9598), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8803), 1, sym_simple_identifier, - STATE(9066), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595156,19 +595335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171459] = 6, - ACTIONS(8398), 1, + [171407] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9581), 1, + ACTIONS(9600), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8751), 1, + STATE(8633), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595176,19 +595355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171485] = 6, - ACTIONS(8398), 1, + [171433] = 6, + ACTIONS(283), 1, sym__backtick_identifier, - ACTIONS(9583), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(9602), 1, + anon_sym_class, + STATE(2892), 1, sym__lexical_identifier, - STATE(8592), 1, + STATE(3186), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595196,19 +595375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171511] = 6, - ACTIONS(8398), 1, + [171459] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9585), 1, + ACTIONS(9604), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8938), 1, + STATE(8751), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595216,19 +595395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171537] = 6, - ACTIONS(8398), 1, + [171485] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9606), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8634), 1, sym_simple_identifier, - STATE(8405), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595236,19 +595415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171563] = 6, - ACTIONS(8398), 1, + [171511] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9587), 1, + ACTIONS(9608), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8775), 1, + STATE(8752), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595256,43 +595435,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171589] = 10, - ACTIONS(1612), 1, - anon_sym_LBRACE, + [171537] = 10, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(1698), 1, + ACTIONS(1930), 1, + anon_sym_LBRACE, + ACTIONS(4537), 1, anon_sym_LPAREN, - ACTIONS(9589), 1, + ACTIONS(9610), 1, sym_label, - STATE(776), 1, + STATE(2749), 1, sym_value_arguments, - STATE(1056), 1, + STATE(3321), 1, sym_lambda_literal, - STATE(1160), 1, + STATE(3367), 1, sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7880), 2, + STATE(7883), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [171623] = 6, - ACTIONS(8906), 1, + [171571] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5536), 1, + ACTIONS(9612), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(8727), 1, sym_simple_identifier, - STATE(5558), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595300,19 +595479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171649] = 6, - ACTIONS(8398), 1, + [171597] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9591), 1, + ACTIONS(9614), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8773), 1, + STATE(8715), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595320,19 +595499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171675] = 6, - ACTIONS(8398), 1, + [171623] = 6, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9593), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(9616), 1, + anon_sym_class, + STATE(3287), 1, sym__lexical_identifier, - STATE(8865), 1, + STATE(3894), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595340,19 +595519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171701] = 6, - ACTIONS(8398), 1, + [171649] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9595), 1, + ACTIONS(9618), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8874), 1, + STATE(8661), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595360,19 +595539,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171727] = 6, - ACTIONS(8398), 1, + [171675] = 5, + ACTIONS(9620), 1, + anon_sym_DOT, + STATE(7540), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4273), 2, + sym__quest, sym__backtick_identifier, - ACTIONS(9597), 1, + ACTIONS(4271), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [171699] = 5, + ACTIONS(9623), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8709), 1, - sym_simple_identifier, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4218), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595380,19 +595577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171753] = 6, - ACTIONS(8398), 1, + [171723] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9599), 1, + ACTIONS(9626), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8924), 1, + STATE(8690), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595400,19 +595597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171779] = 6, - ACTIONS(8398), 1, + [171749] = 6, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9601), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(8853), 1, + STATE(5538), 1, sym_simple_identifier, + STATE(5555), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595420,19 +595617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171805] = 6, - ACTIONS(8398), 1, + [171775] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9603), 1, + ACTIONS(9628), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8686), 1, + STATE(8674), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595440,43 +595637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171831] = 10, - ACTIONS(1622), 1, - anon_sym_LBRACE, - ACTIONS(1688), 1, - anon_sym_AT, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - sym_label, - STATE(2871), 1, - sym_value_arguments, - STATE(3829), 1, - sym_lambda_literal, - STATE(3864), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5733), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7883), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [171865] = 6, - ACTIONS(9019), 1, + [171801] = 6, + ACTIONS(283), 1, sym__backtick_identifier, - STATE(6965), 1, - sym_simple_identifier, - STATE(6998), 1, + ACTIONS(9630), 1, + anon_sym_class, + STATE(2892), 1, sym__lexical_identifier, - STATE(7088), 1, - sym__simple_user_type, + STATE(3399), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9013), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595484,19 +595657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171891] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9605), 1, + [171827] = 5, + ACTIONS(9632), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8846), 1, - sym_simple_identifier, + STATE(7471), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4273), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595504,19 +595676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171917] = 6, - ACTIONS(8398), 1, + [171851] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9607), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8909), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8905), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595524,19 +595696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171943] = 6, - ACTIONS(8398), 1, + [171877] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9609), 1, + ACTIONS(9635), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8629), 1, + STATE(8835), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595544,19 +595716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171969] = 6, - ACTIONS(8398), 1, + [171903] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9611), 1, + ACTIONS(9637), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8708), 1, + STATE(8704), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595564,18 +595736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [171995] = 5, - ACTIONS(9613), 1, + [171929] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9639), 1, anon_sym_DOT, - STATE(7476), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8795), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595583,36 +595756,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172019] = 4, - ACTIONS(9616), 1, - anon_sym_DOT, - STATE(7483), 1, - aux_sym_user_type_repeat1, + [171955] = 4, + ACTIONS(8836), 1, + anon_sym_LT, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 9, - sym__automatic_semicolon, + ACTIONS(4230), 9, anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, sym__quest, - [172041] = 5, - ACTIONS(9618), 1, + anon_sym_DASH_GT, + anon_sym_while, + [171977] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9641), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8611), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595620,19 +595794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172065] = 6, - ACTIONS(195), 1, + [172003] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2858), 1, + ACTIONS(9643), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(2897), 1, + STATE(8612), 1, sym_simple_identifier, - STATE(2941), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595640,19 +595814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172091] = 6, - ACTIONS(8398), 1, + [172029] = 6, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9621), 1, - anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8683), 1, + STATE(2878), 1, sym_simple_identifier, + STATE(2889), 1, + sym__lexical_identifier, + STATE(2940), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595660,19 +595834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172117] = 6, - ACTIONS(8398), 1, + [172055] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9623), 1, + ACTIONS(9645), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8929), 1, + STATE(8652), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595680,19 +595854,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172143] = 6, - ACTIONS(533), 1, + [172081] = 4, + ACTIONS(8755), 1, + sym__quest, + STATE(5516), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4280), 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, + [172103] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3446), 1, + STATE(8125), 1, sym_simple_identifier, - STATE(3506), 1, - sym__simple_user_type, + STATE(8426), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595700,19 +595892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172169] = 6, - ACTIONS(8398), 1, + [172129] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9625), 1, + ACTIONS(9647), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8676), 1, + STATE(8857), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595720,19 +595912,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172195] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9627), 1, + [172155] = 5, + ACTIONS(9649), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8679), 1, - sym_simple_identifier, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4218), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595740,19 +595931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172221] = 6, - ACTIONS(8398), 1, + [172179] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9629), 1, + ACTIONS(9652), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8660), 1, + STATE(8798), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595760,19 +595951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172247] = 6, - ACTIONS(8398), 1, + [172205] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9631), 1, + ACTIONS(9654), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8772), 1, + STATE(8818), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595780,19 +595971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172273] = 6, - ACTIONS(8398), 1, + [172231] = 6, + ACTIONS(197), 1, sym__backtick_identifier, - ACTIONS(9633), 1, - anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8768), 1, + STATE(4455), 1, sym_simple_identifier, + STATE(4459), 1, + sym__lexical_identifier, + STATE(4506), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595800,19 +595991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172299] = 6, - ACTIONS(8398), 1, + [172257] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9635), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8606), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8559), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595820,18 +596011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172325] = 5, - ACTIONS(9637), 1, + [172283] = 5, + ACTIONS(9656), 1, anon_sym_DOT, - STATE(6336), 1, + STATE(7535), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, + ACTIONS(4273), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595839,19 +596030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172349] = 6, - ACTIONS(8398), 1, + [172307] = 6, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9640), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(9659), 1, + anon_sym_class, + STATE(2889), 1, sym__lexical_identifier, - STATE(8656), 1, + STATE(3341), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595859,19 +596050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172375] = 6, - ACTIONS(8398), 1, + [172333] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9661), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8864), 1, sym_simple_identifier, - STATE(9012), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595879,19 +596070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172401] = 6, - ACTIONS(8398), 1, + [172359] = 6, + ACTIONS(107), 1, sym__backtick_identifier, - ACTIONS(9642), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(9663), 1, + anon_sym_class, + STATE(4558), 1, sym__lexical_identifier, - STATE(8743), 1, + STATE(4989), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595899,19 +596090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172427] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9644), 1, + [172385] = 5, + ACTIONS(9665), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8699), 1, - sym_simple_identifier, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4218), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595919,19 +596109,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172453] = 6, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9646), 1, - anon_sym_class, - STATE(843), 1, - sym__lexical_identifier, - STATE(1063), 1, - sym_simple_identifier, + [172409] = 5, + ACTIONS(9668), 1, + anon_sym_DOT, + STATE(7537), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(4273), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595939,19 +596128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172479] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9648), 1, + [172433] = 5, + ACTIONS(9671), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8615), 1, - sym_simple_identifier, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4218), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595959,19 +596147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172505] = 6, - ACTIONS(195), 1, + [172457] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9650), 1, - anon_sym_class, - STATE(2858), 1, + ACTIONS(9674), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(3445), 1, + STATE(8776), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595979,37 +596167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172531] = 4, - ACTIONS(8740), 1, - sym__quest, - STATE(5515), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4322), 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, - [172553] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9652), 1, + [172483] = 5, + ACTIONS(9676), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8723), 1, - sym_simple_identifier, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4218), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596017,18 +596186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172579] = 5, - ACTIONS(9654), 1, + [172507] = 5, + ACTIONS(9679), 1, anon_sym_DOT, - STATE(7529), 1, + STATE(6323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, + ACTIONS(4218), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596036,19 +596205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172603] = 6, - ACTIONS(8398), 1, + [172531] = 6, + ACTIONS(613), 1, sym__backtick_identifier, - ACTIONS(9657), 1, - anon_sym_DOT, - STATE(4533), 1, + ACTIONS(9682), 1, + anon_sym_class, + STATE(2889), 1, sym__lexical_identifier, - STATE(8698), 1, + STATE(3372), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596056,19 +596225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172629] = 6, - ACTIONS(8398), 1, + [172557] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9659), 1, + ACTIONS(9684), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8704), 1, + STATE(8769), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596076,19 +596245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172655] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9661), 1, + [172583] = 5, + ACTIONS(9686), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8758), 1, - sym_simple_identifier, + STATE(6323), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4218), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596096,19 +596264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172681] = 6, - ACTIONS(613), 1, - sym__backtick_identifier, - ACTIONS(9663), 1, - anon_sym_class, - STATE(843), 1, - sym__lexical_identifier, - STATE(1086), 1, - sym_simple_identifier, + [172607] = 5, + ACTIONS(9689), 1, + anon_sym_DOT, + STATE(7546), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(4273), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596116,19 +596283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172707] = 6, - ACTIONS(8398), 1, + [172631] = 6, + ACTIONS(491), 1, sym__backtick_identifier, - ACTIONS(9665), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(8936), 1, + STATE(3335), 1, sym_simple_identifier, + STATE(3499), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596136,18 +596303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172733] = 5, - ACTIONS(9667), 1, + [172657] = 5, + ACTIONS(9692), 1, anon_sym_DOT, - STATE(6336), 1, + STATE(6323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, + ACTIONS(4218), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596155,19 +596322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172757] = 6, - ACTIONS(8853), 1, + [172681] = 6, + ACTIONS(411), 1, sym__backtick_identifier, - STATE(5532), 1, + ACTIONS(9695), 1, + anon_sym_class, + STATE(832), 1, sym__lexical_identifier, - STATE(5537), 1, + STATE(1047), 1, sym_simple_identifier, - STATE(5558), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8849), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596175,19 +596342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172783] = 6, - ACTIONS(8398), 1, + [172707] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9670), 1, + ACTIONS(9697), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8707), 1, + STATE(8838), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596195,39 +596362,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172809] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9672), 1, - anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8940), 1, - sym_simple_identifier, + [172733] = 3, + ACTIONS(4269), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [172835] = 6, - ACTIONS(8398), 1, + ACTIONS(4267), 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, + [172753] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9674), 1, + ACTIONS(9699), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8597), 1, + STATE(8759), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596235,19 +596399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172861] = 6, - ACTIONS(8398), 1, + [172779] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(7487), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8520), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596255,43 +596419,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172887] = 10, - ACTIONS(25), 1, - anon_sym_LBRACE, + [172805] = 10, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(6704), 1, + ACTIONS(1854), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, anon_sym_LPAREN, - ACTIONS(6710), 1, + ACTIONS(6420), 1, sym_label, - STATE(4456), 1, + STATE(4438), 1, sym_value_arguments, - STATE(4961), 1, + STATE(4715), 1, sym_annotated_lambda, - STATE(4995), 1, + STATE(4736), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7890), 2, + STATE(7894), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [172921] = 6, - ACTIONS(8906), 1, + [172839] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8055), 1, + STATE(5094), 1, + sym__simple_user_type, + STATE(7518), 1, sym_simple_identifier, - STATE(8797), 1, - sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596299,19 +596463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172947] = 6, - ACTIONS(409), 1, + [172865] = 6, + ACTIONS(197), 1, sym__backtick_identifier, - STATE(2837), 1, + ACTIONS(9701), 1, + anon_sym_class, + STATE(4459), 1, sym__lexical_identifier, - STATE(2898), 1, + STATE(4746), 1, sym_simple_identifier, - STATE(2919), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596319,19 +596483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172973] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9676), 1, - anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8817), 1, - sym_simple_identifier, + [172891] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4267), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4265), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596339,19 +596500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172999] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7996), 1, - sym_simple_identifier, - STATE(8482), 1, - sym_variable_declaration, + [172911] = 5, + ACTIONS(9703), 1, + anon_sym_DOT, + STATE(7559), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4273), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596359,19 +596519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173025] = 6, - ACTIONS(281), 1, + [172935] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9678), 1, - anon_sym_class, - STATE(4461), 1, + ACTIONS(9706), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(4630), 1, + STATE(8671), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596379,38 +596539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173051] = 6, - ACTIONS(8847), 1, + [172961] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5083), 1, - sym__simple_user_type, - STATE(5187), 1, - sym_simple_identifier, - STATE(5419), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8843), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [173077] = 5, - ACTIONS(9680), 1, + ACTIONS(9708), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8876), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596418,18 +596559,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173101] = 5, - ACTIONS(9683), 1, + [172987] = 5, + ACTIONS(9710), 1, anon_sym_DOT, - STATE(7586), 1, + STATE(6323), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, + ACTIONS(4218), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(4216), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596437,19 +596578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173125] = 6, - ACTIONS(8398), 1, + [173011] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9686), 1, + ACTIONS(9713), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8673), 1, + STATE(8832), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596457,18 +596598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173151] = 5, - ACTIONS(9688), 1, - anon_sym_DOT, - STATE(7583), 1, - aux_sym_user_type_repeat1, + [173037] = 6, + ACTIONS(8952), 1, + sym__backtick_identifier, + STATE(8043), 1, + sym__lexical_identifier, + STATE(8166), 1, + sym_simple_identifier, + STATE(8591), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(8948), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596476,87 +596618,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173175] = 10, - ACTIONS(1403), 1, + [173063] = 10, + ACTIONS(1598), 1, anon_sym_LBRACE, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(3394), 1, + ACTIONS(3414), 1, anon_sym_LPAREN, - ACTIONS(3408), 1, + ACTIONS(3428), 1, sym_label, - STATE(2745), 1, + STATE(2740), 1, sym_value_arguments, - STATE(3309), 1, + STATE(3180), 1, sym_annotated_lambda, - STATE(3351), 1, + STATE(3303), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7893), 2, + STATE(7896), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [173209] = 10, + [173097] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9715), 1, + anon_sym_DOT, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8670), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173123] = 10, + ACTIONS(1622), 1, + anon_sym_LBRACE, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(1854), 1, - anon_sym_LBRACE, - ACTIONS(6403), 1, + ACTIONS(1698), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, + ACTIONS(9717), 1, sym_label, - STATE(4433), 1, + STATE(755), 1, sym_value_arguments, - STATE(4654), 1, - sym_lambda_literal, - STATE(4706), 1, + STATE(1054), 1, sym_annotated_lambda, + STATE(1118), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7889), 2, + STATE(7893), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [173243] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(7996), 1, - sym_simple_identifier, - STATE(8473), 1, - sym_variable_declaration, + [173157] = 4, + ACTIONS(9719), 1, + anon_sym_DOT, + STATE(7565), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [173269] = 6, - ACTIONS(8398), 1, + ACTIONS(4225), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [173179] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5083), 1, + STATE(5094), 1, sym__simple_user_type, - STATE(5187), 1, + STATE(5181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596564,19 +596724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173295] = 6, - ACTIONS(8398), 1, + [173205] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9691), 1, + ACTIONS(9722), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8618), 1, + STATE(8743), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596584,35 +596744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173321] = 3, - ACTIONS(4266), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4264), 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, - [173341] = 5, - ACTIONS(9693), 1, - anon_sym_DOT, - STATE(7570), 1, - aux_sym_user_type_repeat1, + [173231] = 6, + ACTIONS(1750), 1, + sym__backtick_identifier, + STATE(3668), 1, + sym_simple_identifier, + STATE(3751), 1, + sym__lexical_identifier, + STATE(3936), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(1686), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596620,19 +596764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173365] = 6, - ACTIONS(8398), 1, + [173257] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9696), 1, + ACTIONS(9724), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8843), 1, + STATE(8934), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596640,18 +596784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173391] = 5, - ACTIONS(9698), 1, + [173283] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8655), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596659,18 +596804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173415] = 5, - ACTIONS(9701), 1, - anon_sym_DOT, - STATE(7576), 1, - aux_sym_user_type_repeat1, + [173309] = 6, + ACTIONS(491), 1, + sym__backtick_identifier, + ACTIONS(9728), 1, + anon_sym_class, + STATE(3287), 1, + sym__lexical_identifier, + STATE(3758), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596678,19 +596824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173439] = 6, - ACTIONS(8924), 1, + [173335] = 6, + ACTIONS(283), 1, sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4554), 1, + STATE(2888), 1, sym_simple_identifier, - STATE(4788), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2943), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8918), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596698,18 +596844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173465] = 5, - ACTIONS(9704), 1, + [173361] = 5, + ACTIONS(9730), 1, anon_sym_DOT, - STATE(7558), 1, + STATE(7539), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, + ACTIONS(4273), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4307), 7, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596717,39 +596863,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173489] = 6, - ACTIONS(8398), 1, - sym__backtick_identifier, - ACTIONS(9707), 1, + [173385] = 4, + ACTIONS(9733), 1, anon_sym_DOT, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8633), 1, - sym_simple_identifier, + STATE(7565), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [173515] = 6, - ACTIONS(1750), 1, + ACTIONS(4218), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [173407] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(3593), 1, - sym_simple_identifier, - STATE(3789), 1, + ACTIONS(9735), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(3918), 1, - sym__simple_user_type, + STATE(8906), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596757,18 +596901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173541] = 5, - ACTIONS(9709), 1, + [173433] = 5, + ACTIONS(9737), 1, anon_sym_DOT, - STATE(6336), 1, + STATE(7458), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, + ACTIONS(4273), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596776,19 +596920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173565] = 6, - ACTIONS(8398), 1, + [173457] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9740), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8765), 1, + STATE(8840), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596796,19 +596940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173591] = 6, - ACTIONS(8398), 1, + [173483] = 6, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9714), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(8644), 1, + STATE(8002), 1, sym_simple_identifier, + STATE(8025), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596816,19 +596960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173617] = 6, - ACTIONS(107), 1, + [173509] = 6, + ACTIONS(8934), 1, sym__backtick_identifier, - ACTIONS(9716), 1, - anon_sym_class, - STATE(4566), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(4955), 1, + STATE(8002), 1, sym_simple_identifier, + STATE(8756), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596836,39 +596980,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173643] = 6, - ACTIONS(107), 1, - sym__backtick_identifier, - ACTIONS(9718), 1, - anon_sym_class, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4980), 1, - sym_simple_identifier, + [173535] = 4, + ACTIONS(9742), 1, + anon_sym_DOT, + STATE(7574), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [173669] = 6, - ACTIONS(195), 1, - sym__backtick_identifier, - ACTIONS(9720), 1, - anon_sym_class, - STATE(2858), 1, - sym__lexical_identifier, - STATE(3375), 1, - sym_simple_identifier, + ACTIONS(4273), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [173557] = 5, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(7543), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(4273), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596876,19 +597017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173695] = 6, - ACTIONS(8398), 1, + [173581] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9747), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8903), 1, sym_simple_identifier, - STATE(8635), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596896,18 +597037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173721] = 5, - ACTIONS(9722), 1, + [173607] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9749), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8748), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596915,19 +597057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173745] = 6, - ACTIONS(8398), 1, + [173633] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + ACTIONS(9751), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(7996), 1, + STATE(8747), 1, sym_simple_identifier, - STATE(8352), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596935,19 +597077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173771] = 6, - ACTIONS(8398), 1, + [173659] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9725), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8649), 1, + STATE(5529), 1, sym_simple_identifier, + STATE(5550), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596955,18 +597097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173797] = 5, - ACTIONS(9727), 1, + [173685] = 6, + ACTIONS(8448), 1, + sym__backtick_identifier, + ACTIONS(9753), 1, anon_sym_DOT, - STATE(6336), 1, - aux_sym_user_type_repeat1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8746), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4220), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596974,19 +597117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173821] = 6, - ACTIONS(281), 1, + [173711] = 6, + ACTIONS(107), 1, sym__backtick_identifier, - STATE(4461), 1, + ACTIONS(9755), 1, + anon_sym_class, + STATE(4558), 1, sym__lexical_identifier, - STATE(4466), 1, + STATE(4949), 1, sym_simple_identifier, - STATE(4473), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596994,18 +597137,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173847] = 5, - ACTIONS(9730), 1, - anon_sym_DOT, - STATE(7494), 1, - aux_sym_user_type_repeat1, + [173737] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1688), 1, + anon_sym_AT, + ACTIONS(6703), 1, + anon_sym_LPAREN, + ACTIONS(6711), 1, + sym_label, + STATE(4456), 1, + sym_value_arguments, + STATE(4904), 1, + sym_lambda_literal, + STATE(4941), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, - sym__quest, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7889), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [173771] = 6, + ACTIONS(9047), 1, sym__backtick_identifier, - ACTIONS(4307), 7, + STATE(6959), 1, + sym_simple_identifier, + STATE(7001), 1, + sym__lexical_identifier, + STATE(7120), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9041), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597013,19 +597181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173871] = 6, - ACTIONS(8398), 1, + [173797] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9733), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8627), 1, + STATE(8125), 1, sym_simple_identifier, + STATE(8443), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597033,19 +597201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173897] = 6, - ACTIONS(613), 1, + [173823] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(834), 1, - sym_simple_identifier, - STATE(843), 1, + ACTIONS(9757), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(928), 1, - sym__simple_user_type, + STATE(8677), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597053,19 +597221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173923] = 6, - ACTIONS(8859), 1, + [173849] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2903), 1, + ACTIONS(9759), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(2974), 1, + STATE(8663), 1, sym_simple_identifier, - STATE(3471), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8855), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597073,19 +597241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173949] = 6, - ACTIONS(8398), 1, + [173875] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - ACTIONS(9735), 1, + ACTIONS(9761), 1, anon_sym_DOT, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8849), 1, + STATE(8913), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597093,17 +597261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173975] = 5, - ACTIONS(8924), 1, + [173901] = 6, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4537), 1, + ACTIONS(9763), 1, + anon_sym_DOT, + STATE(4522), 1, sym__lexical_identifier, - STATE(5179), 1, + STATE(8606), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8918), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597111,17 +597281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173998] = 5, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8772), 1, - sym_simple_identifier, + [173927] = 5, + ACTIONS(9765), 1, + anon_sym_DOT, + STATE(7526), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4273), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4271), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597129,17 +597300,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174021] = 5, - ACTIONS(8398), 1, + [173951] = 9, + ACTIONS(9768), 1, + anon_sym_typealias, + ACTIONS(9772), 1, + anon_sym_enum, + ACTIONS(9776), 1, + anon_sym_object, + ACTIONS(9778), 1, + anon_sym_fun, + ACTIONS(9780), 1, + anon_sym_get, + ACTIONS(9782), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9770), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9774), 2, + anon_sym_val, + anon_sym_var, + [173982] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8866), 1, + STATE(8906), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597147,17 +597340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174044] = 5, - ACTIONS(107), 1, + [174005] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5457), 1, + STATE(8404), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597165,17 +597358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174067] = 5, - ACTIONS(8398), 1, + [174028] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8606), 1, + STATE(8738), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597183,17 +597376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174090] = 5, - ACTIONS(8398), 1, + [174051] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8849), 1, + STATE(8746), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597201,17 +597394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174113] = 5, - ACTIONS(9739), 1, + [174074] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(555), 1, + STATE(2548), 1, sym_simple_identifier, - STATE(905), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597219,17 +597412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174136] = 5, - ACTIONS(8398), 1, + [174097] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8679), 1, + STATE(8743), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597237,17 +597430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174159] = 5, - ACTIONS(8398), 1, + [174120] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8800), 1, + STATE(1520), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597255,17 +597448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174182] = 5, - ACTIONS(107), 1, + [174143] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5387), 1, + STATE(8533), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597273,50 +597466,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174205] = 5, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8660), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8384), 7, + [174166] = 9, + ACTIONS(9792), 1, + anon_sym_typealias, + ACTIONS(9796), 1, + anon_sym_enum, + ACTIONS(9800), 1, + anon_sym_object, + ACTIONS(9802), 1, + anon_sym_fun, + ACTIONS(9804), 1, anon_sym_get, + ACTIONS(9806), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [174228] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 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, - [174245] = 5, - ACTIONS(8398), 1, + ACTIONS(9794), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9798), 2, + anon_sym_val, + anon_sym_var, + [174197] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8676), 1, + STATE(8691), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597324,35 +597506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174268] = 5, - ACTIONS(8398), 1, + [174220] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8603), 1, + STATE(1203), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [174291] = 5, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, + STATE(2973), 1, sym__lexical_identifier, - STATE(8893), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597360,17 +597524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174314] = 5, - ACTIONS(8398), 1, + [174243] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8705), 1, + STATE(1206), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597378,17 +597542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174337] = 5, - ACTIONS(8398), 1, + [174266] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8708), 1, + STATE(8990), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597396,17 +597560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174360] = 5, - ACTIONS(8398), 1, + [174289] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8686), 1, + STATE(1210), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597414,35 +597578,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174383] = 5, - ACTIONS(9743), 1, - sym__backtick_identifier, - STATE(2160), 1, - sym_simple_identifier, - STATE(2940), 1, - sym__lexical_identifier, + [174312] = 4, + ACTIONS(9808), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [174406] = 5, - ACTIONS(8398), 1, + ACTIONS(4225), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [174333] = 5, + ACTIONS(197), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(8757), 1, + STATE(4489), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597450,39 +597613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174429] = 9, - ACTIONS(9745), 1, - anon_sym_typealias, - ACTIONS(9749), 1, - anon_sym_enum, - ACTIONS(9753), 1, - anon_sym_object, - ACTIONS(9755), 1, - anon_sym_fun, - ACTIONS(9757), 1, - anon_sym_get, - ACTIONS(9759), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9747), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9751), 2, - anon_sym_val, - anon_sym_var, - [174460] = 5, - ACTIONS(8398), 1, + [174356] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8624), 1, + STATE(2542), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597490,39 +597631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174483] = 9, - ACTIONS(9761), 1, - anon_sym_typealias, - ACTIONS(9765), 1, - anon_sym_enum, - ACTIONS(9769), 1, - anon_sym_object, - ACTIONS(9771), 1, - anon_sym_fun, - ACTIONS(9773), 1, - anon_sym_get, - ACTIONS(9775), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9763), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9767), 2, - anon_sym_val, - anon_sym_var, - [174514] = 5, - ACTIONS(8398), 1, + [174379] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9085), 1, + STATE(8876), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597530,17 +597649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174537] = 5, - ACTIONS(9779), 1, + [174402] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1592), 1, + STATE(398), 1, sym_simple_identifier, - STATE(3774), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9777), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597548,34 +597667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174560] = 4, - ACTIONS(9781), 1, - anon_sym_DOT, - STATE(7830), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4309), 8, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [174581] = 5, - ACTIONS(8398), 1, + [174425] = 5, + ACTIONS(9817), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(8186), 1, sym__lexical_identifier, - STATE(8786), 1, + STATE(8282), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9815), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597583,17 +597685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174604] = 5, - ACTIONS(8398), 1, + [174448] = 5, + ACTIONS(107), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(8796), 1, + STATE(5355), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597601,39 +597703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174627] = 9, - ACTIONS(9783), 1, - anon_sym_typealias, - ACTIONS(9787), 1, - anon_sym_enum, - ACTIONS(9791), 1, - anon_sym_object, - ACTIONS(9793), 1, - anon_sym_fun, - ACTIONS(9795), 1, - anon_sym_get, - ACTIONS(9797), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9785), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9789), 2, - anon_sym_val, - anon_sym_var, - [174658] = 5, - ACTIONS(8398), 1, + [174471] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8354), 1, + STATE(8470), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597641,17 +597721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174681] = 5, - ACTIONS(8398), 1, + [174494] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8924), 1, + STATE(5188), 1, sym_simple_identifier, + STATE(5534), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597659,17 +597739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174704] = 5, - ACTIONS(8398), 1, + [174517] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8758), 1, + STATE(2629), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597677,17 +597757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174727] = 5, - ACTIONS(281), 1, + [174540] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4461), 1, - sym__lexical_identifier, - STATE(5426), 1, + STATE(563), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597695,17 +597775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174750] = 5, - ACTIONS(8398), 1, + [174563] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8874), 1, + STATE(5196), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597713,17 +597793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174773] = 5, - ACTIONS(9779), 1, + [174586] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1565), 1, + STATE(566), 1, sym_simple_identifier, - STATE(3774), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9777), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597731,17 +597811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174796] = 5, - ACTIONS(9743), 1, + [174609] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(2520), 1, + STATE(568), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597749,17 +597829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174819] = 5, - ACTIONS(8398), 1, + [174632] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8673), 1, + STATE(8198), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597767,35 +597847,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174842] = 5, - ACTIONS(9739), 1, - sym__backtick_identifier, - STATE(552), 1, - sym_simple_identifier, - STATE(905), 1, - sym__lexical_identifier, + [174655] = 9, + ACTIONS(9466), 1, + anon_sym_typealias, + ACTIONS(9470), 1, + anon_sym_enum, + ACTIONS(9478), 1, + anon_sym_object, + ACTIONS(9480), 1, + anon_sym_fun, + ACTIONS(9482), 1, + anon_sym_get, + ACTIONS(9484), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [174865] = 5, - ACTIONS(8398), 1, + ACTIONS(9468), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9474), 2, + anon_sym_val, + anon_sym_var, + [174686] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8566), 1, + STATE(5238), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597803,17 +597887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174888] = 5, - ACTIONS(8398), 1, + [174709] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8334), 1, + STATE(7902), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597821,34 +597905,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174911] = 4, - ACTIONS(9799), 1, + [174732] = 4, + ACTIONS(9819), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(6316), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 8, + ACTIONS(4273), 8, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_by, + anon_sym_where, sym__quest, - anon_sym_DASH_GT, anon_sym_while, - [174932] = 5, - ACTIONS(9779), 1, + [174753] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(1551), 1, + STATE(1213), 1, sym_simple_identifier, - STATE(3774), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9777), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597856,17 +597940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174955] = 5, - ACTIONS(281), 1, + [174776] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5130), 1, + STATE(8840), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597874,17 +597958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174978] = 5, - ACTIONS(8398), 1, + [174799] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8790), 1, + STATE(395), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597892,17 +597976,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175001] = 5, - ACTIONS(8398), 1, + [174822] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4253), 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, + [174839] = 5, + ACTIONS(107), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(8925), 1, + STATE(5456), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597910,39 +598009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175024] = 9, - ACTIONS(9802), 1, - anon_sym_typealias, - ACTIONS(9806), 1, - anon_sym_enum, - ACTIONS(9810), 1, - anon_sym_object, - ACTIONS(9812), 1, - anon_sym_fun, - ACTIONS(9814), 1, - anon_sym_get, - ACTIONS(9816), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9804), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9808), 2, - anon_sym_val, - anon_sym_var, - [175055] = 5, - ACTIONS(8398), 1, + [174862] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8385), 1, + STATE(8411), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597950,17 +598027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175078] = 5, - ACTIONS(9739), 1, + [174885] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(543), 1, + STATE(576), 1, sym_simple_identifier, - STATE(905), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597968,17 +598045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175101] = 5, - ACTIONS(8906), 1, + [174908] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(5152), 1, + STATE(2615), 1, sym_simple_identifier, - STATE(5536), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597986,17 +598063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175124] = 5, - ACTIONS(8398), 1, + [174931] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8773), 1, + STATE(8739), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598004,17 +598081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175147] = 5, - ACTIONS(9743), 1, + [174954] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(2518), 1, + STATE(393), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598022,17 +598099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175170] = 5, - ACTIONS(8398), 1, + [174977] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8592), 1, + STATE(8594), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598040,17 +598117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175193] = 5, - ACTIONS(8398), 1, + [175000] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8591), 1, + STATE(5204), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598058,17 +598135,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175216] = 5, - ACTIONS(8398), 1, + [175023] = 5, + ACTIONS(9823), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(1599), 1, + sym_simple_identifier, + STATE(3828), 1, sym__lexical_identifier, - STATE(8699), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9821), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175046] = 5, + ACTIONS(9786), 1, + sym__backtick_identifier, + STATE(2554), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598076,17 +598171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175239] = 5, - ACTIONS(8398), 1, + [175069] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(8704), 1, + STATE(8214), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598094,17 +598189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175262] = 5, - ACTIONS(533), 1, + [175092] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4174), 1, + STATE(8809), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598112,17 +598207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175285] = 5, - ACTIONS(9739), 1, + [175115] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(391), 1, + STATE(2600), 1, sym_simple_identifier, - STATE(905), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598130,17 +598225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175308] = 5, - ACTIONS(9739), 1, + [175138] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(405), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8447), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598148,17 +598243,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175331] = 5, - ACTIONS(9739), 1, + [175161] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(404), 1, + STATE(2085), 1, sym_simple_identifier, - STATE(905), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598166,17 +598261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175354] = 5, - ACTIONS(9739), 1, + [175184] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(403), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(5534), 1, sym__lexical_identifier, + STATE(9066), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598184,39 +598279,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175377] = 9, - ACTIONS(9818), 1, + [175207] = 9, + ACTIONS(9825), 1, anon_sym_typealias, - ACTIONS(9822), 1, + ACTIONS(9829), 1, anon_sym_enum, - ACTIONS(9826), 1, + ACTIONS(9833), 1, anon_sym_object, - ACTIONS(9828), 1, + ACTIONS(9835), 1, anon_sym_fun, - ACTIONS(9830), 1, + ACTIONS(9837), 1, anon_sym_get, - ACTIONS(9832), 1, + ACTIONS(9839), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9820), 2, + ACTIONS(9827), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9824), 2, + ACTIONS(9831), 2, anon_sym_val, anon_sym_var, - [175408] = 5, - ACTIONS(9739), 1, + [175238] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(379), 1, + STATE(2583), 1, sym_simple_identifier, - STATE(905), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598224,17 +598319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175431] = 5, - ACTIONS(613), 1, + [175261] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(895), 1, + STATE(8445), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598242,17 +598337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175454] = 5, - ACTIONS(9739), 1, + [175284] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(383), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8432), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598260,17 +598355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175477] = 5, - ACTIONS(8398), 1, + [175307] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8446), 1, + STATE(8759), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598278,17 +598373,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175500] = 5, - ACTIONS(8398), 1, + [175330] = 9, + ACTIONS(9841), 1, + anon_sym_typealias, + ACTIONS(9845), 1, + anon_sym_enum, + ACTIONS(9849), 1, + anon_sym_object, + ACTIONS(9851), 1, + anon_sym_fun, + ACTIONS(9853), 1, + anon_sym_get, + ACTIONS(9855), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9843), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9847), 2, + anon_sym_val, + anon_sym_var, + [175361] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8516), 1, + STATE(5142), 1, sym_simple_identifier, + STATE(5534), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598296,17 +598413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175523] = 5, - ACTIONS(9739), 1, + [175384] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(382), 1, + STATE(384), 1, sym_simple_identifier, - STATE(905), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598314,73 +598431,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175546] = 5, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8802), 1, - sym_simple_identifier, + [175407] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(4583), 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, + [175424] = 9, + ACTIONS(9857), 1, + anon_sym_typealias, + ACTIONS(9861), 1, + anon_sym_enum, + ACTIONS(9865), 1, + anon_sym_object, + ACTIONS(9867), 1, + anon_sym_fun, + ACTIONS(9869), 1, anon_sym_get, + ACTIONS(9871), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [175569] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9437), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(9435), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [175588] = 9, - ACTIONS(9834), 1, + ACTIONS(9859), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9863), 2, + anon_sym_val, + anon_sym_var, + [175455] = 9, + ACTIONS(9841), 1, anon_sym_typealias, - ACTIONS(9838), 1, + ACTIONS(9875), 1, anon_sym_enum, - ACTIONS(9842), 1, + ACTIONS(9879), 1, anon_sym_object, - ACTIONS(9844), 1, + ACTIONS(9881), 1, anon_sym_fun, - ACTIONS(9846), 1, + ACTIONS(9883), 1, anon_sym_get, - ACTIONS(9848), 1, + ACTIONS(9885), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9836), 2, + ACTIONS(9873), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9840), 2, + ACTIONS(9877), 2, anon_sym_val, anon_sym_var, - [175619] = 5, - ACTIONS(9739), 1, + [175486] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(389), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8885), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598388,17 +598508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175642] = 5, - ACTIONS(9743), 1, + [175509] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1232), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8373), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598406,17 +598526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175665] = 5, - ACTIONS(9852), 1, + [175532] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1517), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8671), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598424,17 +598544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175688] = 5, - ACTIONS(409), 1, + [175555] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2988), 1, + STATE(8818), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598442,17 +598562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175711] = 5, - ACTIONS(9743), 1, + [175578] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1231), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(5213), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598460,17 +598580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175734] = 5, - ACTIONS(9743), 1, + [175601] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1230), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8461), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598478,39 +598598,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175757] = 9, - ACTIONS(9854), 1, - anon_sym_typealias, - ACTIONS(9858), 1, - anon_sym_enum, - ACTIONS(9862), 1, - anon_sym_object, - ACTIONS(9864), 1, - anon_sym_fun, - ACTIONS(9866), 1, + [175624] = 5, + ACTIONS(613), 1, + sym__backtick_identifier, + STATE(2889), 1, + sym__lexical_identifier, + STATE(3297), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(537), 7, anon_sym_get, - ACTIONS(9868), 1, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175647] = 5, + ACTIONS(9790), 1, + sym__backtick_identifier, + STATE(2610), 1, + sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9856), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9860), 2, - anon_sym_val, - anon_sym_var, - [175788] = 5, - ACTIONS(9743), 1, + ACTIONS(9788), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175670] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1233), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8903), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598518,17 +598652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175811] = 5, - ACTIONS(9852), 1, + [175693] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1405), 1, + STATE(405), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598536,17 +598670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175834] = 5, - ACTIONS(195), 1, + [175716] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(2920), 1, + STATE(8776), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598554,17 +598688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175857] = 5, - ACTIONS(9852), 1, + [175739] = 5, + ACTIONS(411), 1, sym__backtick_identifier, - STATE(1387), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(832), 1, sym__lexical_identifier, + STATE(1541), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598572,17 +598706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175880] = 5, - ACTIONS(9852), 1, + [175762] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1386), 1, + STATE(407), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598590,39 +598724,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175903] = 9, - ACTIONS(9761), 1, + [175785] = 9, + ACTIONS(9887), 1, anon_sym_typealias, - ACTIONS(9872), 1, + ACTIONS(9891), 1, anon_sym_enum, - ACTIONS(9876), 1, + ACTIONS(9895), 1, anon_sym_object, - ACTIONS(9878), 1, + ACTIONS(9897), 1, anon_sym_fun, - ACTIONS(9880), 1, + ACTIONS(9899), 1, anon_sym_get, - ACTIONS(9882), 1, + ACTIONS(9901), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9870), 2, + ACTIONS(9889), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9874), 2, + ACTIONS(9893), 2, anon_sym_val, anon_sym_var, - [175934] = 5, - ACTIONS(9852), 1, + [175816] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1370), 1, + STATE(416), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598630,17 +598764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175957] = 5, - ACTIONS(533), 1, + [175839] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3476), 1, + STATE(8798), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598648,17 +598782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175980] = 5, - ACTIONS(8906), 1, + [175862] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(9233), 1, + STATE(8624), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598666,17 +598800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176003] = 5, - ACTIONS(9743), 1, + [175885] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(2181), 1, + STATE(419), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598684,17 +598818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176026] = 5, - ACTIONS(8398), 1, + [175908] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8565), 1, + STATE(406), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598702,17 +598836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176049] = 5, - ACTIONS(107), 1, + [175931] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4566), 1, - sym__lexical_identifier, - STATE(4978), 1, + STATE(420), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598720,17 +598854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176072] = 5, - ACTIONS(9779), 1, + [175954] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1540), 1, + STATE(577), 1, sym_simple_identifier, - STATE(3774), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9777), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598738,17 +598872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176095] = 5, - ACTIONS(8906), 1, + [175977] = 5, + ACTIONS(411), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(8247), 1, + STATE(1044), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598756,17 +598890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176118] = 5, - ACTIONS(9739), 1, + [176000] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(551), 1, + STATE(602), 1, sym_simple_identifier, - STATE(905), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598774,17 +598908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176141] = 5, - ACTIONS(8398), 1, + [176023] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8846), 1, + STATE(594), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598792,17 +598926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176164] = 5, - ACTIONS(9743), 1, + [176046] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2515), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8774), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598810,17 +598944,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176187] = 5, - ACTIONS(8398), 1, + [176069] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8358), 1, + STATE(8848), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598828,17 +598962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176210] = 5, - ACTIONS(9743), 1, + [176092] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2161), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8476), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598846,17 +598980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176233] = 5, - ACTIONS(8398), 1, + [176115] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8649), 1, + STATE(1373), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598864,17 +598998,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176256] = 5, - ACTIONS(8398), 1, + [176138] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8627), 1, + STATE(1372), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598882,17 +599016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176279] = 5, - ACTIONS(8398), 1, + [176161] = 5, + ACTIONS(9823), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8875), 1, + STATE(1600), 1, sym_simple_identifier, + STATE(3828), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9821), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598900,34 +599034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176302] = 4, - ACTIONS(9884), 1, - anon_sym_DOT, - STATE(6346), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4309), 8, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - anon_sym_while, - [176323] = 5, - ACTIONS(8398), 1, + [176184] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8615), 1, + STATE(1371), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598935,17 +599052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176346] = 5, - ACTIONS(9852), 1, + [176207] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2544), 1, + STATE(1370), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598953,17 +599070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176369] = 5, - ACTIONS(8398), 1, + [176230] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8496), 1, + STATE(559), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598971,17 +599088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176392] = 5, - ACTIONS(9743), 1, + [176253] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2241), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8864), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598989,17 +599106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176415] = 5, - ACTIONS(9852), 1, + [176276] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(1451), 1, + STATE(1354), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599007,17 +599124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176438] = 5, - ACTIONS(8398), 1, + [176299] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8610), 1, + STATE(2244), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599025,47 +599142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176461] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4244), 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, - [176478] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4646), 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, - [176495] = 5, - ACTIONS(8398), 1, + [176322] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8868), 1, + STATE(2507), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599073,17 +599160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176518] = 5, - ACTIONS(9739), 1, + [176345] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(408), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8619), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599091,17 +599178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176541] = 5, - ACTIONS(8906), 1, + [176368] = 5, + ACTIONS(411), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(8122), 1, + STATE(883), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599109,17 +599196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176564] = 5, - ACTIONS(9739), 1, + [176391] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(411), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599127,17 +599214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176587] = 5, - ACTIONS(9739), 1, + [176414] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(417), 1, + STATE(402), 1, sym_simple_identifier, - STATE(905), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599145,17 +599232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176610] = 5, - ACTIONS(9852), 1, + [176437] = 5, + ACTIONS(9823), 1, sym__backtick_identifier, - STATE(1383), 1, + STATE(1611), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(3828), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9821), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599163,17 +599250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176633] = 5, - ACTIONS(8906), 1, + [176460] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7995), 1, + STATE(8611), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599181,17 +599268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176656] = 5, - ACTIONS(9852), 1, + [176483] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1385), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8635), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599199,17 +599286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176679] = 5, - ACTIONS(9852), 1, + [176506] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1390), 1, + STATE(403), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599217,17 +599304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176702] = 5, - ACTIONS(9852), 1, + [176529] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1391), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8644), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599235,17 +599322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176725] = 5, - ACTIONS(9739), 1, + [176552] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(419), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8857), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599253,35 +599340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176748] = 5, - ACTIONS(9739), 1, - sym__backtick_identifier, - STATE(564), 1, - sym_simple_identifier, - STATE(905), 1, - sym__lexical_identifier, + [176575] = 9, + ACTIONS(9768), 1, + anon_sym_typealias, + ACTIONS(9905), 1, + anon_sym_enum, + ACTIONS(9909), 1, + anon_sym_object, + ACTIONS(9911), 1, + anon_sym_fun, + ACTIONS(9913), 1, + anon_sym_get, + ACTIONS(9915), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [176771] = 5, - ACTIONS(613), 1, + ACTIONS(9903), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9907), 2, + anon_sym_val, + anon_sym_var, + [176606] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(1062), 1, + STATE(8674), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599289,17 +599380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176794] = 5, - ACTIONS(9739), 1, + [176629] = 5, + ACTIONS(613), 1, sym__backtick_identifier, - STATE(577), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(2889), 1, sym__lexical_identifier, + STATE(4052), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599307,17 +599398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176817] = 5, - ACTIONS(9739), 1, + [176652] = 5, + ACTIONS(491), 1, sym__backtick_identifier, - STATE(578), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(3287), 1, sym__lexical_identifier, + STATE(4190), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599325,17 +599416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176840] = 5, - ACTIONS(9739), 1, + [176675] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(573), 1, + STATE(1360), 1, sym_simple_identifier, - STATE(905), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599343,17 +599434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176863] = 5, - ACTIONS(107), 1, + [176698] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4566), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4806), 1, + STATE(8710), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599361,17 +599452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176886] = 5, - ACTIONS(8398), 1, + [176721] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8775), 1, + STATE(2184), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599379,17 +599470,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176909] = 5, - ACTIONS(9852), 1, + [176744] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4595), 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, + [176761] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2534), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8715), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599397,17 +599503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176932] = 5, - ACTIONS(9852), 1, + [176784] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2533), 1, + STATE(1448), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599415,39 +599521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176955] = 9, - ACTIONS(9818), 1, - anon_sym_typealias, - ACTIONS(9888), 1, - anon_sym_enum, - ACTIONS(9892), 1, - anon_sym_object, - ACTIONS(9894), 1, - anon_sym_fun, - ACTIONS(9896), 1, - anon_sym_get, - ACTIONS(9898), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9886), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9890), 2, - anon_sym_val, - anon_sym_var, - [176986] = 5, - ACTIONS(9852), 1, + [176807] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1429), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8453), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599455,17 +599539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177009] = 5, - ACTIONS(9852), 1, + [176830] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(2532), 1, + STATE(1361), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599473,17 +599557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177032] = 5, - ACTIONS(9743), 1, + [176853] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1353), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8727), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599491,39 +599575,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177055] = 9, - ACTIONS(9745), 1, + [176876] = 4, + ACTIONS(9917), 1, + anon_sym_DOT, + STATE(7737), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4273), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [176897] = 9, + ACTIONS(9768), 1, anon_sym_typealias, - ACTIONS(9902), 1, + ACTIONS(9921), 1, anon_sym_enum, - ACTIONS(9906), 1, + ACTIONS(9925), 1, anon_sym_object, - ACTIONS(9908), 1, + ACTIONS(9927), 1, anon_sym_fun, - ACTIONS(9910), 1, + ACTIONS(9929), 1, anon_sym_get, - ACTIONS(9912), 1, + ACTIONS(9931), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9900), 2, + ACTIONS(9919), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9904), 2, + ACTIONS(9923), 2, anon_sym_val, anon_sym_var, - [177086] = 5, - ACTIONS(281), 1, + [176928] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4461), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4893), 1, + STATE(8769), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599531,17 +599632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177109] = 5, - ACTIONS(9743), 1, + [176951] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1410), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8555), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599549,39 +599650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177132] = 9, - ACTIONS(9802), 1, - anon_sym_typealias, - ACTIONS(9916), 1, - anon_sym_enum, - ACTIONS(9920), 1, - anon_sym_object, - ACTIONS(9922), 1, - anon_sym_fun, - ACTIONS(9924), 1, - anon_sym_get, - ACTIONS(9926), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9914), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9918), 2, - anon_sym_val, - anon_sym_var, - [177163] = 5, - ACTIONS(9743), 1, + [176974] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1414), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8786), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599589,17 +599668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177186] = 5, - ACTIONS(9743), 1, + [176997] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1372), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8751), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599607,17 +599686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177209] = 5, - ACTIONS(9743), 1, + [177020] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(1384), 1, + STATE(1366), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599625,17 +599704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177232] = 5, - ACTIONS(8398), 1, + [177043] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8723), 1, + STATE(8633), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599643,17 +599722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177255] = 5, - ACTIONS(8398), 1, + [177066] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8409), 1, + STATE(8803), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599661,17 +599740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177278] = 5, - ACTIONS(9852), 1, + [177089] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2627), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8595), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599679,17 +599758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177301] = 5, - ACTIONS(8398), 1, + [177112] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8781), 1, + STATE(401), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599697,17 +599776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177324] = 5, - ACTIONS(409), 1, + [177135] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4084), 1, + STATE(8434), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599715,17 +599794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177347] = 5, - ACTIONS(8398), 1, + [177158] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8792), 1, + STATE(8402), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599733,17 +599812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177370] = 5, - ACTIONS(9743), 1, + [177181] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1348), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8632), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599751,17 +599830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177393] = 5, - ACTIONS(8398), 1, + [177204] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8765), 1, + STATE(8630), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599769,17 +599848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177416] = 5, - ACTIONS(9743), 1, + [177227] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1346), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8626), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599787,57 +599866,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177439] = 9, - ACTIONS(9745), 1, - anon_sym_typealias, - ACTIONS(9930), 1, - anon_sym_enum, - ACTIONS(9934), 1, - anon_sym_object, - ACTIONS(9936), 1, - anon_sym_fun, - ACTIONS(9938), 1, - anon_sym_get, - ACTIONS(9940), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9928), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9932), 2, - anon_sym_val, - anon_sym_var, - [177470] = 5, - ACTIONS(8398), 1, - sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8789), 1, - sym_simple_identifier, + [177250] = 4, + ACTIONS(9933), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [177493] = 5, - ACTIONS(8398), 1, + ACTIONS(4218), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [177271] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8612), 1, + STATE(8830), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599845,17 +599901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177516] = 5, - ACTIONS(8398), 1, + [177294] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8788), 1, + STATE(8856), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599863,17 +599919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177539] = 5, - ACTIONS(9743), 1, + [177317] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(1364), 1, + STATE(1208), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599881,17 +599937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177562] = 5, - ACTIONS(8398), 1, + [177340] = 5, + ACTIONS(613), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(8613), 1, + STATE(2987), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599899,17 +599955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177585] = 5, - ACTIONS(8398), 1, + [177363] = 5, + ACTIONS(491), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(8733), 1, + STATE(3503), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599917,17 +599973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177608] = 5, - ACTIONS(8398), 1, + [177386] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8684), 1, + STATE(1537), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599935,17 +599991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177631] = 5, - ACTIONS(8398), 1, + [177409] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8701), 1, + STATE(8870), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599953,39 +600009,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177654] = 9, - ACTIONS(9818), 1, + [177432] = 9, + ACTIONS(9857), 1, anon_sym_typealias, - ACTIONS(9944), 1, + ACTIONS(9937), 1, anon_sym_enum, - ACTIONS(9948), 1, + ACTIONS(9941), 1, anon_sym_object, - ACTIONS(9950), 1, + ACTIONS(9943), 1, anon_sym_fun, - ACTIONS(9952), 1, + ACTIONS(9945), 1, anon_sym_get, - ACTIONS(9954), 1, + ACTIONS(9947), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9942), 2, + ACTIONS(9935), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9946), 2, + ACTIONS(9939), 2, anon_sym_val, anon_sym_var, - [177685] = 5, - ACTIONS(8398), 1, + [177463] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8671), 1, + STATE(8652), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599993,17 +600049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177708] = 5, - ACTIONS(8398), 1, + [177486] = 5, + ACTIONS(283), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(8651), 1, + STATE(3660), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600011,17 +600067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177731] = 5, - ACTIONS(8398), 1, + [177509] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8647), 1, + STATE(1383), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600029,17 +600085,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177754] = 5, - ACTIONS(9852), 1, + [177532] = 9, + ACTIONS(9857), 1, + anon_sym_typealias, + ACTIONS(9951), 1, + anon_sym_enum, + ACTIONS(9955), 1, + anon_sym_object, + ACTIONS(9957), 1, + anon_sym_fun, + ACTIONS(9959), 1, + anon_sym_get, + ACTIONS(9961), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9949), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9953), 2, + anon_sym_val, + anon_sym_var, + [177563] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(1512), 1, + STATE(2133), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600047,17 +600125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177777] = 5, - ACTIONS(8398), 1, + [177586] = 5, + ACTIONS(197), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(8639), 1, + STATE(5406), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600065,17 +600143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177800] = 5, - ACTIONS(9852), 1, + [177609] = 5, + ACTIONS(107), 1, sym__backtick_identifier, - STATE(1442), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4558), 1, sym__lexical_identifier, + STATE(4765), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600083,17 +600161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177823] = 5, - ACTIONS(8398), 1, + [177632] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8638), 1, + STATE(8604), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600101,17 +600179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177846] = 5, - ACTIONS(8398), 1, + [177655] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8636), 1, + STATE(2573), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600119,17 +600197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177869] = 5, - ACTIONS(8398), 1, + [177678] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8630), 1, + STATE(1205), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600137,17 +600215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177892] = 5, - ACTIONS(8398), 1, + [177701] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8629), 1, + STATE(2547), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600155,17 +600233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177915] = 5, - ACTIONS(8398), 1, + [177724] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8628), 1, + STATE(8557), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600173,17 +600251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177938] = 5, - ACTIONS(195), 1, + [177747] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2858), 1, - sym__lexical_identifier, - STATE(3611), 1, + STATE(1523), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600191,17 +600269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177961] = 5, - ACTIONS(9852), 1, + [177770] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(1427), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(5534), 1, sym__lexical_identifier, + STATE(8065), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600209,17 +600287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177984] = 5, - ACTIONS(9852), 1, + [177793] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(1426), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8833), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600227,17 +600305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178007] = 5, - ACTIONS(9852), 1, + [177816] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(1435), 1, + STATE(418), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600245,17 +600323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178030] = 5, - ACTIONS(8906), 1, + [177839] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5158), 1, - sym_simple_identifier, - STATE(5536), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8601), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600263,39 +600341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178053] = 9, - ACTIONS(9834), 1, - anon_sym_typealias, - ACTIONS(9958), 1, - anon_sym_enum, - ACTIONS(9962), 1, - anon_sym_object, - ACTIONS(9964), 1, - anon_sym_fun, - ACTIONS(9966), 1, - anon_sym_get, - ACTIONS(9968), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9956), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9960), 2, - anon_sym_val, - anon_sym_var, - [178084] = 5, - ACTIONS(8398), 1, + [177862] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8468), 1, + STATE(1522), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600303,17 +600359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178107] = 5, - ACTIONS(533), 1, + [177885] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3826), 1, + STATE(8597), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600321,17 +600377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178130] = 5, - ACTIONS(9739), 1, + [177908] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(418), 1, + STATE(2557), 1, sym_simple_identifier, - STATE(905), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600339,39 +600395,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178153] = 9, - ACTIONS(9854), 1, + [177931] = 9, + ACTIONS(9963), 1, anon_sym_typealias, - ACTIONS(9972), 1, + ACTIONS(9967), 1, anon_sym_enum, - ACTIONS(9976), 1, + ACTIONS(9971), 1, anon_sym_object, - ACTIONS(9978), 1, + ACTIONS(9973), 1, anon_sym_fun, - ACTIONS(9980), 1, + ACTIONS(9975), 1, anon_sym_get, - ACTIONS(9982), 1, + ACTIONS(9977), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9970), 2, + ACTIONS(9965), 2, anon_sym_class, anon_sym_interface, - ACTIONS(9974), 2, + ACTIONS(9969), 2, anon_sym_val, anon_sym_var, - [178184] = 5, - ACTIONS(613), 1, + [177962] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(843), 1, - sym__lexical_identifier, - STATE(1545), 1, + STATE(2585), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600379,17 +600435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178207] = 5, - ACTIONS(9739), 1, + [177985] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(407), 1, + STATE(2543), 1, sym_simple_identifier, - STATE(905), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600397,17 +600453,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178230] = 5, - ACTIONS(9743), 1, + [178008] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2513), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8784), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600415,17 +600471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178253] = 5, - ACTIONS(9739), 1, + [178031] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(414), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8667), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600433,39 +600489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178276] = 9, - ACTIONS(9834), 1, - anon_sym_typealias, - ACTIONS(9986), 1, - anon_sym_enum, - ACTIONS(9990), 1, - anon_sym_object, - ACTIONS(9992), 1, - anon_sym_fun, - ACTIONS(9994), 1, - anon_sym_get, - ACTIONS(9996), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9984), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9988), 2, - anon_sym_val, - anon_sym_var, - [178307] = 5, - ACTIONS(9739), 1, + [178054] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(410), 1, + STATE(2535), 1, sym_simple_identifier, - STATE(905), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600473,17 +600507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178330] = 5, - ACTIONS(8398), 1, + [178077] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8843), 1, + STATE(8835), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600491,17 +600525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178353] = 5, - ACTIONS(8398), 1, + [178100] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5231), 1, + STATE(8617), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600509,61 +600543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178376] = 9, - ACTIONS(9761), 1, - anon_sym_typealias, - ACTIONS(10000), 1, - anon_sym_enum, - ACTIONS(10004), 1, - anon_sym_object, - ACTIONS(10006), 1, - anon_sym_fun, - ACTIONS(10008), 1, - anon_sym_get, - ACTIONS(10010), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9998), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10002), 2, - anon_sym_val, - anon_sym_var, - [178407] = 9, - ACTIONS(9444), 1, - anon_sym_typealias, - ACTIONS(9448), 1, - anon_sym_enum, - ACTIONS(9456), 1, - anon_sym_object, - ACTIONS(9458), 1, - anon_sym_fun, - ACTIONS(9460), 1, - anon_sym_get, - ACTIONS(9462), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9446), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(9452), 2, - anon_sym_val, - anon_sym_var, - [178438] = 5, - ACTIONS(9743), 1, + [178123] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, STATE(1204), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600571,17 +600561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178461] = 5, - ACTIONS(8398), 1, + [178146] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8932), 1, + STATE(8945), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600589,17 +600579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178484] = 5, - ACTIONS(8398), 1, + [178169] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8581), 1, + STATE(8837), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600607,17 +600597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178507] = 5, - ACTIONS(8398), 1, + [178192] = 5, + ACTIONS(491), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(8608), 1, + STATE(4106), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600625,17 +600615,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178530] = 5, - ACTIONS(8398), 1, + [178215] = 9, + ACTIONS(9792), 1, + anon_sym_typealias, + ACTIONS(9981), 1, + anon_sym_enum, + ACTIONS(9985), 1, + anon_sym_object, + ACTIONS(9987), 1, + anon_sym_fun, + ACTIONS(9989), 1, + anon_sym_get, + ACTIONS(9991), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9979), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9983), 2, + anon_sym_val, + anon_sym_var, + [178246] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8601), 1, + STATE(1514), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600643,17 +600655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178553] = 5, - ACTIONS(9743), 1, + [178269] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(1221), 1, + STATE(1231), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600661,17 +600673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178576] = 5, - ACTIONS(8398), 1, + [178292] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(7936), 1, + STATE(8620), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600679,17 +600691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178599] = 5, - ACTIONS(9743), 1, + [178315] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(1222), 1, + STATE(1387), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600697,39 +600709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178622] = 9, - ACTIONS(9802), 1, - anon_sym_typealias, - ACTIONS(10014), 1, - anon_sym_enum, - ACTIONS(10018), 1, - anon_sym_object, - ACTIONS(10020), 1, - anon_sym_fun, - ACTIONS(10022), 1, - anon_sym_get, - ACTIONS(10024), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10012), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10016), 2, - anon_sym_val, - anon_sym_var, - [178653] = 5, - ACTIONS(8398), 1, + [178338] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8617), 1, + STATE(1430), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600737,17 +600727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178676] = 5, - ACTIONS(9743), 1, + [178361] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(1225), 1, + STATE(1384), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600755,17 +600745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178699] = 5, - ACTIONS(8398), 1, + [178384] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8674), 1, + STATE(414), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600773,17 +600763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178722] = 5, - ACTIONS(281), 1, + [178407] = 5, + ACTIONS(283), 1, sym__backtick_identifier, - STATE(4461), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4499), 1, + STATE(2967), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600791,17 +600781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178745] = 5, - ACTIONS(10028), 1, + [178430] = 5, + ACTIONS(9823), 1, sym__backtick_identifier, - STATE(8228), 1, + STATE(1608), 1, sym_simple_identifier, - STATE(8275), 1, + STATE(3828), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10026), 7, + ACTIONS(9821), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600809,17 +600799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178768] = 5, - ACTIONS(9743), 1, + [178453] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2536), 1, + STATE(1385), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600827,17 +600817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178791] = 5, - ACTIONS(8398), 1, + [178476] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8242), 1, + STATE(2541), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600845,17 +600835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178814] = 5, - ACTIONS(9852), 1, + [178499] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2583), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8625), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600863,17 +600853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178837] = 5, - ACTIONS(8398), 1, + [178522] = 5, + ACTIONS(491), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(3287), 1, sym__lexical_identifier, - STATE(5262), 1, + STATE(3822), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(415), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600881,17 +600871,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178860] = 5, - ACTIONS(9852), 1, + [178545] = 9, + ACTIONS(9857), 1, + anon_sym_typealias, + ACTIONS(9995), 1, + anon_sym_enum, + ACTIONS(9999), 1, + anon_sym_object, + ACTIONS(10001), 1, + anon_sym_fun, + ACTIONS(10003), 1, + anon_sym_get, + ACTIONS(10005), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9993), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9997), 2, + anon_sym_val, + anon_sym_var, + [178576] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2615), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8839), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600899,17 +600911,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178883] = 5, - ACTIONS(9852), 1, + [178599] = 9, + ACTIONS(9963), 1, + anon_sym_typealias, + ACTIONS(10009), 1, + anon_sym_enum, + ACTIONS(10013), 1, + anon_sym_object, + ACTIONS(10015), 1, + anon_sym_fun, + ACTIONS(10017), 1, + anon_sym_get, + ACTIONS(10019), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10007), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10011), 2, + anon_sym_val, + anon_sym_var, + [178630] = 5, + ACTIONS(197), 1, sym__backtick_identifier, - STATE(2623), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4459), 1, sym__lexical_identifier, + STATE(4896), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600917,39 +600951,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178906] = 9, - ACTIONS(9745), 1, + [178653] = 9, + ACTIONS(9825), 1, anon_sym_typealias, - ACTIONS(10032), 1, + ACTIONS(10023), 1, anon_sym_enum, - ACTIONS(10036), 1, + ACTIONS(10027), 1, anon_sym_object, - ACTIONS(10038), 1, + ACTIONS(10029), 1, anon_sym_fun, - ACTIONS(10040), 1, + ACTIONS(10031), 1, anon_sym_get, - ACTIONS(10042), 1, + ACTIONS(10033), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10030), 2, + ACTIONS(10021), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10034), 2, + ACTIONS(10025), 2, anon_sym_val, anon_sym_var, - [178937] = 5, - ACTIONS(9852), 1, + [178684] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2573), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8841), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600957,17 +600991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178960] = 5, - ACTIONS(533), 1, + [178707] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(3382), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4111), 1, + STATE(8719), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(455), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600975,17 +601009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178983] = 5, - ACTIONS(8398), 1, + [178730] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8692), 1, + STATE(5141), 1, sym_simple_identifier, + STATE(5534), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600993,17 +601027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179006] = 5, - ACTIONS(9852), 1, + [178753] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2509), 1, - sym_simple_identifier, - STATE(3498), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8465), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601011,17 +601045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179029] = 5, - ACTIONS(8398), 1, + [178776] = 5, + ACTIONS(197), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4459), 1, sym__lexical_identifier, - STATE(8878), 1, + STATE(5132), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(111), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601029,17 +601063,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179052] = 5, - ACTIONS(8398), 1, + [178799] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(1358), 1, + sym_simple_identifier, + STATE(2973), 1, sym__lexical_identifier, - STATE(5246), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9784), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178822] = 5, + ACTIONS(9813), 1, + sym__backtick_identifier, + STATE(421), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601047,17 +601099,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179075] = 5, - ACTIONS(8398), 1, + [178845] = 9, + ACTIONS(9963), 1, + anon_sym_typealias, + ACTIONS(10037), 1, + anon_sym_enum, + ACTIONS(10041), 1, + anon_sym_object, + ACTIONS(10043), 1, + anon_sym_fun, + ACTIONS(10045), 1, + anon_sym_get, + ACTIONS(10047), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10035), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10039), 2, + anon_sym_val, + anon_sym_var, + [178876] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8572), 1, + STATE(8421), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601065,17 +601139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179098] = 5, - ACTIONS(9743), 1, + [178899] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(2082), 1, + STATE(1357), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601083,17 +601157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179121] = 5, - ACTIONS(8398), 1, + [178922] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8503), 1, + STATE(542), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601101,17 +601175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179144] = 5, - ACTIONS(8398), 1, + [178945] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8982), 1, + STATE(8846), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601119,39 +601193,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179167] = 9, - ACTIONS(10044), 1, + [178968] = 9, + ACTIONS(9841), 1, anon_sym_typealias, - ACTIONS(10048), 1, + ACTIONS(10051), 1, anon_sym_enum, - ACTIONS(10052), 1, + ACTIONS(10055), 1, anon_sym_object, - ACTIONS(10054), 1, + ACTIONS(10057), 1, anon_sym_fun, - ACTIONS(10056), 1, + ACTIONS(10059), 1, anon_sym_get, - ACTIONS(10058), 1, + ACTIONS(10061), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10046), 2, + ACTIONS(10049), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10050), 2, + ACTIONS(10053), 2, anon_sym_val, anon_sym_var, - [179198] = 5, - ACTIONS(8398), 1, + [178999] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8669), 1, + STATE(2530), 1, sym_simple_identifier, + STATE(3489), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601159,17 +601233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179221] = 5, - ACTIONS(9743), 1, + [179022] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2549), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8628), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601177,17 +601251,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179244] = 5, - ACTIONS(9852), 1, + [179045] = 9, + ACTIONS(9792), 1, + anon_sym_typealias, + ACTIONS(10065), 1, + anon_sym_enum, + ACTIONS(10069), 1, + anon_sym_object, + ACTIONS(10071), 1, + anon_sym_fun, + ACTIONS(10073), 1, + anon_sym_get, + ACTIONS(10075), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10063), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10067), 2, + anon_sym_val, + anon_sym_var, + [179076] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(2508), 1, + STATE(540), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601195,17 +601291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179267] = 5, - ACTIONS(9743), 1, + [179099] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(2551), 1, + STATE(534), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601213,39 +601309,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179290] = 9, - ACTIONS(9854), 1, - anon_sym_typealias, - ACTIONS(10062), 1, - anon_sym_enum, - ACTIONS(10066), 1, - anon_sym_object, - ACTIONS(10068), 1, - anon_sym_fun, - ACTIONS(10070), 1, + [179122] = 5, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8850), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8434), 7, anon_sym_get, - ACTIONS(10072), 1, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179145] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10060), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10064), 2, - anon_sym_val, - anon_sym_var, - [179321] = 5, - ACTIONS(8398), 1, + ACTIONS(9494), 3, + anon_sym_LPAREN, + anon_sym_DOT, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8476), 1, + ACTIONS(9492), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179164] = 5, + ACTIONS(9786), 1, + sym__backtick_identifier, + STATE(1356), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601253,17 +601361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179344] = 5, - ACTIONS(8398), 1, + [179187] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8741), 1, + STATE(8854), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601271,39 +601379,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179367] = 9, - ACTIONS(9802), 1, - anon_sym_typealias, - ACTIONS(10076), 1, - anon_sym_enum, - ACTIONS(10080), 1, - anon_sym_object, - ACTIONS(10082), 1, - anon_sym_fun, - ACTIONS(10084), 1, - anon_sym_get, - ACTIONS(10086), 1, - anon_sym_set, + [179210] = 5, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8545), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10074), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10078), 2, - anon_sym_val, - anon_sym_var, - [179398] = 5, - ACTIONS(9743), 1, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179233] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(2557), 1, + STATE(1355), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601311,17 +601415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179421] = 5, - ACTIONS(9852), 1, + [179256] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2507), 1, + STATE(2517), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601329,17 +601433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179444] = 5, - ACTIONS(8398), 1, + [179279] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8804), 1, + STATE(8860), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601347,17 +601451,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179467] = 5, - ACTIONS(9743), 1, + [179302] = 5, + ACTIONS(283), 1, sym__backtick_identifier, - STATE(2130), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(4130), 1, sym_simple_identifier, - STATE(2940), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(201), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179325] = 5, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, sym__lexical_identifier, + STATE(8629), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601365,17 +601487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179490] = 5, - ACTIONS(195), 1, + [179348] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3933), 1, + STATE(8952), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601383,17 +601505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179513] = 5, - ACTIONS(8398), 1, + [179371] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8475), 1, + STATE(8764), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601401,17 +601523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179536] = 5, - ACTIONS(9852), 1, + [179394] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(2505), 1, + STATE(526), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601419,17 +601541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179559] = 5, - ACTIONS(9739), 1, + [179417] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(531), 1, + STATE(2525), 1, sym_simple_identifier, - STATE(905), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601437,34 +601559,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179582] = 4, - ACTIONS(10088), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [179440] = 9, + ACTIONS(9841), 1, + anon_sym_typealias, + ACTIONS(10079), 1, + anon_sym_enum, + ACTIONS(10083), 1, + anon_sym_object, + ACTIONS(10085), 1, + anon_sym_fun, + ACTIONS(10087), 1, + anon_sym_get, + ACTIONS(10089), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 8, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [179603] = 5, - ACTIONS(9739), 1, + ACTIONS(10077), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10081), 2, + anon_sym_val, + anon_sym_var, + [179471] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(530), 1, + STATE(1461), 1, sym_simple_identifier, - STATE(905), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601472,17 +601599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179626] = 5, - ACTIONS(409), 1, + [179494] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2837), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(3328), 1, + STATE(8638), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601490,17 +601617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179649] = 5, - ACTIONS(8906), 1, + [179517] = 5, + ACTIONS(8970), 1, sym__backtick_identifier, - STATE(5151), 1, - sym_simple_identifier, - STATE(5536), 1, + STATE(4559), 1, sym__lexical_identifier, + STATE(5152), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8964), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601508,17 +601635,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179672] = 5, - ACTIONS(8906), 1, + [179540] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(5154), 1, + STATE(4522), 1, + sym__lexical_identifier, + STATE(8753), 1, sym_simple_identifier, - STATE(5536), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8434), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179563] = 5, + ACTIONS(8448), 1, + sym__backtick_identifier, + STATE(4522), 1, sym__lexical_identifier, + STATE(8887), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8900), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601526,17 +601671,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179695] = 5, - ACTIONS(8398), 1, + [179586] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(5172), 1, + sym_simple_identifier, + STATE(5534), 1, sym__lexical_identifier, - STATE(8944), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8928), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179609] = 5, + ACTIONS(9813), 1, + sym__backtick_identifier, + STATE(525), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601544,17 +601707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179718] = 5, - ACTIONS(8398), 1, + [179632] = 5, + ACTIONS(411), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(832), 1, sym__lexical_identifier, - STATE(8817), 1, + STATE(1379), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(333), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601562,17 +601725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179741] = 5, - ACTIONS(9739), 1, + [179655] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(529), 1, + STATE(523), 1, sym_simple_identifier, - STATE(905), 1, + STATE(900), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601580,17 +601743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179764] = 5, - ACTIONS(8398), 1, + [179678] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(5241), 1, + STATE(8891), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601598,17 +601761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179787] = 5, - ACTIONS(8398), 1, + [179701] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8618), 1, + STATE(8647), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601616,17 +601779,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179810] = 5, - ACTIONS(8398), 1, + [179724] = 9, + ACTIONS(9825), 1, + anon_sym_typealias, + ACTIONS(10093), 1, + anon_sym_enum, + ACTIONS(10097), 1, + anon_sym_object, + ACTIONS(10099), 1, + anon_sym_fun, + ACTIONS(10101), 1, + anon_sym_get, + ACTIONS(10103), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10091), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10095), 2, + anon_sym_val, + anon_sym_var, + [179755] = 5, + ACTIONS(107), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4558), 1, sym__lexical_identifier, - STATE(8942), 1, + STATE(4963), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(7), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601634,17 +601819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179833] = 5, - ACTIONS(9739), 1, + [179778] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(528), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8894), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601652,17 +601837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179856] = 5, - ACTIONS(8398), 1, + [179801] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8807), 1, + STATE(524), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601670,17 +601855,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179879] = 5, - ACTIONS(8398), 1, + [179824] = 9, + ACTIONS(10105), 1, + anon_sym_typealias, + ACTIONS(10109), 1, + anon_sym_enum, + ACTIONS(10113), 1, + anon_sym_object, + ACTIONS(10115), 1, + anon_sym_fun, + ACTIONS(10117), 1, + anon_sym_get, + ACTIONS(10119), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10107), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10111), 2, + anon_sym_val, + anon_sym_var, + [179855] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8933), 1, + STATE(8655), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601688,17 +601895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179902] = 5, - ACTIONS(8398), 1, + [179878] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8940), 1, + STATE(8656), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601706,39 +601913,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179925] = 9, - ACTIONS(9818), 1, + [179901] = 9, + ACTIONS(9768), 1, anon_sym_typealias, - ACTIONS(10092), 1, + ACTIONS(10123), 1, anon_sym_enum, - ACTIONS(10096), 1, + ACTIONS(10127), 1, anon_sym_object, - ACTIONS(10098), 1, + ACTIONS(10129), 1, anon_sym_fun, - ACTIONS(10100), 1, + ACTIONS(10131), 1, anon_sym_get, - ACTIONS(10102), 1, + ACTIONS(10133), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10090), 2, + ACTIONS(10121), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10094), 2, + ACTIONS(10125), 2, anon_sym_val, anon_sym_var, - [179956] = 5, - ACTIONS(9739), 1, + [179932] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(525), 1, + STATE(2518), 1, sym_simple_identifier, - STATE(905), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601746,17 +601953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179979] = 5, - ACTIONS(8398), 1, + [179955] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8936), 1, + STATE(2533), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601764,17 +601971,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180002] = 5, - ACTIONS(8398), 1, + [179978] = 9, + ACTIONS(9963), 1, + anon_sym_typealias, + ACTIONS(10137), 1, + anon_sym_enum, + ACTIONS(10141), 1, + anon_sym_object, + ACTIONS(10143), 1, + anon_sym_fun, + ACTIONS(10145), 1, + anon_sym_get, + ACTIONS(10147), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10135), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10139), 2, + anon_sym_val, + anon_sym_var, + [180009] = 5, + ACTIONS(9813), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8331), 1, + STATE(527), 1, sym_simple_identifier, + STATE(900), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9811), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601782,17 +602011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180025] = 5, - ACTIONS(613), 1, + [180032] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(843), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(1411), 1, + STATE(8661), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(537), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601800,17 +602029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180048] = 5, - ACTIONS(9739), 1, + [180055] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(524), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8913), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601818,17 +602047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180071] = 5, - ACTIONS(8398), 1, + [180078] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8812), 1, + STATE(8663), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601836,17 +602065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180094] = 5, - ACTIONS(9852), 1, + [180101] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2560), 1, + STATE(2603), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601854,17 +602083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180117] = 5, - ACTIONS(9739), 1, + [180124] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(521), 1, - sym_simple_identifier, - STATE(905), 1, + STATE(4522), 1, sym__lexical_identifier, + STATE(8910), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601872,17 +602101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180140] = 5, - ACTIONS(9852), 1, + [180147] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(2582), 1, + STATE(1802), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601890,17 +602119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180163] = 5, - ACTIONS(8398), 1, + [180170] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8386), 1, + STATE(8664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601908,17 +602137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180186] = 5, - ACTIONS(8398), 1, + [180193] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8919), 1, + STATE(8921), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601926,17 +602155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180209] = 5, - ACTIONS(9743), 1, + [180216] = 5, + ACTIONS(283), 1, sym__backtick_identifier, - STATE(2158), 1, - sym_simple_identifier, - STATE(2940), 1, + STATE(2892), 1, sym__lexical_identifier, + STATE(3964), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(201), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601944,39 +602173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180232] = 9, - ACTIONS(9854), 1, - anon_sym_typealias, - ACTIONS(10106), 1, - anon_sym_enum, - ACTIONS(10110), 1, - anon_sym_object, - ACTIONS(10112), 1, - anon_sym_fun, - ACTIONS(10114), 1, - anon_sym_get, - ACTIONS(10116), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10104), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10108), 2, - anon_sym_val, - anon_sym_var, - [180263] = 5, - ACTIONS(8398), 1, + [180239] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8909), 1, + STATE(8924), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601984,61 +602191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180286] = 9, - ACTIONS(9834), 1, - anon_sym_typealias, - ACTIONS(10120), 1, - anon_sym_enum, - ACTIONS(10124), 1, - anon_sym_object, - ACTIONS(10126), 1, - anon_sym_fun, - ACTIONS(10128), 1, - anon_sym_get, - ACTIONS(10130), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10118), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10122), 2, - anon_sym_val, - anon_sym_var, - [180317] = 9, - ACTIONS(9761), 1, - anon_sym_typealias, - ACTIONS(10134), 1, - anon_sym_enum, - ACTIONS(10138), 1, - anon_sym_object, - ACTIONS(10140), 1, - anon_sym_fun, - ACTIONS(10142), 1, - anon_sym_get, - ACTIONS(10144), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10132), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10136), 2, - anon_sym_val, - anon_sym_var, - [180348] = 5, - ACTIONS(8398), 1, + [180262] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(8892), 1, + STATE(8592), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602046,17 +602209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180371] = 5, - ACTIONS(8398), 1, + [180285] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8714), 1, + STATE(2532), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602064,17 +602227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180394] = 5, - ACTIONS(8398), 1, + [180308] = 5, + ACTIONS(613), 1, sym__backtick_identifier, - STATE(4533), 1, + STATE(2889), 1, sym__lexical_identifier, - STATE(8423), 1, + STATE(3933), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602082,17 +602245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180417] = 5, - ACTIONS(9739), 1, + [180331] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(518), 1, + STATE(1788), 1, sym_simple_identifier, - STATE(905), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9737), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602100,17 +602263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180440] = 5, - ACTIONS(9743), 1, + [180354] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(2169), 1, + STATE(1787), 1, sym_simple_identifier, - STATE(2940), 1, + STATE(2973), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9741), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602118,17 +602281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180463] = 5, - ACTIONS(409), 1, + [180377] = 5, + ACTIONS(8934), 1, sym__backtick_identifier, - STATE(2837), 1, + STATE(5534), 1, sym__lexical_identifier, - STATE(3963), 1, + STATE(8059), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(333), 7, + ACTIONS(8928), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602136,17 +602299,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180486] = 5, - ACTIONS(195), 1, + [180400] = 9, + ACTIONS(9792), 1, + anon_sym_typealias, + ACTIONS(10151), 1, + anon_sym_enum, + ACTIONS(10155), 1, + anon_sym_object, + ACTIONS(10157), 1, + anon_sym_fun, + ACTIONS(10159), 1, + anon_sym_get, + ACTIONS(10161), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10149), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10153), 2, + anon_sym_val, + anon_sym_var, + [180431] = 5, + ACTIONS(8448), 1, sym__backtick_identifier, - STATE(2858), 1, + STATE(4522), 1, sym__lexical_identifier, - STATE(4121), 1, + STATE(8915), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 7, + ACTIONS(8434), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602154,17 +602339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180509] = 5, - ACTIONS(9852), 1, + [180454] = 5, + ACTIONS(9790), 1, sym__backtick_identifier, - STATE(2629), 1, + STATE(2516), 1, sym_simple_identifier, - STATE(3498), 1, + STATE(3489), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9850), 7, + ACTIONS(9788), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602172,17 +602357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180532] = 5, - ACTIONS(8398), 1, + [180477] = 5, + ACTIONS(9786), 1, sym__backtick_identifier, - STATE(4533), 1, - sym__lexical_identifier, - STATE(8720), 1, + STATE(1782), 1, sym_simple_identifier, + STATE(2973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8384), 7, + ACTIONS(9784), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602190,77 +602375,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180555] = 9, - ACTIONS(8238), 1, + [180500] = 9, + ACTIONS(9825), 1, + anon_sym_typealias, + ACTIONS(10165), 1, + anon_sym_enum, + ACTIONS(10169), 1, + anon_sym_object, + ACTIONS(10171), 1, + anon_sym_fun, + ACTIONS(10173), 1, + anon_sym_get, + ACTIONS(10175), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10163), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10167), 2, + anon_sym_val, + anon_sym_var, + [180531] = 9, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10146), 1, + ACTIONS(10177), 1, anon_sym_COLON, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(7966), 1, + STATE(7980), 1, sym_type_constraints, - STATE(8734), 1, - sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, + STATE(8825), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4043), 2, + ACTIONS(4104), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180585] = 9, - ACTIONS(8238), 1, + [180561] = 9, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10152), 1, + ACTIONS(10183), 1, anon_sym_COLON, - STATE(7943), 1, + STATE(7941), 1, sym_type_constraints, - STATE(8700), 1, - sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, + STATE(8852), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4049), 2, + ACTIONS(4116), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180615] = 9, - ACTIONS(8238), 1, + [180591] = 9, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10154), 1, + ACTIONS(10185), 1, anon_sym_COLON, - STATE(7945), 1, + STATE(7943), 1, sym_type_constraints, - STATE(8899), 1, + STATE(8728), 1, sym__block, - STATE(8941), 1, + STATE(8781), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4087), 2, + ACTIONS(4081), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180645] = 3, + [180621] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10158), 2, + ACTIONS(10189), 2, anon_sym_LBRACK, sym__backtick_identifier, - ACTIONS(10156), 7, + ACTIONS(10187), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602268,374 +602475,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180663] = 9, - ACTIONS(8238), 1, + [180639] = 9, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10160), 1, + ACTIONS(10191), 1, anon_sym_COLON, - STATE(7976), 1, + STATE(7967), 1, sym_type_constraints, - STATE(8861), 1, - sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, + STATE(8882), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 2, + ACTIONS(4122), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180693] = 9, - ACTIONS(8238), 1, + [180669] = 9, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10162), 1, + ACTIONS(10193), 1, anon_sym_COLON, - STATE(7983), 1, + STATE(7963), 1, sym_type_constraints, - STATE(8894), 1, + STATE(8681), 1, sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 2, + ACTIONS(4110), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180723] = 9, - ACTIONS(4043), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(10164), 1, - anon_sym_COLON, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8100), 1, - sym_type_constraints, - STATE(9029), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + [180699] = 5, + ACTIONS(10195), 1, + anon_sym_LPAREN, + ACTIONS(10197), 1, + anon_sym_by, + STATE(8141), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [180752] = 9, - ACTIONS(4101), 1, + ACTIONS(4527), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [180720] = 9, + ACTIONS(4081), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(10166), 1, + ACTIONS(10199), 1, + anon_sym_COLON, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(10170), 1, - anon_sym_COLON, - STATE(8009), 1, + STATE(8102), 1, sym_type_constraints, - STATE(9106), 1, + STATE(9130), 1, sym_function_body, - STATE(9145), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [180781] = 8, - ACTIONS(8238), 1, + [180749] = 8, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(7983), 1, + STATE(7980), 1, sym_type_constraints, - STATE(8894), 1, - sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, + STATE(8825), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 2, + ACTIONS(4104), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180808] = 7, + [180776] = 7, + ACTIONS(1688), 1, + anon_sym_AT, + ACTIONS(1930), 1, + anon_sym_LBRACE, + ACTIONS(10205), 1, + sym_label, + STATE(3167), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7912), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [180801] = 7, ACTIONS(1612), 1, anon_sym_LBRACE, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(10172), 1, + ACTIONS(10207), 1, sym_label, - STATE(1165), 1, + STATE(3868), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7932), 2, + STATE(7912), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [180833] = 9, - ACTIONS(4049), 1, + [180826] = 9, + ACTIONS(4110), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(10166), 1, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(10174), 1, + ACTIONS(10209), 1, anon_sym_COLON, - STATE(8149), 1, + STATE(7999), 1, sym_type_constraints, - STATE(9080), 1, + STATE(9265), 1, sym_function_body, - STATE(9145), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [180862] = 8, - ACTIONS(8238), 1, + [180855] = 8, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(7976), 1, + STATE(7963), 1, sym_type_constraints, - STATE(8861), 1, + STATE(8681), 1, sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 2, + ACTIONS(4110), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180889] = 7, - ACTIONS(1622), 1, + [180882] = 8, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10181), 1, + anon_sym_LBRACE, + STATE(7966), 1, + sym_type_constraints, + STATE(8728), 1, + sym__block, + STATE(8914), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4288), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [180909] = 9, + ACTIONS(4122), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, + anon_sym_LBRACE, + ACTIONS(10211), 1, + anon_sym_COLON, + STATE(8075), 1, + sym_type_constraints, + STATE(9292), 1, + sym_function_body, + STATE(9407), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [180938] = 7, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(10176), 1, + ACTIONS(10213), 1, sym_label, - STATE(3689), 1, + STATE(4940), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7932), 2, + STATE(7912), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [180914] = 9, - ACTIONS(4087), 1, + [180963] = 9, + ACTIONS(4104), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(10166), 1, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(10178), 1, + ACTIONS(10215), 1, anon_sym_COLON, - STATE(8058), 1, + STATE(8040), 1, sym_type_constraints, - STATE(9082), 1, + STATE(9280), 1, sym_function_body, - STATE(9145), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [180943] = 8, - ACTIONS(8238), 1, + [180992] = 8, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(7945), 1, + STATE(7967), 1, sym_type_constraints, - STATE(8899), 1, + STATE(8728), 1, sym__block, - STATE(8941), 1, + STATE(8882), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4087), 2, + ACTIONS(4122), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180970] = 8, - ACTIONS(8238), 1, + [181019] = 8, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10148), 1, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(7967), 1, + STATE(7971), 1, sym_type_constraints, - STATE(8835), 1, - sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, + STATE(8928), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 2, + ACTIONS(4320), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [180997] = 7, + [181046] = 7, + ACTIONS(1622), 1, + anon_sym_LBRACE, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(10180), 1, + ACTIONS(10217), 1, sym_label, - STATE(3353), 1, + STATE(1113), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7932), 2, + STATE(7912), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [181022] = 5, - ACTIONS(10182), 1, - anon_sym_LPAREN, - ACTIONS(10184), 1, - anon_sym_by, - STATE(8006), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4416), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [181043] = 7, + [181071] = 7, ACTIONS(1688), 1, anon_sym_AT, ACTIONS(1854), 1, anon_sym_LBRACE, - ACTIONS(10186), 1, + ACTIONS(10219), 1, sym_label, - STATE(4702), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5733), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [181068] = 7, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(1688), 1, - anon_sym_AT, - ACTIONS(10188), 1, - sym_label, - STATE(4943), 1, + STATE(4716), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7932), 2, + STATE(7912), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [181093] = 9, - ACTIONS(4033), 1, + [181096] = 9, + ACTIONS(4116), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(10166), 1, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(10190), 1, + ACTIONS(10221), 1, anon_sym_COLON, - STATE(8031), 1, - sym_type_constraints, - STATE(9097), 1, - sym_function_body, - STATE(9145), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [181122] = 8, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(7962), 1, + STATE(8037), 1, sym_type_constraints, - STATE(8824), 1, + STATE(9222), 1, sym_function_body, - STATE(8899), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [181149] = 7, - ACTIONS(1403), 1, + [181125] = 7, + ACTIONS(1598), 1, anon_sym_LBRACE, ACTIONS(1688), 1, anon_sym_AT, - ACTIONS(10192), 1, + ACTIONS(10223), 1, sym_label, - STATE(3282), 1, + STATE(3245), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5733), 2, + STATE(5729), 2, sym__single_annotation, sym__multi_annotation, - STATE(7932), 2, + STATE(7912), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, + [181150] = 7, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(10225), 1, + anon_sym_COLON, + STATE(8176), 1, + sym_type_constraints, + STATE(8935), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4344), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, [181174] = 3, - STATE(1837), 1, + STATE(1805), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10194), 6, + ACTIONS(10227), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -602643,1184 +602867,1011 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, [181190] = 3, - STATE(1799), 1, + STATE(1764), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10196), 6, + ACTIONS(10229), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181206] = 3, - STATE(2063), 1, - sym__assignment_and_operator, + [181206] = 8, + ACTIONS(4110), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(7999), 1, + sym_type_constraints, + STATE(9265), 1, + sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10198), 6, + [181232] = 8, + ACTIONS(4104), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(10201), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [181222] = 3, - STATE(1662), 1, - sym__assignment_and_operator, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(8040), 1, + sym_type_constraints, + STATE(9280), 1, + sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10200), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [181238] = 3, - STATE(1840), 1, + [181258] = 6, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(8751), 1, + anon_sym_LPAREN, + STATE(7997), 1, + sym_value_arguments, + STATE(8425), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10231), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [181280] = 3, + STATE(1635), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10202), 6, + ACTIONS(10233), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181254] = 8, - ACTIONS(4256), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + [181296] = 7, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8075), 1, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8450), 1, + anon_sym_COLON, + STATE(8286), 1, sym_type_constraints, - STATE(9119), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + STATE(8767), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [181280] = 3, - STATE(1902), 1, + ACTIONS(3200), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [181320] = 3, + STATE(2225), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10204), 6, + ACTIONS(10235), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181296] = 8, - ACTIONS(4260), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8002), 1, - sym_type_constraints, - STATE(9116), 1, - sym_function_body, - STATE(9145), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [181322] = 8, - ACTIONS(4101), 1, + [181336] = 8, + ACTIONS(4320), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(10166), 1, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(8009), 1, + STATE(8121), 1, sym_type_constraints, - STATE(9106), 1, + STATE(9303), 1, sym_function_body, - STATE(9145), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [181348] = 3, - STATE(2004), 1, - sym__assignment_and_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10206), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [181364] = 6, - ACTIONS(8819), 1, + [181362] = 5, + ACTIONS(8836), 1, anon_sym_LT, - ACTIONS(10208), 1, + ACTIONS(10237), 1, anon_sym_COLON, - STATE(5112), 1, + STATE(5098), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4109), 2, + ACTIONS(4230), 4, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4190), 2, anon_sym_DOT, sym__quest, - [181386] = 7, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8238), 1, + [181382] = 7, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(8532), 1, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(8492), 1, anon_sym_COLON, - STATE(8192), 1, + STATE(8207), 1, sym_type_constraints, - STATE(8646), 1, - sym_enum_class_body, + STATE(8907), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 2, + ACTIONS(3208), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [181410] = 3, - STATE(1911), 1, + [181406] = 3, + STATE(1769), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10210), 6, + ACTIONS(10239), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181426] = 3, - STATE(2239), 1, + [181422] = 3, + STATE(1791), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10212), 6, + ACTIONS(10241), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181442] = 8, - ACTIONS(4033), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8031), 1, - sym_type_constraints, - STATE(9097), 1, - sym_function_body, - STATE(9145), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [181468] = 3, - STATE(1892), 1, + [181438] = 3, + STATE(2261), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10214), 6, + ACTIONS(10243), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181484] = 7, - ACTIONS(8232), 1, + [181454] = 5, + ACTIONS(10245), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9326), 2, anon_sym_LBRACE, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8406), 1, - anon_sym_COLON, - STATE(8324), 1, - sym_type_constraints, - STATE(8928), 1, - sym_enum_class_body, + sym_label, + STATE(5729), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7912), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [181474] = 6, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(8751), 1, + anon_sym_LPAREN, + STATE(8001), 1, + sym_value_arguments, + STATE(8529), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 2, - sym__automatic_semicolon, + ACTIONS(10248), 3, anon_sym_RBRACE, - [181508] = 3, - STATE(1821), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [181496] = 3, + STATE(1762), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10216), 6, + ACTIONS(10250), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181524] = 7, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, + [181512] = 7, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(10218), 1, - anon_sym_COLON, - STATE(8325), 1, - sym_type_constraints, - STATE(8856), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4186), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [181548] = 7, - ACTIONS(8238), 1, - anon_sym_where, ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8404), 1, - anon_sym_COLON, - STATE(8314), 1, - sym_type_constraints, - STATE(8912), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3200), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [181572] = 7, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8238), 1, anon_sym_where, - ACTIONS(10220), 1, + ACTIONS(10252), 1, anon_sym_COLON, - STATE(8299), 1, + STATE(8230), 1, sym_type_constraints, - STATE(8881), 1, + STATE(8714), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 2, + ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [181596] = 3, - STATE(1700), 1, + [181536] = 3, + STATE(1859), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10222), 6, + ACTIONS(10254), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181612] = 7, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(10224), 1, - anon_sym_COLON, - STATE(8279), 1, - sym_type_constraints, - STATE(8793), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4303), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [181636] = 3, - STATE(2297), 1, + [181552] = 3, + STATE(2069), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10226), 6, + ACTIONS(10256), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181652] = 5, - ACTIONS(8819), 1, - anon_sym_LT, - ACTIONS(10228), 1, - anon_sym_COLON, - STATE(5112), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT, - sym__quest, - [181672] = 3, - STATE(2255), 1, + [181568] = 3, + STATE(2123), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10230), 6, + ACTIONS(10258), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181688] = 6, - ACTIONS(8342), 1, + [181584] = 7, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(8032), 1, - sym_value_arguments, - STATE(8363), 1, - sym_class_body, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(10260), 1, + anon_sym_COLON, + STATE(8315), 1, + sym_type_constraints, + STATE(8858), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10232), 3, + ACTIONS(4328), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [181710] = 3, - STATE(1698), 1, + [181608] = 3, + STATE(1798), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10234), 6, + ACTIONS(10262), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181726] = 3, - STATE(1759), 1, + [181624] = 3, + STATE(2053), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10236), 6, + ACTIONS(10264), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181742] = 3, - STATE(1619), 1, + [181640] = 3, + STATE(2326), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10238), 6, + ACTIONS(10266), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181758] = 8, - ACTIONS(4087), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8058), 1, - sym_type_constraints, - STATE(9082), 1, - sym_function_body, - STATE(9145), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [181784] = 7, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(10240), 1, + [181656] = 6, + ACTIONS(8836), 1, + anon_sym_LT, + ACTIONS(10268), 1, anon_sym_COLON, - STATE(8284), 1, - sym_type_constraints, - STATE(8856), 1, - sym_enum_class_body, + STATE(5098), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [181808] = 3, - STATE(2257), 1, + ACTIONS(4144), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4230), 2, + anon_sym_DOT, + sym__quest, + [181678] = 3, + STATE(1693), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10242), 6, + ACTIONS(10270), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181824] = 5, - ACTIONS(8736), 1, - anon_sym_LPAREN, - ACTIONS(10244), 1, - anon_sym_by, - STATE(5504), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4416), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [181844] = 3, - STATE(2021), 1, + [181694] = 3, + STATE(2294), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10246), 6, + ACTIONS(10272), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181860] = 3, - STATE(2155), 1, + [181710] = 3, + STATE(1797), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10248), 6, + ACTIONS(10274), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181876] = 3, - STATE(1831), 1, + [181726] = 3, + STATE(2014), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 6, + ACTIONS(10276), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181892] = 3, - STATE(2069), 1, + [181742] = 3, + STATE(2275), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10252), 6, + ACTIONS(10278), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181908] = 5, - ACTIONS(10254), 1, - anon_sym_AT, + [181758] = 3, + STATE(2083), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9231), 2, - anon_sym_LBRACE, - sym_label, - STATE(5733), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7932), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [181928] = 3, - STATE(1686), 1, + ACTIONS(10280), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [181774] = 3, + STATE(1811), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10257), 6, + ACTIONS(10282), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181944] = 7, - ACTIONS(8238), 1, + [181790] = 8, + ACTIONS(4288), 1, + anon_sym_while, + ACTIONS(8299), 1, anon_sym_where, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(8098), 1, + sym_type_constraints, + STATE(9300), 1, + sym_function_body, + STATE(9407), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [181816] = 7, ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(8524), 1, + ACTIONS(8547), 1, anon_sym_COLON, - STATE(8261), 1, + STATE(8323), 1, sym_type_constraints, - STATE(8646), 1, + STATE(8898), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 2, + ACTIONS(3194), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [181968] = 3, - STATE(2131), 1, + [181840] = 3, + STATE(1743), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10259), 6, + ACTIONS(10284), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [181984] = 6, - ACTIONS(8342), 1, + [181856] = 8, + ACTIONS(4122), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(8008), 1, - sym_value_arguments, - STATE(8340), 1, - sym_class_body, + STATE(8075), 1, + sym_type_constraints, + STATE(9292), 1, + sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10261), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [182006] = 4, - ACTIONS(10263), 1, - anon_sym_COMMA, - STATE(7937), 1, - aux_sym__delegation_specifiers_repeat1, + [181882] = 3, + STATE(2232), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4627), 4, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [182023] = 7, - ACTIONS(3190), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(8580), 1, - anon_sym_COLON, - STATE(8458), 1, - sym_type_constraints, - STATE(9036), 1, - sym_class_body, + ACTIONS(10286), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [181898] = 5, + ACTIONS(8751), 1, + anon_sym_LPAREN, + ACTIONS(10288), 1, + anon_sym_by, + STATE(5510), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [182046] = 7, - ACTIONS(4186), 1, + ACTIONS(4527), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, anon_sym_while, - ACTIONS(8326), 1, + [181918] = 7, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10266), 1, + ACTIONS(8480), 1, anon_sym_COLON, - STATE(8443), 1, + STATE(8187), 1, sym_type_constraints, - STATE(9075), 1, + STATE(8907), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [182069] = 6, - ACTIONS(10268), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10271), 1, - anon_sym_DOLLAR, - ACTIONS(10274), 1, - sym__string_end, - ACTIONS(10276), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7940), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [182090] = 6, - ACTIONS(10279), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, - anon_sym_DOLLAR, - ACTIONS(10283), 1, - sym__string_end, - ACTIONS(10285), 1, - sym__string_content, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7953), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [182111] = 4, - ACTIONS(10287), 1, - anon_sym_COMMA, - STATE(7937), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(3208), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [181942] = 3, + STATE(2357), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4664), 4, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [182128] = 6, - ACTIONS(10148), 1, + ACTIONS(10290), 6, anon_sym_EQ, - ACTIONS(10150), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [181958] = 7, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, anon_sym_LBRACE, - STATE(8899), 1, - sym__block, - STATE(8941), 1, - sym_function_body, + ACTIONS(10292), 1, + anon_sym_COLON, + STATE(8285), 1, + sym_type_constraints, + STATE(8714), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4087), 2, + ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182149] = 7, - ACTIONS(3190), 1, + [181982] = 7, + ACTIONS(4334), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8629), 1, + ACTIONS(10294), 1, anon_sym_COLON, - STATE(8510), 1, + STATE(8408), 1, sym_type_constraints, - STATE(9036), 1, + STATE(9257), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [182172] = 6, - ACTIONS(10148), 1, + [182005] = 6, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(8894), 1, + STATE(8681), 1, sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 2, + ACTIONS(4110), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182193] = 7, - ACTIONS(4303), 1, - anon_sym_while, - ACTIONS(8332), 1, + [182026] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4579), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(8342), 1, + [182039] = 6, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10289), 1, - anon_sym_COLON, - STATE(8506), 1, - sym_type_constraints, - STATE(9033), 1, - sym_class_body, + STATE(8728), 1, + sym__block, + STATE(8852), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [182216] = 6, - ACTIONS(10279), 1, + ACTIONS(4116), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [182060] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, - ACTIONS(10291), 1, + ACTIONS(10300), 1, sym__string_end, - ACTIONS(10293), 1, + ACTIONS(10302), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7940), 2, + STATE(7988), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [182237] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4877), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [182250] = 3, - ACTIONS(10184), 1, - anon_sym_by, + [182081] = 4, + ACTIONS(10304), 1, + anon_sym_COMMA, + STATE(7946), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4416), 5, + ACTIONS(4648), 4, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [182265] = 6, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8238), 1, anon_sym_where, - STATE(8284), 1, - sym_type_constraints, - STATE(8856), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4186), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [182286] = 4, - ACTIONS(10287), 1, + [182098] = 4, + ACTIONS(10304), 1, anon_sym_COMMA, - STATE(7942), 1, + STATE(7989), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4658), 4, + ACTIONS(4654), 4, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [182303] = 6, - ACTIONS(10279), 1, + [182115] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, - ACTIONS(10295), 1, + ACTIONS(10306), 1, sym__string_end, - ACTIONS(10297), 1, + ACTIONS(10308), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7947), 2, + STATE(7979), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [182324] = 6, - ACTIONS(10279), 1, + [182136] = 7, + ACTIONS(3200), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8591), 1, + anon_sym_COLON, + STATE(8441), 1, + sym_type_constraints, + STATE(9272), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [182159] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, - ACTIONS(10293), 1, + ACTIONS(10302), 1, sym__string_content, - ACTIONS(10299), 1, + ACTIONS(10310), 1, sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7940), 2, + STATE(7988), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [182345] = 7, - ACTIONS(4186), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(10301), 1, - anon_sym_COLON, - STATE(8417), 1, - sym_type_constraints, - STATE(9075), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [182368] = 6, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(8325), 1, - sym_type_constraints, - STATE(8856), 1, - sym_class_body, + [182180] = 3, + ACTIONS(10197), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 2, + ACTIONS(4527), 5, sym__automatic_semicolon, - anon_sym_RBRACE, - [182389] = 7, - ACTIONS(3216), 1, - anon_sym_while, - ACTIONS(8326), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - ACTIONS(8568), 1, - anon_sym_COLON, - STATE(8412), 1, - sym_type_constraints, - STATE(9088), 1, - sym_enum_class_body, + [182195] = 5, + ACTIONS(8981), 1, + anon_sym_AT, + ACTIONS(10312), 1, + anon_sym_val, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [182412] = 6, - ACTIONS(8238), 1, + STATE(5551), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7088), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [182214] = 7, + ACTIONS(4344), 1, + anon_sym_while, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8242), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8277), 1, + ACTIONS(10314), 1, + anon_sym_COLON, + STATE(8416), 1, sym_type_constraints, - STATE(8818), 1, + STATE(9142), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4402), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [182433] = 4, - ACTIONS(10303), 1, + [182237] = 4, + ACTIONS(10316), 1, anon_sym_COMMA, - STATE(7971), 1, + STATE(7990), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4456), 4, + ACTIONS(4523), 4, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [182450] = 7, - ACTIONS(3200), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, - anon_sym_LBRACE, - ACTIONS(8566), 1, - anon_sym_COLON, - STATE(8471), 1, - sym_type_constraints, - STATE(9023), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [182473] = 6, - ACTIONS(10279), 1, + [182254] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, - ACTIONS(10305), 1, + ACTIONS(10318), 1, sym__string_end, - ACTIONS(10307), 1, + ACTIONS(10320), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7964), 2, + STATE(7991), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [182494] = 6, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, + [182275] = 6, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8279), 1, + ACTIONS(8242), 1, + anon_sym_where, + STATE(8326), 1, sym_type_constraints, - STATE(8793), 1, - sym_class_body, + STATE(8901), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 2, + ACTIONS(4484), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182515] = 6, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, + [182296] = 6, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, anon_sym_LBRACE, - STATE(8820), 1, - sym_function_body, - STATE(8899), 1, - sym__block, + STATE(8176), 1, + sym_type_constraints, + STATE(8935), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4487), 2, + ACTIONS(4344), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182536] = 6, - ACTIONS(10279), 1, + [182317] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, - ACTIONS(10293), 1, - sym__string_content, - ACTIONS(10309), 1, + ACTIONS(10322), 1, sym__string_end, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7940), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [182557] = 6, - ACTIONS(10279), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, - anon_sym_DOLLAR, - ACTIONS(10293), 1, + ACTIONS(10324), 1, sym__string_content, - ACTIONS(10311), 1, - sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7940), 2, + STATE(7949), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [182578] = 7, - ACTIONS(4231), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8332), 1, + [182338] = 6, + ACTIONS(8242), 1, anon_sym_where, - ACTIONS(10313), 1, - anon_sym_COLON, - STATE(8390), 1, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(8324), 1, sym_type_constraints, - STATE(9100), 1, - sym_enum_class_body, + STATE(8871), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [182601] = 6, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(8700), 1, - sym_function_body, - STATE(8899), 1, - sym__block, + ACTIONS(4478), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [182359] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4049), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [182622] = 6, - ACTIONS(10148), 1, + ACTIONS(4839), 6, anon_sym_EQ, - ACTIONS(10150), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [182372] = 6, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8824), 1, - sym_function_body, - STATE(8899), 1, - sym__block, + ACTIONS(8242), 1, + anon_sym_where, + STATE(8331), 1, + sym_type_constraints, + STATE(8926), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 2, + ACTIONS(4500), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182643] = 6, - ACTIONS(10279), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, - anon_sym_DOLLAR, - ACTIONS(10315), 1, - sym__string_end, - ACTIONS(10317), 1, - sym__string_content, + [182393] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7963), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [182664] = 6, - ACTIONS(10279), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, - anon_sym_DOLLAR, - ACTIONS(10293), 1, - sym__string_content, - ACTIONS(10319), 1, - sym__string_end, + ACTIONS(4629), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [182406] = 7, + ACTIONS(4334), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(10326), 1, + anon_sym_COLON, + STATE(8396), 1, + sym_type_constraints, + STATE(9257), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7940), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [182685] = 6, - ACTIONS(10279), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, - anon_sym_DOLLAR, - ACTIONS(10321), 1, - sym__string_end, - ACTIONS(10323), 1, - sym__string_content, + [182429] = 6, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10181), 1, + anon_sym_LBRACE, + STATE(8728), 1, + sym__block, + STATE(8825), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7989), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [182706] = 4, - ACTIONS(10325), 1, + ACTIONS(4104), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [182450] = 4, + ACTIONS(10316), 1, anon_sym_COMMA, - STATE(7971), 1, + STATE(7953), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4464), 4, + ACTIONS(4517), 4, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [182723] = 2, + [182467] = 7, + ACTIONS(3208), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8305), 1, + anon_sym_LBRACE, + ACTIONS(8611), 1, + anon_sym_COLON, + STATE(8355), 1, + sym_type_constraints, + STATE(9186), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 6, - sym__automatic_semicolon, - anon_sym_COLON, + [182490] = 6, + ACTIONS(10179), 1, anon_sym_EQ, + ACTIONS(10181), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [182736] = 6, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8238), 1, - anon_sym_where, - STATE(8276), 1, - sym_type_constraints, - STATE(8831), 1, - sym_enum_class_body, + STATE(8728), 1, + sym__block, + STATE(8928), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4392), 2, + ACTIONS(4320), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182757] = 6, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, + [182511] = 6, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(8318), 1, - sym_type_constraints, - STATE(8918), 1, - sym_class_body, + STATE(8728), 1, + sym__block, + STATE(8914), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4406), 2, + ACTIONS(4288), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182778] = 6, - ACTIONS(10279), 1, + [182532] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, ACTIONS(10328), 1, sym__string_end, @@ -603829,7862 +603880,8035 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7969), 2, + STATE(7977), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [182799] = 6, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(8835), 1, - sym_function_body, - STATE(8899), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4260), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [182820] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4531), 6, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + [182553] = 6, + ACTIONS(8242), 1, anon_sym_where, - [182833] = 2, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(8314), 1, + sym_type_constraints, + STATE(8800), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4617), 6, + ACTIONS(4398), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [182846] = 6, - ACTIONS(8232), 1, + [182574] = 6, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8238), 1, + ACTIONS(8242), 1, anon_sym_where, STATE(8315), 1, sym_type_constraints, - STATE(8916), 1, + STATE(8858), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4503), 2, + ACTIONS(4328), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182867] = 6, - ACTIONS(8232), 1, + [182595] = 6, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(8238), 1, - anon_sym_where, - STATE(8278), 1, - sym_type_constraints, - STATE(8851), 1, - sym_enum_class_body, + STATE(8728), 1, + sym__block, + STATE(8947), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4346), 2, + ACTIONS(4454), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182888] = 6, - ACTIONS(8238), 1, + [182616] = 7, + ACTIONS(3194), 1, + anon_sym_while, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8242), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8282), 1, + ACTIONS(8633), 1, + anon_sym_COLON, + STATE(8422), 1, sym_type_constraints, - STATE(8869), 1, + STATE(9107), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [182909] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4668), 6, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + [182639] = 6, + ACTIONS(8242), 1, anon_sym_where, - [182922] = 6, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(8861), 1, - sym_function_body, - STATE(8899), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4101), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [182943] = 6, - ACTIONS(8232), 1, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(8238), 1, - anon_sym_where, - STATE(8288), 1, + STATE(8285), 1, sym_type_constraints, - STATE(8869), 1, - sym_enum_class_body, + STATE(8714), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 2, + ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [182964] = 5, - ACTIONS(8939), 1, - anon_sym_AT, + [182660] = 6, + ACTIONS(10296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10298), 1, + anon_sym_DOLLAR, ACTIONS(10332), 1, - anon_sym_val, + sym__string_end, + ACTIONS(10334), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5546), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7034), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [182983] = 6, - ACTIONS(8232), 1, + STATE(7944), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [182681] = 7, + ACTIONS(4328), 1, + anon_sym_while, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(8238), 1, + ACTIONS(8299), 1, anon_sym_where, - STATE(8299), 1, + ACTIONS(10336), 1, + anon_sym_COLON, + STATE(8467), 1, sym_type_constraints, - STATE(8881), 1, + STATE(9285), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [183004] = 4, - ACTIONS(10303), 1, - anon_sym_COMMA, - STATE(7958), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4442), 4, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - [183021] = 6, - ACTIONS(8238), 1, - anon_sym_where, - ACTIONS(8242), 1, - anon_sym_LBRACE, - STATE(8304), 1, - sym_type_constraints, - STATE(8916), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4503), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [183042] = 6, - ACTIONS(10279), 1, + [182704] = 6, + ACTIONS(10296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10281), 1, + ACTIONS(10298), 1, anon_sym_DOLLAR, - ACTIONS(10293), 1, + ACTIONS(10302), 1, sym__string_content, - ACTIONS(10334), 1, + ACTIONS(10338), 1, sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7940), 2, + STATE(7988), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [183063] = 5, - ACTIONS(10336), 1, - anon_sym_catch, - ACTIONS(10338), 1, - anon_sym_finally, - STATE(4924), 1, - sym_finally_block, + [182725] = 6, + ACTIONS(10296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10298), 1, + anon_sym_DOLLAR, + ACTIONS(10302), 1, + sym__string_content, + ACTIONS(10340), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4493), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [183081] = 6, - ACTIONS(6459), 1, - anon_sym_LBRACE, - ACTIONS(10340), 1, - anon_sym_COLON, + STATE(7988), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [182746] = 6, + ACTIONS(10296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10298), 1, + anon_sym_DOLLAR, ACTIONS(10342), 1, - anon_sym_EQ, - STATE(3734), 1, - sym_function_body, - STATE(3738), 1, - sym__block, + sym__string_end, + ACTIONS(10344), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183101] = 6, - ACTIONS(6242), 1, - anon_sym_LBRACE, - ACTIONS(10344), 1, - anon_sym_COLON, + STATE(7976), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [182767] = 6, + ACTIONS(10296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10298), 1, + anon_sym_DOLLAR, + ACTIONS(10302), 1, + sym__string_content, ACTIONS(10346), 1, - anon_sym_EQ, - STATE(3334), 1, - sym__block, - STATE(3395), 1, - sym_function_body, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183121] = 6, - ACTIONS(8045), 1, + STATE(7988), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [182788] = 6, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10348), 1, - anon_sym_COLON, - STATE(5321), 1, - sym_function_body, - STATE(5357), 1, + STATE(8728), 1, sym__block, + STATE(8882), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183141] = 6, - ACTIONS(4392), 1, - anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(4122), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [182809] = 6, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8242), 1, anon_sym_where, - STATE(8367), 1, + STATE(8302), 1, sym_type_constraints, - STATE(9117), 1, + STATE(8800), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183161] = 5, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(10350), 1, - anon_sym_COLON, - STATE(8595), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4386), 2, + ACTIONS(4398), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [183179] = 3, - ACTIONS(10208), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4109), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [183193] = 6, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(10352), 1, - anon_sym_COLON, - ACTIONS(10354), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4747), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183213] = 6, - ACTIONS(6459), 1, + [182830] = 6, + ACTIONS(8236), 1, anon_sym_LBRACE, - ACTIONS(10356), 1, - anon_sym_COLON, - ACTIONS(10358), 1, - anon_sym_EQ, - STATE(3734), 1, - sym_function_body, - STATE(3738), 1, - sym__block, + ACTIONS(8242), 1, + anon_sym_where, + STATE(8230), 1, + sym_type_constraints, + STATE(8714), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183233] = 6, - ACTIONS(6242), 1, - anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(10360), 1, - anon_sym_COLON, - STATE(3334), 1, - sym__block, - STATE(3395), 1, - sym_function_body, + ACTIONS(4334), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [182851] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183253] = 6, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10362), 1, + ACTIONS(4603), 6, + sym__automatic_semicolon, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4922), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183273] = 6, - ACTIONS(8045), 1, anon_sym_EQ, - ACTIONS(8047), 1, anon_sym_LBRACE, - ACTIONS(10364), 1, - anon_sym_COLON, - STATE(5294), 1, - sym_function_body, - STATE(5357), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183293] = 6, - ACTIONS(4256), 1, - anon_sym_while, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + anon_sym_RBRACE, + anon_sym_where, + [182864] = 6, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(9119), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + ACTIONS(8242), 1, + anon_sym_where, + STATE(8319), 1, + sym_type_constraints, + STATE(8871), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183313] = 6, - ACTIONS(6242), 1, + ACTIONS(4478), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [182885] = 6, + ACTIONS(8242), 1, + anon_sym_where, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(10366), 1, - anon_sym_COLON, - STATE(3263), 1, - sym_function_body, - STATE(3334), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183333] = 2, + STATE(8229), 1, + sym_type_constraints, + STATE(8729), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4599), 5, + ACTIONS(4470), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, + [182906] = 6, + ACTIONS(8242), 1, anon_sym_where, - [183345] = 6, - ACTIONS(6242), 1, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(10368), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_function_body, - STATE(3334), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183365] = 2, + STATE(8295), 1, + sym_type_constraints, + STATE(8791), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4893), 5, + ACTIONS(4412), 2, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [183377] = 6, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, + [182927] = 7, + ACTIONS(3208), 1, + anon_sym_while, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(10370), 1, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8670), 1, anon_sym_COLON, - STATE(5269), 1, - sym_function_body, - STATE(5357), 1, - sym__block, + STATE(8567), 1, + sym_type_constraints, + STATE(9186), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183397] = 4, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(8356), 1, - sym_class_body, + [182950] = 6, + ACTIONS(10348), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10351), 1, + anon_sym_DOLLAR, + ACTIONS(10354), 1, + sym__string_end, + ACTIONS(10356), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10372), 3, - anon_sym_RBRACE, + STATE(7988), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [182971] = 4, + ACTIONS(10359), 1, anon_sym_COMMA, - anon_sym_SEMI, - [183413] = 6, - ACTIONS(4260), 1, - anon_sym_while, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(9116), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + STATE(7989), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183433] = 6, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(4637), 4, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10374), 1, - anon_sym_COLON, - STATE(8806), 1, - sym_function_body, - STATE(8899), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_where, + [182988] = 4, + ACTIONS(10362), 1, + anon_sym_COMMA, + STATE(7990), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183453] = 6, - ACTIONS(8045), 1, + ACTIONS(4508), 4, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(8047), 1, anon_sym_LBRACE, - ACTIONS(10376), 1, - anon_sym_COLON, - STATE(5287), 1, - sym_function_body, - STATE(5357), 1, - sym__block, + anon_sym_RBRACE, + [183005] = 6, + ACTIONS(10296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10298), 1, + anon_sym_DOLLAR, + ACTIONS(10302), 1, + sym__string_content, + ACTIONS(10365), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183473] = 2, + STATE(7988), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [183026] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 5, + ACTIONS(4607), 6, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [183485] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4591), 5, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [183497] = 6, - ACTIONS(6459), 1, + [183039] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10378), 1, + ACTIONS(10367), 1, anon_sym_COLON, - ACTIONS(10380), 1, + ACTIONS(10369), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3734), 1, sym__block, - STATE(3902), 1, + STATE(3842), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183517] = 6, - ACTIONS(6242), 1, + [183059] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(10382), 1, - anon_sym_COLON, - STATE(3333), 1, - sym_function_body, - STATE(3334), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183537] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4531), 5, + ACTIONS(10371), 1, anon_sym_COLON, + ACTIONS(10373), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [183549] = 6, - ACTIONS(6459), 1, - anon_sym_LBRACE, - ACTIONS(10380), 1, - anon_sym_EQ, - ACTIONS(10384), 1, - anon_sym_COLON, - STATE(3738), 1, + STATE(4923), 1, sym__block, - STATE(3767), 1, + STATE(4981), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183569] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4523), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [183581] = 6, - ACTIONS(7926), 1, + [183079] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10386), 1, + ACTIONS(10375), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5035), 1, + ACTIONS(10377), 1, + anon_sym_EQ, + STATE(4641), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183601] = 6, - ACTIONS(6459), 1, + [183099] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, + ACTIONS(10377), 1, anon_sym_EQ, - ACTIONS(10388), 1, + ACTIONS(10379), 1, anon_sym_COLON, - STATE(3686), 1, + STATE(4655), 1, sym_function_body, - STATE(3738), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183621] = 2, + [183119] = 4, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(8381), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4668), 5, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [183633] = 6, - ACTIONS(6459), 1, + ACTIONS(10381), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [183135] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, - anon_sym_EQ, - ACTIONS(10390), 1, + ACTIONS(10383), 1, anon_sym_COLON, + ACTIONS(10385), 1, + anon_sym_EQ, STATE(3734), 1, - sym_function_body, - STATE(3738), 1, sym__block, + STATE(3784), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183653] = 6, - ACTIONS(6242), 1, - anon_sym_LBRACE, - ACTIONS(10346), 1, + [183155] = 6, + ACTIONS(4104), 1, + anon_sym_while, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10392), 1, - anon_sym_COLON, - STATE(3333), 1, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9280), 1, sym_function_body, - STATE(3334), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183673] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4613), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [183685] = 2, + [183175] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4617), 5, + ACTIONS(4603), 5, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [183697] = 6, - ACTIONS(7926), 1, + [183187] = 4, + ACTIONS(8305), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10394), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5016), 1, - sym_function_body, + STATE(8425), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183717] = 6, - ACTIONS(4346), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8332), 1, - anon_sym_where, - STATE(8373), 1, - sym_type_constraints, - STATE(9110), 1, - sym_enum_class_body, + ACTIONS(10231), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [183203] = 4, + ACTIONS(10389), 1, + anon_sym_DOT, + STATE(8068), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183737] = 6, - ACTIONS(4342), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(8375), 1, - sym_type_constraints, - STATE(9065), 1, - sym_class_body, + ACTIONS(10387), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [183219] = 6, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10391), 1, + anon_sym_COLON, + ACTIONS(10393), 1, + anon_sym_EQ, + STATE(3265), 1, + sym__block, + STATE(3448), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183757] = 6, - ACTIONS(6459), 1, + [183239] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, + ACTIONS(10377), 1, anon_sym_EQ, - ACTIONS(10396), 1, + ACTIONS(10395), 1, anon_sym_COLON, - STATE(3686), 1, + STATE(4602), 1, sym_function_body, - STATE(3738), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183777] = 6, - ACTIONS(10398), 1, - anon_sym_DOT_STAR, - ACTIONS(10400), 1, - anon_sym_as, - ACTIONS(10402), 1, - sym__automatic_semicolon, - STATE(8848), 1, - sym_import_alias, - STATE(8858), 1, - sym__semi, - ACTIONS(3), 2, + [183259] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10397), 1, sym_line_comment, - [183797] = 6, - ACTIONS(4101), 1, - anon_sym_while, - ACTIONS(10166), 1, + ACTIONS(10399), 1, + aux_sym_character_literal_token1, + ACTIONS(10401), 1, + anon_sym_BSLASHu, + ACTIONS(10403), 1, + sym__escaped_identifier, + STATE(9424), 1, + sym__uni_character_literal, + STATE(9461), 1, + sym_character_escape_seq, + [183281] = 6, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(9106), 1, + ACTIONS(10405), 1, + anon_sym_COLON, + STATE(5338), 1, sym_function_body, - STATE(9145), 1, + STATE(5340), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183817] = 4, - ACTIONS(8342), 1, + [183301] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(8340), 1, - sym_class_body, + ACTIONS(10407), 1, + anon_sym_COLON, + ACTIONS(10409), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(4981), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10261), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [183833] = 6, - ACTIONS(7926), 1, + [183321] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10404), 1, + ACTIONS(10411), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4956), 1, + ACTIONS(10413), 1, + anon_sym_EQ, + STATE(3262), 1, sym_function_body, + STATE(3265), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [183341] = 5, + ACTIONS(10415), 1, + anon_sym_catch, + ACTIONS(10417), 1, + anon_sym_finally, + STATE(1057), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183853] = 6, - ACTIONS(6459), 1, + STATE(784), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [183359] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, + ACTIONS(10409), 1, anon_sym_EQ, - ACTIONS(10406), 1, + ACTIONS(10419), 1, anon_sym_COLON, - STATE(3738), 1, + STATE(4923), 1, sym__block, - STATE(3767), 1, + STATE(5008), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183873] = 6, - ACTIONS(4342), 1, - anon_sym_while, - ACTIONS(8326), 1, + [183379] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, - anon_sym_where, - STATE(8380), 1, - sym_type_constraints, - STATE(9065), 1, - sym_enum_class_body, + ACTIONS(10421), 1, + anon_sym_COLON, + ACTIONS(10423), 1, + anon_sym_EQ, + STATE(1133), 1, + sym__block, + STATE(1156), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183893] = 6, - ACTIONS(7864), 1, + [183399] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, + ACTIONS(10409), 1, anon_sym_EQ, - ACTIONS(10408), 1, + ACTIONS(10425), 1, anon_sym_COLON, - STATE(4690), 1, + STATE(4923), 1, sym__block, - STATE(4718), 1, + STATE(5019), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183913] = 2, + [183419] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4650), 5, + ACTIONS(4704), 5, sym__automatic_semicolon, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [183925] = 6, - ACTIONS(4231), 1, + [183431] = 6, + ACTIONS(4398), 1, anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - STATE(8390), 1, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(8466), 1, sym_type_constraints, - STATE(9100), 1, - sym_enum_class_body, + STATE(9277), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [183945] = 5, - ACTIONS(10410), 1, + [183451] = 5, + ACTIONS(10427), 1, anon_sym_catch, - ACTIONS(10412), 1, + ACTIONS(10429), 1, anon_sym_finally, - STATE(1187), 1, + STATE(4722), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(784), 2, + STATE(4439), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [183963] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4539), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [183975] = 6, - ACTIONS(4503), 1, + [183469] = 6, + ACTIONS(4328), 1, anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, + ACTIONS(8293), 1, anon_sym_LBRACE, - STATE(8392), 1, + ACTIONS(8299), 1, + anon_sym_where, + STATE(8467), 1, sym_type_constraints, - STATE(9092), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [183995] = 6, - ACTIONS(4039), 1, - anon_sym_LBRACE, - ACTIONS(10414), 1, - anon_sym_COLON, - ACTIONS(10416), 1, - anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1169), 1, - sym_function_body, + STATE(9285), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184015] = 4, - ACTIONS(10420), 1, - anon_sym_DOT, - STATE(8046), 1, - aux_sym_identifier_repeat1, + [183489] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10418), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [184031] = 6, - ACTIONS(6242), 1, + ACTIONS(4629), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(10346), 1, + anon_sym_where, + anon_sym_while, + [183501] = 6, + ACTIONS(6404), 1, + anon_sym_LBRACE, + ACTIONS(10369), 1, anon_sym_EQ, - ACTIONS(10422), 1, + ACTIONS(10431), 1, anon_sym_COLON, - STATE(3263), 1, - sym_function_body, - STATE(3334), 1, + STATE(3734), 1, sym__block, + STATE(3862), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184051] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4885), 5, - sym__automatic_semicolon, + [183521] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [184063] = 4, - ACTIONS(10426), 1, - anon_sym_DOT, - STATE(8046), 1, - aux_sym_identifier_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10424), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [184079] = 6, - ACTIONS(10148), 1, + ACTIONS(10385), 1, anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - ACTIONS(10429), 1, + ACTIONS(10433), 1, anon_sym_COLON, - STATE(8899), 1, + STATE(3734), 1, sym__block, - STATE(8922), 1, + STATE(3862), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184099] = 6, - ACTIONS(4039), 1, - anon_sym_LBRACE, - ACTIONS(10416), 1, + [183541] = 6, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10431), 1, + ACTIONS(10181), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(8728), 1, sym__block, - STATE(1200), 1, + STATE(8783), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184119] = 6, - ACTIONS(10148), 1, + [183561] = 6, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10433), 1, + ACTIONS(10437), 1, anon_sym_COLON, - STATE(8736), 1, - sym_function_body, - STATE(8899), 1, + STATE(8728), 1, sym__block, + STATE(8782), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184139] = 6, - ACTIONS(4039), 1, + [183581] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10416), 1, + ACTIONS(10409), 1, anon_sym_EQ, - ACTIONS(10435), 1, + ACTIONS(10439), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(4923), 1, sym__block, - STATE(1161), 1, + STATE(5046), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184159] = 6, - ACTIONS(6242), 1, + [183601] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10346), 1, + ACTIONS(10369), 1, anon_sym_EQ, - ACTIONS(10437), 1, + ACTIONS(10441), 1, anon_sym_COLON, - STATE(3222), 1, - sym_function_body, - STATE(3334), 1, + STATE(3734), 1, sym__block, + STATE(3784), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184179] = 6, - ACTIONS(6231), 1, + [183621] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10439), 1, + ACTIONS(10443), 1, anon_sym_COLON, - ACTIONS(10441), 1, + ACTIONS(10445), 1, anon_sym_EQ, - STATE(3179), 1, - sym_function_body, - STATE(3464), 1, + STATE(3734), 1, sym__block, + STATE(3784), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184199] = 2, + [183641] = 6, + ACTIONS(10447), 1, + anon_sym_DOT_STAR, + ACTIONS(10449), 1, + anon_sym_as, + ACTIONS(10451), 1, + sym__automatic_semicolon, + STATE(8750), 1, + sym_import_alias, + STATE(8754), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4865), 5, - sym__automatic_semicolon, + [183661] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [184211] = 7, - ACTIONS(3), 1, + ACTIONS(10385), 1, + anon_sym_EQ, + ACTIONS(10453), 1, + anon_sym_COLON, + STATE(3734), 1, + sym__block, + STATE(3842), 1, + sym_function_body, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10443), 1, sym_line_comment, - ACTIONS(10445), 1, - aux_sym_character_literal_token1, - ACTIONS(10447), 1, - anon_sym_BSLASHu, - ACTIONS(10449), 1, - sym__escaped_identifier, - STATE(9334), 1, - sym_character_escape_seq, - STATE(9455), 1, - sym__uni_character_literal, - [184233] = 4, - ACTIONS(10420), 1, - anon_sym_DOT, - STATE(8043), 1, - aux_sym_identifier_repeat1, + [183681] = 5, + ACTIONS(10455), 1, + anon_sym_catch, + ACTIONS(10457), 1, + anon_sym_finally, + STATE(3364), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10451), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [184249] = 2, + STATE(2796), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [183699] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4861), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4692), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [184261] = 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_in, + [183711] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4869), 5, + ACTIONS(4658), 5, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [184273] = 6, - ACTIONS(4033), 1, - anon_sym_while, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + [183723] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - STATE(9097), 1, - sym_function_body, - STATE(9145), 1, + ACTIONS(10385), 1, + anon_sym_EQ, + ACTIONS(10459), 1, + anon_sym_COLON, + STATE(3734), 1, sym__block, + STATE(3859), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184293] = 4, - ACTIONS(10453), 1, - anon_sym_LT, - STATE(8428), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4190), 3, - anon_sym_DOT, - sym__quest, - anon_sym_in, - [184309] = 6, - ACTIONS(7926), 1, + [183743] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10455), 1, + ACTIONS(10461), 1, anon_sym_COLON, - ACTIONS(10457), 1, + ACTIONS(10463), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4922), 1, + STATE(5019), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184329] = 6, - ACTIONS(7864), 1, + [183763] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, - anon_sym_EQ, - ACTIONS(10459), 1, + ACTIONS(10465), 1, anon_sym_COLON, - STATE(4669), 1, - sym_function_body, - STATE(4690), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [184349] = 6, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10457), 1, + ACTIONS(10467), 1, anon_sym_EQ, - ACTIONS(10461), 1, - anon_sym_COLON, - STATE(4901), 1, + STATE(3265), 1, sym__block, - STATE(5035), 1, + STATE(3433), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184369] = 6, - ACTIONS(7864), 1, + [183783] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, + ACTIONS(10393), 1, anon_sym_EQ, - ACTIONS(10463), 1, + ACTIONS(10469), 1, anon_sym_COLON, - STATE(4624), 1, + STATE(3262), 1, sym_function_body, - STATE(4690), 1, + STATE(3265), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184389] = 6, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10457), 1, + [183803] = 6, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(10465), 1, + ACTIONS(8087), 1, + anon_sym_LBRACE, + ACTIONS(10471), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(5340), 1, sym__block, - STATE(5016), 1, + STATE(5351), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184409] = 6, - ACTIONS(4039), 1, + [183823] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10467), 1, - anon_sym_COLON, - ACTIONS(10469), 1, + ACTIONS(10413), 1, anon_sym_EQ, - STATE(1087), 1, + ACTIONS(10473), 1, + anon_sym_COLON, + STATE(3265), 1, sym__block, - STATE(1161), 1, + STATE(3465), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184429] = 6, - ACTIONS(7926), 1, + [183843] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4676), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10457), 1, + anon_sym_RBRACE, + anon_sym_where, + [183855] = 6, + ACTIONS(4110), 1, + anon_sym_while, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10471), 1, - anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(4956), 1, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9265), 1, sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184449] = 6, - ACTIONS(4503), 1, + [183875] = 6, + ACTIONS(4478), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - STATE(8401), 1, + STATE(8472), 1, sym_type_constraints, - STATE(9092), 1, + STATE(9290), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184469] = 6, - ACTIONS(7926), 1, + [183895] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10473), 1, - anon_sym_COLON, - ACTIONS(10475), 1, + ACTIONS(10393), 1, anon_sym_EQ, - STATE(4901), 1, + ACTIONS(10475), 1, + anon_sym_COLON, + STATE(3265), 1, sym__block, - STATE(4956), 1, + STATE(3465), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184489] = 7, - ACTIONS(3), 1, + [183915] = 6, + ACTIONS(4122), 1, + anon_sym_while, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9292), 1, + sym_function_body, + STATE(9407), 1, + sym__block, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10443), 1, sym_line_comment, - ACTIONS(10447), 1, - anon_sym_BSLASHu, - ACTIONS(10449), 1, - sym__escaped_identifier, + [183935] = 6, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, + anon_sym_LBRACE, ACTIONS(10477), 1, - aux_sym_character_literal_token1, - STATE(9455), 1, - sym__uni_character_literal, - STATE(9464), 1, - sym_character_escape_seq, - [184511] = 6, - ACTIONS(4039), 1, + anon_sym_COLON, + STATE(9131), 1, + sym_function_body, + STATE(9407), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [183955] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10469), 1, + ACTIONS(10393), 1, anon_sym_EQ, ACTIONS(10479), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(3265), 1, sym__block, - STATE(1191), 1, + STATE(3433), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184531] = 6, - ACTIONS(4039), 1, + [183975] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3871), 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_DOT, + sym__quest, + anon_sym_in, + [183987] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10469), 1, + ACTIONS(10413), 1, anon_sym_EQ, ACTIONS(10481), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(3265), 1, sym__block, - STATE(1200), 1, + STATE(3433), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184551] = 6, - ACTIONS(4039), 1, + [184007] = 6, + ACTIONS(4398), 1, + anon_sym_while, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(10469), 1, + ACTIONS(8299), 1, + anon_sym_where, + STATE(8459), 1, + sym_type_constraints, + STATE(9277), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [184027] = 6, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(10463), 1, anon_sym_EQ, ACTIONS(10483), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(4923), 1, sym__block, - STATE(1169), 1, + STATE(5046), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184571] = 6, - ACTIONS(6231), 1, + [184047] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_EQ, ACTIONS(10485), 1, anon_sym_COLON, - ACTIONS(10487), 1, - anon_sym_EQ, - STATE(3179), 1, - sym_function_body, - STATE(3464), 1, + STATE(4923), 1, sym__block, + STATE(4981), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184591] = 6, - ACTIONS(4406), 1, + [184067] = 6, + ACTIONS(4412), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8342), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8404), 1, + STATE(8457), 1, sym_type_constraints, - STATE(9091), 1, + STATE(9276), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184611] = 6, - ACTIONS(4487), 1, - anon_sym_while, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + [184087] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - STATE(9123), 1, - sym_function_body, - STATE(9145), 1, + ACTIONS(10369), 1, + anon_sym_EQ, + ACTIONS(10487), 1, + anon_sym_COLON, + STATE(3734), 1, sym__block, + STATE(3859), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184631] = 4, + [184107] = 6, + ACTIONS(6404), 1, + anon_sym_LBRACE, + ACTIONS(10445), 1, + anon_sym_EQ, ACTIONS(10489), 1, - anon_sym_COMMA, - STATE(8076), 1, - aux_sym_type_constraints_repeat1, + anon_sym_COLON, + STATE(3734), 1, + sym__block, + STATE(3862), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4464), 3, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_while, - [184647] = 5, - ACTIONS(10492), 1, - anon_sym_catch, - ACTIONS(10494), 1, - anon_sym_finally, - STATE(4699), 1, - sym_finally_block, + [184127] = 4, + ACTIONS(10491), 1, + anon_sym_COMMA, + STATE(8051), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4437), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [184665] = 6, - ACTIONS(6459), 1, + ACTIONS(4637), 3, anon_sym_LBRACE, - ACTIONS(10342), 1, + anon_sym_where, + anon_sym_while, + [184143] = 6, + ACTIONS(6404), 1, + anon_sym_LBRACE, + ACTIONS(10445), 1, anon_sym_EQ, - ACTIONS(10496), 1, + ACTIONS(10494), 1, anon_sym_COLON, - STATE(3686), 1, - sym_function_body, - STATE(3738), 1, + STATE(3734), 1, sym__block, + STATE(3842), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184685] = 6, - ACTIONS(6459), 1, - anon_sym_LBRACE, - ACTIONS(10342), 1, + [184163] = 6, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10498), 1, + ACTIONS(10181), 1, + anon_sym_LBRACE, + ACTIONS(10496), 1, anon_sym_COLON, - STATE(3738), 1, + STATE(8728), 1, sym__block, - STATE(3767), 1, + STATE(8834), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184705] = 7, + [184183] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10443), 1, + ACTIONS(10397), 1, sym_line_comment, - ACTIONS(10447), 1, + ACTIONS(10401), 1, anon_sym_BSLASHu, - ACTIONS(10449), 1, + ACTIONS(10403), 1, sym__escaped_identifier, - ACTIONS(10500), 1, + ACTIONS(10498), 1, aux_sym_character_literal_token1, - STATE(9173), 1, + STATE(9319), 1, sym_character_escape_seq, - STATE(9455), 1, + STATE(9424), 1, sym__uni_character_literal, - [184727] = 4, + [184205] = 6, + ACTIONS(6404), 1, + anon_sym_LBRACE, + ACTIONS(10500), 1, + anon_sym_COLON, ACTIONS(10502), 1, + anon_sym_EQ, + STATE(3734), 1, + sym__block, + STATE(3842), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [184225] = 4, + ACTIONS(10504), 1, anon_sym_COMMA, - STATE(8158), 1, + STATE(8051), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4658), 3, + ACTIONS(4654), 3, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [184743] = 2, + [184241] = 4, + ACTIONS(10506), 1, + anon_sym_COMMA, + STATE(8057), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4416), 5, - sym__automatic_semicolon, + ACTIONS(4508), 3, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [184755] = 2, + anon_sym_while, + [184257] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4688), 5, + ACTIONS(4527), 5, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - [184767] = 6, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - ACTIONS(10504), 1, - anon_sym_COLON, - STATE(9030), 1, - sym_function_body, - STATE(9145), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [184787] = 6, - ACTIONS(6459), 1, - anon_sym_LBRACE, - ACTIONS(10506), 1, - anon_sym_COLON, - ACTIONS(10508), 1, - anon_sym_EQ, - STATE(3734), 1, - sym_function_body, - STATE(3738), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [184807] = 6, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + [184269] = 5, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10510), 1, + ACTIONS(10509), 1, anon_sym_COLON, - STATE(9090), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + STATE(8744), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184827] = 6, - ACTIONS(4303), 1, + ACTIONS(4392), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [184287] = 6, + ACTIONS(4478), 1, anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8342), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8506), 1, + STATE(8478), 1, sym_type_constraints, - STATE(9033), 1, + STATE(9290), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184847] = 6, - ACTIONS(10148), 1, + [184307] = 6, + ACTIONS(8085), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(8087), 1, anon_sym_LBRACE, - ACTIONS(10512), 1, + ACTIONS(10511), 1, anon_sym_COLON, - STATE(8716), 1, + STATE(5315), 1, sym_function_body, - STATE(8899), 1, + STATE(5340), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184867] = 6, - ACTIONS(6459), 1, + [184327] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, + ACTIONS(10502), 1, anon_sym_EQ, - ACTIONS(10514), 1, + ACTIONS(10513), 1, anon_sym_COLON, - STATE(3686), 1, - sym_function_body, - STATE(3738), 1, + STATE(3734), 1, sym__block, + STATE(3862), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184887] = 4, - ACTIONS(10516), 1, - anon_sym_COMMA, - STATE(8106), 1, - aux_sym_type_constraints_repeat1, + [184347] = 6, + ACTIONS(4484), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_where, + STATE(8479), 1, + sym_type_constraints, + STATE(9296), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 3, + [184367] = 6, + ACTIONS(10201), 1, anon_sym_EQ, + ACTIONS(10203), 1, anon_sym_LBRACE, - anon_sym_while, - [184903] = 2, + ACTIONS(10515), 1, + anon_sym_COLON, + STATE(9275), 1, + sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4696), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_in, - [184915] = 6, - ACTIONS(7926), 1, + [184387] = 5, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, - anon_sym_EQ, - ACTIONS(10518), 1, + ACTIONS(10517), 1, anon_sym_COLON, - STATE(4901), 1, - sym__block, - STATE(5016), 1, - sym_function_body, + STATE(8942), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184935] = 6, - ACTIONS(4039), 1, + ACTIONS(4404), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [184405] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10520), 1, + ACTIONS(10519), 1, anon_sym_COLON, - ACTIONS(10522), 1, + ACTIONS(10521), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3192), 1, sym__block, - STATE(1161), 1, + STATE(3263), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184955] = 6, - ACTIONS(4039), 1, + [184425] = 6, + ACTIONS(4470), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8305), 1, anon_sym_LBRACE, - ACTIONS(10416), 1, - anon_sym_EQ, - ACTIONS(10524), 1, - anon_sym_COLON, - STATE(1087), 1, - sym__block, - STATE(1191), 1, - sym_function_body, + STATE(8391), 1, + sym_type_constraints, + STATE(9255), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [184445] = 4, + ACTIONS(10389), 1, + anon_sym_DOT, + STATE(8163), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10523), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [184461] = 4, + ACTIONS(10525), 1, + anon_sym_COMMA, + STATE(8057), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184975] = 6, - ACTIONS(6459), 1, + ACTIONS(4523), 3, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_while, + [184477] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, + ACTIONS(10521), 1, anon_sym_EQ, - ACTIONS(10526), 1, + ACTIONS(10527), 1, anon_sym_COLON, - STATE(3738), 1, + STATE(3192), 1, sym__block, - STATE(3767), 1, + STATE(3207), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [184995] = 6, - ACTIONS(6459), 1, + [184497] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10342), 1, + ACTIONS(10521), 1, anon_sym_EQ, - ACTIONS(10528), 1, + ACTIONS(10529), 1, anon_sym_COLON, - STATE(3738), 1, - sym__block, - STATE(3902), 1, + STATE(3176), 1, sym_function_body, + STATE(3192), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185015] = 3, - ACTIONS(10244), 1, - anon_sym_by, + [184517] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4416), 4, + ACTIONS(4579), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_where, anon_sym_while, - [185029] = 6, - ACTIONS(6459), 1, + [184529] = 6, + ACTIONS(4334), 1, + anon_sym_while, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, - anon_sym_EQ, - ACTIONS(10530), 1, - anon_sym_COLON, - STATE(3738), 1, - sym__block, - STATE(3902), 1, - sym_function_body, + ACTIONS(8299), 1, + anon_sym_where, + STATE(8408), 1, + sym_type_constraints, + STATE(9257), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185049] = 5, - ACTIONS(10532), 1, - anon_sym_catch, - ACTIONS(10534), 1, - anon_sym_finally, - STATE(3214), 1, - sym_finally_block, + [184549] = 6, + ACTIONS(6251), 1, + anon_sym_LBRACE, + ACTIONS(10521), 1, + anon_sym_EQ, + ACTIONS(10531), 1, + anon_sym_COLON, + STATE(3133), 1, + sym_function_body, + STATE(3192), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2780), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [185067] = 6, - ACTIONS(4049), 1, + [184569] = 6, + ACTIONS(4288), 1, anon_sym_while, - ACTIONS(10166), 1, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(9080), 1, + STATE(9300), 1, sym_function_body, - STATE(9145), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185087] = 6, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - ACTIONS(10536), 1, - anon_sym_COLON, - STATE(9061), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + [184589] = 5, + ACTIONS(10533), 1, + anon_sym_catch, + ACTIONS(10535), 1, + anon_sym_finally, + STATE(3333), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185107] = 6, - ACTIONS(10166), 1, + STATE(2770), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [184607] = 6, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(10538), 1, + ACTIONS(10537), 1, anon_sym_COLON, - STATE(9072), 1, + STATE(9254), 1, sym_function_body, - STATE(9145), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185127] = 6, - ACTIONS(7926), 1, + [184627] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10463), 1, anon_sym_EQ, - ACTIONS(10540), 1, + ACTIONS(10539), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5035), 1, + STATE(5008), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185147] = 6, - ACTIONS(4039), 1, + [184647] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10445), 1, anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(10541), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1191), 1, + STATE(3859), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185167] = 6, - ACTIONS(4186), 1, - anon_sym_while, - ACTIONS(8332), 1, - anon_sym_where, - ACTIONS(8342), 1, + [184667] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(8417), 1, - sym_type_constraints, - STATE(9075), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [185187] = 4, - ACTIONS(10516), 1, - anon_sym_COMMA, - STATE(8076), 1, - aux_sym_type_constraints_repeat1, + ACTIONS(10377), 1, + anon_sym_EQ, + ACTIONS(10543), 1, + anon_sym_COLON, + STATE(4636), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4456), 3, - anon_sym_EQ, - anon_sym_LBRACE, + [184687] = 6, + ACTIONS(4334), 1, anon_sym_while, - [185203] = 6, - ACTIONS(4402), 1, - anon_sym_while, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - ACTIONS(8342), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8445), 1, + STATE(8396), 1, sym_type_constraints, - STATE(9073), 1, + STATE(9257), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185223] = 6, - ACTIONS(4039), 1, + [184707] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10502), 1, anon_sym_EQ, - ACTIONS(10544), 1, + ACTIONS(10545), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1200), 1, + STATE(3784), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185243] = 6, - ACTIONS(7926), 1, + [184727] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10546), 1, - anon_sym_COLON, - ACTIONS(10548), 1, + ACTIONS(10179), 1, anon_sym_EQ, - STATE(4901), 1, + ACTIONS(10547), 1, + anon_sym_COLON, + STATE(4923), 1, sym__block, - STATE(5035), 1, + STATE(5008), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185263] = 6, - ACTIONS(4186), 1, + [184747] = 6, + ACTIONS(4500), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8299), 1, anon_sym_where, - STATE(8443), 1, + STATE(8484), 1, sym_type_constraints, - STATE(9075), 1, + STATE(9301), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185283] = 6, - ACTIONS(7926), 1, + [184767] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, + ACTIONS(10373), 1, anon_sym_EQ, - ACTIONS(10550), 1, + ACTIONS(10549), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5016), 1, + STATE(5019), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185303] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3948), 5, - anon_sym_COLON, - anon_sym_LT, - anon_sym_DOT, - sym__quest, - anon_sym_in, - [185315] = 6, - ACTIONS(7926), 1, + [184787] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, + ACTIONS(10373), 1, anon_sym_EQ, - ACTIONS(10552), 1, + ACTIONS(10551), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4956), 1, + STATE(5046), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185335] = 2, - ACTIONS(3), 2, + [184807] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10397), 1, sym_line_comment, - ACTIONS(4627), 5, - sym__automatic_semicolon, + ACTIONS(10401), 1, + anon_sym_BSLASHu, + ACTIONS(10403), 1, + sym__escaped_identifier, + ACTIONS(10553), 1, + aux_sym_character_literal_token1, + STATE(9234), 1, + sym_character_escape_seq, + STATE(9424), 1, + sym__uni_character_literal, + [184829] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [185347] = 4, - ACTIONS(10554), 1, - anon_sym_COMMA, - STATE(8115), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10555), 1, + anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(5019), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4627), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [185363] = 6, - ACTIONS(4039), 1, + [184849] = 6, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10502), 1, anon_sym_EQ, ACTIONS(10557), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1169), 1, + STATE(3859), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185383] = 5, + [184869] = 6, + ACTIONS(6251), 1, + anon_sym_LBRACE, ACTIONS(10559), 1, - anon_sym_catch, + anon_sym_COLON, ACTIONS(10561), 1, - anon_sym_finally, - STATE(3761), 1, - sym_finally_block, + anon_sym_EQ, + STATE(3192), 1, + sym__block, + STATE(3263), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2927), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [185401] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(10443), 1, - sym_line_comment, - ACTIONS(10447), 1, - anon_sym_BSLASHu, - ACTIONS(10449), 1, - sym__escaped_identifier, - ACTIONS(10563), 1, - aux_sym_character_literal_token1, - STATE(9386), 1, - sym_character_escape_seq, - STATE(9455), 1, - sym__uni_character_literal, - [185423] = 6, - ACTIONS(7864), 1, + [184889] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10565), 1, + ACTIONS(10563), 1, anon_sym_COLON, - ACTIONS(10567), 1, + ACTIONS(10565), 1, anon_sym_EQ, - STATE(4624), 1, - sym_function_body, - STATE(4690), 1, + STATE(1133), 1, sym__block, + STATE(1156), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185443] = 6, - ACTIONS(6459), 1, + [184909] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, - anon_sym_EQ, - ACTIONS(10569), 1, + ACTIONS(10567), 1, anon_sym_COLON, - STATE(3738), 1, - sym__block, - STATE(3902), 1, + ACTIONS(10569), 1, + anon_sym_EQ, + STATE(4655), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185463] = 6, - ACTIONS(7864), 1, + [184929] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + ACTIONS(10565), 1, anon_sym_EQ, ACTIONS(10571), 1, anon_sym_COLON, - STATE(4690), 1, + STATE(1133), 1, sym__block, - STATE(4718), 1, + STATE(1192), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185483] = 5, - ACTIONS(8242), 1, + [184949] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, + ACTIONS(10569), 1, + anon_sym_EQ, ACTIONS(10573), 1, anon_sym_COLON, - STATE(8903), 1, - sym_class_body, + STATE(4641), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4410), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [185501] = 6, - ACTIONS(7864), 1, + [184969] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + ACTIONS(10569), 1, anon_sym_EQ, ACTIONS(10575), 1, anon_sym_COLON, - STATE(4690), 1, - sym__block, - STATE(4747), 1, + STATE(4636), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185521] = 6, - ACTIONS(4039), 1, + [184989] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, + ACTIONS(10423), 1, + anon_sym_EQ, ACTIONS(10577), 1, anon_sym_COLON, - ACTIONS(10579), 1, - anon_sym_EQ, - STATE(1087), 1, + STATE(1133), 1, sym__block, - STATE(1161), 1, + STATE(1181), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185541] = 6, - ACTIONS(6242), 1, + [185009] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10581), 1, + ACTIONS(10565), 1, + anon_sym_EQ, + ACTIONS(10579), 1, anon_sym_COLON, - ACTIONS(10583), 1, + STATE(1133), 1, + sym__block, + STATE(1196), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185029] = 6, + ACTIONS(4320), 1, + anon_sym_while, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(3333), 1, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9303), 1, sym_function_body, - STATE(3334), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185561] = 6, - ACTIONS(7864), 1, + [185049] = 6, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, anon_sym_LBRACE, - ACTIONS(10585), 1, + ACTIONS(10581), 1, anon_sym_COLON, - ACTIONS(10587), 1, - anon_sym_EQ, - STATE(4624), 1, + STATE(9231), 1, sym_function_body, - STATE(4690), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185581] = 6, - ACTIONS(4039), 1, + [185069] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10579), 1, + ACTIONS(10569), 1, anon_sym_EQ, - ACTIONS(10589), 1, + ACTIONS(10583), 1, anon_sym_COLON, - STATE(1087), 1, - sym__block, - STATE(1191), 1, + STATE(4602), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185601] = 6, - ACTIONS(7864), 1, + [185089] = 6, + ACTIONS(4344), 1, + anon_sym_while, + ACTIONS(8299), 1, + anon_sym_where, + ACTIONS(8305), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + STATE(8416), 1, + sym_type_constraints, + STATE(9142), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185109] = 6, + ACTIONS(4116), 1, + anon_sym_while, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10591), 1, - anon_sym_COLON, - STATE(4669), 1, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9222), 1, sym_function_body, - STATE(4690), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185621] = 6, - ACTIONS(6242), 1, + [185129] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10583), 1, + ACTIONS(10565), 1, anon_sym_EQ, - ACTIONS(10593), 1, + ACTIONS(10585), 1, anon_sym_COLON, - STATE(3222), 1, - sym_function_body, - STATE(3334), 1, + STATE(1133), 1, sym__block, + STATE(1181), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185641] = 6, - ACTIONS(6242), 1, - anon_sym_LBRACE, - ACTIONS(10583), 1, + [185149] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4607), 5, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(10595), 1, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [185161] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10397), 1, + sym_line_comment, + ACTIONS(10401), 1, + anon_sym_BSLASHu, + ACTIONS(10403), 1, + sym__escaped_identifier, + ACTIONS(10587), 1, + aux_sym_character_literal_token1, + STATE(9424), 1, + sym__uni_character_literal, + STATE(9426), 1, + sym_character_escape_seq, + [185183] = 6, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10589), 1, anon_sym_COLON, - STATE(3263), 1, + ACTIONS(10591), 1, + anon_sym_EQ, + STATE(3262), 1, sym_function_body, - STATE(3334), 1, + STATE(3265), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185661] = 6, - ACTIONS(6242), 1, + [185203] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4599), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10583), 1, + anon_sym_RBRACE, + anon_sym_where, + [185215] = 6, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(10597), 1, + ACTIONS(10593), 1, anon_sym_COLON, - STATE(3334), 1, + STATE(4923), 1, sym__block, - STATE(3395), 1, + STATE(5046), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185681] = 6, - ACTIONS(4039), 1, + [185235] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10579), 1, + ACTIONS(10595), 1, + anon_sym_COLON, + ACTIONS(10597), 1, + anon_sym_EQ, + STATE(4636), 1, + sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185255] = 6, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10591), 1, anon_sym_EQ, ACTIONS(10599), 1, anon_sym_COLON, - STATE(1087), 1, + STATE(3265), 1, sym__block, - STATE(1200), 1, + STATE(3448), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185701] = 6, - ACTIONS(7864), 1, + [185275] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10587), 1, + ACTIONS(10591), 1, anon_sym_EQ, ACTIONS(10601), 1, anon_sym_COLON, - STATE(4690), 1, + STATE(3265), 1, sym__block, - STATE(4718), 1, + STATE(3465), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185721] = 6, - ACTIONS(7864), 1, + [185295] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10587), 1, + ACTIONS(10597), 1, anon_sym_EQ, ACTIONS(10603), 1, anon_sym_COLON, - STATE(4690), 1, - sym__block, - STATE(4747), 1, + STATE(4602), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185741] = 6, - ACTIONS(7864), 1, + [185315] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(10591), 1, anon_sym_EQ, ACTIONS(10605), 1, anon_sym_COLON, - STATE(4669), 1, - sym_function_body, - STATE(4690), 1, + STATE(3265), 1, sym__block, + STATE(3433), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185335] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185761] = 6, - ACTIONS(6231), 1, + ACTIONS(4637), 5, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [185347] = 5, ACTIONS(10607), 1, - anon_sym_COLON, + anon_sym_catch, ACTIONS(10609), 1, - anon_sym_EQ, - STATE(3219), 1, - sym_function_body, - STATE(3464), 1, - sym__block, + anon_sym_finally, + STATE(3874), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185781] = 6, - ACTIONS(6231), 1, - anon_sym_LBRACE, - ACTIONS(10609), 1, + STATE(2929), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [185365] = 6, + ACTIONS(8085), 1, anon_sym_EQ, + ACTIONS(8087), 1, + anon_sym_LBRACE, ACTIONS(10611), 1, anon_sym_COLON, - STATE(3179), 1, - sym_function_body, - STATE(3464), 1, + STATE(5340), 1, sym__block, + STATE(5367), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185385] = 4, + ACTIONS(10504), 1, + anon_sym_COMMA, + STATE(8056), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4648), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [185401] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185801] = 6, - ACTIONS(6231), 1, + ACTIONS(4700), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [185413] = 6, + ACTIONS(7946), 1, anon_sym_LBRACE, + ACTIONS(10373), 1, + anon_sym_EQ, ACTIONS(10613), 1, anon_sym_COLON, + STATE(4923), 1, + sym__block, + STATE(5008), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185433] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10397), 1, + sym_line_comment, + ACTIONS(10401), 1, + anon_sym_BSLASHu, + ACTIONS(10403), 1, + sym__escaped_identifier, ACTIONS(10615), 1, + aux_sym_character_literal_token1, + STATE(9424), 1, + sym__uni_character_literal, + STATE(9444), 1, + sym_character_escape_seq, + [185455] = 6, + ACTIONS(4454), 1, + anon_sym_while, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(3246), 1, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9259), 1, sym_function_body, - STATE(3464), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185821] = 6, - ACTIONS(6231), 1, + [185475] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, + ACTIONS(10201), 1, anon_sym_EQ, ACTIONS(10617), 1, anon_sym_COLON, - STATE(3219), 1, + STATE(4655), 1, sym_function_body, - STATE(3464), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185841] = 6, - ACTIONS(7926), 1, + [185495] = 3, + ACTIONS(10288), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [185509] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, + ACTIONS(10413), 1, anon_sym_EQ, ACTIONS(10619), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(3265), 1, sym__block, - STATE(4922), 1, + STATE(3448), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185861] = 6, - ACTIONS(6231), 1, + [185529] = 3, + ACTIONS(10268), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4144), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [185543] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, + ACTIONS(10597), 1, anon_sym_EQ, ACTIONS(10621), 1, anon_sym_COLON, - STATE(3179), 1, + STATE(4641), 1, sym_function_body, - STATE(3464), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185881] = 5, + [185563] = 6, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(10201), 1, + anon_sym_EQ, ACTIONS(10623), 1, - anon_sym_catch, - ACTIONS(10625), 1, - anon_sym_finally, - STATE(3358), 1, - sym_finally_block, + anon_sym_COLON, + STATE(4641), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2764), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [185899] = 7, - ACTIONS(3), 1, + [185583] = 6, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(10625), 1, + anon_sym_COLON, + ACTIONS(10627), 1, + anon_sym_EQ, + STATE(1133), 1, + sym__block, + STATE(1181), 1, + sym_function_body, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10443), 1, sym_line_comment, - ACTIONS(10447), 1, - anon_sym_BSLASHu, - ACTIONS(10449), 1, - sym__escaped_identifier, - ACTIONS(10627), 1, - aux_sym_character_literal_token1, - STATE(9455), 1, - sym__uni_character_literal, - STATE(9457), 1, - sym_character_escape_seq, - [185921] = 6, - ACTIONS(6242), 1, + [185603] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, + ACTIONS(10467), 1, + anon_sym_EQ, ACTIONS(10629), 1, anon_sym_COLON, - ACTIONS(10631), 1, - anon_sym_EQ, - STATE(3333), 1, + STATE(3265), 1, + sym__block, + STATE(3465), 1, sym_function_body, - STATE(3334), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [185623] = 6, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(10627), 1, + anon_sym_EQ, + ACTIONS(10631), 1, + anon_sym_COLON, + STATE(1133), 1, sym__block, + STATE(1196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185941] = 6, - ACTIONS(6231), 1, + [185643] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10441), 1, + ACTIONS(10627), 1, anon_sym_EQ, ACTIONS(10633), 1, anon_sym_COLON, - STATE(3219), 1, - sym_function_body, - STATE(3464), 1, + STATE(1133), 1, sym__block, + STATE(1192), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185961] = 6, - ACTIONS(6231), 1, + [185663] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10609), 1, + ACTIONS(10627), 1, anon_sym_EQ, ACTIONS(10635), 1, anon_sym_COLON, - STATE(3246), 1, - sym_function_body, - STATE(3464), 1, + STATE(1133), 1, sym__block, + STATE(1156), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [185981] = 6, - ACTIONS(6231), 1, + [185683] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10609), 1, + ACTIONS(10561), 1, anon_sym_EQ, ACTIONS(10637), 1, anon_sym_COLON, - STATE(3280), 1, + STATE(3133), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186001] = 6, - ACTIONS(4039), 1, + [185703] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4617), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10579), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_where, + [185715] = 5, ACTIONS(10639), 1, - anon_sym_COLON, - STATE(1087), 1, - sym__block, - STATE(1169), 1, - sym_function_body, + anon_sym_catch, + ACTIONS(10641), 1, + anon_sym_finally, + STATE(4929), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186021] = 6, - ACTIONS(4087), 1, - anon_sym_while, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(9082), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + STATE(4498), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [185733] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186041] = 6, - ACTIONS(6231), 1, + ACTIONS(4987), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10487), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [185745] = 6, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(10463), 1, anon_sym_EQ, - ACTIONS(10641), 1, + ACTIONS(10643), 1, anon_sym_COLON, - STATE(3246), 1, - sym_function_body, - STATE(3464), 1, + STATE(4923), 1, sym__block, + STATE(4981), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186061] = 6, - ACTIONS(7864), 1, + [185765] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(10467), 1, anon_sym_EQ, - ACTIONS(10643), 1, + ACTIONS(10645), 1, anon_sym_COLON, - STATE(4624), 1, + STATE(3262), 1, sym_function_body, - STATE(4690), 1, + STATE(3265), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186081] = 6, - ACTIONS(7864), 1, + [185785] = 6, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(10467), 1, anon_sym_EQ, - ACTIONS(10645), 1, + ACTIONS(10647), 1, anon_sym_COLON, - STATE(4690), 1, + STATE(3265), 1, sym__block, - STATE(4718), 1, + STATE(3448), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186101] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(10443), 1, - sym_line_comment, - ACTIONS(10447), 1, - anon_sym_BSLASHu, - ACTIONS(10449), 1, - sym__escaped_identifier, - ACTIONS(10647), 1, - aux_sym_character_literal_token1, - STATE(9306), 1, - sym_character_escape_seq, - STATE(9455), 1, - sym__uni_character_literal, - [186123] = 6, - ACTIONS(7864), 1, + [185805] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10587), 1, - anon_sym_EQ, ACTIONS(10649), 1, anon_sym_COLON, - STATE(4669), 1, + ACTIONS(10651), 1, + anon_sym_EQ, + STATE(3133), 1, sym_function_body, - STATE(4690), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186143] = 6, - ACTIONS(6231), 1, + [185825] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4965), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10615), 1, - anon_sym_EQ, - ACTIONS(10651), 1, - anon_sym_COLON, - STATE(3280), 1, - sym_function_body, - STATE(3464), 1, - sym__block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [185837] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186163] = 6, - ACTIONS(6231), 1, + ACTIONS(4983), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10441), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [185849] = 6, + ACTIONS(6251), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_EQ, ACTIONS(10653), 1, anon_sym_COLON, - STATE(3246), 1, + STATE(3176), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186183] = 6, - ACTIONS(6242), 1, + [185869] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10423), 1, anon_sym_EQ, ACTIONS(10655), 1, anon_sym_COLON, - STATE(3334), 1, + STATE(1133), 1, sym__block, - STATE(3395), 1, + STATE(1196), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186203] = 4, - ACTIONS(10502), 1, - anon_sym_COMMA, - STATE(8115), 1, - aux_sym__delegation_specifiers_repeat1, + [185889] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4664), 3, + ACTIONS(4684), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [186219] = 6, - ACTIONS(7864), 1, + [185901] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4979), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [185913] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(10651), 1, anon_sym_EQ, ACTIONS(10657), 1, anon_sym_COLON, - STATE(4690), 1, + STATE(3192), 1, sym__block, - STATE(4747), 1, + STATE(3207), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186239] = 6, - ACTIONS(6231), 1, + [185933] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10487), 1, + ACTIONS(10423), 1, anon_sym_EQ, ACTIONS(10659), 1, anon_sym_COLON, - STATE(3280), 1, - sym_function_body, - STATE(3464), 1, + STATE(1133), 1, sym__block, + STATE(1192), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186259] = 6, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10475), 1, + [185953] = 6, + ACTIONS(10179), 1, anon_sym_EQ, + ACTIONS(10181), 1, + anon_sym_LBRACE, ACTIONS(10661), 1, anon_sym_COLON, - STATE(4901), 1, + STATE(8728), 1, sym__block, - STATE(4922), 1, + STATE(8732), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186279] = 6, - ACTIONS(6242), 1, + [185973] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4969), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10631), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [185985] = 6, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(10201), 1, anon_sym_EQ, ACTIONS(10663), 1, anon_sym_COLON, - STATE(3263), 1, + STATE(4602), 1, sym_function_body, - STATE(3334), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186299] = 6, - ACTIONS(6242), 1, + [186005] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10597), 1, anon_sym_EQ, ACTIONS(10665), 1, anon_sym_COLON, - STATE(3222), 1, + STATE(4655), 1, sym_function_body, - STATE(3334), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186319] = 6, - ACTIONS(6231), 1, + [186025] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10441), 1, + ACTIONS(10651), 1, anon_sym_EQ, ACTIONS(10667), 1, anon_sym_COLON, - STATE(3280), 1, - sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, + STATE(3263), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186339] = 6, - ACTIONS(6231), 1, + [186045] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10487), 1, + ACTIONS(8085), 1, anon_sym_EQ, ACTIONS(10669), 1, anon_sym_COLON, - STATE(3219), 1, + STATE(3133), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186359] = 5, - ACTIONS(7926), 1, + [186065] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10671), 1, + anon_sym_COLON, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(1133), 1, sym__block, - STATE(5049), 1, + STATE(1181), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186376] = 5, - ACTIONS(6231), 1, + [186085] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10609), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(3134), 1, - sym_function_body, - STATE(3464), 1, + ACTIONS(10675), 1, + anon_sym_COLON, + STATE(1133), 1, sym__block, + STATE(1196), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186393] = 5, - ACTIONS(7864), 1, + [186105] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + ACTIONS(10561), 1, anon_sym_EQ, - STATE(4583), 1, + ACTIONS(10677), 1, + anon_sym_COLON, + STATE(3176), 1, sym_function_body, - STATE(4690), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186410] = 5, - ACTIONS(6231), 1, + [186125] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, + ACTIONS(10561), 1, anon_sym_EQ, - STATE(3196), 1, - sym_function_body, - STATE(3464), 1, + ACTIONS(10679), 1, + anon_sym_COLON, + STATE(3192), 1, sym__block, + STATE(3207), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186427] = 5, - ACTIONS(6231), 1, + [186145] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(3134), 1, - sym_function_body, - STATE(3464), 1, + ACTIONS(10681), 1, + anon_sym_COLON, + STATE(1133), 1, sym__block, + STATE(1192), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186444] = 5, - ACTIONS(6231), 1, + [186165] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(3138), 1, + ACTIONS(10683), 1, + anon_sym_COLON, + STATE(3176), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186461] = 5, - ACTIONS(6231), 1, + [186185] = 6, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(3239), 1, + ACTIONS(10685), 1, + anon_sym_COLON, + STATE(4636), 1, sym_function_body, - STATE(3464), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186478] = 5, - ACTIONS(6231), 1, + [186205] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10609), 1, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(3196), 1, - sym_function_body, - STATE(3464), 1, + ACTIONS(10687), 1, + anon_sym_COLON, + STATE(3192), 1, sym__block, + STATE(3207), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186225] = 4, + ACTIONS(10691), 1, + anon_sym_DOT, + STATE(8163), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186495] = 5, - ACTIONS(7864), 1, + ACTIONS(10689), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [186241] = 6, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(4651), 1, - sym_function_body, - STATE(4690), 1, + ACTIONS(10694), 1, + anon_sym_COLON, + STATE(3192), 1, sym__block, + STATE(3263), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186512] = 5, - ACTIONS(6231), 1, + [186261] = 6, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10487), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(3239), 1, + ACTIONS(10696), 1, + anon_sym_COLON, + STATE(1133), 1, + sym__block, + STATE(1156), 1, sym_function_body, - STATE(3464), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186281] = 4, + ACTIONS(10698), 1, + anon_sym_LT, + STATE(8333), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 3, + anon_sym_DOT, + sym__quest, + anon_sym_in, + [186297] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10397), 1, + sym_line_comment, + ACTIONS(10401), 1, + anon_sym_BSLASHu, + ACTIONS(10403), 1, + sym__escaped_identifier, + ACTIONS(10700), 1, + aux_sym_character_literal_token1, + STATE(9312), 1, + sym_character_escape_seq, + STATE(9424), 1, + sym__uni_character_literal, + [186319] = 4, + ACTIONS(10525), 1, + anon_sym_COMMA, + STATE(8069), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4517), 3, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_while, + [186335] = 5, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10467), 1, + anon_sym_EQ, + STATE(3265), 1, sym__block, + STATE(3422), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186352] = 4, + ACTIONS(9733), 1, + anon_sym_DOT, + STATE(7574), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186529] = 5, - ACTIONS(6231), 1, + ACTIONS(4273), 2, + sym__automatic_semicolon, + anon_sym_LPAREN, + [186367] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10487), 1, + STATE(8907), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3208), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [186382] = 5, + ACTIONS(6251), 1, + anon_sym_LBRACE, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(3138), 1, + STATE(3125), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186546] = 5, - ACTIONS(6231), 1, + [186399] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10487), 1, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(3134), 1, + STATE(3143), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186563] = 5, - ACTIONS(7864), 1, + [186416] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(4583), 1, + STATE(3148), 1, sym_function_body, - STATE(4690), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186580] = 5, - ACTIONS(6231), 1, + [186433] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10487), 1, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(3196), 1, + STATE(3164), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186597] = 5, - ACTIONS(10150), 1, + [186450] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10671), 1, - anon_sym_COLON, - ACTIONS(10673), 1, - sym__automatic_semicolon, - STATE(9039), 1, - sym__block, + STATE(8729), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186614] = 5, - ACTIONS(6231), 1, + ACTIONS(4470), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [186465] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10441), 1, + ACTIONS(10561), 1, anon_sym_EQ, - STATE(3239), 1, + STATE(3125), 1, sym_function_body, - STATE(3464), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186631] = 5, - ACTIONS(6231), 1, + [186482] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10441), 1, + ACTIONS(10627), 1, anon_sym_EQ, - STATE(3138), 1, - sym_function_body, - STATE(3464), 1, + STATE(1133), 1, sym__block, + STATE(1189), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186648] = 5, - ACTIONS(6231), 1, + [186499] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10441), 1, + ACTIONS(10627), 1, anon_sym_EQ, - STATE(3134), 1, - sym_function_body, - STATE(3464), 1, + STATE(1133), 1, sym__block, + STATE(1174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186665] = 5, - ACTIONS(6242), 1, + [186516] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10627), 1, anon_sym_EQ, - STATE(3158), 1, - sym_function_body, - STATE(3334), 1, + STATE(1133), 1, sym__block, + STATE(1171), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186682] = 5, - ACTIONS(6231), 1, + [186533] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4700), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10441), 1, + anon_sym_where, + anon_sym_while, + [186544] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4684), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [186555] = 5, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(10627), 1, anon_sym_EQ, - STATE(3196), 1, - sym_function_body, - STATE(3464), 1, + STATE(1133), 1, sym__block, + STATE(1157), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186699] = 4, - ACTIONS(8242), 1, + [186572] = 4, + ACTIONS(10702), 1, + anon_sym_DOT, + STATE(8184), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4225), 2, + sym__quest, + anon_sym_in, + [186587] = 4, + ACTIONS(10707), 1, + anon_sym_COMMA, + STATE(8231), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10705), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [186602] = 3, + ACTIONS(3866), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3871), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [186615] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8677), 1, - sym_class_body, + STATE(8714), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4535), 2, + ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [186714] = 4, - ACTIONS(10675), 1, + [186630] = 3, + ACTIONS(10711), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10709), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [186643] = 4, + ACTIONS(10713), 1, anon_sym_DOT, - STATE(8249), 1, + STATE(8184), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 2, + ACTIONS(4218), 2, sym__quest, anon_sym_in, - [186729] = 5, - ACTIONS(6242), 1, + [186658] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10413), 1, anon_sym_EQ, - STATE(3135), 1, - sym_function_body, - STATE(3334), 1, + STATE(3265), 1, sym__block, + STATE(3393), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186675] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186746] = 5, - ACTIONS(6242), 1, + ACTIONS(4637), 4, anon_sym_LBRACE, - ACTIONS(10631), 1, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [186686] = 5, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10413), 1, anon_sym_EQ, - STATE(3145), 1, + STATE(3265), 1, + sym__block, + STATE(3416), 1, sym_function_body, - STATE(3334), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186703] = 5, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(10715), 1, + anon_sym_COLON, + ACTIONS(10717), 1, + sym__automatic_semicolon, + STATE(8995), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186720] = 5, + ACTIONS(10181), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, + anon_sym_COLON, + ACTIONS(10721), 1, + sym__automatic_semicolon, + STATE(8996), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186763] = 5, - ACTIONS(7864), 1, + [186737] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(10413), 1, anon_sym_EQ, - STATE(4651), 1, - sym_function_body, - STATE(4690), 1, + STATE(3265), 1, sym__block, + STATE(3422), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186780] = 5, - ACTIONS(6242), 1, + [186754] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10631), 1, + ACTIONS(10413), 1, anon_sym_EQ, - STATE(3161), 1, + STATE(3265), 1, + sym__block, + STATE(3444), 1, sym_function_body, - STATE(3334), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [186771] = 5, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_EQ, + STATE(4923), 1, sym__block, + STATE(5059), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186797] = 4, - ACTIONS(8232), 1, + [186788] = 5, + ACTIONS(4404), 1, + anon_sym_while, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8856), 1, - sym_enum_class_body, + ACTIONS(10723), 1, + anon_sym_COLON, + STATE(9140), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [186812] = 5, - ACTIONS(7864), 1, + [186805] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(4583), 1, + STATE(4599), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186829] = 5, - ACTIONS(7864), 1, + [186822] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10166), 1, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(4634), 1, + STATE(4609), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186846] = 5, - ACTIONS(7864), 1, + [186839] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10587), 1, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(4583), 1, + STATE(4616), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186863] = 5, - ACTIONS(7864), 1, - anon_sym_LBRACE, - ACTIONS(10587), 1, + [186856] = 5, + ACTIONS(10179), 1, anon_sym_EQ, - STATE(4634), 1, + ACTIONS(10181), 1, + anon_sym_LBRACE, + STATE(8676), 1, sym_function_body, - STATE(4690), 1, + STATE(8728), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186880] = 5, - ACTIONS(7864), 1, + [186873] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4617), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10587), 1, + anon_sym_where, + anon_sym_while, + [186884] = 5, + ACTIONS(6251), 1, + anon_sym_LBRACE, + ACTIONS(10561), 1, anon_sym_EQ, - STATE(4651), 1, + STATE(3143), 1, sym_function_body, - STATE(4690), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186897] = 5, - ACTIONS(7864), 1, + [186901] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(4634), 1, + STATE(4631), 1, sym_function_body, - STATE(4690), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186914] = 5, - ACTIONS(7864), 1, + [186918] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4599), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10166), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__block, - STATE(4698), 1, - sym_function_body, + anon_sym_where, + anon_sym_while, + [186929] = 4, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(8714), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186931] = 5, - ACTIONS(7864), 1, + ACTIONS(4334), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [186944] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10587), 1, + ACTIONS(10179), 1, anon_sym_EQ, - STATE(4690), 1, + STATE(4923), 1, sym__block, - STATE(4698), 1, + STATE(5081), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186948] = 5, - ACTIONS(6242), 1, + [186961] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10583), 1, + ACTIONS(10561), 1, anon_sym_EQ, - STATE(3145), 1, + STATE(3148), 1, sym_function_body, - STATE(3334), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186965] = 5, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + [186978] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(9084), 1, - sym_function_body, - STATE(9145), 1, - sym__block, + STATE(8767), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186982] = 5, - ACTIONS(7864), 1, + ACTIONS(3200), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [186993] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + ACTIONS(10561), 1, anon_sym_EQ, - STATE(4634), 1, + STATE(3164), 1, sym_function_body, - STATE(4690), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [186999] = 3, - ACTIONS(10679), 1, - anon_sym_DOLLAR, + [187010] = 5, + ACTIONS(7946), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5067), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10677), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [187012] = 5, - ACTIONS(6231), 1, + [187027] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10609), 1, + ACTIONS(10179), 1, anon_sym_EQ, - STATE(3138), 1, - sym_function_body, - STATE(3464), 1, + STATE(4923), 1, sym__block, + STATE(5036), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [187044] = 3, + ACTIONS(10725), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187029] = 5, - ACTIONS(7864), 1, + ACTIONS(10689), 3, + sym__automatic_semicolon, + anon_sym_DOT_STAR, + anon_sym_as, + [187057] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + ACTIONS(10423), 1, anon_sym_EQ, - STATE(4651), 1, - sym_function_body, - STATE(4690), 1, + STATE(1133), 1, sym__block, + STATE(1189), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187046] = 5, - ACTIONS(6242), 1, + [187074] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10583), 1, + ACTIONS(10423), 1, anon_sym_EQ, - STATE(3158), 1, - sym_function_body, - STATE(3334), 1, + STATE(1133), 1, sym__block, + STATE(1174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187063] = 5, - ACTIONS(4039), 1, + [187091] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10579), 1, + ACTIONS(10423), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(1133), 1, sym__block, - STATE(1178), 1, + STATE(1171), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187080] = 5, - ACTIONS(7926), 1, + [187108] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, + ACTIONS(10423), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(1133), 1, sym__block, - STATE(4914), 1, + STATE(1157), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187097] = 5, - ACTIONS(7864), 1, + [187125] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10567), 1, + ACTIONS(10445), 1, anon_sym_EQ, - STATE(4690), 1, + STATE(3734), 1, sym__block, - STATE(4698), 1, + STATE(3898), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187114] = 5, - ACTIONS(4039), 1, + [187142] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10579), 1, + ACTIONS(10445), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1153), 1, + STATE(3786), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187131] = 4, - ACTIONS(10683), 1, - anon_sym_COMMA, - STATE(8285), 1, - aux_sym__enum_entries_repeat1, + [187159] = 5, + ACTIONS(6404), 1, + anon_sym_LBRACE, + ACTIONS(10445), 1, + anon_sym_EQ, + STATE(3734), 1, + sym__block, + STATE(3747), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10681), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [187146] = 5, - ACTIONS(4039), 1, + [187176] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10579), 1, + ACTIONS(10445), 1, anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1147), 1, + STATE(3721), 1, sym_function_body, + STATE(3734), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187163] = 5, - ACTIONS(6242), 1, + [187193] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10583), 1, + ACTIONS(10502), 1, anon_sym_EQ, - STATE(3135), 1, + STATE(3721), 1, sym_function_body, - STATE(3334), 1, + STATE(3734), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187180] = 4, - ACTIONS(10685), 1, + [187210] = 4, + ACTIONS(10727), 1, anon_sym_import, - ACTIONS(10687), 1, + ACTIONS(10729), 1, sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8227), 2, + STATE(8281), 2, sym_import_header, aux_sym_import_list_repeat1, - [187195] = 5, - ACTIONS(6459), 1, + [187225] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, + ACTIONS(10502), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3734), 1, sym__block, - STATE(3807), 1, + STATE(3747), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187212] = 5, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10548), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(4977), 1, - sym_function_body, + [187242] = 5, + ACTIONS(10731), 1, + anon_sym_RBRACE, + ACTIONS(10733), 1, + sym__automatic_semicolon, + STATE(257), 1, + sym__semi, + STATE(8296), 1, + aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187229] = 5, - ACTIONS(7926), 1, + [187259] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5010), 1, - sym_function_body, + STATE(8770), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187246] = 5, - ACTIONS(6242), 1, + ACTIONS(4688), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [187274] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10583), 1, + ACTIONS(10502), 1, anon_sym_EQ, - STATE(3161), 1, - sym_function_body, - STATE(3334), 1, + STATE(3734), 1, sym__block, + STATE(3786), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187263] = 5, - ACTIONS(6231), 1, + [187291] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10609), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_function_body, - STATE(3464), 1, - sym__block, + STATE(8791), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187280] = 2, + ACTIONS(4412), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [187306] = 4, + ACTIONS(8236), 1, + anon_sym_LBRACE, + STATE(8800), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4627), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [187291] = 5, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(10689), 1, - anon_sym_COLON, - ACTIONS(10691), 1, + ACTIONS(4398), 2, sym__automatic_semicolon, - STATE(8956), 1, - sym_class_body, + anon_sym_RBRACE, + [187321] = 4, + ACTIONS(10735), 1, + anon_sym_COMMA, + STATE(8299), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187308] = 5, - ACTIONS(7926), 1, + ACTIONS(8678), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [187336] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, + ACTIONS(10502), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(3734), 1, sym__block, - STATE(5049), 1, + STATE(3898), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187325] = 5, - ACTIONS(8242), 1, + [187353] = 5, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10693), 1, + ACTIONS(10737), 1, anon_sym_COLON, - ACTIONS(10695), 1, + ACTIONS(10739), 1, sym__automatic_semicolon, - STATE(8961), 1, + STATE(9038), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187342] = 5, - ACTIONS(10150), 1, + [187370] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10697), 1, - anon_sym_COLON, - ACTIONS(10699), 1, - sym__automatic_semicolon, - STATE(8954), 1, - sym__block, + STATE(8865), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187359] = 2, + ACTIONS(4664), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [187385] = 5, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10181), 1, + anon_sym_LBRACE, + STATE(8728), 1, + sym__block, + STATE(8843), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4688), 4, - anon_sym_COLON, + [187402] = 5, + ACTIONS(10181), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [187370] = 4, - ACTIONS(10701), 1, - anon_sym_import, - ACTIONS(10704), 1, - sym__import_list_delimiter, + ACTIONS(10741), 1, + anon_sym_COLON, + ACTIONS(10743), 1, + sym__automatic_semicolon, + STATE(8963), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8227), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [187385] = 3, - ACTIONS(10708), 1, - anon_sym_DOLLAR, + [187419] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10706), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [187398] = 5, - ACTIONS(4039), 1, + ACTIONS(5011), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [187430] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10373), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(4923), 1, sym__block, - STATE(1178), 1, + STATE(5059), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187415] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4650), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [187426] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4416), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [187437] = 5, - ACTIONS(7926), 1, + [187447] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10373), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4914), 1, + STATE(5067), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187454] = 5, - ACTIONS(4039), 1, + [187464] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10373), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(4923), 1, sym__block, - STATE(1153), 1, + STATE(5081), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187471] = 5, - ACTIONS(4039), 1, + [187481] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10569), 1, anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1147), 1, + STATE(4631), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187488] = 5, - ACTIONS(6459), 1, + [187498] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, + ACTIONS(10569), 1, anon_sym_EQ, - STATE(3694), 1, + STATE(4616), 1, sym_function_body, - STATE(3738), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187505] = 5, - ACTIONS(4039), 1, + [187515] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10522), 1, + ACTIONS(10569), 1, anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1130), 1, + STATE(4609), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187522] = 5, - ACTIONS(4039), 1, + [187532] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10579), 1, + ACTIONS(10569), 1, anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1130), 1, + STATE(4599), 1, sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187539] = 2, + [187549] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(4951), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_while, - [187550] = 2, + [187560] = 5, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10591), 1, + anon_sym_EQ, + STATE(3265), 1, + sym__block, + STATE(3444), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4523), 4, - anon_sym_COLON, + [187577] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [187561] = 5, - ACTIONS(10148), 1, + ACTIONS(10591), 1, anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(8899), 1, + STATE(3265), 1, sym__block, - STATE(8939), 1, + STATE(3422), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187578] = 2, + [187594] = 5, + ACTIONS(6241), 1, + anon_sym_LBRACE, + ACTIONS(10591), 1, + anon_sym_EQ, + STATE(3265), 1, + sym__block, + STATE(3416), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [187589] = 5, - ACTIONS(4410), 1, - anon_sym_while, - ACTIONS(8342), 1, + [187611] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10710), 1, - anon_sym_COLON, - STATE(9032), 1, - sym_class_body, + ACTIONS(10591), 1, + anon_sym_EQ, + STATE(3265), 1, + sym__block, + STATE(3393), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187606] = 5, - ACTIONS(10712), 1, - anon_sym_RBRACE, - ACTIONS(10714), 1, - sym__automatic_semicolon, - STATE(259), 1, - sym__semi, - STATE(8243), 1, - aux_sym_statements_repeat1, + [187628] = 4, + ACTIONS(10745), 1, + anon_sym_DOT, + STATE(8189), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187623] = 5, - ACTIONS(6459), 1, + ACTIONS(4273), 2, + sym__quest, + anon_sym_in, + [187643] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10342), 1, + ACTIONS(10651), 1, anon_sym_EQ, - STATE(3710), 1, + STATE(3125), 1, sym_function_body, - STATE(3738), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187640] = 5, - ACTIONS(6459), 1, + [187660] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10342), 1, + ACTIONS(10651), 1, anon_sym_EQ, - STATE(3732), 1, + STATE(3143), 1, sym_function_body, - STATE(3738), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187657] = 5, - ACTIONS(6459), 1, + [187677] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, + ACTIONS(10651), 1, anon_sym_EQ, - STATE(3710), 1, + STATE(3148), 1, sym_function_body, - STATE(3738), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [187674] = 3, - ACTIONS(10717), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10424), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [187687] = 5, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10457), 1, - anon_sym_EQ, - STATE(4901), 1, + STATE(3192), 1, sym__block, - STATE(4914), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [187704] = 4, - ACTIONS(10719), 1, - anon_sym_DOT, - STATE(8258), 1, - aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 2, - sym__quest, - anon_sym_in, - [187719] = 5, - ACTIONS(6459), 1, + [187694] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, + ACTIONS(10651), 1, anon_sym_EQ, - STATE(3732), 1, + STATE(3164), 1, sym_function_body, - STATE(3738), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187736] = 5, - ACTIONS(7926), 1, + [187711] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10457), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(1133), 1, sym__block, - STATE(4977), 1, + STATE(1189), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187753] = 5, - ACTIONS(7926), 1, + [187728] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10457), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(1133), 1, sym__block, - STATE(5010), 1, + STATE(1174), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187770] = 5, - ACTIONS(6459), 1, + [187745] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10508), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(1133), 1, sym__block, - STATE(3807), 1, + STATE(1171), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187787] = 5, - ACTIONS(7926), 1, + [187762] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10673), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(1133), 1, sym__block, - STATE(4977), 1, + STATE(1157), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187804] = 5, - ACTIONS(7926), 1, + [187779] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10457), 1, + ACTIONS(10373), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5049), 1, + STATE(5036), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187821] = 5, - ACTIONS(4039), 1, + [187796] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10469), 1, + ACTIONS(10369), 1, anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1178), 1, + STATE(3721), 1, sym_function_body, + STATE(3734), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187838] = 5, - ACTIONS(6459), 1, + [187813] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10342), 1, + ACTIONS(10369), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3734), 1, sym__block, - STATE(3807), 1, + STATE(3747), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187855] = 4, - ACTIONS(10721), 1, - anon_sym_DOT, - STATE(8258), 1, - aux_sym_user_type_repeat1, + [187830] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 2, - sym__quest, - anon_sym_in, - [187870] = 5, - ACTIONS(4039), 1, + ACTIONS(4676), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10469), 1, + anon_sym_where, + anon_sym_while, + [187841] = 5, + ACTIONS(6404), 1, + anon_sym_LBRACE, + ACTIONS(10369), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1153), 1, + STATE(3786), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187887] = 5, - ACTIONS(4039), 1, + [187858] = 5, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10469), 1, + ACTIONS(10369), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1147), 1, + STATE(3898), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187904] = 4, - ACTIONS(8242), 1, + [187875] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - STATE(8856), 1, - sym_class_body, + ACTIONS(10463), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__block, + STATE(5081), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [187919] = 5, - ACTIONS(7926), 1, + [187892] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, + ACTIONS(10463), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(4914), 1, + STATE(5036), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187936] = 5, - ACTIONS(7926), 1, + [187909] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10463), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5010), 1, + STATE(5059), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187953] = 5, - ACTIONS(4039), 1, + [187926] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10469), 1, + ACTIONS(10463), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(4923), 1, sym__block, - STATE(1130), 1, + STATE(5067), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [187970] = 4, - ACTIONS(8232), 1, + [187943] = 5, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(8928), 1, - sym_enum_class_body, + STATE(5282), 1, + sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [187985] = 4, - ACTIONS(8242), 1, + [187960] = 5, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - STATE(8926), 1, - sym_class_body, + STATE(5272), 1, + sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4682), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188000] = 5, - ACTIONS(4039), 1, - anon_sym_LBRACE, - ACTIONS(10416), 1, + [187977] = 5, + ACTIONS(8085), 1, anon_sym_EQ, - STATE(1087), 1, - sym__block, - STATE(1130), 1, + ACTIONS(8087), 1, + anon_sym_LBRACE, + STATE(5288), 1, sym_function_body, + STATE(5340), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188017] = 2, + [187994] = 5, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(10597), 1, + anon_sym_EQ, + STATE(4631), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4613), 4, - anon_sym_COLON, + [188011] = 5, + ACTIONS(8085), 1, + anon_sym_EQ, + ACTIONS(8087), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, + STATE(5323), 1, + sym_function_body, + STATE(5340), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, [188028] = 5, - ACTIONS(4039), 1, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10416), 1, + ACTIONS(10385), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1147), 1, + STATE(3898), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [188045] = 5, - ACTIONS(4039), 1, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10416), 1, + ACTIONS(10385), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1153), 1, + STATE(3786), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [188062] = 5, - ACTIONS(4039), 1, + ACTIONS(6404), 1, anon_sym_LBRACE, - ACTIONS(10416), 1, + ACTIONS(10385), 1, anon_sym_EQ, - STATE(1087), 1, + STATE(3734), 1, sym__block, - STATE(1178), 1, + STATE(3747), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [188079] = 5, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(6404), 1, anon_sym_LBRACE, - STATE(9098), 1, + ACTIONS(10385), 1, + anon_sym_EQ, + STATE(3721), 1, sym_function_body, - STATE(9145), 1, + STATE(3734), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [188096] = 5, - ACTIONS(4386), 1, - anon_sym_while, - ACTIONS(8342), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10724), 1, - anon_sym_COLON, - STATE(9017), 1, - sym_class_body, + ACTIONS(10597), 1, + anon_sym_EQ, + STATE(4616), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [188113] = 5, - ACTIONS(7926), 1, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, + ACTIONS(10597), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4609), 1, + sym_function_body, + STATE(4724), 1, sym__block, - STATE(4977), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [188130] = 5, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(10597), 1, + anon_sym_EQ, + STATE(4599), 1, sym_function_body, + STATE(4724), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [188147] = 4, + ACTIONS(10747), 1, + anon_sym_import, + ACTIONS(10750), 1, + sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188130] = 3, - ACTIONS(3943), 1, + STATE(8281), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [188162] = 3, + ACTIONS(10754), 1, anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3948), 3, + ACTIONS(10752), 3, sym__string_end, sym__string_content, anon_sym_DOLLAR_LBRACE, - [188143] = 4, - ACTIONS(8232), 1, + [188175] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - STATE(8823), 1, - sym_enum_class_body, + ACTIONS(10467), 1, + anon_sym_EQ, + STATE(3265), 1, + sym__block, + STATE(3444), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188158] = 4, - ACTIONS(8242), 1, + [188192] = 5, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(8918), 1, - sym_class_body, + STATE(9297), 1, + sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4406), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188173] = 4, - ACTIONS(8232), 1, + [188209] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - STATE(8831), 1, - sym_enum_class_body, + STATE(8800), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4392), 2, + ACTIONS(4398), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [188188] = 4, - ACTIONS(8242), 1, + [188224] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8818), 1, - sym_class_body, + STATE(8858), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4328), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [188203] = 5, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(9101), 1, - sym_function_body, - STATE(9145), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [188220] = 2, + [188239] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4599), 4, + ACTIONS(4658), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [188231] = 4, - ACTIONS(8242), 1, + [188250] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - STATE(8842), 1, + STATE(8898), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188246] = 5, - ACTIONS(7926), 1, - anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__block, - STATE(5010), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [188263] = 4, - ACTIONS(8232), 1, - anon_sym_LBRACE, - STATE(8916), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4503), 2, + ACTIONS(3194), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [188278] = 4, - ACTIONS(10726), 1, - anon_sym_COMMA, - STATE(8316), 1, - aux_sym__enum_entries_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8678), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [188293] = 5, - ACTIONS(6242), 1, - anon_sym_LBRACE, - ACTIONS(10346), 1, + [188265] = 5, + ACTIONS(10179), 1, anon_sym_EQ, - STATE(3161), 1, - sym_function_body, - STATE(3334), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [188310] = 5, - ACTIONS(7864), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(10354), 1, - anon_sym_EQ, - STATE(4690), 1, + STATE(8728), 1, sym__block, - STATE(4698), 1, + STATE(8861), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188327] = 4, - ACTIONS(8232), 1, - anon_sym_LBRACE, - STATE(8842), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4654), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188342] = 4, - ACTIONS(9616), 1, - anon_sym_DOT, - STATE(7517), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4309), 2, - sym__automatic_semicolon, - anon_sym_LPAREN, - [188357] = 5, - ACTIONS(10148), 1, + [188282] = 5, + ACTIONS(10201), 1, anon_sym_EQ, - ACTIONS(10150), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(8847), 1, + STATE(9287), 1, sym_function_body, - STATE(8899), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188374] = 5, - ACTIONS(7926), 1, + [188299] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, + ACTIONS(10409), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(4923), 1, sym__block, - STATE(5049), 1, + STATE(5081), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188391] = 5, - ACTIONS(6242), 1, + [188316] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, + ACTIONS(10409), 1, anon_sym_EQ, - STATE(3161), 1, - sym_function_body, - STATE(3334), 1, + STATE(4923), 1, sym__block, + STATE(5067), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188408] = 5, - ACTIONS(6242), 1, + [188333] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10346), 1, + ACTIONS(10409), 1, anon_sym_EQ, - STATE(3145), 1, - sym_function_body, - STATE(3334), 1, + STATE(4923), 1, sym__block, + STATE(5059), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188425] = 5, - ACTIONS(6459), 1, + [188350] = 5, + ACTIONS(7946), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, + ACTIONS(10409), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(4923), 1, sym__block, - STATE(3807), 1, + STATE(5036), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188442] = 5, - ACTIONS(6459), 1, + [188367] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, - anon_sym_EQ, - STATE(3732), 1, - sym_function_body, - STATE(3738), 1, - sym__block, + STATE(8868), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188459] = 5, - ACTIONS(6459), 1, - anon_sym_LBRACE, - ACTIONS(10380), 1, - anon_sym_EQ, - STATE(3710), 1, - sym_function_body, - STATE(3738), 1, - sym__block, + ACTIONS(4644), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [188382] = 5, + ACTIONS(1608), 1, + anon_sym_RBRACE, + ACTIONS(10756), 1, + sym__automatic_semicolon, + STATE(258), 1, + sym__semi, + STATE(8305), 1, + aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188476] = 5, - ACTIONS(6242), 1, - anon_sym_LBRACE, - ACTIONS(10346), 1, + [188399] = 5, + ACTIONS(10201), 1, anon_sym_EQ, - STATE(3135), 1, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(9283), 1, sym_function_body, - STATE(3334), 1, + STATE(9407), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188493] = 5, - ACTIONS(6459), 1, + [188416] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, + ACTIONS(10467), 1, anon_sym_EQ, - STATE(3694), 1, - sym_function_body, - STATE(3738), 1, + STATE(3265), 1, sym__block, + STATE(3416), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188510] = 4, - ACTIONS(8232), 1, - anon_sym_LBRACE, - STATE(8851), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4346), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188525] = 2, + [188433] = 4, + ACTIONS(10760), 1, + anon_sym_COMMA, + STATE(8299), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4808), 4, + ACTIONS(10758), 2, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_SEMI, + [188448] = 5, + ACTIONS(4392), 1, anon_sym_while, - [188536] = 4, - ACTIONS(8242), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(8912), 1, + ACTIONS(10763), 1, + anon_sym_COLON, + STATE(9088), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3200), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188551] = 4, - ACTIONS(8232), 1, - anon_sym_LBRACE, - STATE(8646), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3190), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188566] = 5, - ACTIONS(6242), 1, + [188465] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, + ACTIONS(10467), 1, anon_sym_EQ, - STATE(3145), 1, - sym_function_body, - STATE(3334), 1, + STATE(3265), 1, sym__block, + STATE(3393), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188583] = 4, - ACTIONS(8242), 1, + [188482] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8869), 1, - sym_class_body, + STATE(8871), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 2, + ACTIONS(4478), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [188598] = 5, - ACTIONS(1610), 1, - anon_sym_RBRACE, - ACTIONS(10728), 1, - sym__automatic_semicolon, - STATE(257), 1, - sym__semi, - STATE(8243), 1, - aux_sym_statements_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [188615] = 2, + [188497] = 5, + ACTIONS(7876), 1, + anon_sym_LBRACE, + ACTIONS(10377), 1, + anon_sym_EQ, + STATE(4631), 1, + sym_function_body, + STATE(4724), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5005), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [188626] = 5, - ACTIONS(10166), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + [188514] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - STATE(9113), 1, + ACTIONS(10377), 1, + anon_sym_EQ, + STATE(4616), 1, sym_function_body, - STATE(9145), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188643] = 5, - ACTIONS(10730), 1, + [188531] = 5, + ACTIONS(10765), 1, anon_sym_RBRACE, - ACTIONS(10732), 1, + ACTIONS(10767), 1, sym__automatic_semicolon, - STATE(258), 1, + STATE(259), 1, sym__semi, STATE(8305), 1, aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188660] = 5, - ACTIONS(6242), 1, + [188548] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, + ACTIONS(10377), 1, anon_sym_EQ, - STATE(3135), 1, + STATE(4609), 1, sym_function_body, - STATE(3334), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [188677] = 5, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - STATE(5357), 1, + STATE(4724), 1, sym__block, - STATE(5372), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188694] = 5, - ACTIONS(6459), 1, + [188565] = 5, + ACTIONS(7876), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, + ACTIONS(10377), 1, anon_sym_EQ, - STATE(3694), 1, + STATE(4599), 1, sym_function_body, - STATE(3738), 1, + STATE(4724), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188711] = 5, - ACTIONS(6242), 1, + [188582] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, + ACTIONS(10393), 1, anon_sym_EQ, - STATE(3158), 1, - sym_function_body, - STATE(3334), 1, + STATE(3265), 1, sym__block, + STATE(3444), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188728] = 5, - ACTIONS(6242), 1, + [188599] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - ACTIONS(10346), 1, + ACTIONS(10393), 1, anon_sym_EQ, - STATE(3158), 1, - sym_function_body, - STATE(3334), 1, + STATE(3265), 1, sym__block, + STATE(3422), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188745] = 4, - ACTIONS(8242), 1, + [188616] = 5, + ACTIONS(10201), 1, + anon_sym_EQ, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(8793), 1, - sym_class_body, + STATE(9267), 1, + sym_function_body, + STATE(9407), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188760] = 4, - ACTIONS(8232), 1, + [188633] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - STATE(8869), 1, - sym_enum_class_body, + ACTIONS(10393), 1, + anon_sym_EQ, + STATE(3265), 1, + sym__block, + STATE(3416), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188775] = 4, - ACTIONS(10736), 1, - anon_sym_COMMA, - STATE(8316), 1, - aux_sym__enum_entries_repeat1, + [188650] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10734), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [188790] = 4, - ACTIONS(8242), 1, + ACTIONS(4527), 4, anon_sym_LBRACE, - STATE(8646), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3190), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188805] = 4, - ACTIONS(8242), 1, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [188661] = 5, + ACTIONS(6241), 1, anon_sym_LBRACE, - STATE(8873), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4595), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [188820] = 5, - ACTIONS(10148), 1, + ACTIONS(10393), 1, anon_sym_EQ, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(8876), 1, - sym_function_body, - STATE(8899), 1, + STATE(3265), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [188837] = 5, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, - anon_sym_LBRACE, - STATE(5306), 1, + STATE(3393), 1, sym_function_body, - STATE(5357), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188854] = 5, - ACTIONS(6459), 1, + [188678] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(10342), 1, - anon_sym_EQ, - STATE(3694), 1, - sym_function_body, - STATE(3738), 1, - sym__block, + STATE(8871), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188871] = 5, - ACTIONS(8045), 1, - anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(4478), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [188693] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(5357), 1, - sym__block, - STATE(5385), 1, - sym_function_body, + STATE(8901), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188888] = 5, - ACTIONS(8045), 1, + ACTIONS(4484), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [188708] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4704), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [188719] = 5, + ACTIONS(10179), 1, anon_sym_EQ, - ACTIONS(8047), 1, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(5357), 1, + STATE(8728), 1, sym__block, - STATE(5390), 1, + STATE(8904), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188905] = 4, - ACTIONS(8232), 1, + [188736] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8881), 1, + STATE(8907), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 2, + ACTIONS(3208), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [188920] = 4, - ACTIONS(8242), 1, + [188751] = 4, + ACTIONS(8236), 1, anon_sym_LBRACE, - STATE(8916), 1, - sym_class_body, + STATE(8908), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4503), 2, + ACTIONS(4625), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [188935] = 5, - ACTIONS(6459), 1, + [188766] = 5, + ACTIONS(4087), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, + ACTIONS(10565), 1, anon_sym_EQ, - STATE(3710), 1, - sym_function_body, - STATE(3738), 1, + STATE(1133), 1, sym__block, + STATE(1157), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188952] = 5, - ACTIONS(10148), 1, - anon_sym_EQ, - ACTIONS(10150), 1, + [188783] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - STATE(8891), 1, + ACTIONS(10521), 1, + anon_sym_EQ, + STATE(3125), 1, sym_function_body, - STATE(8899), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188969] = 5, - ACTIONS(6459), 1, + [188800] = 5, + ACTIONS(6251), 1, anon_sym_LBRACE, - ACTIONS(10358), 1, + ACTIONS(10521), 1, anon_sym_EQ, - STATE(3732), 1, + STATE(3143), 1, sym_function_body, - STATE(3738), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [188986] = 4, - ACTIONS(5159), 1, + [188817] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(9420), 1, - anon_sym_COLON, - STATE(4618), 1, + STATE(8935), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189000] = 4, - ACTIONS(5358), 1, + ACTIONS(4344), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [188832] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(9416), 1, - anon_sym_COLON, - STATE(3690), 1, + STATE(8908), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189014] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(10739), 1, + ACTIONS(4625), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [188847] = 5, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(10565), 1, anon_sym_EQ, - STATE(9263), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189028] = 3, - STATE(8348), 1, - sym_constructor_delegation_call, + STATE(1133), 1, + sym__block, + STATE(1171), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10741), 2, - anon_sym_this, - anon_sym_super, - [189040] = 4, - ACTIONS(10743), 1, - anon_sym_COMMA, - ACTIONS(10745), 1, - anon_sym_GT, - STATE(8361), 1, - aux_sym_type_parameters_repeat1, + [188864] = 4, + ACTIONS(8236), 1, + anon_sym_LBRACE, + STATE(8926), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189054] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(10747), 1, + ACTIONS(4500), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [188879] = 5, + ACTIONS(6251), 1, + anon_sym_LBRACE, + ACTIONS(10521), 1, anon_sym_EQ, - STATE(9225), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189068] = 4, - ACTIONS(10743), 1, - anon_sym_COMMA, - ACTIONS(10749), 1, - anon_sym_GT, - STATE(8555), 1, - aux_sym_type_parameters_repeat1, + STATE(3148), 1, + sym_function_body, + STATE(3192), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189082] = 4, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(10751), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + [188896] = 5, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(10565), 1, + anon_sym_EQ, + STATE(1133), 1, + sym__block, + STATE(1174), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189096] = 4, - ACTIONS(10753), 1, - anon_sym_COMMA, - ACTIONS(10755), 1, - anon_sym_RPAREN, - STATE(8362), 1, - aux_sym_function_value_parameters_repeat1, + [188913] = 5, + ACTIONS(4087), 1, + anon_sym_LBRACE, + ACTIONS(10565), 1, + anon_sym_EQ, + STATE(1133), 1, + sym__block, + STATE(1189), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189110] = 3, - ACTIONS(10757), 1, + [188930] = 5, + ACTIONS(6251), 1, + anon_sym_LBRACE, + ACTIONS(10521), 1, anon_sym_EQ, + STATE(3164), 1, + sym_function_body, + STATE(3192), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10759), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [189122] = 2, + [188947] = 4, + ACTIONS(8236), 1, + anon_sym_LBRACE, + STATE(8940), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10734), 3, + ACTIONS(4621), 2, + sym__automatic_semicolon, anon_sym_RBRACE, + [188962] = 4, + ACTIONS(10770), 1, anon_sym_COMMA, - anon_sym_SEMI, - [189132] = 2, + ACTIONS(10772), 1, + anon_sym_RPAREN, + STATE(8578), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10372), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [189142] = 4, - ACTIONS(10761), 1, - anon_sym_COMMA, - ACTIONS(10763), 1, - anon_sym_DASH_GT, - STATE(8461), 1, - aux_sym_lambda_parameters_repeat1, + [188976] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189156] = 4, - ACTIONS(8242), 1, + ACTIONS(4488), 3, + anon_sym_DOT, + sym__quest, + anon_sym_in, + [188986] = 4, + ACTIONS(4664), 1, + anon_sym_while, + ACTIONS(8305), 1, anon_sym_LBRACE, - ACTIONS(10765), 1, - sym__automatic_semicolon, - STATE(8960), 1, + STATE(9215), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189170] = 4, - ACTIONS(10150), 1, + [189000] = 4, + ACTIONS(3208), 1, + anon_sym_while, + ACTIONS(8293), 1, anon_sym_LBRACE, - ACTIONS(10767), 1, - sym__automatic_semicolon, - STATE(8959), 1, - sym__block, + STATE(9186), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189184] = 4, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(10769), 1, - sym__automatic_semicolon, - STATE(8971), 1, - sym_class_body, + [189014] = 4, + ACTIONS(10774), 1, + anon_sym_COMMA, + ACTIONS(10776), 1, + anon_sym_DASH_GT, + STATE(8407), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189198] = 4, - ACTIONS(10771), 1, + [189028] = 4, + ACTIONS(10778), 1, anon_sym_COMMA, - ACTIONS(10773), 1, + ACTIONS(10780), 1, anon_sym_RPAREN, - STATE(8370), 1, - aux_sym_value_arguments_repeat1, + STATE(8554), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189212] = 4, - ACTIONS(10775), 1, + [189042] = 4, + ACTIONS(8599), 1, + anon_sym_RPAREN, + ACTIONS(10782), 1, anon_sym_COMMA, - ACTIONS(10777), 1, - anon_sym_GT, - STATE(8371), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189226] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4511), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [189236] = 4, - ACTIONS(10150), 1, - anon_sym_LBRACE, - ACTIONS(10779), 1, - sym__automatic_semicolon, - STATE(8972), 1, - sym__block, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189250] = 4, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(10781), 1, - sym__automatic_semicolon, - STATE(8973), 1, - sym_class_body, + [189056] = 4, + ACTIONS(10784), 1, + anon_sym_COMMA, + ACTIONS(10786), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189264] = 4, - ACTIONS(10783), 1, - anon_sym_COMMA, - ACTIONS(10785), 1, + [189070] = 4, + ACTIONS(9015), 1, anon_sym_RPAREN, - STATE(8557), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(10788), 1, + anon_sym_COMMA, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189278] = 4, - ACTIONS(10787), 1, - anon_sym_COMMA, + [189084] = 4, ACTIONS(10790), 1, + anon_sym_COMMA, + ACTIONS(10792), 1, anon_sym_RPAREN, - STATE(8351), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8405), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189292] = 4, - ACTIONS(10783), 1, + [189098] = 4, + ACTIONS(10794), 1, anon_sym_COMMA, - ACTIONS(10792), 1, + ACTIONS(10796), 1, anon_sym_RPAREN, - STATE(8426), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8550), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189306] = 4, - ACTIONS(10743), 1, + [189112] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(10794), 1, + ACTIONS(10800), 1, anon_sym_GT, - STATE(8561), 1, - aux_sym_type_parameters_repeat1, + STATE(8515), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189320] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(10796), 1, - anon_sym_EQ, - STATE(9406), 1, - sym_type_parameters, + [189126] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189334] = 3, + ACTIONS(4466), 3, + anon_sym_DOT, + sym__quest, + anon_sym_in, + [189136] = 4, ACTIONS(10798), 1, - anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(10802), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7543), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [189346] = 2, + [189150] = 3, + ACTIONS(10804), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10800), 3, + ACTIONS(4296), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [189356] = 4, - ACTIONS(10802), 1, - anon_sym_COMMA, - ACTIONS(10804), 1, - anon_sym_RPAREN, - STATE(8374), 1, - aux_sym__class_parameters_repeat1, + [189162] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189370] = 4, - ACTIONS(8330), 1, - anon_sym_LT, + ACTIONS(4450), 3, + anon_sym_DOT, + sym__quest, + anon_sym_in, + [189172] = 3, ACTIONS(10806), 1, - anon_sym_EQ, - STATE(9229), 1, - sym_type_parameters, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189384] = 4, - ACTIONS(10783), 1, - anon_sym_COMMA, - ACTIONS(10808), 1, + ACTIONS(4310), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [189184] = 4, + ACTIONS(5498), 1, anon_sym_RPAREN, - STATE(8573), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(10808), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189398] = 4, + [189198] = 4, + ACTIONS(9013), 1, + anon_sym_RPAREN, ACTIONS(10810), 1, anon_sym_COMMA, - ACTIONS(10812), 1, - anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189412] = 4, - ACTIONS(10743), 1, + [189212] = 4, + ACTIONS(10812), 1, anon_sym_COMMA, ACTIONS(10814), 1, - anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RPAREN, + STATE(8393), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189426] = 4, - ACTIONS(8965), 1, + [189226] = 4, + ACTIONS(8658), 1, anon_sym_RPAREN, ACTIONS(10816), 1, anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189440] = 2, + [189240] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10261), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [189450] = 4, - ACTIONS(10775), 1, + ACTIONS(4670), 3, anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_in, + [189250] = 4, ACTIONS(10818), 1, - anon_sym_GT, - STATE(8398), 1, - aux_sym_type_arguments_repeat1, + anon_sym_COMMA, + ACTIONS(10821), 1, + anon_sym_RPAREN, + STATE(8354), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189464] = 3, - STATE(3437), 1, - sym__lexical_identifier, + [189264] = 4, + ACTIONS(4334), 1, + anon_sym_while, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(9257), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10820), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [189476] = 4, - ACTIONS(10822), 1, - anon_sym_COMMA, - ACTIONS(10824), 1, - anon_sym_RPAREN, - STATE(8564), 1, - aux_sym_function_value_parameters_repeat1, + [189278] = 4, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(9441), 1, + anon_sym_COLON, + STATE(3420), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189490] = 4, - ACTIONS(4672), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(9120), 1, - sym_enum_class_body, + [189292] = 4, + ACTIONS(9035), 1, + anon_sym_RPAREN, + ACTIONS(10823), 1, + anon_sym_COMMA, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189504] = 4, - ACTIONS(10826), 1, - anon_sym_COMMA, - ACTIONS(10828), 1, + [189306] = 4, + ACTIONS(8585), 1, anon_sym_RPAREN, - STATE(8391), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10825), 1, + anon_sym_COMMA, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189518] = 4, - ACTIONS(7343), 1, + [189320] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - ACTIONS(10830), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(10827), 1, + anon_sym_RPAREN, + STATE(8534), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189532] = 4, - ACTIONS(5613), 1, - anon_sym_RPAREN, - ACTIONS(10832), 1, + [189334] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10829), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189546] = 4, - ACTIONS(10775), 1, + [189348] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(10834), 1, + ACTIONS(10831), 1, anon_sym_GT, - STATE(8420), 1, + STATE(8417), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189560] = 4, - ACTIONS(10761), 1, + [189362] = 4, + ACTIONS(10833), 1, anon_sym_COMMA, ACTIONS(10836), 1, - anon_sym_DASH_GT, - STATE(8341), 1, - aux_sym_lambda_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189574] = 4, - ACTIONS(4392), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(9117), 1, - sym_enum_class_body, + anon_sym_GT, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189588] = 4, - ACTIONS(8647), 1, + [189376] = 4, + ACTIONS(5538), 1, anon_sym_RPAREN, ACTIONS(10838), 1, anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189602] = 4, - ACTIONS(4654), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9114), 1, - sym_class_body, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189616] = 4, - ACTIONS(8242), 1, - anon_sym_LBRACE, + [189390] = 4, + ACTIONS(10798), 1, + anon_sym_COMMA, ACTIONS(10840), 1, - sym__automatic_semicolon, - STATE(8985), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189630] = 3, - STATE(857), 1, - sym__lexical_identifier, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10842), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [189642] = 3, - STATE(3372), 1, - sym__lexical_identifier, + [189404] = 4, + ACTIONS(10842), 1, + anon_sym_COMMA, + ACTIONS(10844), 1, + anon_sym_GT, + STATE(8400), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10844), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [189654] = 4, + [189418] = 4, ACTIONS(10846), 1, anon_sym_LBRACE, ACTIONS(10848), 1, anon_sym_LPAREN, - STATE(9304), 1, + STATE(9572), 1, sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189668] = 4, - ACTIONS(4654), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(9114), 1, - sym_enum_class_body, + [189432] = 4, + ACTIONS(5588), 1, + anon_sym_RPAREN, + ACTIONS(10850), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189682] = 4, - ACTIONS(10850), 1, + [189446] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, ACTIONS(10852), 1, - anon_sym_DASH_GT, - STATE(8449), 1, - aux_sym_when_entry_repeat1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189460] = 3, + STATE(8539), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189696] = 4, - ACTIONS(5177), 1, + ACTIONS(10854), 2, + anon_sym_this, + anon_sym_super, + [189472] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(9408), 1, - anon_sym_COLON, - STATE(3381), 1, + ACTIONS(10856), 1, + sym__automatic_semicolon, + STATE(9057), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189710] = 3, - ACTIONS(10854), 1, - anon_sym_EQ, + [189486] = 4, + ACTIONS(3200), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9272), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10856), 2, + [189500] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [189722] = 4, ACTIONS(10858), 1, - anon_sym_COMMA, - ACTIONS(10861), 1, - anon_sym_RPAREN, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [189736] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(10863), 1, - anon_sym_EQ, - STATE(9421), 1, - sym_type_parameters, + anon_sym_GT, + STATE(8364), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189750] = 4, - ACTIONS(8330), 1, + [189514] = 4, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(10865), 1, + ACTIONS(10860), 1, anon_sym_EQ, - STATE(9426), 1, + STATE(9541), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189764] = 4, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(10867), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + [189528] = 4, + ACTIONS(4688), 1, + anon_sym_while, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(9274), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189778] = 4, - ACTIONS(8645), 1, - anon_sym_RPAREN, - ACTIONS(10869), 1, + [189542] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(10862), 1, + anon_sym_GT, + STATE(8552), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189792] = 4, - ACTIONS(7343), 1, + [189556] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(10871), 1, + ACTIONS(10864), 1, anon_sym_RBRACK, - STATE(8533), 1, + STATE(8514), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189806] = 4, - ACTIONS(4346), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(9110), 1, - sym_enum_class_body, + [189570] = 4, + ACTIONS(10866), 1, + anon_sym_COMMA, + ACTIONS(10868), 1, + anon_sym_RPAREN, + STATE(8363), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189820] = 4, - ACTIONS(5615), 1, + [189584] = 4, + ACTIONS(5534), 1, anon_sym_RPAREN, - ACTIONS(10873), 1, + ACTIONS(10870), 1, anon_sym_COMMA, - STATE(8424), 1, + STATE(8415), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189834] = 4, - ACTIONS(4342), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9065), 1, - sym_class_body, + [189598] = 4, + ACTIONS(7358), 1, + anon_sym_COMMA, + ACTIONS(10872), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189848] = 4, - ACTIONS(10875), 1, + [189612] = 4, + ACTIONS(10874), 1, anon_sym_COMMA, - ACTIONS(10877), 1, + ACTIONS(10876), 1, anon_sym_RPAREN, - STATE(8578), 1, + STATE(8583), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189862] = 4, - ACTIONS(6930), 1, - sym__automatic_semicolon, - ACTIONS(10182), 1, - anon_sym_LPAREN, - STATE(8006), 1, - sym_value_arguments, + [189626] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189876] = 4, - ACTIONS(7343), 1, + ACTIONS(10878), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(10879), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + anon_sym_SEMI, + [189636] = 4, + ACTIONS(10798), 1, + anon_sym_COMMA, + ACTIONS(10880), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189890] = 4, - ACTIONS(3200), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9023), 1, - sym_class_body, + [189650] = 4, + ACTIONS(5548), 1, + anon_sym_RPAREN, + ACTIONS(10882), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189904] = 4, - ACTIONS(10775), 1, + [189664] = 4, + ACTIONS(9039), 1, + anon_sym_RPAREN, + ACTIONS(10884), 1, anon_sym_COMMA, - ACTIONS(10881), 1, - anon_sym_GT, - STATE(8582), 1, - aux_sym_type_arguments_repeat1, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189918] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(10883), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + [189678] = 3, + ACTIONS(10886), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189932] = 4, - ACTIONS(10775), 1, + ACTIONS(7458), 2, anon_sym_COMMA, - ACTIONS(10885), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + anon_sym_RPAREN, + [189690] = 4, + ACTIONS(10888), 1, + anon_sym_COMMA, + ACTIONS(10891), 1, + anon_sym_RPAREN, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189704] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189946] = 4, - ACTIONS(5563), 1, + ACTIONS(10893), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(10887), 1, + [189714] = 4, + ACTIONS(10895), 1, anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10897), 1, + anon_sym_RPAREN, + STATE(8338), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189728] = 4, + ACTIONS(5439), 1, + anon_sym_LBRACE, + ACTIONS(9455), 1, + anon_sym_COLON, + STATE(3844), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189742] = 3, + STATE(3878), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189960] = 4, - ACTIONS(4342), 1, + ACTIONS(10899), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [189754] = 4, + ACTIONS(4412), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(9065), 1, - sym_enum_class_body, + STATE(9276), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189768] = 4, + ACTIONS(10842), 1, + anon_sym_COMMA, + ACTIONS(10901), 1, + anon_sym_GT, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189974] = 4, - ACTIONS(8586), 1, + [189782] = 4, + ACTIONS(8662), 1, anon_sym_RPAREN, - ACTIONS(10889), 1, + ACTIONS(10903), 1, anon_sym_COMMA, - STATE(8384), 1, + STATE(8504), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [189988] = 4, - ACTIONS(7343), 1, + [189796] = 3, + STATE(3674), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10905), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [189808] = 4, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(10891), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(10909), 1, + anon_sym_RPAREN, + STATE(8424), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190002] = 4, - ACTIONS(4595), 1, + [189822] = 4, + ACTIONS(4398), 1, anon_sym_while, - ACTIONS(8342), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(9102), 1, + STATE(9277), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190016] = 4, - ACTIONS(10783), 1, + [189836] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - ACTIONS(10893), 1, + ACTIONS(10911), 1, anon_sym_RPAREN, - STATE(8513), 1, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189850] = 4, + ACTIONS(10907), 1, + anon_sym_COMMA, + ACTIONS(10913), 1, + anon_sym_RPAREN, + STATE(8354), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190030] = 4, - ACTIONS(4250), 1, - anon_sym_in, - ACTIONS(10895), 1, - sym__quest, - STATE(8414), 1, - aux_sym_nullable_type_repeat1, + [189864] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190044] = 4, - ACTIONS(10775), 1, + ACTIONS(4696), 3, anon_sym_COMMA, - ACTIONS(10897), 1, + anon_sym_DASH_GT, + anon_sym_in, + [189874] = 4, + ACTIONS(10842), 1, + anon_sym_COMMA, + ACTIONS(10915), 1, anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190058] = 4, - ACTIONS(10775), 1, + [189888] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(10899), 1, + ACTIONS(10917), 1, anon_sym_GT, - STATE(8416), 1, - aux_sym_type_arguments_repeat1, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190072] = 4, - ACTIONS(8330), 1, + [189902] = 4, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(10901), 1, + ACTIONS(10919), 1, anon_sym_EQ, - STATE(9299), 1, + STATE(9524), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190086] = 2, + [189916] = 4, + ACTIONS(10907), 1, + anon_sym_COMMA, + ACTIONS(10921), 1, + anon_sym_RPAREN, + STATE(8354), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [189930] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(10923), 1, + anon_sym_EQ, + STATE(9529), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4700), 3, + [189944] = 4, + ACTIONS(9029), 1, + anon_sym_RPAREN, + ACTIONS(10925), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [190096] = 4, - ACTIONS(4244), 1, - anon_sym_in, - ACTIONS(10903), 1, - sym__quest, - STATE(8406), 1, - aux_sym_nullable_type_repeat1, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190110] = 4, - ACTIONS(4231), 1, + [189958] = 4, + ACTIONS(3208), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(9100), 1, - sym_enum_class_body, + STATE(9186), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190124] = 4, - ACTIONS(10905), 1, + [189972] = 4, + ACTIONS(10927), 1, anon_sym_COMMA, - ACTIONS(10907), 1, - anon_sym_RPAREN, - STATE(8539), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10930), 1, + anon_sym_DASH_GT, + STATE(8407), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190138] = 4, - ACTIONS(4237), 1, - anon_sym_in, - ACTIONS(10909), 1, - sym__quest, - STATE(8414), 1, - aux_sym_nullable_type_repeat1, + [189986] = 4, + ACTIONS(4398), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9277), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190152] = 4, - ACTIONS(8961), 1, - anon_sym_RPAREN, - ACTIONS(10912), 1, - anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + [190000] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190166] = 4, - ACTIONS(10775), 1, + ACTIONS(4496), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [190010] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(10914), 1, + ACTIONS(10932), 1, anon_sym_GT, - STATE(8420), 1, + STATE(8543), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190180] = 4, - ACTIONS(4503), 1, - anon_sym_while, - ACTIONS(8342), 1, + [190024] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(10934), 1, + anon_sym_EQ, + STATE(9564), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190038] = 4, + ACTIONS(8246), 1, anon_sym_LBRACE, - STATE(9092), 1, + ACTIONS(10936), 1, + sym__automatic_semicolon, + STATE(9048), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190194] = 4, - ACTIONS(3144), 1, + [190052] = 4, + ACTIONS(10181), 1, anon_sym_LBRACE, - ACTIONS(9414), 1, - anon_sym_COLON, - STATE(3454), 1, + ACTIONS(10938), 1, + sym__automatic_semicolon, + STATE(9047), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190066] = 4, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(10940), 1, + sym__automatic_semicolon, + STATE(9045), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190208] = 4, - ACTIONS(10743), 1, + [190080] = 4, + ACTIONS(10942), 1, anon_sym_COMMA, - ACTIONS(10916), 1, - anon_sym_GT, - STATE(8559), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(10945), 1, + anon_sym_RPAREN, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190094] = 4, + ACTIONS(4470), 1, + anon_sym_while, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(9255), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190222] = 4, - ACTIONS(10918), 1, + [190108] = 4, + ACTIONS(10947), 1, anon_sym_COMMA, - ACTIONS(10921), 1, + ACTIONS(10950), 1, anon_sym_GT, - STATE(8420), 1, + STATE(8417), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190236] = 4, - ACTIONS(5559), 1, + [190122] = 4, + ACTIONS(10952), 1, + anon_sym_COMMA, + ACTIONS(10954), 1, anon_sym_RPAREN, - ACTIONS(10923), 1, + STATE(8357), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190136] = 4, + ACTIONS(10956), 1, anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10959), 1, + anon_sym_DASH_GT, + STATE(8419), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190250] = 4, - ACTIONS(5589), 1, - anon_sym_RPAREN, - ACTIONS(10925), 1, + [190150] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10961), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190264] = 4, - ACTIONS(8330), 1, + [190164] = 4, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(10927), 1, + ACTIONS(10963), 1, anon_sym_EQ, - STATE(9276), 1, + STATE(9499), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190278] = 4, - ACTIONS(10929), 1, - anon_sym_COMMA, - ACTIONS(10932), 1, - anon_sym_RPAREN, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + [190178] = 4, + ACTIONS(4344), 1, + anon_sym_while, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(9142), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190292] = 4, - ACTIONS(7343), 1, + [190192] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(10934), 1, + ACTIONS(10965), 1, anon_sym_RBRACK, - STATE(8533), 1, + STATE(8514), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190306] = 4, - ACTIONS(10783), 1, + [190206] = 4, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(10936), 1, + ACTIONS(10967), 1, anon_sym_RPAREN, - STATE(8573), 1, + STATE(8354), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190320] = 4, - ACTIONS(10743), 1, - anon_sym_COMMA, - ACTIONS(10938), 1, - anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [190334] = 2, + [190220] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4515), 3, - anon_sym_DOT, - sym__quest, - anon_sym_in, - [190344] = 4, - ACTIONS(3180), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_COLON, - STATE(1072), 1, - sym_class_body, + ACTIONS(10381), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [190230] = 4, + ACTIONS(10907), 1, + anon_sym_COMMA, + ACTIONS(10969), 1, + anon_sym_RPAREN, + STATE(8398), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190358] = 4, - ACTIONS(10810), 1, + [190244] = 4, + ACTIONS(10971), 1, anon_sym_COMMA, - ACTIONS(10940), 1, + ACTIONS(10973), 1, anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8352), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190372] = 2, + [190258] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4272), 3, - anon_sym_DOT, - sym__quest, - anon_sym_in, - [190382] = 4, - ACTIONS(8611), 1, + ACTIONS(10758), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [190268] = 4, + ACTIONS(8631), 1, anon_sym_RPAREN, - ACTIONS(10942), 1, + ACTIONS(10975), 1, anon_sym_COMMA, - STATE(8384), 1, + STATE(8504), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190396] = 3, - STATE(1060), 1, - sym__lexical_identifier, + [190282] = 4, + ACTIONS(10977), 1, + anon_sym_COMMA, + ACTIONS(10979), 1, + anon_sym_DASH_GT, + STATE(8419), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10944), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [190408] = 2, + [190296] = 4, + ACTIONS(7358), 1, + anon_sym_COMMA, + ACTIONS(10981), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4471), 3, - anon_sym_DOT, - sym__quest, - anon_sym_in, - [190418] = 4, + [190310] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(10983), 1, + anon_sym_EQ, + STATE(8950), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190324] = 4, ACTIONS(10848), 1, anon_sym_LPAREN, - ACTIONS(10946), 1, + ACTIONS(10985), 1, anon_sym_LBRACE, - STATE(9252), 1, + STATE(9355), 1, sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190432] = 2, + [190338] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(10987), 1, + anon_sym_EQ, + STATE(9521), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 3, - anon_sym_DOT, - sym__quest, - anon_sym_in, - [190442] = 3, - STATE(1078), 1, - sym__lexical_identifier, + [190352] = 4, + ACTIONS(10848), 1, + anon_sym_LPAREN, + ACTIONS(10989), 1, + anon_sym_LBRACE, + STATE(9551), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10948), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [190454] = 4, - ACTIONS(10775), 1, + [190366] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(10950), 1, + ACTIONS(10991), 1, anon_sym_GT, - STATE(8544), 1, - aux_sym_type_arguments_repeat1, + STATE(8392), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190468] = 2, + [190380] = 4, + ACTIONS(10798), 1, + anon_sym_COMMA, + ACTIONS(10993), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4519), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [190478] = 4, - ACTIONS(10783), 1, - anon_sym_COMMA, - ACTIONS(10952), 1, - anon_sym_RPAREN, - STATE(8573), 1, - aux_sym_multi_variable_declaration_repeat1, + [190394] = 3, + STATE(3251), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190492] = 4, - ACTIONS(10954), 1, - anon_sym_COMMA, - ACTIONS(10956), 1, - anon_sym_RPAREN, - STATE(8388), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(10995), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190406] = 3, + STATE(3386), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190506] = 4, - ACTIONS(10958), 1, - anon_sym_COMMA, - ACTIONS(10960), 1, - anon_sym_RPAREN, - STATE(8567), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(10997), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190418] = 3, + STATE(4976), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190520] = 4, - ACTIONS(4503), 1, + ACTIONS(10999), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190430] = 4, + ACTIONS(4328), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8293), 1, anon_sym_LBRACE, - STATE(9092), 1, + STATE(9285), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190534] = 4, - ACTIONS(8975), 1, - anon_sym_RPAREN, - ACTIONS(10962), 1, + [190444] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11001), 1, + anon_sym_GT, + STATE(8382), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190548] = 4, - ACTIONS(4406), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9091), 1, - sym_class_body, + [190458] = 4, + ACTIONS(10907), 1, + anon_sym_COMMA, + ACTIONS(11003), 1, + anon_sym_RPAREN, + STATE(8403), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190472] = 3, + STATE(4973), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190562] = 4, - ACTIONS(8330), 1, + ACTIONS(11005), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190484] = 4, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(10964), 1, + ACTIONS(11007), 1, anon_sym_EQ, - STATE(9319), 1, + STATE(9495), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190576] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(10966), 1, - anon_sym_GT, - STATE(8399), 1, - aux_sym_type_arguments_repeat1, + [190498] = 3, + ACTIONS(11009), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190590] = 4, - ACTIONS(10968), 1, + ACTIONS(11011), 2, anon_sym_COMMA, - ACTIONS(10970), 1, anon_sym_RPAREN, - STATE(8400), 1, - aux_sym_value_arguments_repeat1, + [190510] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11013), 1, + anon_sym_EQ, + STATE(9487), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190604] = 4, - ACTIONS(10850), 1, + [190524] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - ACTIONS(10972), 1, - anon_sym_DASH_GT, - STATE(8456), 1, - aux_sym_when_entry_repeat1, + ACTIONS(11015), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190618] = 3, - STATE(3373), 1, - sym__lexical_identifier, + [190538] = 4, + ACTIONS(10848), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_LBRACE, + STATE(9485), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10974), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [190630] = 3, - STATE(3440), 1, - sym__lexical_identifier, + [190552] = 4, + ACTIONS(4246), 1, + anon_sym_in, + ACTIONS(11019), 1, + sym__quest, + STATE(8450), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10976), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [190642] = 4, - ACTIONS(4682), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9089), 1, - sym_class_body, + [190566] = 4, + ACTIONS(4253), 1, + anon_sym_in, + ACTIONS(11022), 1, + sym__quest, + STATE(8462), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190656] = 4, - ACTIONS(10978), 1, + [190580] = 4, + ACTIONS(11024), 1, anon_sym_COMMA, - ACTIONS(10980), 1, + ACTIONS(11026), 1, anon_sym_RPAREN, - STATE(8590), 1, - aux_sym_value_arguments_repeat1, + STATE(8429), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190670] = 4, - ACTIONS(3216), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(9088), 1, - sym_enum_class_body, + [190594] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11028), 1, + anon_sym_EQ, + STATE(8962), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190684] = 4, - ACTIONS(10982), 1, + [190608] = 4, + ACTIONS(11030), 1, anon_sym_COMMA, - ACTIONS(10984), 1, + ACTIONS(11032), 1, anon_sym_RPAREN, - STATE(8415), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8383), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190698] = 4, - ACTIONS(10986), 1, + [190622] = 4, + ACTIONS(11034), 1, anon_sym_COMMA, - ACTIONS(10989), 1, - anon_sym_DASH_GT, - STATE(8456), 1, - aux_sym_when_entry_repeat1, + ACTIONS(11036), 1, + anon_sym_RPAREN, + STATE(8349), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190712] = 4, - ACTIONS(10775), 1, + [190636] = 4, + ACTIONS(11038), 1, anon_sym_COMMA, - ACTIONS(10991), 1, - anon_sym_GT, - STATE(8589), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11040), 1, + anon_sym_RPAREN, + STATE(8340), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190726] = 4, - ACTIONS(4186), 1, + [190650] = 4, + ACTIONS(4644), 1, anon_sym_while, - ACTIONS(8342), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(9075), 1, + STATE(9288), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190740] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN, - ACTIONS(10993), 1, + [190664] = 4, + ACTIONS(5121), 1, anon_sym_LBRACE, - STATE(8945), 1, - sym_when_subject, + ACTIONS(9439), 1, + anon_sym_COLON, + STATE(4726), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190754] = 4, - ACTIONS(10743), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, - anon_sym_GT, - STATE(8427), 1, - aux_sym_type_parameters_repeat1, + [190678] = 4, + ACTIONS(4478), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9290), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190768] = 4, - ACTIONS(10997), 1, + [190692] = 4, + ACTIONS(11042), 1, anon_sym_COMMA, - ACTIONS(11000), 1, - anon_sym_DASH_GT, - STATE(8461), 1, - aux_sym_lambda_parameters_repeat1, + ACTIONS(11044), 1, + anon_sym_RPAREN, + STATE(8384), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190782] = 4, - ACTIONS(11002), 1, - anon_sym_COMMA, - ACTIONS(11004), 1, - anon_sym_RPAREN, - STATE(8514), 1, - aux_sym_value_arguments_repeat1, + [190706] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11046), 1, + anon_sym_EQ, + STATE(9476), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190796] = 4, - ACTIONS(8623), 1, - anon_sym_RPAREN, - ACTIONS(11006), 1, - anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, + [190720] = 4, + ACTIONS(4261), 1, + anon_sym_in, + ACTIONS(11048), 1, + sym__quest, + STATE(8450), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190810] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(11008), 1, - anon_sym_GT, - STATE(8528), 1, - aux_sym_type_arguments_repeat1, + [190734] = 3, + STATE(3342), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190824] = 4, - ACTIONS(10783), 1, - anon_sym_COMMA, - ACTIONS(11010), 1, - anon_sym_RPAREN, - STATE(8494), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11050), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190746] = 3, + STATE(3343), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190838] = 4, - ACTIONS(11012), 1, - anon_sym_COMMA, - ACTIONS(11014), 1, - anon_sym_RPAREN, - STATE(8432), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11052), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190758] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11054), 1, + anon_sym_EQ, + STATE(9230), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190772] = 4, + ACTIONS(4478), 1, + anon_sym_while, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(9290), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190852] = 4, - ACTIONS(11016), 1, + [190786] = 4, + ACTIONS(4484), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9296), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190800] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - ACTIONS(11018), 1, + ACTIONS(11056), 1, anon_sym_RPAREN, - STATE(8498), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190814] = 4, + ACTIONS(7009), 1, + sym__automatic_semicolon, + ACTIONS(10195), 1, + anon_sym_LPAREN, + STATE(8141), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190866] = 4, - ACTIONS(8330), 1, + [190828] = 4, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(11020), 1, + ACTIONS(11058), 1, anon_sym_EQ, - STATE(9142), 1, + STATE(9284), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190880] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(11022), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [190894] = 4, - ACTIONS(10775), 1, + [190842] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11024), 1, + ACTIONS(11060), 1, anon_sym_GT, - STATE(8469), 1, + STATE(8345), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190908] = 4, - ACTIONS(4303), 1, + [190856] = 4, + ACTIONS(4625), 1, anon_sym_while, - ACTIONS(8342), 1, + ACTIONS(8293), 1, anon_sym_LBRACE, - STATE(9033), 1, - sym_class_body, + STATE(9298), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190922] = 4, - ACTIONS(11026), 1, + [190870] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(11028), 1, - anon_sym_RPAREN, - STATE(8501), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11062), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190936] = 4, - ACTIONS(10783), 1, + [190884] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(11030), 1, - anon_sym_RPAREN, - STATE(8440), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11064), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190950] = 4, - ACTIONS(10810), 1, - anon_sym_COMMA, - ACTIONS(11032), 1, - anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + [190898] = 3, + STATE(857), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190964] = 4, - ACTIONS(8330), 1, + ACTIONS(11066), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [190910] = 4, + ACTIONS(8297), 1, anon_sym_LT, - ACTIONS(11034), 1, + ACTIONS(11068), 1, anon_sym_EQ, - STATE(9242), 1, + STATE(9471), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190978] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11036), 1, - anon_sym_EQ, - STATE(9330), 1, - sym_type_parameters, + [190924] = 4, + ACTIONS(11070), 1, + anon_sym_COMMA, + ACTIONS(11072), 1, + anon_sym_RPAREN, + STATE(8489), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [190992] = 4, - ACTIONS(3190), 1, + [190938] = 4, + ACTIONS(4625), 1, anon_sym_while, - ACTIONS(8326), 1, + ACTIONS(8305), 1, anon_sym_LBRACE, - STATE(9036), 1, + STATE(9298), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190952] = 4, + ACTIONS(4500), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9301), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191006] = 4, - ACTIONS(10775), 1, + [190966] = 4, + ACTIONS(10848), 1, + anon_sym_LPAREN, + ACTIONS(11074), 1, + anon_sym_LBRACE, + STATE(9468), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [190980] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11038), 1, + ACTIONS(11076), 1, anon_sym_GT, - STATE(8502), 1, + STATE(8437), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191020] = 4, - ACTIONS(10810), 1, + [190994] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11040), 1, - anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11078), 1, + anon_sym_GT, + STATE(8361), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191034] = 4, - ACTIONS(10810), 1, + [191008] = 4, + ACTIONS(3172), 1, + anon_sym_LBRACE, + ACTIONS(9447), 1, + anon_sym_COLON, + STATE(3337), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [191022] = 4, + ACTIONS(4621), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9304), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [191036] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - ACTIONS(11042), 1, + ACTIONS(11080), 1, anon_sym_RPAREN, - STATE(8580), 1, + STATE(8359), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191048] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN, - ACTIONS(11044), 1, - anon_sym_LBRACE, - STATE(9279), 1, - sym_when_subject, + [191050] = 3, + STATE(2838), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(11082), 2, + sym__alpha_identifier, + sym__backtick_identifier, [191062] = 4, - ACTIONS(10783), 1, + ACTIONS(11084), 1, anon_sym_COMMA, - ACTIONS(11046), 1, + ACTIONS(11086), 1, anon_sym_RPAREN, - STATE(8359), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8544), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191076] = 4, - ACTIONS(4535), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9040), 1, - sym_class_body, + ACTIONS(10784), 1, + anon_sym_COMMA, + ACTIONS(11088), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191090] = 3, - STATE(2875), 1, - sym__lexical_identifier, + [191090] = 4, + ACTIONS(5584), 1, + anon_sym_RPAREN, + ACTIONS(11090), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11048), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [191102] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(11050), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + [191104] = 3, + STATE(1070), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(11092), 2, + sym__alpha_identifier, + sym__backtick_identifier, [191116] = 3, - STATE(4631), 1, + STATE(4745), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11052), 2, + ACTIONS(11094), 2, sym__alpha_identifier, sym__backtick_identifier, [191128] = 4, - ACTIONS(5583), 1, - anon_sym_RPAREN, - ACTIONS(11054), 1, + ACTIONS(11096), 1, anon_sym_COMMA, - STATE(8424), 1, + ACTIONS(11098), 1, + anon_sym_RPAREN, + STATE(8367), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191142] = 4, - ACTIONS(11056), 1, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(11058), 1, - anon_sym_RPAREN, - STATE(8504), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11100), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191156] = 3, - STATE(4633), 1, - sym__lexical_identifier, + [191156] = 4, + ACTIONS(5639), 1, + anon_sym_RPAREN, + ACTIONS(11102), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11060), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [191168] = 2, + [191170] = 4, + ACTIONS(10784), 1, + anon_sym_COMMA, + ACTIONS(11104), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11062), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - [191178] = 4, - ACTIONS(11064), 1, + [191184] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11067), 1, - anon_sym_RPAREN, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11106), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191192] = 3, - ACTIONS(11069), 1, + [191198] = 3, + ACTIONS(11108), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 2, + ACTIONS(4843), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [191204] = 4, - ACTIONS(3190), 1, - anon_sym_while, - ACTIONS(8342), 1, - anon_sym_LBRACE, - STATE(9036), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [191218] = 4, - ACTIONS(10783), 1, + [191210] = 4, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11071), 1, + ACTIONS(11110), 1, anon_sym_RPAREN, - STATE(8573), 1, + STATE(8354), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191232] = 4, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(9418), 1, - anon_sym_COLON, - STATE(4904), 1, - sym_class_body, + [191224] = 3, + ACTIONS(11112), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191246] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11073), 1, - anon_sym_EQ, - STATE(9176), 1, - sym_type_parameters, + ACTIONS(4861), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [191236] = 4, + ACTIONS(10977), 1, + anon_sym_COMMA, + ACTIONS(11114), 1, + anon_sym_DASH_GT, + STATE(8430), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191260] = 4, - ACTIONS(10810), 1, + [191250] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11075), 1, - anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11116), 1, + anon_sym_GT, + STATE(8368), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191274] = 4, - ACTIONS(8953), 1, - anon_sym_RPAREN, - ACTIONS(11077), 1, - anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + [191264] = 3, + STATE(4744), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191288] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN, - ACTIONS(11079), 1, - anon_sym_LBRACE, - STATE(9355), 1, - sym_when_subject, + ACTIONS(11118), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [191276] = 4, + ACTIONS(11120), 1, + anon_sym_COMMA, + ACTIONS(11122), 1, + anon_sym_RPAREN, + STATE(8378), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191302] = 4, - ACTIONS(11081), 1, + [191290] = 4, + ACTIONS(11124), 1, anon_sym_COMMA, - ACTIONS(11083), 1, + ACTIONS(11127), 1, anon_sym_RPAREN, - STATE(8402), 1, + STATE(8504), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191316] = 4, - ACTIONS(5573), 1, + [191304] = 3, + ACTIONS(11129), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11131), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(11085), 1, + [191316] = 4, + ACTIONS(11133), 1, anon_sym_COMMA, - STATE(8424), 1, + ACTIONS(11135), 1, + anon_sym_RPAREN, + STATE(8508), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191330] = 4, - ACTIONS(10775), 1, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11087), 1, + ACTIONS(11137), 1, anon_sym_GT, - STATE(8420), 1, + STATE(8510), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191344] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11089), 1, - anon_sym_EQ, - STATE(9236), 1, - sym_type_parameters, + ACTIONS(5598), 1, + anon_sym_RPAREN, + ACTIONS(11139), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191358] = 4, - ACTIONS(8637), 1, - anon_sym_RPAREN, - ACTIONS(11091), 1, + ACTIONS(7358), 1, anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11141), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191372] = 4, - ACTIONS(11093), 1, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11095), 1, - anon_sym_RPAREN, - STATE(8588), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11143), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191386] = 4, - ACTIONS(4402), 1, - anon_sym_while, - ACTIONS(8342), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - STATE(9073), 1, + ACTIONS(9451), 1, + anon_sym_COLON, + STATE(4991), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191400] = 4, - ACTIONS(10775), 1, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11097), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11145), 1, + anon_sym_RPAREN, + STATE(8354), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191414] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(11099), 1, - anon_sym_GT, - STATE(8507), 1, - aux_sym_type_arguments_repeat1, + [191414] = 3, + ACTIONS(11147), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191428] = 3, - ACTIONS(11101), 1, - anon_sym_LPAREN, + ACTIONS(11149), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [191426] = 4, + ACTIONS(7438), 1, + anon_sym_RBRACK, + ACTIONS(11151), 1, + anon_sym_COMMA, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, [191440] = 4, - ACTIONS(4186), 1, - anon_sym_while, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(9075), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [191454] = 3, - ACTIONS(11103), 1, - anon_sym_LPAREN, + ACTIONS(10798), 1, + anon_sym_COMMA, + ACTIONS(11154), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4961), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [191466] = 4, - ACTIONS(8963), 1, - anon_sym_RPAREN, - ACTIONS(11105), 1, + [191454] = 4, + ACTIONS(11156), 1, anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11158), 1, + anon_sym_RPAREN, + STATE(8518), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191480] = 4, - ACTIONS(10783), 1, + [191468] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11107), 1, - anon_sym_RPAREN, - STATE(8573), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11160), 1, + anon_sym_GT, + STATE(8519), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191494] = 4, - ACTIONS(5605), 1, + [191482] = 4, + ACTIONS(5614), 1, anon_sym_RPAREN, - ACTIONS(11109), 1, + ACTIONS(11162), 1, anon_sym_COMMA, - STATE(8424), 1, + STATE(8415), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191508] = 3, - ACTIONS(11111), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11113), 2, + [191496] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [191520] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11115), 1, - anon_sym_EQ, - STATE(9349), 1, - sym_type_parameters, + ACTIONS(11164), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191534] = 4, - ACTIONS(10810), 1, + [191510] = 4, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11117), 1, + ACTIONS(11166), 1, anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8549), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191548] = 3, - STATE(8343), 1, - sym_constructor_delegation_call, + [191524] = 3, + STATE(1042), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10741), 2, - anon_sym_this, - anon_sym_super, - [191560] = 4, - ACTIONS(11119), 1, - anon_sym_COMMA, - ACTIONS(11121), 1, - anon_sym_RPAREN, - STATE(8546), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11168), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [191536] = 4, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(9445), 1, + anon_sym_COLON, + STATE(1073), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191574] = 4, - ACTIONS(10743), 1, + [191550] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11123), 1, + ACTIONS(11170), 1, anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, + STATE(8524), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191588] = 4, - ACTIONS(11125), 1, + [191564] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11128), 1, + ACTIONS(11172), 1, anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191602] = 3, - ACTIONS(11130), 1, - anon_sym_COLON, + [191578] = 4, + ACTIONS(11174), 1, + anon_sym_COMMA, + ACTIONS(11176), 1, + anon_sym_RPAREN, + STATE(8538), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11132), 2, + [191592] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, + ACTIONS(11178), 1, anon_sym_GT, - [191614] = 4, - ACTIONS(11134), 1, - anon_sym_COMMA, - ACTIONS(11136), 1, - anon_sym_RPAREN, - STATE(8422), 1, - aux_sym_value_arguments_repeat1, + STATE(8527), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191628] = 4, - ACTIONS(7343), 1, + [191606] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11138), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11180), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191642] = 3, - STATE(4964), 1, + [191620] = 3, + STATE(1071), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11140), 2, + ACTIONS(11182), 2, sym__alpha_identifier, sym__backtick_identifier, - [191654] = 4, - ACTIONS(11142), 1, + [191632] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10231), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11144), 1, - anon_sym_RPAREN, - STATE(8538), 1, - aux_sym_function_value_parameters_repeat1, + anon_sym_SEMI, + [191642] = 4, + ACTIONS(10848), 1, + anon_sym_LPAREN, + ACTIONS(11184), 1, + anon_sym_LBRACE, + STATE(9330), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191668] = 4, - ACTIONS(10775), 1, + [191656] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(11146), 1, + ACTIONS(11186), 1, anon_sym_GT, - STATE(8407), 1, - aux_sym_type_arguments_repeat1, + STATE(8553), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191682] = 4, - ACTIONS(10775), 1, + [191670] = 4, + ACTIONS(11188), 1, anon_sym_COMMA, - ACTIONS(11148), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11190), 1, + anon_sym_RPAREN, + STATE(8556), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191696] = 3, - STATE(4960), 1, - sym__lexical_identifier, + [191684] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11192), 1, + anon_sym_EQ, + STATE(9334), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11150), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [191708] = 3, - STATE(3185), 1, - sym__lexical_identifier, + [191698] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11197), 1, + anon_sym_RPAREN, + STATE(8534), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11152), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [191720] = 4, - ACTIONS(11154), 1, + [191712] = 4, + ACTIONS(11199), 1, anon_sym_COMMA, - ACTIONS(11156), 1, + ACTIONS(11201), 1, anon_sym_RPAREN, - STATE(8541), 1, + STATE(8561), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191734] = 3, - ACTIONS(11158), 1, - anon_sym_EQ, + [191726] = 4, + ACTIONS(10798), 1, + anon_sym_COMMA, + ACTIONS(11203), 1, + anon_sym_GT, + STATE(8562), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11160), 2, + [191740] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [191746] = 4, - ACTIONS(7509), 1, + ACTIONS(11205), 1, anon_sym_RBRACK, - ACTIONS(11162), 1, - anon_sym_COMMA, - STATE(8533), 1, + STATE(8514), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191760] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN, - ACTIONS(11165), 1, + [191754] = 4, + ACTIONS(8617), 1, + anon_sym_RPAREN, + ACTIONS(11207), 1, + anon_sym_COMMA, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [191768] = 4, + ACTIONS(10181), 1, anon_sym_LBRACE, - STATE(9450), 1, - sym_when_subject, + ACTIONS(11209), 1, + sym__automatic_semicolon, + STATE(9036), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191774] = 4, - ACTIONS(11167), 1, - anon_sym_COMMA, - ACTIONS(11169), 1, - anon_sym_RPAREN, - STATE(8543), 1, - aux_sym__class_parameters_repeat1, + [191782] = 4, + ACTIONS(8246), 1, + anon_sym_LBRACE, + ACTIONS(11211), 1, + sym__automatic_semicolon, + STATE(9037), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191788] = 4, - ACTIONS(11171), 1, - anon_sym_COMMA, - ACTIONS(11173), 1, - anon_sym_RPAREN, - STATE(8421), 1, - aux_sym_value_arguments_repeat1, + [191796] = 3, + ACTIONS(11213), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191802] = 4, - ACTIONS(10810), 1, + ACTIONS(11215), 2, anon_sym_COMMA, - ACTIONS(11175), 1, anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + [191808] = 3, + STATE(8413), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191816] = 4, - ACTIONS(8985), 1, - anon_sym_RPAREN, - ACTIONS(11177), 1, + ACTIONS(10854), 2, + anon_sym_this, + anon_sym_super, + [191820] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11217), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191830] = 4, - ACTIONS(5587), 1, + [191834] = 4, + ACTIONS(9019), 1, anon_sym_RPAREN, - ACTIONS(11179), 1, + ACTIONS(11219), 1, anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191844] = 4, - ACTIONS(8641), 1, - anon_sym_RPAREN, - ACTIONS(11181), 1, - anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, + [191848] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11221), 1, + anon_sym_EQ, + STATE(9441), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191858] = 4, - ACTIONS(5504), 1, - anon_sym_RPAREN, - ACTIONS(11183), 1, + [191862] = 4, + ACTIONS(11223), 1, anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11225), 1, + anon_sym_RPAREN, + STATE(8358), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191872] = 4, - ACTIONS(10775), 1, + [191876] = 4, + ACTIONS(11227), 1, anon_sym_COMMA, - ACTIONS(11185), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11229), 1, + anon_sym_RPAREN, + STATE(8563), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191886] = 4, - ACTIONS(8635), 1, - anon_sym_RPAREN, - ACTIONS(11187), 1, - anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, + [191890] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(4504), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, [191900] = 4, - ACTIONS(10775), 1, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11189), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11231), 1, + anon_sym_RPAREN, + STATE(8354), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191914] = 4, - ACTIONS(10783), 1, - anon_sym_COMMA, - ACTIONS(11191), 1, + ACTIONS(5494), 1, anon_sym_RPAREN, - STATE(8576), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11233), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [191928] = 4, - ACTIONS(8989), 1, - anon_sym_RPAREN, - ACTIONS(11193), 1, + ACTIONS(10784), 1, anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11235), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191942] = 3, - ACTIONS(11195), 1, - anon_sym_LPAREN, + [191942] = 4, + ACTIONS(10842), 1, + anon_sym_COMMA, + ACTIONS(11237), 1, + anon_sym_GT, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4144), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [191954] = 4, - ACTIONS(10810), 1, + [191956] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(11197), 1, - anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11239), 1, + anon_sym_GT, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191968] = 4, - ACTIONS(4322), 1, - anon_sym_in, - ACTIONS(10903), 1, - sym__quest, - STATE(8406), 1, - aux_sym_nullable_type_repeat1, + [191970] = 4, + ACTIONS(9037), 1, + anon_sym_RPAREN, + ACTIONS(11241), 1, + anon_sym_COMMA, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191982] = 4, - ACTIONS(11199), 1, - anon_sym_COMMA, - ACTIONS(11201), 1, - anon_sym_RPAREN, - STATE(8540), 1, - aux_sym__class_parameters_repeat1, + [191984] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11243), 1, + anon_sym_EQ, + STATE(9396), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [191996] = 4, - ACTIONS(10743), 1, + [191998] = 4, + ACTIONS(9011), 1, + anon_sym_RPAREN, + ACTIONS(11245), 1, anon_sym_COMMA, - ACTIONS(11203), 1, - anon_sym_GT, - STATE(8520), 1, - aux_sym_type_parameters_repeat1, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192010] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(11205), 1, - anon_sym_GT, - STATE(8542), 1, - aux_sym_type_arguments_repeat1, + [192012] = 3, + ACTIONS(11247), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(11249), 2, + anon_sym_COMMA, + anon_sym_GT, [192024] = 4, - ACTIONS(7343), 1, + ACTIONS(8619), 1, + anon_sym_RPAREN, + ACTIONS(11251), 1, anon_sym_COMMA, - ACTIONS(11207), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192038] = 4, - ACTIONS(10810), 1, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11209), 1, + ACTIONS(11253), 1, anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8498), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192052] = 4, - ACTIONS(10743), 1, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(11211), 1, - anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11255), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192066] = 4, - ACTIONS(11213), 1, - anon_sym_COMMA, - ACTIONS(11215), 1, + ACTIONS(5626), 1, anon_sym_RPAREN, - STATE(8512), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11257), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192080] = 4, - ACTIONS(10783), 1, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11217), 1, - anon_sym_RPAREN, - STATE(8573), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11259), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192094] = 4, - ACTIONS(11219), 1, - anon_sym_COMMA, - ACTIONS(11221), 1, + ACTIONS(8601), 1, anon_sym_RPAREN, - STATE(8444), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11261), 1, + anon_sym_COMMA, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192108] = 4, - ACTIONS(10743), 1, + ACTIONS(11263), 1, anon_sym_COMMA, - ACTIONS(11223), 1, - anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11265), 1, + anon_sym_RPAREN, + STATE(8350), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192122] = 4, - ACTIONS(10810), 1, - anon_sym_COMMA, - ACTIONS(11225), 1, + ACTIONS(8641), 1, anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11267), 1, + anon_sym_COMMA, + STATE(8504), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192136] = 4, - ACTIONS(10743), 1, - anon_sym_COMMA, - ACTIONS(11227), 1, - anon_sym_GT, - STATE(8521), 1, - aux_sym_type_parameters_repeat1, + [192136] = 3, + STATE(3395), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192150] = 4, - ACTIONS(11229), 1, - anon_sym_COMMA, - ACTIONS(11231), 1, - anon_sym_RPAREN, - STATE(8487), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11269), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [192148] = 4, + ACTIONS(4334), 1, + anon_sym_while, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(9257), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192164] = 4, - ACTIONS(10775), 1, + [192162] = 4, + ACTIONS(10774), 1, anon_sym_COMMA, - ACTIONS(11233), 1, - anon_sym_GT, - STATE(8485), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11271), 1, + anon_sym_DASH_GT, + STATE(8336), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192178] = 4, - ACTIONS(8957), 1, + [192176] = 4, + ACTIONS(11273), 1, + anon_sym_COMMA, + ACTIONS(11275), 1, anon_sym_RPAREN, - ACTIONS(11235), 1, + STATE(8565), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [192190] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11277), 1, + anon_sym_RBRACK, + STATE(8514), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192192] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11237), 1, - anon_sym_EQ, - STATE(9200), 1, - sym_type_parameters, + [192204] = 4, + ACTIONS(10907), 1, + anon_sym_COMMA, + ACTIONS(11279), 1, + anon_sym_RPAREN, + STATE(8587), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192206] = 3, - ACTIONS(11239), 1, + [192218] = 3, + ACTIONS(11281), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11241), 2, + ACTIONS(11283), 2, anon_sym_COMMA, anon_sym_GT, - [192218] = 4, - ACTIONS(8987), 1, - anon_sym_RPAREN, - ACTIONS(11243), 1, - anon_sym_COMMA, - STATE(8491), 1, - aux_sym_function_value_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [192232] = 4, - ACTIONS(10775), 1, + [192230] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - ACTIONS(11245), 1, + ACTIONS(11285), 1, anon_sym_GT, - STATE(8420), 1, + STATE(8496), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192246] = 4, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(11247), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + [192244] = 4, + ACTIONS(3194), 1, + anon_sym_while, + ACTIONS(8305), 1, + anon_sym_LBRACE, + STATE(9107), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192260] = 4, - ACTIONS(5623), 1, - anon_sym_RPAREN, - ACTIONS(11249), 1, - anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + [192258] = 4, + ACTIONS(4280), 1, + anon_sym_in, + ACTIONS(11022), 1, + sym__quest, + STATE(8462), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192274] = 2, + [192272] = 4, + ACTIONS(10798), 1, + anon_sym_COMMA, + ACTIONS(11287), 1, + anon_sym_GT, + STATE(8417), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4603), 3, + [192286] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [192284] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11251), 1, - anon_sym_EQ, - STATE(9291), 1, - sym_type_parameters, + ACTIONS(11289), 1, + anon_sym_RPAREN, + STATE(8359), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192298] = 4, - ACTIONS(11253), 1, - anon_sym_COMMA, - ACTIONS(11256), 1, + [192300] = 4, + ACTIONS(5578), 1, anon_sym_RPAREN, - STATE(8573), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11291), 1, + anon_sym_COMMA, + STATE(8415), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192312] = 4, - ACTIONS(10810), 1, + [192314] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(11258), 1, - anon_sym_RPAREN, - STATE(8580), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11293), 1, + anon_sym_GT, + STATE(8401), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192326] = 4, - ACTIONS(7343), 1, + [192328] = 4, + ACTIONS(7358), 1, anon_sym_COMMA, - ACTIONS(11260), 1, + ACTIONS(11295), 1, anon_sym_RBRACK, - STATE(8533), 1, + STATE(8514), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192340] = 4, - ACTIONS(10783), 1, + [192342] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(11262), 1, - anon_sym_RPAREN, - STATE(8573), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11297), 1, + anon_sym_GT, + STATE(8584), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192354] = 3, - STATE(1166), 1, - sym__lexical_identifier, + [192356] = 4, + ACTIONS(9021), 1, + anon_sym_RPAREN, + ACTIONS(11299), 1, + anon_sym_COMMA, + STATE(8386), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11264), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [192366] = 4, - ACTIONS(5534), 1, + [192370] = 4, + ACTIONS(5566), 1, anon_sym_RPAREN, - ACTIONS(11266), 1, + ACTIONS(11301), 1, anon_sym_COMMA, - STATE(8424), 1, + STATE(8415), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192380] = 4, - ACTIONS(11268), 1, + [192384] = 4, + ACTIONS(10842), 1, anon_sym_COMMA, - ACTIONS(11270), 1, - anon_sym_RPAREN, - STATE(8463), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11303), 1, + anon_sym_GT, + STATE(8362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192394] = 4, - ACTIONS(10810), 1, + [192398] = 4, + ACTIONS(10784), 1, anon_sym_COMMA, - ACTIONS(11272), 1, + ACTIONS(11305), 1, anon_sym_RPAREN, - STATE(8351), 1, + STATE(8359), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192408] = 4, - ACTIONS(8330), 1, - anon_sym_LT, - ACTIONS(11274), 1, - anon_sym_EQ, - STATE(9307), 1, - sym_type_parameters, + [192412] = 4, + ACTIONS(11307), 1, + anon_sym_COMMA, + ACTIONS(11309), 1, + anon_sym_RPAREN, + STATE(8494), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192422] = 4, - ACTIONS(10775), 1, + [192426] = 4, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11276), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11311), 1, + anon_sym_RPAREN, + STATE(8354), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192436] = 3, - STATE(3890), 1, - sym__lexical_identifier, + [192440] = 4, + ACTIONS(11313), 1, + anon_sym_COMMA, + ACTIONS(11315), 1, + anon_sym_RPAREN, + STATE(8582), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11278), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [192448] = 4, - ACTIONS(10775), 1, + [192454] = 4, + ACTIONS(10907), 1, anon_sym_COMMA, - ACTIONS(11280), 1, - anon_sym_GT, - STATE(8568), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11317), 1, + anon_sym_RPAREN, + STATE(8512), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192462] = 4, - ACTIONS(11282), 1, + [192468] = 4, + ACTIONS(11319), 1, anon_sym_COMMA, - ACTIONS(11284), 1, + ACTIONS(11321), 1, anon_sym_RPAREN, - STATE(8570), 1, - aux_sym_value_arguments_repeat1, + STATE(8558), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192476] = 3, - STATE(3733), 1, - sym__lexical_identifier, + [192482] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11286), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [192488] = 4, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(11288), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(4225), 3, + anon_sym_DOT, + sym__quest, + anon_sym_in, + [192492] = 4, + ACTIONS(8297), 1, + anon_sym_LT, + ACTIONS(11323), 1, + anon_sym_EQ, + STATE(9389), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192502] = 4, - ACTIONS(8615), 1, - anon_sym_RPAREN, - ACTIONS(11290), 1, + [192506] = 4, + ACTIONS(10798), 1, anon_sym_COMMA, - STATE(8384), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11325), 1, + anon_sym_GT, + STATE(8576), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192516] = 4, - ACTIONS(10775), 1, - anon_sym_COMMA, - ACTIONS(11292), 1, - anon_sym_GT, - STATE(8420), 1, - aux_sym_type_arguments_repeat1, + [192520] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4556), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192530] = 4, - ACTIONS(5546), 1, - anon_sym_RPAREN, - ACTIONS(11294), 1, - anon_sym_COMMA, - STATE(8424), 1, - aux_sym_value_arguments_repeat1, + [192531] = 3, + ACTIONS(9301), 1, + anon_sym_LPAREN, + STATE(7878), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192544] = 3, - ACTIONS(9315), 1, + [192542] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4523), 1, + STATE(3930), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192555] = 3, - ACTIONS(9216), 1, + [192553] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4441), 1, + STATE(4529), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192566] = 3, - ACTIONS(11296), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [192564] = 3, + ACTIONS(5135), 1, + anon_sym_LPAREN, + STATE(3061), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192577] = 3, - ACTIONS(11298), 1, - anon_sym_DOT, - STATE(8593), 1, - aux_sym_user_type_repeat1, + [192575] = 3, + ACTIONS(1854), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192588] = 2, + [192586] = 3, + ACTIONS(8295), 1, + anon_sym_LPAREN, + STATE(8206), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4812), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, [192597] = 3, - ACTIONS(7507), 1, - anon_sym_RBRACE, - ACTIONS(11300), 1, - anon_sym_SEMI, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4535), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192608] = 3, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(3543), 1, - sym_function_value_parameters, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(3195), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192619] = 3, - ACTIONS(11302), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + ACTIONS(11327), 1, + sym__automatic_semicolon, + STATE(3658), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192630] = 3, - ACTIONS(11304), 1, - anon_sym_DOT, - STATE(8611), 1, - aux_sym_user_type_repeat1, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4527), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192641] = 3, - ACTIONS(11306), 1, - anon_sym_DOT, - STATE(8598), 1, - aux_sym_user_type_repeat1, + ACTIONS(7473), 1, + anon_sym_RBRACE, + ACTIONS(11329), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192652] = 3, - ACTIONS(9315), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(5097), 1, + STATE(4784), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192663] = 3, - ACTIONS(7563), 1, - anon_sym_RBRACE, - ACTIONS(11308), 1, - anon_sym_SEMI, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4523), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192674] = 3, - ACTIONS(9299), 1, - anon_sym_LPAREN, - STATE(4763), 1, - sym_function_value_parameters, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4698), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [192685] = 3, - ACTIONS(11310), 1, - anon_sym_DOT, - STATE(8609), 1, - aux_sym_user_type_repeat1, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(807), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192696] = 2, + [192696] = 3, + ACTIONS(11331), 1, + anon_sym_LBRACE, + STATE(3504), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1786), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [192705] = 3, - ACTIONS(9247), 1, + [192707] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(793), 1, + STATE(805), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192716] = 3, - ACTIONS(8328), 1, + [192718] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(8226), 1, - sym__class_parameters, + STATE(802), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192727] = 3, - ACTIONS(9315), 1, + [192729] = 3, + ACTIONS(6241), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [192740] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(4940), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [192751] = 3, + ACTIONS(9257), 1, anon_sym_LPAREN, - STATE(5093), 1, + STATE(7895), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192738] = 3, - ACTIONS(11312), 1, + [192762] = 3, + ACTIONS(11333), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(8694), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192749] = 3, - ACTIONS(9237), 1, + [192773] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(2885), 1, + STATE(3931), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192760] = 3, - ACTIONS(11314), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [192784] = 3, + ACTIONS(6251), 1, + anon_sym_LBRACE, + STATE(2981), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192771] = 3, - ACTIONS(9315), 1, + [192795] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(5103), 1, + STATE(809), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192782] = 3, - ACTIONS(9299), 1, + [192806] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4760), 1, + STATE(3903), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192793] = 3, - ACTIONS(11316), 1, - anon_sym_DOT, - STATE(8619), 1, - aux_sym_user_type_repeat1, + [192817] = 3, + ACTIONS(11335), 1, + anon_sym_COLON, + ACTIONS(11337), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192804] = 3, - ACTIONS(9247), 1, + [192828] = 3, + ACTIONS(4144), 1, + anon_sym_in, + ACTIONS(11339), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [192839] = 3, + ACTIONS(5121), 1, + anon_sym_LBRACE, + STATE(4703), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [192850] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(785), 1, + STATE(4768), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192815] = 3, - ACTIONS(3158), 1, + [192861] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(944), 1, - sym__class_parameters, + STATE(3942), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192826] = 3, - ACTIONS(9299), 1, + [192872] = 3, + ACTIONS(9257), 1, anon_sym_LPAREN, - STATE(4769), 1, + STATE(7885), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192837] = 3, - ACTIONS(9216), 1, + [192883] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4816), 1, + STATE(3049), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192848] = 3, - ACTIONS(11318), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [192894] = 3, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3056), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192859] = 3, - ACTIONS(11320), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [192905] = 3, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3058), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192870] = 3, - ACTIONS(1854), 1, - anon_sym_LBRACE, - STATE(4695), 1, - sym_lambda_literal, + [192916] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(5106), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192881] = 3, - ACTIONS(5115), 1, - anon_sym_LPAREN, - STATE(4532), 1, - sym__class_parameters, + [192927] = 3, + ACTIONS(10117), 1, + anon_sym_get, + ACTIONS(10119), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192892] = 3, + [192938] = 3, ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(5104), 1, + STATE(5110), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192903] = 3, - ACTIONS(9247), 1, + [192949] = 3, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(802), 1, + STATE(5083), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192914] = 3, - ACTIONS(10040), 1, - anon_sym_get, - ACTIONS(10042), 1, - anon_sym_set, + [192960] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(5119), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192925] = 3, - ACTIONS(11322), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [192971] = 3, + ACTIONS(9241), 1, + anon_sym_LPAREN, + STATE(2831), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192936] = 3, - ACTIONS(9237), 1, + [192982] = 3, + ACTIONS(4310), 1, + anon_sym_while, + ACTIONS(11341), 1, anon_sym_LPAREN, - STATE(2878), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192947] = 3, - ACTIONS(9247), 1, + [192993] = 3, + ACTIONS(4296), 1, + anon_sym_while, + ACTIONS(11343), 1, anon_sym_LPAREN, - STATE(867), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192958] = 3, + [193004] = 3, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(871), 1, + STATE(3067), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192969] = 3, - ACTIONS(9247), 1, + [193015] = 3, + ACTIONS(11331), 1, + anon_sym_LBRACE, + STATE(3498), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [193026] = 3, + ACTIONS(9975), 1, + anon_sym_get, + ACTIONS(9977), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [193037] = 3, + ACTIONS(11345), 1, + anon_sym_DOT, + STATE(8643), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [193048] = 3, + ACTIONS(9899), 1, + anon_sym_get, + ACTIONS(9901), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [193059] = 3, + ACTIONS(11347), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [193070] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(876), 1, + STATE(2816), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192980] = 3, - ACTIONS(11324), 1, - sym__automatic_semicolon, - STATE(5552), 1, - sym__semi, + [193081] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [192991] = 3, - ACTIONS(9247), 1, + ACTIONS(7602), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [193090] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(873), 1, + STATE(3518), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193002] = 3, - ACTIONS(9293), 1, + [193101] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(7881), 1, + STATE(3519), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193013] = 3, - ACTIONS(5159), 1, + [193112] = 3, + ACTIONS(1930), 1, anon_sym_LBRACE, - STATE(4742), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193024] = 2, + STATE(3212), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11256), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [193033] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3576), 1, - sym_function_value_parameters, + [193123] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193044] = 3, + ACTIONS(4504), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [193132] = 3, ACTIONS(1854), 1, anon_sym_LBRACE, - STATE(4702), 1, + STATE(4716), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193055] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3582), 1, - sym_function_value_parameters, + [193143] = 3, + ACTIONS(1598), 1, + anon_sym_LBRACE, + STATE(3137), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193066] = 3, - ACTIONS(9237), 1, + [193154] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3583), 1, + STATE(4769), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193077] = 3, - ACTIONS(9245), 1, - anon_sym_LPAREN, - STATE(8225), 1, - sym_function_value_parameters, + [193165] = 3, + ACTIONS(6251), 1, + anon_sym_LBRACE, + STATE(2982), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193088] = 3, - ACTIONS(7519), 1, + [193176] = 3, + ACTIONS(7521), 1, anon_sym_RBRACE, - ACTIONS(11326), 1, + ACTIONS(11349), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193099] = 3, - ACTIONS(9237), 1, + [193187] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3591), 1, + STATE(3521), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193110] = 3, - ACTIONS(10150), 1, - anon_sym_LBRACE, - STATE(9182), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193121] = 3, - ACTIONS(9247), 1, + [193198] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(1259), 1, + STATE(3524), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193132] = 3, - ACTIONS(11328), 1, + [193209] = 3, + ACTIONS(11351), 1, anon_sym_DOT, - STATE(8675), 1, + STATE(8660), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193143] = 2, + [193220] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4186), 2, + ACTIONS(1776), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [193152] = 3, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(3500), 1, - sym_function_value_parameters, + [193229] = 3, + ACTIONS(11353), 1, + anon_sym_DOT, + STATE(8675), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193163] = 3, - ACTIONS(8328), 1, - anon_sym_LPAREN, - STATE(8239), 1, - sym__class_parameters, + [193240] = 3, + ACTIONS(11355), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193174] = 3, - ACTIONS(9237), 1, + [193251] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(1230), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193185] = 3, - ACTIONS(3114), 1, - anon_sym_LPAREN, - STATE(3051), 1, - sym__class_parameters, + [193262] = 3, + ACTIONS(7452), 1, + anon_sym_RBRACE, + ACTIONS(11357), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193196] = 3, - ACTIONS(9224), 1, + [193273] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(3511), 1, + STATE(1226), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193207] = 3, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(7990), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193218] = 3, - ACTIONS(9245), 1, + [193284] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(8180), 1, + STATE(1220), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193229] = 3, - ACTIONS(11330), 1, - anon_sym_DOT, - STATE(8657), 1, - aux_sym_user_type_repeat1, + [193295] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193240] = 2, + ACTIONS(4496), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [193304] = 3, + ACTIONS(3130), 1, + anon_sym_LPAREN, + STATE(1008), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11128), 2, - anon_sym_COMMA, - anon_sym_GT, - [193249] = 3, - ACTIONS(9237), 1, + [193315] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(2863), 1, + STATE(4770), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193260] = 3, - ACTIONS(11332), 1, + [193326] = 3, + ACTIONS(11359), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193271] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11334), 2, - anon_sym_COMMA, - anon_sym_GT, - [193280] = 2, + [193337] = 3, + ACTIONS(7608), 1, + anon_sym_RBRACE, + ACTIONS(11361), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1696), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [193289] = 3, - ACTIONS(9237), 1, + [193348] = 3, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(2818), 1, + STATE(7875), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193300] = 3, - ACTIONS(1918), 1, - anon_sym_LBRACE, - STATE(3353), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193311] = 3, - ACTIONS(11336), 1, - anon_sym_LBRACE, - STATE(2909), 1, - sym__block, + [193359] = 3, + ACTIONS(9257), 1, + anon_sym_LPAREN, + STATE(7890), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193322] = 3, - ACTIONS(1622), 1, - anon_sym_LBRACE, - STATE(3689), 1, - sym_lambda_literal, + [193370] = 3, + ACTIONS(3174), 1, + anon_sym_LPAREN, + STATE(3015), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193333] = 3, - ACTIONS(11338), 1, - sym__automatic_semicolon, - STATE(3917), 1, - sym__semi, + [193381] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193344] = 3, - ACTIONS(11340), 1, + ACTIONS(5079), 2, sym__automatic_semicolon, - STATE(3594), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193355] = 3, - ACTIONS(11342), 1, - anon_sym_DOT, - STATE(8620), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193366] = 3, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4483), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193377] = 3, - ACTIONS(11336), 1, - anon_sym_LBRACE, - STATE(2908), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193388] = 3, - ACTIONS(9224), 1, + anon_sym_RBRACE, + [193390] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3936), 1, + STATE(2809), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193399] = 3, - ACTIONS(10022), 1, - anon_sym_get, - ACTIONS(10024), 1, - anon_sym_set, + [193401] = 3, + ACTIONS(11363), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193410] = 3, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(3541), 1, - sym_function_value_parameters, + [193412] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(5087), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, [193421] = 3, - ACTIONS(5649), 1, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(5194), 1, - sym__class_parameters, + STATE(1232), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193432] = 3, - ACTIONS(9293), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(7884), 1, + STATE(8194), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193443] = 3, - ACTIONS(9245), 1, - anon_sym_LPAREN, - STATE(7873), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [193454] = 3, - ACTIONS(11344), 1, + ACTIONS(11365), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193465] = 3, - ACTIONS(9237), 1, + [193454] = 3, + ACTIONS(5123), 1, anon_sym_LPAREN, - STATE(2813), 1, - sym_function_value_parameters, + STATE(4564), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193476] = 2, + [193465] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5087), 2, + ACTIONS(4104), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [193485] = 2, + [193474] = 3, + ACTIONS(11367), 1, + anon_sym_DOT, + STATE(8684), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3084), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [193494] = 3, - ACTIONS(9224), 1, + [193485] = 3, + ACTIONS(5758), 1, anon_sym_LPAREN, - STATE(3945), 1, - sym_function_value_parameters, + STATE(5163), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193505] = 3, - ACTIONS(5171), 1, - anon_sym_LPAREN, - STATE(3052), 1, - sym__class_parameters, + [193496] = 3, + ACTIONS(11369), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193516] = 2, + [193507] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11067), 2, + ACTIONS(10950), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [193525] = 3, - ACTIONS(10168), 1, + anon_sym_GT, + [193516] = 3, + ACTIONS(11371), 1, anon_sym_LBRACE, - STATE(8117), 1, + STATE(915), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193536] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(2809), 1, - sym_function_value_parameters, + [193527] = 3, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(5066), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193547] = 3, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3238), 1, - sym_function_value_parameters, + [193538] = 3, + ACTIONS(10131), 1, + anon_sym_get, + ACTIONS(10133), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193558] = 3, - ACTIONS(11346), 1, - anon_sym_DOT, - STATE(8756), 1, - aux_sym_user_type_repeat1, + [193549] = 3, + ACTIONS(8295), 1, + anon_sym_LPAREN, + STATE(8182), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193569] = 3, - ACTIONS(9224), 1, + [193560] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(3956), 1, + STATE(2818), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193580] = 3, - ACTIONS(11348), 1, - anon_sym_DOT, - STATE(8694), 1, - aux_sym_user_type_repeat1, + [193571] = 3, + ACTIONS(9257), 1, + anon_sym_LPAREN, + STATE(7888), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193591] = 3, - ACTIONS(3158), 1, + [193582] = 3, + ACTIONS(5441), 1, anon_sym_LPAREN, - STATE(1029), 1, + STATE(3611), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193602] = 3, - ACTIONS(9846), 1, - anon_sym_get, - ACTIONS(9848), 1, - anon_sym_set, + [193593] = 3, + ACTIONS(11371), 1, + anon_sym_LBRACE, + STATE(909), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193613] = 3, - ACTIONS(11350), 1, + [193604] = 3, + ACTIONS(11373), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193624] = 3, - ACTIONS(5171), 1, - anon_sym_LPAREN, - STATE(3070), 1, - sym__class_parameters, + [193615] = 3, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4473), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193635] = 3, - ACTIONS(9245), 1, + [193626] = 3, + ACTIONS(10195), 1, anon_sym_LPAREN, - STATE(7876), 1, - sym_function_value_parameters, + STATE(8813), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [193637] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(1754), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, [193646] = 3, - ACTIONS(11352), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + ACTIONS(7876), 1, + anon_sym_LBRACE, + STATE(4486), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193657] = 3, - ACTIONS(11354), 1, + ACTIONS(11375), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193668] = 3, - ACTIONS(7425), 1, - anon_sym_RBRACE, - ACTIONS(11356), 1, - anon_sym_SEMI, + ACTIONS(6251), 1, + anon_sym_LBRACE, + STATE(3385), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193679] = 3, - ACTIONS(9245), 1, - anon_sym_LPAREN, - STATE(7872), 1, - sym_function_value_parameters, + [193679] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193690] = 2, + ACTIONS(11377), 2, + anon_sym_COMMA, + anon_sym_GT, + [193688] = 3, + ACTIONS(5135), 1, + anon_sym_LPAREN, + STATE(3005), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, [193699] = 3, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(5184), 1, - sym_function_value_parameters, + ACTIONS(11379), 1, + anon_sym_DOT, + STATE(8668), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193710] = 3, - ACTIONS(9315), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4519), 1, + STATE(4773), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, @@ -611693,829 +611917,834 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4087), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, + ACTIONS(11197), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [193730] = 3, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3230), 1, - sym_function_value_parameters, + ACTIONS(10173), 1, + anon_sym_get, + ACTIONS(10175), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193741] = 3, - ACTIONS(5401), 1, - anon_sym_LPAREN, - STATE(4869), 1, - sym__class_parameters, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(3380), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193752] = 3, - ACTIONS(10168), 1, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(8142), 1, + STATE(8015), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193763] = 3, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4518), 1, - sym_function_value_parameters, + ACTIONS(10087), 1, + anon_sym_get, + ACTIONS(10089), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193774] = 3, - ACTIONS(9224), 1, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2802), 1, + STATE(2826), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193785] = 3, - ACTIONS(5360), 1, - anon_sym_LPAREN, - STATE(3653), 1, - sym__class_parameters, + ACTIONS(10145), 1, + anon_sym_get, + ACTIONS(10147), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [193796] = 3, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4516), 1, - sym_function_value_parameters, + ACTIONS(11381), 1, + anon_sym_DOT, + STATE(8679), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193807] = 3, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(2799), 1, - sym_function_value_parameters, + [193807] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5111), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [193816] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193818] = 3, - ACTIONS(9224), 1, + ACTIONS(4398), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [193825] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(3964), 1, + STATE(2806), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193829] = 3, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(4484), 1, - sym__block, + [193836] = 3, + ACTIONS(5123), 1, + anon_sym_LPAREN, + STATE(4531), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193840] = 3, - ACTIONS(7559), 1, - anon_sym_RBRACE, - ACTIONS(11358), 1, - anon_sym_SEMI, + [193847] = 3, + ACTIONS(11383), 1, + anon_sym_DOT, + STATE(8736), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193851] = 3, - ACTIONS(1918), 1, - anon_sym_LBRACE, - STATE(3295), 1, - sym_lambda_literal, + [193858] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4678), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193862] = 3, - ACTIONS(11360), 1, - anon_sym_DOT, - STATE(8717), 1, - aux_sym_user_type_repeat1, + [193869] = 3, + ACTIONS(9301), 1, + anon_sym_LPAREN, + STATE(7879), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193873] = 3, - ACTIONS(9216), 1, + [193880] = 3, + ACTIONS(4843), 1, + anon_sym_while, + ACTIONS(11385), 1, anon_sym_LPAREN, - STATE(4821), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193884] = 3, - ACTIONS(10100), 1, - anon_sym_get, - ACTIONS(10102), 1, - anon_sym_set, + [193891] = 3, + ACTIONS(6404), 1, + anon_sym_LBRACE, + STATE(3792), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193895] = 2, + [193902] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5099), 2, + ACTIONS(5011), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [193904] = 3, - ACTIONS(11362), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [193911] = 3, + ACTIONS(1622), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193915] = 3, - ACTIONS(11364), 1, - anon_sym_DOT, - STATE(8737), 1, - aux_sym_user_type_repeat1, + [193922] = 3, + ACTIONS(1598), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193926] = 3, - ACTIONS(11366), 1, - anon_sym_DOT, - STATE(8693), 1, - aux_sym_user_type_repeat1, + [193933] = 3, + ACTIONS(4861), 1, + anon_sym_while, + ACTIONS(11387), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193937] = 3, - ACTIONS(9216), 1, + [193944] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [193953] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4809), 1, + STATE(2812), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193948] = 3, - ACTIONS(10008), 1, - anon_sym_get, - ACTIONS(10010), 1, - anon_sym_set, + [193964] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193959] = 2, + ACTIONS(4975), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [193973] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5083), 2, + ACTIONS(4412), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [193968] = 3, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(5189), 1, - sym_function_value_parameters, + [193982] = 3, + ACTIONS(11389), 1, + sym__automatic_semicolon, + STATE(3582), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193979] = 3, - ACTIONS(1403), 1, + [193993] = 3, + ACTIONS(1930), 1, anon_sym_LBRACE, - STATE(3228), 1, + STATE(3167), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [193990] = 3, - ACTIONS(5358), 1, - anon_sym_LBRACE, - STATE(3712), 1, - sym_class_body, + [194004] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194001] = 2, + ACTIONS(5107), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194013] = 3, + ACTIONS(1612), 1, + anon_sym_LBRACE, + STATE(3686), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11000), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [194010] = 3, - ACTIONS(6242), 1, - anon_sym_LBRACE, - STATE(2983), 1, - sym__block, + [194024] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194021] = 3, - ACTIONS(10056), 1, + ACTIONS(4951), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194033] = 3, + ACTIONS(9959), 1, anon_sym_get, - ACTIONS(10058), 1, + ACTIONS(9961), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194032] = 2, + [194044] = 3, + ACTIONS(11391), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10989), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [194041] = 3, - ACTIONS(4289), 1, - anon_sym_while, - ACTIONS(11368), 1, - anon_sym_LPAREN, + [194055] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194052] = 3, - ACTIONS(4144), 1, - anon_sym_while, - ACTIONS(11370), 1, + ACTIONS(3200), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194064] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, + STATE(2894), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194063] = 3, - ACTIONS(4109), 1, - anon_sym_in, - ACTIONS(11372), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194074] = 3, - ACTIONS(9200), 1, + [194075] = 3, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(3252), 1, + STATE(4675), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194085] = 2, + [194086] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4049), 2, + ACTIONS(3076), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194094] = 3, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8077), 1, - sym__block, + [194095] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194105] = 2, + ACTIONS(11393), 2, + anon_sym_COMMA, + anon_sym_GT, + [194104] = 3, + ACTIONS(7442), 1, + anon_sym_RBRACE, + ACTIONS(11395), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5019), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [194114] = 3, - ACTIONS(11374), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [194115] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4521), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [194126] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194125] = 3, - ACTIONS(6242), 1, + ACTIONS(4955), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194135] = 3, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(2937), 1, + STATE(8115), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194136] = 3, + [194146] = 3, ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(4615), 1, + STATE(4525), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194147] = 3, - ACTIONS(6231), 1, - anon_sym_LBRACE, - STATE(3186), 1, - sym__block, + [194157] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4533), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194158] = 3, - ACTIONS(11376), 1, - anon_sym_COLON, - ACTIONS(11378), 1, - anon_sym_RPAREN, + [194168] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(1243), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194169] = 3, - ACTIONS(5399), 1, - anon_sym_LBRACE, - STATE(4994), 1, - sym_class_body, + [194179] = 3, + ACTIONS(11397), 1, + anon_sym_DOT, + STATE(8699), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194180] = 3, - ACTIONS(9299), 1, + [194190] = 3, + ACTIONS(11399), 1, + sym__automatic_semicolon, + STATE(8768), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [194201] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4780), 1, + STATE(3030), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194191] = 3, - ACTIONS(9200), 1, + [194212] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(3264), 1, + STATE(2799), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194202] = 3, - ACTIONS(6459), 1, - anon_sym_LBRACE, - STATE(3860), 1, - sym__block, + [194223] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(1280), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194213] = 3, - ACTIONS(25), 1, - anon_sym_LBRACE, - STATE(4943), 1, - sym_lambda_literal, + [194234] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194224] = 3, - ACTIONS(9814), 1, - anon_sym_get, - ACTIONS(9816), 1, - anon_sym_set, + ACTIONS(11401), 2, + sym__import_list_delimiter, + anon_sym_import, + [194243] = 3, + ACTIONS(8238), 1, + anon_sym_LPAREN, + STATE(8145), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194235] = 3, - ACTIONS(1622), 1, - anon_sym_LBRACE, - STATE(3770), 1, - sym_lambda_literal, + [194254] = 3, + ACTIONS(11403), 1, + sym__automatic_semicolon, + STATE(3885), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194246] = 2, + [194265] = 3, + ACTIONS(11405), 1, + anon_sym_DOT, + STATE(8761), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11380), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [194255] = 3, - ACTIONS(7515), 1, - anon_sym_RBRACE, - ACTIONS(11382), 1, - anon_sym_SEMI, + [194276] = 3, + ACTIONS(10017), 1, + anon_sym_get, + ACTIONS(10019), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194266] = 3, - ACTIONS(9216), 1, + [194287] = 3, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(4442), 1, + STATE(4780), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194277] = 3, - ACTIONS(9880), 1, - anon_sym_get, - ACTIONS(9882), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194288] = 3, - ACTIONS(9896), 1, + [194298] = 3, + ACTIONS(9883), 1, anon_sym_get, - ACTIONS(9898), 1, + ACTIONS(9885), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194299] = 3, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8039), 1, - sym__block, + [194309] = 3, + ACTIONS(11407), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194310] = 3, - ACTIONS(5401), 1, + [194320] = 3, + ACTIONS(5407), 1, anon_sym_LPAREN, - STATE(4881), 1, + STATE(4880), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194321] = 3, - ACTIONS(11384), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194332] = 3, - ACTIONS(9224), 1, - anon_sym_LPAREN, - STATE(2832), 1, - sym_function_value_parameters, + [194331] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194343] = 3, - ACTIONS(9293), 1, + ACTIONS(3194), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194340] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(7891), 1, + STATE(3914), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194354] = 3, - ACTIONS(7864), 1, + [194351] = 3, + ACTIONS(25), 1, anon_sym_LBRACE, - STATE(4752), 1, - sym__block, + STATE(4937), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194365] = 3, - ACTIONS(9994), 1, - anon_sym_get, - ACTIONS(9996), 1, - anon_sym_set, + [194362] = 3, + ACTIONS(11409), 1, + sym__automatic_semicolon, + STATE(5546), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194376] = 2, + [194373] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10712), 2, + ACTIONS(4328), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194385] = 3, - ACTIONS(10070), 1, - anon_sym_get, - ACTIONS(10072), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194396] = 3, - ACTIONS(11386), 1, - anon_sym_DOT, - STATE(8785), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194407] = 2, + [194382] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10932), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [194416] = 3, + ACTIONS(11411), 2, + sym__import_list_delimiter, + anon_sym_import, + [194391] = 3, ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(1251), 1, + STATE(3938), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194427] = 3, - ACTIONS(3114), 1, - anon_sym_LPAREN, - STATE(3012), 1, - sym__class_parameters, + [194402] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194438] = 2, + ACTIONS(5069), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194411] = 3, + ACTIONS(10003), 1, + anon_sym_get, + ACTIONS(10005), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10921), 2, - anon_sym_COMMA, - anon_sym_GT, - [194447] = 3, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(789), 1, - sym_function_value_parameters, + [194422] = 3, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(8076), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194458] = 3, - ACTIONS(5177), 1, + [194433] = 3, + ACTIONS(5439), 1, anon_sym_LBRACE, - STATE(3195), 1, + STATE(3863), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194469] = 3, - ACTIONS(10142), 1, - anon_sym_get, - ACTIONS(10144), 1, - anon_sym_set, + [194444] = 3, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(4022), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194480] = 3, - ACTIONS(25), 1, + [194455] = 3, + ACTIONS(11413), 1, anon_sym_LBRACE, - STATE(5022), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194491] = 3, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(5143), 1, - sym_function_value_parameters, + STATE(2959), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194502] = 3, - ACTIONS(9216), 1, + [194466] = 3, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(4440), 1, + STATE(4776), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194513] = 2, + [194477] = 3, + ACTIONS(11415), 1, + anon_sym_DOT, + STATE(8785), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5077), 2, + [194488] = 3, + ACTIONS(11417), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [194522] = 3, - ACTIONS(9315), 1, - anon_sym_LPAREN, - STATE(4710), 1, - sym_function_value_parameters, + STATE(3917), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194533] = 3, - ACTIONS(11388), 1, + [194499] = 3, + ACTIONS(11419), 1, anon_sym_DOT, - STATE(8777), 1, + STATE(8780), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194544] = 3, - ACTIONS(11390), 1, + [194510] = 3, + ACTIONS(11421), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194555] = 3, - ACTIONS(1612), 1, - anon_sym_LBRACE, - STATE(1165), 1, - sym_lambda_literal, + [194521] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194566] = 3, - ACTIONS(11392), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym__block, + ACTIONS(4116), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194530] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194577] = 2, + ACTIONS(5019), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194539] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(5065), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194586] = 3, - ACTIONS(9315), 1, + [194548] = 3, + ACTIONS(11423), 1, + anon_sym_COLON, + ACTIONS(11425), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [194559] = 3, + ACTIONS(11427), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [194570] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(5193), 1, + STATE(3014), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194597] = 3, - ACTIONS(11394), 1, - anon_sym_COLON, - ACTIONS(11396), 1, - anon_sym_RPAREN, + [194581] = 3, + ACTIONS(4087), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194608] = 2, + [194592] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3190), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [194617] = 2, + ACTIONS(11429), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [194601] = 3, + ACTIONS(5441), 1, + anon_sym_LPAREN, + STATE(3636), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [194612] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3216), 2, + ACTIONS(4927), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194626] = 3, - ACTIONS(11398), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [194621] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194637] = 3, - ACTIONS(9293), 1, - anon_sym_LPAREN, - STATE(7878), 1, - sym_function_value_parameters, + ACTIONS(4644), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194630] = 3, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(8027), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194648] = 3, - ACTIONS(10128), 1, + [194641] = 3, + ACTIONS(9837), 1, anon_sym_get, - ACTIONS(10130), 1, + ACTIONS(9839), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194659] = 3, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(5114), 1, - sym_function_value_parameters, + [194652] = 3, + ACTIONS(10203), 1, + anon_sym_LBRACE, + STATE(8135), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194670] = 3, - ACTIONS(9216), 1, + [194663] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(5117), 1, + STATE(3912), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194681] = 3, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(4439), 1, - sym_function_value_parameters, + [194674] = 3, + ACTIONS(10059), 1, + anon_sym_get, + ACTIONS(10061), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194692] = 3, - ACTIONS(10084), 1, - anon_sym_get, - ACTIONS(10086), 1, - anon_sym_set, + [194685] = 3, + ACTIONS(5758), 1, + anon_sym_LPAREN, + STATE(5190), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194703] = 3, - ACTIONS(9216), 1, + [194696] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(5122), 1, + STATE(4013), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194714] = 2, + [194707] = 3, + ACTIONS(10181), 1, + anon_sym_LBRACE, + STATE(9005), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [194718] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4478), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194723] = 3, - ACTIONS(11392), 1, - anon_sym_LBRACE, - STATE(931), 1, - sym__block, + [194727] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194734] = 3, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(5125), 1, - sym_function_value_parameters, + ACTIONS(5075), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [194736] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(4931), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, [194745] = 3, - ACTIONS(9200), 1, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(3062), 1, + STATE(3027), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [194756] = 3, - ACTIONS(11400), 1, - sym__automatic_semicolon, - STATE(3822), 1, - sym__semi, + ACTIONS(9989), 1, + anon_sym_get, + ACTIONS(9991), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194767] = 2, + [194767] = 3, + ACTIONS(11431), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11402), 2, - anon_sym_COMMA, - anon_sym_GT, - [194776] = 3, - ACTIONS(9216), 1, + [194778] = 3, + ACTIONS(3130), 1, anon_sym_LPAREN, - STATE(4560), 1, - sym_function_value_parameters, + STATE(955), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194787] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(2829), 1, - sym_function_value_parameters, + [194789] = 3, + ACTIONS(11433), 1, + anon_sym_DOT, + STATE(8805), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194798] = 3, - ACTIONS(5649), 1, - anon_sym_LPAREN, - STATE(5141), 1, - sym__class_parameters, + [194800] = 3, + ACTIONS(11435), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194809] = 3, - ACTIONS(9200), 1, + [194811] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4028), 1, + STATE(2852), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194820] = 2, + [194822] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5031), 2, + ACTIONS(5103), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194829] = 3, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(4553), 1, - sym_function_value_parameters, + [194831] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(1770), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, [194840] = 3, - ACTIONS(6242), 1, - anon_sym_LBRACE, - STATE(3304), 1, - sym__block, + ACTIONS(10073), 1, + anon_sym_get, + ACTIONS(10075), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -612523,528 +612752,523 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5073), 2, + ACTIONS(11437), 2, sym__automatic_semicolon, - anon_sym_RBRACE, - [194860] = 3, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(4548), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194871] = 3, - ACTIONS(4955), 1, - anon_sym_while, - ACTIONS(11404), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, + [194860] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194882] = 3, - ACTIONS(4961), 1, - anon_sym_while, - ACTIONS(11406), 1, - anon_sym_LPAREN, + ACTIONS(10959), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [194869] = 3, + ACTIONS(11439), 1, + anon_sym_DOT, + STATE(8808), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194893] = 3, - ACTIONS(1403), 1, - anon_sym_LBRACE, - STATE(3282), 1, - sym_lambda_literal, + [194880] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194904] = 3, - ACTIONS(9795), 1, - anon_sym_get, - ACTIONS(9797), 1, - anon_sym_set, + ACTIONS(10945), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [194889] = 3, + ACTIONS(11441), 1, + anon_sym_DOT, + STATE(8819), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194915] = 3, - ACTIONS(9216), 1, + [194900] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(4539), 1, + STATE(3981), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194926] = 3, - ACTIONS(11408), 1, + [194911] = 3, + ACTIONS(11443), 1, anon_sym_DOT, - STATE(8626), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194937] = 3, - ACTIONS(11410), 1, - sym__automatic_semicolon, - STATE(3647), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [194948] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4752), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [194957] = 2, + [194922] = 3, + ACTIONS(9482), 1, + anon_sym_get, + ACTIONS(9484), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11412), 2, - anon_sym_COMMA, - anon_sym_GT, - [194966] = 3, - ACTIONS(9247), 1, + [194933] = 3, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(1219), 1, + STATE(8236), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [194977] = 2, + [194944] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4406), 2, + ACTIONS(10765), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [194986] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11414), 2, - sym__import_list_delimiter, - anon_sym_import, - [194995] = 2, + [194953] = 3, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(2994), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4911), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195004] = 2, + [194964] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4915), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195013] = 2, + ACTIONS(10930), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [194973] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 2, + ACTIONS(4122), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195022] = 2, + [194982] = 3, + ACTIONS(11413), 1, + anon_sym_LBRACE, + STATE(2957), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4923), 2, - sym__automatic_semicolon, + [194993] = 3, + ACTIONS(7466), 1, anon_sym_RBRACE, - [195031] = 2, + ACTIONS(11445), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4487), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195040] = 3, - ACTIONS(7571), 1, - anon_sym_RBRACE, - ACTIONS(11416), 1, - anon_sym_SEMI, + [195004] = 3, + ACTIONS(11447), 1, + anon_sym_DOT, + STATE(8831), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195051] = 2, + [195015] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3340), 2, + ACTIONS(5099), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195060] = 3, - ACTIONS(11418), 1, - anon_sym_DOT, - STATE(8828), 1, - aux_sym_user_type_repeat1, + [195024] = 3, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(4441), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195071] = 3, - ACTIONS(11420), 1, + [195035] = 3, + ACTIONS(11449), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195082] = 3, - ACTIONS(10168), 1, - anon_sym_LBRACE, - STATE(8099), 1, - sym__block, + [195046] = 3, + ACTIONS(9241), 1, + anon_sym_LPAREN, + STATE(2880), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195093] = 3, - ACTIONS(11422), 1, - anon_sym_DOT, - STATE(8883), 1, - aux_sym_user_type_repeat1, + [195057] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(852), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195104] = 2, + [195068] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 2, + ACTIONS(5095), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195113] = 2, + [195077] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(849), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4519), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195122] = 3, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4795), 1, - sym__block, + [195088] = 3, + ACTIONS(5407), 1, + anon_sym_LPAREN, + STATE(4866), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195133] = 3, - ACTIONS(9460), 1, - anon_sym_get, - ACTIONS(9462), 1, - anon_sym_set, + [195099] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(848), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195144] = 2, + [195110] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(847), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195153] = 3, - ACTIONS(7569), 1, - anon_sym_RBRACE, - ACTIONS(11424), 1, - anon_sym_SEMI, + [195121] = 3, + ACTIONS(9241), 1, + anon_sym_LPAREN, + STATE(3653), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195164] = 2, + [195132] = 3, + ACTIONS(9243), 1, + anon_sym_LPAREN, + STATE(1254), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10861), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [195173] = 2, + [195143] = 3, + ACTIONS(9241), 1, + anon_sym_LPAREN, + STATE(3662), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1780), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195182] = 3, - ACTIONS(11426), 1, + [195154] = 3, + ACTIONS(11451), 1, anon_sym_DOT, - STATE(8841), 1, + STATE(8844), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195193] = 3, - ACTIONS(11428), 1, - anon_sym_DOT, - STATE(8889), 1, - aux_sym_user_type_repeat1, + [195165] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195204] = 3, - ACTIONS(11430), 1, + ACTIONS(5057), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [195174] = 3, + ACTIONS(11453), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195215] = 2, + [195185] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4937), 2, + ACTIONS(205), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195224] = 3, - ACTIONS(9247), 1, + [195194] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(1246), 1, + STATE(3659), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195235] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4511), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195244] = 3, - ACTIONS(9830), 1, - anon_sym_get, - ACTIONS(9832), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195255] = 3, - ACTIONS(9200), 1, + [195205] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4005), 1, + STATE(3645), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195266] = 2, + [195216] = 3, + ACTIONS(9307), 1, + anon_sym_LPAREN, + STATE(4775), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4941), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195275] = 3, - ACTIONS(11432), 1, - sym__automatic_semicolon, - STATE(8819), 1, - sym__semi, + [195227] = 3, + ACTIONS(1612), 1, + anon_sym_LBRACE, + STATE(3868), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195286] = 3, - ACTIONS(9315), 1, + [195238] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(4744), 1, + STATE(3522), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195297] = 2, + [195249] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4907), 2, + ACTIONS(3208), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195306] = 2, + [195258] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4392), 2, + ACTIONS(4110), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195315] = 3, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(4755), 1, - sym_function_value_parameters, + [195267] = 3, + ACTIONS(11455), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195326] = 3, - ACTIONS(9224), 1, + [195278] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(2826), 1, + STATE(3533), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195337] = 3, - ACTIONS(9200), 1, + [195289] = 3, + ACTIONS(11457), 1, + anon_sym_DOT, + STATE(8866), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [195300] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3934), 1, + STATE(4445), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195348] = 3, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(4794), 1, - sym__block, + [195311] = 3, + ACTIONS(9301), 1, + anon_sym_LPAREN, + STATE(7874), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195359] = 2, + [195322] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4503), 2, + ACTIONS(4484), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195368] = 2, + [195331] = 3, + ACTIONS(9780), 1, + anon_sym_get, + ACTIONS(9782), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5061), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195377] = 2, + [195342] = 3, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3475), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11434), 2, - sym__import_list_delimiter, - anon_sym_import, - [195386] = 2, + [195353] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4945), 2, + ACTIONS(5053), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195395] = 2, + [195362] = 3, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(5010), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7539), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [195404] = 2, + [195373] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195413] = 3, - ACTIONS(8234), 1, + ACTIONS(10891), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [195382] = 3, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(8018), 1, - sym__class_parameters, + STATE(4677), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195424] = 3, - ACTIONS(7555), 1, - anon_sym_RBRACE, - ACTIONS(11436), 1, - anon_sym_SEMI, + [195393] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195435] = 3, - ACTIONS(9952), 1, - anon_sym_get, - ACTIONS(9954), 1, - anon_sym_set, + ACTIONS(5083), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [195402] = 3, + ACTIONS(11459), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195446] = 3, - ACTIONS(9200), 1, + [195413] = 3, + ACTIONS(9247), 1, anon_sym_LPAREN, - STATE(3041), 1, + STATE(3539), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195457] = 3, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3914), 1, - sym_function_value_parameters, + [195424] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195468] = 2, + ACTIONS(5049), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [195433] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1772), 2, + ACTIONS(5045), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195477] = 3, - ACTIONS(9200), 1, + [195442] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3995), 1, + STATE(4444), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195488] = 2, + [195453] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 2, + ACTIONS(4625), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195497] = 3, - ACTIONS(5360), 1, + [195462] = 3, + ACTIONS(9853), 1, + anon_sym_get, + ACTIONS(9855), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [195473] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3567), 1, - sym__class_parameters, + STATE(4442), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195508] = 2, + [195484] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4967), 2, + ACTIONS(1764), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195517] = 3, - ACTIONS(9757), 1, + [195493] = 3, + ACTIONS(9945), 1, anon_sym_get, - ACTIONS(9759), 1, + ACTIONS(9947), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195528] = 2, + [195504] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4676), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [195515] = 3, + ACTIONS(9913), 1, + anon_sym_get, + ACTIONS(9915), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [195526] = 3, + ACTIONS(11461), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4971), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, [195537] = 3, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3045), 1, - sym_function_value_parameters, + ACTIONS(11463), 1, + anon_sym_DOT, + STATE(8878), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [195548] = 3, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3903), 1, - sym_function_value_parameters, + ACTIONS(1622), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -613052,9472 +613276,9456 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4975), 2, + ACTIONS(1782), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195568] = 3, - ACTIONS(11438), 1, - anon_sym_DOT, - STATE(8895), 1, - aux_sym_user_type_repeat1, + [195568] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4288), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [195577] = 3, + ACTIONS(10159), 1, + anon_sym_get, + ACTIONS(10161), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195579] = 3, - ACTIONS(9200), 1, + [195588] = 3, + ACTIONS(8238), 1, anon_sym_LPAREN, - STATE(3961), 1, - sym_function_value_parameters, + STATE(8107), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195590] = 3, - ACTIONS(11440), 1, - anon_sym_DOT, - STATE(8900), 1, - aux_sym_user_type_repeat1, + [195599] = 3, + ACTIONS(9247), 1, + anon_sym_LPAREN, + STATE(3939), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195601] = 3, - ACTIONS(3144), 1, + [195610] = 3, + ACTIONS(10203), 1, anon_sym_LBRACE, - STATE(3320), 1, - sym_class_body, + STATE(8009), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195612] = 2, + [195621] = 3, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(3131), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4346), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195621] = 2, + [195632] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3200), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195630] = 3, - ACTIONS(11442), 1, + ACTIONS(11465), 2, + anon_sym_COMMA, + anon_sym_GT, + [195641] = 3, + ACTIONS(11467), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(8923), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195641] = 3, - ACTIONS(9966), 1, - anon_sym_get, - ACTIONS(9968), 1, - anon_sym_set, + [195652] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195652] = 3, - ACTIONS(9224), 1, + ACTIONS(5029), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [195661] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(2997), 1, + STATE(3139), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195663] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4808), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, [195672] = 3, - ACTIONS(9980), 1, + ACTIONS(9804), 1, anon_sym_get, - ACTIONS(9982), 1, + ACTIONS(9806), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195683] = 2, + [195683] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10836), 2, + anon_sym_COMMA, + anon_sym_GT, + [195692] = 3, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(3188), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [195703] = 3, + ACTIONS(11469), 1, + anon_sym_DOT, + STATE(8897), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10790), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [195692] = 3, - ACTIONS(11444), 1, + [195714] = 3, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4781), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [195725] = 3, + ACTIONS(11471), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195703] = 2, + [195736] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(199), 2, + ACTIONS(4344), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195712] = 2, + [195745] = 3, + ACTIONS(9283), 1, + anon_sym_LPAREN, + STATE(3199), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4987), 2, + [195756] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11473), 2, + anon_sym_COMMA, + anon_sym_GT, + [195765] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4500), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195721] = 3, - ACTIONS(9224), 1, + [195774] = 3, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(2998), 1, + STATE(5175), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195732] = 3, - ACTIONS(9315), 1, + [195785] = 3, + ACTIONS(9241), 1, anon_sym_LPAREN, - STATE(4684), 1, + STATE(2887), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195743] = 2, + [195796] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4101), 2, + ACTIONS(5023), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195752] = 3, - ACTIONS(11446), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, + [195805] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195763] = 2, + ACTIONS(10821), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [195814] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(5171), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11448), 2, - anon_sym_COMMA, - anon_sym_GT, - [195772] = 2, + [195825] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1754), 2, + ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195781] = 3, - ACTIONS(10182), 1, - anon_sym_LPAREN, - STATE(8905), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195792] = 2, + [195834] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4824), 2, + ACTIONS(5015), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195801] = 3, - ACTIONS(11450), 1, + [195843] = 3, + ACTIONS(11475), 1, anon_sym_DOT, - STATE(7633), 1, + STATE(7611), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195812] = 3, - ACTIONS(1612), 1, - anon_sym_LBRACE, - STATE(1102), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195823] = 2, + [195854] = 3, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(5099), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5005), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195832] = 2, + [195865] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5027), 2, + ACTIONS(1696), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195841] = 3, - ACTIONS(9938), 1, + [195874] = 3, + ACTIONS(9929), 1, anon_sym_get, - ACTIONS(9940), 1, + ACTIONS(9931), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195852] = 2, + [195885] = 3, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(5168), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11452), 2, - sym__automatic_semicolon, - anon_sym_LBRACE, - [195861] = 2, + [195896] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1766), 2, + ACTIONS(4320), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195870] = 3, - ACTIONS(8234), 1, - anon_sym_LPAREN, - STATE(8083), 1, - sym__class_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195881] = 3, - ACTIONS(11454), 1, - anon_sym_LBRACE, - STATE(3492), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195892] = 3, - ACTIONS(9224), 1, + [195905] = 3, + ACTIONS(9315), 1, anon_sym_LPAREN, - STATE(2999), 1, + STATE(5165), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195903] = 3, - ACTIONS(4039), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195914] = 3, - ACTIONS(11456), 1, + [195916] = 3, + ACTIONS(11477), 1, anon_sym_DOT, - STATE(8913), 1, + STATE(8909), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195925] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4303), 2, - sym__automatic_semicolon, + [195927] = 3, + ACTIONS(7450), 1, anon_sym_RBRACE, - [195934] = 3, - ACTIONS(11458), 1, - anon_sym_DOT, - STATE(7633), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195945] = 2, + ACTIONS(11479), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4991), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195954] = 3, - ACTIONS(9924), 1, + [195938] = 3, + ACTIONS(10045), 1, anon_sym_get, - ACTIONS(9926), 1, + ACTIONS(10047), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [195965] = 2, + [195949] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4342), 2, + ACTIONS(5041), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [195974] = 3, - ACTIONS(9910), 1, - anon_sym_get, - ACTIONS(9912), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [195985] = 2, + [195958] = 3, + ACTIONS(7946), 1, + anon_sym_LBRACE, + STATE(4777), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [195994] = 3, - ACTIONS(9224), 1, + [195969] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3001), 1, + STATE(5100), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196005] = 3, - ACTIONS(5115), 1, - anon_sym_LPAREN, - STATE(4555), 1, - sym__class_parameters, + [195980] = 3, + ACTIONS(11481), 1, + anon_sym_DOT, + STATE(8853), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196016] = 3, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(5033), 1, - sym__block, + [195991] = 3, + ACTIONS(11483), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196027] = 2, + [196002] = 3, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(5104), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4997), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [196036] = 3, - ACTIONS(9200), 1, + [196013] = 3, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(3975), 1, + STATE(5105), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196047] = 3, - ACTIONS(9200), 1, - anon_sym_LPAREN, - STATE(3050), 1, - sym_function_value_parameters, + [196024] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196058] = 3, - ACTIONS(9245), 1, - anon_sym_LPAREN, - STATE(7875), 1, - sym_function_value_parameters, + ACTIONS(4621), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [196033] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196069] = 2, + ACTIONS(3342), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [196042] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5001), 2, + ACTIONS(4454), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [196078] = 3, - ACTIONS(11460), 1, - anon_sym_DOT, - STATE(8690), 1, - aux_sym_user_type_repeat1, + [196051] = 3, + ACTIONS(3128), 1, + anon_sym_LBRACE, + STATE(1041), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196089] = 2, + [196062] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4231), 2, + ACTIONS(5061), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [196098] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3523), 1, - sym_function_value_parameters, + [196071] = 3, + ACTIONS(7495), 1, + anon_sym_RBRACE, + ACTIONS(11485), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196109] = 3, - ACTIONS(9866), 1, + [196082] = 3, + ACTIONS(10101), 1, anon_sym_get, - ACTIONS(9868), 1, + ACTIONS(10103), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196120] = 3, - ACTIONS(11454), 1, - anon_sym_LBRACE, - STATE(3496), 1, - sym__block, + [196093] = 3, + ACTIONS(7481), 1, + anon_sym_RBRACE, + ACTIONS(11487), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196131] = 3, - ACTIONS(9247), 1, + [196104] = 3, + ACTIONS(9283), 1, anon_sym_LPAREN, - STATE(1242), 1, + STATE(3989), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196142] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3517), 1, - sym_function_value_parameters, + [196115] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4470), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [196124] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196153] = 3, - ACTIONS(10114), 1, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [196133] = 3, + ACTIONS(10031), 1, anon_sym_get, - ACTIONS(10116), 1, + ACTIONS(10033), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196164] = 3, - ACTIONS(3180), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_class_body, + [196144] = 3, + ACTIONS(11489), 1, + anon_sym_DOT, + STATE(8939), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196175] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3521), 1, - sym_function_value_parameters, + [196155] = 3, + ACTIONS(11491), 1, + anon_sym_DOT, + STATE(7611), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196186] = 2, + [196166] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 2, + ACTIONS(4999), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [196195] = 3, - ACTIONS(9247), 1, + [196175] = 3, + ACTIONS(3174), 1, anon_sym_LPAREN, - STATE(1217), 1, - sym_function_value_parameters, + STATE(3054), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196206] = 2, + [196186] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 2, + ACTIONS(5033), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [196215] = 3, - ACTIONS(9237), 1, - anon_sym_LPAREN, - STATE(3518), 1, - sym_function_value_parameters, + [196195] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196226] = 2, + ACTIONS(3266), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [196204] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4033), 2, + ACTIONS(4995), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [196235] = 3, - ACTIONS(9247), 1, + [196213] = 3, + ACTIONS(9243), 1, anon_sym_LPAREN, - STATE(1218), 1, + STATE(1248), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196246] = 3, - ACTIONS(9773), 1, + [196224] = 3, + ACTIONS(9869), 1, anon_sym_get, - ACTIONS(9775), 1, + ACTIONS(9871), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [196257] = 3, - ACTIONS(9247), 1, - anon_sym_LPAREN, - STATE(1220), 1, - sym_function_value_parameters, + [196235] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4991), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [196244] = 2, + ACTIONS(11493), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [196252] = 2, + ACTIONS(11495), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [196260] = 2, + ACTIONS(11497), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196268] = 2, - ACTIONS(11462), 1, - anon_sym_LBRACE, + ACTIONS(11499), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196276] = 2, - ACTIONS(11464), 1, - anon_sym_in, + ACTIONS(11501), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196284] = 2, - ACTIONS(11466), 1, - anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196292] = 2, - ACTIONS(11468), 1, - anon_sym_LPAREN, + ACTIONS(11505), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196300] = 2, - ACTIONS(11470), 1, - anon_sym_RPAREN, + ACTIONS(11507), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196308] = 2, - ACTIONS(11472), 1, - anon_sym_in, + ACTIONS(11509), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196316] = 2, - ACTIONS(11474), 1, - anon_sym_in, + ACTIONS(4269), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196324] = 2, - ACTIONS(10765), 1, - sym__automatic_semicolon, + ACTIONS(11511), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196332] = 2, - ACTIONS(11476), 1, - anon_sym_LPAREN, + ACTIONS(11513), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196340] = 2, - ACTIONS(10767), 1, - sym__automatic_semicolon, + ACTIONS(11515), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196348] = 2, - ACTIONS(11478), 1, - anon_sym_COLON, + ACTIONS(11517), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196356] = 2, - ACTIONS(11480), 1, - sym__automatic_semicolon, + ACTIONS(11519), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196364] = 2, - ACTIONS(11482), 1, - anon_sym_else, + ACTIONS(10721), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196372] = 2, - ACTIONS(11484), 1, - anon_sym_in, + ACTIONS(9350), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196380] = 2, - ACTIONS(10779), 1, - sym__automatic_semicolon, + ACTIONS(11521), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196388] = 2, - ACTIONS(10781), 1, - sym__automatic_semicolon, + ACTIONS(11523), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196396] = 2, - ACTIONS(11486), 1, - sym__automatic_semicolon, + ACTIONS(11525), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196404] = 2, - ACTIONS(11488), 1, - anon_sym_LPAREN, + ACTIONS(11527), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196412] = 2, - ACTIONS(11490), 1, - anon_sym_class, + ACTIONS(11529), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196420] = 2, - ACTIONS(11492), 1, - anon_sym_in, + ACTIONS(11531), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196428] = 2, - ACTIONS(11494), 1, - anon_sym_DASH_GT, + ACTIONS(11533), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196436] = 2, - ACTIONS(11496), 1, - anon_sym_LBRACE, + ACTIONS(11535), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196444] = 2, - ACTIONS(11498), 1, - anon_sym_LPAREN, + ACTIONS(11537), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196452] = 2, - ACTIONS(11500), 1, + ACTIONS(11225), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196460] = 2, - ACTIONS(11502), 1, - anon_sym_in, + ACTIONS(11539), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196468] = 2, - ACTIONS(11504), 1, - anon_sym_LPAREN, + ACTIONS(11541), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196476] = 2, - ACTIONS(11506), 1, - sym__automatic_semicolon, + ACTIONS(11543), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196484] = 2, - ACTIONS(11508), 1, - sym__automatic_semicolon, + ACTIONS(11545), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196492] = 2, - ACTIONS(11510), 1, - sym__automatic_semicolon, + ACTIONS(11547), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196500] = 2, - ACTIONS(11512), 1, - anon_sym_LBRACE, + ACTIONS(11549), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196508] = 2, - ACTIONS(11514), 1, - anon_sym_LPAREN, + ACTIONS(11551), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196516] = 2, - ACTIONS(11516), 1, - anon_sym_in, + ACTIONS(11553), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196524] = 2, - ACTIONS(11518), 1, - anon_sym_RPAREN, + ACTIONS(11555), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196532] = 2, - ACTIONS(11520), 1, - anon_sym_in, + ACTIONS(11557), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196540] = 2, - ACTIONS(11522), 1, - anon_sym_LPAREN, + ACTIONS(11559), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196548] = 2, - ACTIONS(11524), 1, - anon_sym_LPAREN, + ACTIONS(11561), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196556] = 2, - ACTIONS(11526), 1, - anon_sym_LPAREN, + ACTIONS(11563), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196564] = 2, - ACTIONS(11528), 1, - anon_sym_COLON, + ACTIONS(11565), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196572] = 2, - ACTIONS(11530), 1, - anon_sym_in, + ACTIONS(11567), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196580] = 2, - ACTIONS(11532), 1, - anon_sym_in, + ACTIONS(11569), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196588] = 2, - ACTIONS(11534), 1, - sym__automatic_semicolon, + ACTIONS(11571), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196596] = 2, - ACTIONS(11536), 1, - anon_sym_in, + ACTIONS(11573), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196604] = 2, - ACTIONS(11538), 1, - anon_sym_LPAREN, + ACTIONS(11575), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196612] = 2, - ACTIONS(11540), 1, + ACTIONS(11577), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196620] = 2, - ACTIONS(11542), 1, - anon_sym_LPAREN, + ACTIONS(11579), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196628] = 2, - ACTIONS(11544), 1, - anon_sym_LPAREN, + ACTIONS(11209), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196636] = 2, - ACTIONS(3084), 1, - anon_sym_while, + ACTIONS(11581), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196644] = 2, - ACTIONS(11546), 1, - anon_sym_in, + ACTIONS(11583), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196652] = 2, - ACTIONS(3200), 1, - anon_sym_while, + ACTIONS(11211), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196660] = 2, - ACTIONS(11548), 1, - anon_sym_LPAREN, + ACTIONS(11585), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196668] = 2, - ACTIONS(11550), 1, + ACTIONS(11587), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196676] = 2, - ACTIONS(11552), 1, - anon_sym_class, + ACTIONS(11589), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196684] = 2, - ACTIONS(11554), 1, - anon_sym_class, + ACTIONS(11591), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196692] = 2, - ACTIONS(11556), 1, - anon_sym_class, + ACTIONS(11593), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196700] = 2, - ACTIONS(11558), 1, - anon_sym_class, + ACTIONS(11595), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196708] = 2, - ACTIONS(11560), 1, - anon_sym_class, + ACTIONS(11597), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196716] = 2, - ACTIONS(11562), 1, - anon_sym_class, + ACTIONS(11599), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196724] = 2, - ACTIONS(11564), 1, - anon_sym_class, + ACTIONS(11601), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196732] = 2, - ACTIONS(11566), 1, - anon_sym_class, + ACTIONS(11603), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196740] = 2, - ACTIONS(11568), 1, - anon_sym_LPAREN, + ACTIONS(11605), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196748] = 2, - ACTIONS(11570), 1, - anon_sym_class, + ACTIONS(11607), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196756] = 2, - ACTIONS(11572), 1, - anon_sym_class, + ACTIONS(11609), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196764] = 2, - ACTIONS(11574), 1, - anon_sym_in, + ACTIONS(11611), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196772] = 2, - ACTIONS(11576), 1, - anon_sym_in, + ACTIONS(11613), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196780] = 2, - ACTIONS(11578), 1, - anon_sym_LPAREN, + ACTIONS(11615), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196788] = 2, - ACTIONS(11580), 1, + ACTIONS(11617), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196796] = 2, - ACTIONS(11582), 1, - anon_sym_COLON, + ACTIONS(11619), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196804] = 2, - ACTIONS(11584), 1, - anon_sym_EQ, + ACTIONS(11621), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196812] = 2, - ACTIONS(11586), 1, - anon_sym_class, + ACTIONS(11623), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196820] = 2, - ACTIONS(11588), 1, + ACTIONS(11625), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196828] = 2, - ACTIONS(3280), 1, - anon_sym_while, + ACTIONS(11627), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196836] = 2, - ACTIONS(11590), 1, - anon_sym_RPAREN, + ACTIONS(11629), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196844] = 2, - ACTIONS(4812), 1, - anon_sym_while, + ACTIONS(11631), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196852] = 2, - ACTIONS(11592), 1, - anon_sym_in, + ACTIONS(11633), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196860] = 2, - ACTIONS(11594), 1, - anon_sym_in, + ACTIONS(11635), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196868] = 2, - ACTIONS(11596), 1, - anon_sym_LPAREN, + ACTIONS(11637), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196876] = 2, - ACTIONS(4907), 1, - anon_sym_while, + ACTIONS(11639), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196884] = 2, - ACTIONS(11598), 1, - anon_sym_LPAREN, + ACTIONS(11641), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196892] = 2, - ACTIONS(4303), 1, - anon_sym_while, + ACTIONS(11643), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196900] = 2, - ACTIONS(3190), 1, - anon_sym_while, + ACTIONS(11645), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196908] = 2, - ACTIONS(11600), 1, - anon_sym_LPAREN, + ACTIONS(11647), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196916] = 2, - ACTIONS(11602), 1, + ACTIONS(11649), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196924] = 2, - ACTIONS(1786), 1, - anon_sym_while, + ACTIONS(11651), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196932] = 2, - ACTIONS(11604), 1, - anon_sym_in, + ACTIONS(10954), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196940] = 2, - ACTIONS(4049), 1, - anon_sym_while, + ACTIONS(11653), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196948] = 2, - ACTIONS(5019), 1, - anon_sym_while, + ACTIONS(10938), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196956] = 2, - ACTIONS(11606), 1, - anon_sym_in, + ACTIONS(10936), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196964] = 2, - ACTIONS(5027), 1, - anon_sym_while, + ACTIONS(11655), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196972] = 2, - ACTIONS(4402), 1, - anon_sym_while, + ACTIONS(11657), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196980] = 2, - ACTIONS(11608), 1, - anon_sym_in, + ACTIONS(11659), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196988] = 2, - ACTIONS(5039), 1, - anon_sym_while, + ACTIONS(11661), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [196996] = 2, - ACTIONS(4186), 1, - anon_sym_while, + ACTIONS(11663), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197004] = 2, - ACTIONS(9329), 1, - sym__automatic_semicolon, + ACTIONS(11665), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197012] = 2, - ACTIONS(5031), 1, - anon_sym_while, + ACTIONS(11667), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197020] = 2, - ACTIONS(10699), 1, + ACTIONS(11669), 1, sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197028] = 2, - ACTIONS(5087), 1, - anon_sym_while, + ACTIONS(11671), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197036] = 2, - ACTIONS(11610), 1, - anon_sym_LPAREN, + ACTIONS(11673), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197044] = 2, - ACTIONS(11612), 1, - anon_sym_in, + ACTIONS(11675), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197052] = 2, - ACTIONS(11614), 1, - anon_sym_in, + ACTIONS(11677), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197060] = 2, - ACTIONS(11616), 1, - anon_sym_RPAREN, + ACTIONS(11679), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197068] = 2, - ACTIONS(11618), 1, - anon_sym_LPAREN, + ACTIONS(11681), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197076] = 2, - ACTIONS(11620), 1, - anon_sym_LPAREN, + ACTIONS(11683), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197084] = 2, - ACTIONS(11622), 1, + ACTIONS(10814), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197092] = 2, - ACTIONS(11624), 1, - anon_sym_RPAREN, + ACTIONS(11685), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197100] = 2, - ACTIONS(11626), 1, - anon_sym_DASH_GT, + ACTIONS(11687), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197108] = 2, - ACTIONS(11628), 1, - anon_sym_RPAREN, + ACTIONS(11689), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197116] = 2, - ACTIONS(11630), 1, - anon_sym_in, + ACTIONS(11691), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197124] = 2, - ACTIONS(4266), 1, - anon_sym_DASH_GT, + ACTIONS(11693), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197132] = 2, - ACTIONS(11632), 1, - anon_sym_in, + ACTIONS(11695), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197140] = 2, - ACTIONS(11634), 1, - anon_sym_in, + ACTIONS(11697), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197148] = 2, - ACTIONS(1696), 1, - anon_sym_while, + ACTIONS(10897), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197156] = 2, - ACTIONS(11636), 1, - anon_sym_LPAREN, + ACTIONS(11699), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197164] = 2, - ACTIONS(11638), 1, - anon_sym_LPAREN, + ACTIONS(11701), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197172] = 2, - ACTIONS(11640), 1, - anon_sym_LPAREN, + ACTIONS(11703), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197180] = 2, - ACTIONS(11642), 1, - anon_sym_in, + ACTIONS(11705), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197188] = 2, - ACTIONS(11644), 1, - anon_sym_LPAREN, + ACTIONS(11707), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197196] = 2, - ACTIONS(5099), 1, - anon_sym_while, + ACTIONS(11709), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197204] = 2, - ACTIONS(11646), 1, - anon_sym_LPAREN, + ACTIONS(11711), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197212] = 2, - ACTIONS(5083), 1, - anon_sym_while, + ACTIONS(11713), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197220] = 2, - ACTIONS(5077), 1, + ACTIONS(3076), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197228] = 2, - ACTIONS(4654), 1, - anon_sym_while, + ACTIONS(11715), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197236] = 2, - ACTIONS(11648), 1, - anon_sym_EQ, + ACTIONS(11026), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197244] = 2, - ACTIONS(11650), 1, - anon_sym_in, + ACTIONS(10237), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197252] = 2, - ACTIONS(11652), 1, + ACTIONS(11717), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197260] = 2, - ACTIONS(11654), 1, - anon_sym_COLON, + ACTIONS(11719), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197268] = 2, - ACTIONS(11656), 1, - anon_sym_LPAREN, + ACTIONS(3194), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197276] = 2, - ACTIONS(3216), 1, - anon_sym_while, + ACTIONS(11721), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197284] = 2, - ACTIONS(5073), 1, - anon_sym_while, + ACTIONS(11723), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197292] = 2, - ACTIONS(4406), 1, - anon_sym_while, + ACTIONS(11725), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197300] = 2, - ACTIONS(11658), 1, - anon_sym_LPAREN, + ACTIONS(11727), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197308] = 2, - ACTIONS(4503), 1, - anon_sym_while, + ACTIONS(11729), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197316] = 2, - ACTIONS(11660), 1, + ACTIONS(11731), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197324] = 2, - ACTIONS(5061), 1, + ACTIONS(3266), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197332] = 2, - ACTIONS(11662), 1, - anon_sym_in, + ACTIONS(11733), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197340] = 2, - ACTIONS(1754), 1, - anon_sym_while, + ACTIONS(11735), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197348] = 2, - ACTIONS(4087), 1, - anon_sym_while, + ACTIONS(11737), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197356] = 2, - ACTIONS(11664), 1, - anon_sym_LPAREN, + ACTIONS(11739), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197364] = 2, - ACTIONS(4033), 1, + ACTIONS(4955), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197372] = 2, - ACTIONS(11666), 1, - anon_sym_in, + ACTIONS(10792), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197380] = 2, - ACTIONS(5047), 1, - anon_sym_while, + ACTIONS(11741), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197388] = 2, - ACTIONS(11668), 1, - anon_sym_COLON, + ACTIONS(11743), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197396] = 2, - ACTIONS(5043), 1, - anon_sym_while, + ACTIONS(11745), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197404] = 2, - ACTIONS(5035), 1, - anon_sym_while, + ACTIONS(11747), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197412] = 2, - ACTIONS(4231), 1, - anon_sym_while, + ACTIONS(11749), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197420] = 2, - ACTIONS(5001), 1, - anon_sym_while, + ACTIONS(10973), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197428] = 2, - ACTIONS(4997), 1, - anon_sym_while, + ACTIONS(11751), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197436] = 2, - ACTIONS(4595), 1, - anon_sym_while, + ACTIONS(11753), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197444] = 2, - ACTIONS(4342), 1, - anon_sym_while, + ACTIONS(11755), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197452] = 2, - ACTIONS(4991), 1, - anon_sym_while, + ACTIONS(11757), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197460] = 2, - ACTIONS(11670), 1, + ACTIONS(11759), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197468] = 2, - ACTIONS(1766), 1, - anon_sym_while, + ACTIONS(11761), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197476] = 2, - ACTIONS(11672), 1, - anon_sym_LPAREN, + ACTIONS(4927), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197484] = 2, - ACTIONS(4101), 1, - anon_sym_while, + ACTIONS(11763), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197492] = 2, - ACTIONS(4987), 1, - anon_sym_while, + ACTIONS(11765), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197500] = 2, - ACTIONS(199), 1, - anon_sym_while, + ACTIONS(11767), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197508] = 2, - ACTIONS(4346), 1, - anon_sym_while, + ACTIONS(11769), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197516] = 2, - ACTIONS(4975), 1, + ACTIONS(4344), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197524] = 2, - ACTIONS(4971), 1, - anon_sym_while, + ACTIONS(11771), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197532] = 2, - ACTIONS(4967), 1, - anon_sym_while, + ACTIONS(11773), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197540] = 2, - ACTIONS(11674), 1, + ACTIONS(11775), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197548] = 2, - ACTIONS(11676), 1, - anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197556] = 2, - ACTIONS(4260), 1, - anon_sym_while, + ACTIONS(11777), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197564] = 2, - ACTIONS(11678), 1, - anon_sym_LPAREN, + ACTIONS(11779), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197572] = 2, - ACTIONS(4945), 1, - anon_sym_while, + ACTIONS(11781), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197580] = 2, - ACTIONS(11680), 1, - anon_sym_RPAREN, + ACTIONS(11783), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197588] = 2, - ACTIONS(4392), 1, - anon_sym_while, + ACTIONS(11785), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197596] = 2, - ACTIONS(11682), 1, - anon_sym_in, + ACTIONS(11787), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197604] = 2, - ACTIONS(11684), 1, + ACTIONS(11789), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197612] = 2, - ACTIONS(4941), 1, - anon_sym_while, + ACTIONS(11791), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197620] = 2, - ACTIONS(4937), 1, - anon_sym_while, + ACTIONS(11793), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197628] = 2, - ACTIONS(1780), 1, + ACTIONS(1776), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197636] = 2, - ACTIONS(4256), 1, - anon_sym_while, + ACTIONS(11795), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197644] = 2, - ACTIONS(4672), 1, - anon_sym_while, + ACTIONS(11797), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197652] = 2, - ACTIONS(3340), 1, - anon_sym_while, + ACTIONS(11799), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197660] = 2, - ACTIONS(4487), 1, - anon_sym_while, + ACTIONS(10780), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197668] = 2, - ACTIONS(4923), 1, - anon_sym_while, + ACTIONS(11801), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197676] = 2, - ACTIONS(4915), 1, - anon_sym_while, + ACTIONS(11803), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197684] = 2, - ACTIONS(11686), 1, - anon_sym_LPAREN, + ACTIONS(11805), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197692] = 2, - ACTIONS(4911), 1, - anon_sym_while, + ACTIONS(11807), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197700] = 2, - ACTIONS(11688), 1, - anon_sym_in, + ACTIONS(4116), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197708] = 2, - ACTIONS(11690), 1, - anon_sym_LPAREN, + ACTIONS(5019), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197716] = 2, - ACTIONS(11692), 1, - anon_sym_in, + ACTIONS(11809), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197724] = 2, - ACTIONS(1772), 1, - anon_sym_while, + ACTIONS(11811), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197732] = 2, - ACTIONS(11694), 1, - anon_sym_in, + ACTIONS(11813), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197740] = 2, - ACTIONS(11696), 1, - anon_sym_LPAREN, + ACTIONS(11815), 1, + anon_sym_file, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197748] = 2, - ACTIONS(11698), 1, - anon_sym_in, + ACTIONS(11817), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197756] = 2, - ACTIONS(11700), 1, - anon_sym_in, + ACTIONS(11819), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197764] = 2, - ACTIONS(11702), 1, - anon_sym_LPAREN, + ACTIONS(11821), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197772] = 2, - ACTIONS(11704), 1, - anon_sym_LPAREN, + ACTIONS(11823), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197780] = 2, - ACTIONS(11706), 1, - anon_sym_in, + ACTIONS(5033), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197788] = 2, - ACTIONS(11708), 1, - anon_sym_in, + ACTIONS(5037), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197796] = 2, - ACTIONS(11710), 1, - anon_sym_LPAREN, + ACTIONS(4470), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197804] = 2, - ACTIONS(11712), 1, - anon_sym_in, + ACTIONS(11825), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197812] = 2, - ACTIONS(11714), 1, - anon_sym_in, + ACTIONS(11827), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197820] = 2, - ACTIONS(11716), 1, + ACTIONS(11829), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197828] = 2, - ACTIONS(11718), 1, - anon_sym_in, + ACTIONS(11831), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197836] = 2, - ACTIONS(11720), 1, - anon_sym_in, + ACTIONS(11833), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197844] = 2, - ACTIONS(11722), 1, - anon_sym_EQ, + ACTIONS(11835), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197852] = 2, - ACTIONS(11724), 1, - anon_sym_LPAREN, + ACTIONS(11837), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197860] = 2, - ACTIONS(11726), 1, - anon_sym_LPAREN, + ACTIONS(11839), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197868] = 2, - ACTIONS(4824), 1, - anon_sym_while, + ACTIONS(11841), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197876] = 2, - ACTIONS(11728), 1, - anon_sym_LPAREN, + ACTIONS(11843), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197884] = 2, - ACTIONS(11730), 1, - anon_sym_in, + ACTIONS(11845), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197892] = 2, - ACTIONS(11732), 1, - anon_sym_in, + ACTIONS(11847), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197900] = 2, - ACTIONS(11734), 1, - anon_sym_in, + ACTIONS(11849), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197908] = 2, - ACTIONS(11736), 1, - anon_sym_LPAREN, + ACTIONS(11851), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197916] = 2, - ACTIONS(11738), 1, - anon_sym_LPAREN, + ACTIONS(5041), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197924] = 2, - ACTIONS(11740), 1, + ACTIONS(11853), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197932] = 2, - ACTIONS(11742), 1, - anon_sym_RBRACE, + ACTIONS(11855), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197940] = 2, - ACTIONS(11744), 1, - anon_sym_while, + ACTIONS(11857), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197948] = 2, - ACTIONS(11746), 1, - anon_sym_LBRACE, + ACTIONS(11859), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197956] = 2, - ACTIONS(11748), 1, - anon_sym_class, + ACTIONS(11861), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197964] = 2, - ACTIONS(11750), 1, - anon_sym_class, + ACTIONS(11863), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197972] = 2, - ACTIONS(11752), 1, - anon_sym_class, + ACTIONS(11865), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197980] = 2, - ACTIONS(11754), 1, + ACTIONS(11867), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197988] = 2, - ACTIONS(11756), 1, + ACTIONS(11869), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [197996] = 2, - ACTIONS(11758), 1, - anon_sym_class, + ACTIONS(11871), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198004] = 2, - ACTIONS(11760), 1, - anon_sym_class, + ACTIONS(11873), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198012] = 2, - ACTIONS(11762), 1, - anon_sym_class, + ACTIONS(11875), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198020] = 2, - ACTIONS(11764), 1, - anon_sym_in, + ACTIONS(11877), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198028] = 2, - ACTIONS(11766), 1, - anon_sym_class, + ACTIONS(11879), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198036] = 2, - ACTIONS(11768), 1, - anon_sym_class, + ACTIONS(11881), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198044] = 2, - ACTIONS(11770), 1, - anon_sym_class, + ACTIONS(11883), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198052] = 2, - ACTIONS(11772), 1, - anon_sym_class, + ACTIONS(11885), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198060] = 2, - ACTIONS(1415), 1, - anon_sym_RBRACE, + ACTIONS(11887), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198068] = 2, - ACTIONS(11774), 1, - anon_sym_class, + ACTIONS(11889), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198076] = 2, - ACTIONS(11776), 1, - anon_sym_RPAREN, + ACTIONS(11891), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198084] = 2, - ACTIONS(11778), 1, - anon_sym_class, + ACTIONS(11893), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198092] = 2, - ACTIONS(11780), 1, - anon_sym_SQUOTE, + ACTIONS(11895), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198100] = 2, - ACTIONS(11782), 1, - anon_sym_LPAREN, + ACTIONS(11897), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198108] = 2, - ACTIONS(11784), 1, - anon_sym_COLON, + ACTIONS(11899), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198116] = 2, - ACTIONS(11786), 1, - anon_sym_EQ, + ACTIONS(11901), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198124] = 2, - ACTIONS(11788), 1, - anon_sym_LPAREN, + ACTIONS(11903), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198132] = 2, - ACTIONS(1594), 1, - anon_sym_RBRACE, + ACTIONS(11905), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198140] = 2, - ACTIONS(11790), 1, - anon_sym_object, + ACTIONS(11907), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198148] = 2, - ACTIONS(11792), 1, - anon_sym_in, + ACTIONS(4334), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198156] = 2, - ACTIONS(11794), 1, + ACTIONS(11271), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198164] = 2, - ACTIONS(11796), 1, - sym__automatic_semicolon, + ACTIONS(11909), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198172] = 2, - ACTIONS(11215), 1, - anon_sym_RPAREN, + ACTIONS(11911), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198180] = 2, - ACTIONS(11798), 1, - anon_sym_RPAREN, + ACTIONS(11913), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198188] = 2, - ACTIONS(11800), 1, - anon_sym_RBRACE, + ACTIONS(11275), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198196] = 2, - ACTIONS(11802), 1, - anon_sym_RBRACE, + ACTIONS(11915), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198204] = 2, - ACTIONS(11804), 1, - anon_sym_RPAREN, + ACTIONS(11917), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198212] = 2, - ACTIONS(11270), 1, - anon_sym_RPAREN, + ACTIONS(11919), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198220] = 2, - ACTIONS(11806), 1, - anon_sym_in, + ACTIONS(11921), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198228] = 2, - ACTIONS(11808), 1, - anon_sym_COLON, + ACTIONS(11923), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198236] = 2, - ACTIONS(11810), 1, - anon_sym_COLON, + ACTIONS(1411), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198244] = 2, - ACTIONS(11812), 1, - anon_sym_constructor, + ACTIONS(11925), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198252] = 2, - ACTIONS(11814), 1, - anon_sym_while, + ACTIONS(11927), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198260] = 2, - ACTIONS(11816), 1, + ACTIONS(11929), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198268] = 2, - ACTIONS(11818), 1, - anon_sym_class, + ACTIONS(11931), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198276] = 2, - ACTIONS(11820), 1, - anon_sym_class, + ACTIONS(11933), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198284] = 2, - ACTIONS(11822), 1, - anon_sym_DASH_GT, + ACTIONS(11935), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198292] = 2, - ACTIONS(11824), 1, - anon_sym_COLON, + ACTIONS(11937), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198300] = 2, - ACTIONS(11826), 1, - anon_sym_DASH_GT, + ACTIONS(11939), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198308] = 2, - ACTIONS(11828), 1, - anon_sym_EQ, + ACTIONS(11941), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198316] = 2, - ACTIONS(11830), 1, - anon_sym_RPAREN, + ACTIONS(11943), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198324] = 2, - ACTIONS(11832), 1, - anon_sym_DASH_GT, + ACTIONS(11945), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198332] = 2, - ACTIONS(11834), 1, - anon_sym_RBRACE, + ACTIONS(1782), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198340] = 2, - ACTIONS(11836), 1, - anon_sym_COLON, + ACTIONS(11947), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198348] = 2, - ACTIONS(11838), 1, - anon_sym_DASH_GT, + ACTIONS(11949), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198356] = 2, - ACTIONS(11840), 1, - anon_sym_COLON, + ACTIONS(11951), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198364] = 2, - ACTIONS(11842), 1, - anon_sym_COLON, + ACTIONS(11953), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198372] = 2, - ACTIONS(11844), 1, - anon_sym_COLON, + ACTIONS(11955), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198380] = 2, - ACTIONS(11846), 1, - anon_sym_constructor, + ACTIONS(5083), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198388] = 2, - ACTIONS(11848), 1, - anon_sym_LPAREN, + ACTIONS(11086), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198396] = 2, - ACTIONS(11850), 1, - anon_sym_LPAREN, + ACTIONS(11957), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198404] = 2, - ACTIONS(11852), 1, - anon_sym_while, + ACTIONS(11959), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198412] = 2, - ACTIONS(11854), 1, - anon_sym_while, + ACTIONS(11961), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198420] = 2, - ACTIONS(11856), 1, - anon_sym_while, + ACTIONS(11044), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198428] = 2, - ACTIONS(11858), 1, - anon_sym_COLON, + ACTIONS(11963), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198436] = 2, - ACTIONS(11860), 1, - anon_sym_COLON, + ACTIONS(4110), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198444] = 2, - ACTIONS(11862), 1, - anon_sym_while, + ACTIONS(11965), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198452] = 2, - ACTIONS(11864), 1, - anon_sym_COLON, + ACTIONS(11967), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198460] = 2, - ACTIONS(11866), 1, - anon_sym_COLON, + ACTIONS(5111), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198468] = 2, - ACTIONS(11868), 1, - anon_sym_COLON, + ACTIONS(11969), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198476] = 2, - ACTIONS(11870), 1, - anon_sym_COLON, + ACTIONS(11971), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198484] = 2, - ACTIONS(11872), 1, - anon_sym_COLON, + ACTIONS(11973), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198492] = 2, - ACTIONS(11874), 1, - anon_sym_class, + ACTIONS(11975), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198500] = 2, - ACTIONS(11876), 1, - anon_sym_COLON, + ACTIONS(11977), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198508] = 2, - ACTIONS(11878), 1, - anon_sym_EQ, + ACTIONS(5095), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198516] = 2, - ACTIONS(11880), 1, - anon_sym_COLON, + ACTIONS(5099), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198524] = 2, - ACTIONS(11882), 1, - anon_sym_constructor, + ACTIONS(11979), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198532] = 2, - ACTIONS(11014), 1, - anon_sym_RPAREN, + ACTIONS(11981), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198540] = 2, - ACTIONS(11884), 1, - anon_sym_EQ, + ACTIONS(11983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198548] = 2, - ACTIONS(11886), 1, - anon_sym_class, + ACTIONS(11985), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198556] = 2, - ACTIONS(11888), 1, - anon_sym_class, + ACTIONS(11987), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198564] = 2, - ACTIONS(11890), 1, + ACTIONS(11989), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198572] = 2, - ACTIONS(11892), 1, - sym__automatic_semicolon, + ACTIONS(11991), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198580] = 2, - ACTIONS(11894), 1, - anon_sym_RPAREN, + ACTIONS(11993), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198588] = 2, - ACTIONS(11896), 1, + ACTIONS(11995), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198596] = 2, - ACTIONS(11898), 1, - anon_sym_EQ, + ACTIONS(11997), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198604] = 2, - ACTIONS(11900), 1, - anon_sym_COLON, + ACTIONS(1397), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198612] = 2, - ACTIONS(11902), 1, - anon_sym_else, + ACTIONS(11999), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198620] = 2, - ACTIONS(10228), 1, + ACTIONS(12001), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198628] = 2, - ACTIONS(11904), 1, - anon_sym_class, + ACTIONS(5103), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198636] = 2, - ACTIONS(11906), 1, - anon_sym_constructor, + ACTIONS(12003), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198644] = 2, - ACTIONS(11908), 1, - anon_sym_EQ, + ACTIONS(12005), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198652] = 2, - ACTIONS(11910), 1, - anon_sym_RPAREN, + ACTIONS(12007), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198660] = 2, - ACTIONS(11912), 1, + ACTIONS(12009), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198668] = 2, - ACTIONS(11914), 1, - anon_sym_file, + ACTIONS(12011), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198676] = 2, - ACTIONS(11916), 1, - anon_sym_LPAREN, + ACTIONS(12013), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198684] = 2, - ACTIONS(11918), 1, - anon_sym_RPAREN, + ACTIONS(3200), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198692] = 2, - ACTIONS(11920), 1, - anon_sym_in, + ACTIONS(5107), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198700] = 2, - ACTIONS(11922), 1, - anon_sym_RPAREN, + ACTIONS(4412), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198708] = 2, - ACTIONS(11924), 1, - anon_sym_RPAREN, + ACTIONS(1403), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198716] = 2, - ACTIONS(11926), 1, - anon_sym_class, + ACTIONS(4398), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198724] = 2, - ACTIONS(11928), 1, - anon_sym_LBRACE, + ACTIONS(12015), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198732] = 2, - ACTIONS(11930), 1, - anon_sym_DASH_GT, + ACTIONS(4991), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198740] = 2, - ACTIONS(11932), 1, - anon_sym_RPAREN, + ACTIONS(1754), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198748] = 2, - ACTIONS(11934), 1, + ACTIONS(12017), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198756] = 2, - ACTIONS(11936), 1, - anon_sym_RPAREN, + ACTIONS(1572), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198764] = 2, - ACTIONS(11938), 1, - anon_sym_RPAREN, + ACTIONS(12019), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198772] = 2, - ACTIONS(11940), 1, + ACTIONS(12021), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198780] = 2, - ACTIONS(11942), 1, - anon_sym_RPAREN, + ACTIONS(4104), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198788] = 2, - ACTIONS(11944), 1, - anon_sym_RPAREN, + ACTIONS(12023), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198796] = 2, - ACTIONS(11946), 1, - anon_sym_RPAREN, + ACTIONS(5087), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198804] = 2, - ACTIONS(11948), 1, - anon_sym_SQUOTE, + ACTIONS(1578), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198812] = 2, - ACTIONS(11950), 1, - anon_sym_EQ, + ACTIONS(12025), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198820] = 2, - ACTIONS(11952), 1, - anon_sym_LPAREN, + ACTIONS(5079), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198828] = 2, - ACTIONS(11954), 1, - anon_sym_RBRACE, + ACTIONS(5075), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198836] = 2, - ACTIONS(11956), 1, - anon_sym_RPAREN, + ACTIONS(4328), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198844] = 2, - ACTIONS(11958), 1, - anon_sym_COLON, + ACTIONS(12027), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198852] = 2, - ACTIONS(11960), 1, - anon_sym_RPAREN, + ACTIONS(5069), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198860] = 2, - ACTIONS(11962), 1, - anon_sym_LPAREN, + ACTIONS(5065), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198868] = 2, - ACTIONS(11964), 1, - anon_sym_RPAREN, + ACTIONS(4644), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198876] = 2, - ACTIONS(11966), 1, - anon_sym_RPAREN, + ACTIONS(4478), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198884] = 2, - ACTIONS(10852), 1, - anon_sym_DASH_GT, + ACTIONS(5061), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198892] = 2, - ACTIONS(11968), 1, - anon_sym_LPAREN, + ACTIONS(1770), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198900] = 2, - ACTIONS(11970), 1, - anon_sym_RBRACE, + ACTIONS(4122), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198908] = 2, - ACTIONS(11972), 1, - anon_sym_constructor, + ACTIONS(11040), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198916] = 2, - ACTIONS(11974), 1, - anon_sym_EQ, + ACTIONS(12029), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198924] = 2, - ACTIONS(11976), 1, - anon_sym_in, + ACTIONS(5057), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198932] = 2, - ACTIONS(11978), 1, - anon_sym_class, + ACTIONS(12031), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198940] = 2, - ACTIONS(11980), 1, - anon_sym_LBRACE, + ACTIONS(4484), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198948] = 2, - ACTIONS(11982), 1, - anon_sym_RPAREN, + ACTIONS(12033), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198956] = 2, - ACTIONS(11984), 1, - anon_sym_RPAREN, + ACTIONS(5053), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198964] = 2, - ACTIONS(11986), 1, - anon_sym_DASH_GT, + ACTIONS(5049), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198972] = 2, - ACTIONS(11988), 1, - anon_sym_RPAREN, + ACTIONS(205), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198980] = 2, - ACTIONS(11990), 1, - anon_sym_RPAREN, + ACTIONS(4625), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198988] = 2, - ACTIONS(11992), 1, - anon_sym_RPAREN, + ACTIONS(1764), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [198996] = 2, - ACTIONS(11994), 1, - anon_sym_class, + ACTIONS(4288), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199004] = 2, - ACTIONS(11996), 1, - anon_sym_LPAREN, + ACTIONS(12035), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199012] = 2, - ACTIONS(11998), 1, + ACTIONS(12037), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199020] = 2, - ACTIONS(12000), 1, - anon_sym_RPAREN, + ACTIONS(5029), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199028] = 2, - ACTIONS(12002), 1, - anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199036] = 2, - ACTIONS(12004), 1, - anon_sym_EQ, + ACTIONS(5023), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199044] = 2, - ACTIONS(12006), 1, - anon_sym_else, + ACTIONS(5015), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199052] = 2, - ACTIONS(12008), 1, - anon_sym_RPAREN, + ACTIONS(1696), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199060] = 2, - ACTIONS(12010), 1, - anon_sym_RPAREN, + ACTIONS(4320), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199068] = 2, - ACTIONS(12012), 1, - anon_sym_RPAREN, + ACTIONS(4621), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199076] = 2, - ACTIONS(11121), 1, - anon_sym_RPAREN, + ACTIONS(3342), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199084] = 2, - ACTIONS(12014), 1, - anon_sym_RPAREN, + ACTIONS(4454), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199092] = 2, - ACTIONS(12016), 1, - anon_sym_constructor, + ACTIONS(4999), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199100] = 2, - ACTIONS(12018), 1, - anon_sym_EQ, + ACTIONS(4995), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199108] = 2, - ACTIONS(1385), 1, + ACTIONS(12039), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199116] = 2, - ACTIONS(12020), 1, - anon_sym_LPAREN, + ACTIONS(12041), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199124] = 2, - ACTIONS(12022), 1, + ACTIONS(12043), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199132] = 2, - ACTIONS(12024), 1, - anon_sym_object, + ACTIONS(12045), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199140] = 2, - ACTIONS(12026), 1, - anon_sym_LBRACE, + ACTIONS(12047), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199148] = 2, - ACTIONS(12028), 1, - anon_sym_RPAREN, + ACTIONS(12049), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199156] = 2, - ACTIONS(12030), 1, + ACTIONS(12051), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199164] = 2, - ACTIONS(12032), 1, - anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199172] = 2, - ACTIONS(1389), 1, - anon_sym_RBRACE, + ACTIONS(12053), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199180] = 2, - ACTIONS(12034), 1, + ACTIONS(12055), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199188] = 2, - ACTIONS(10984), 1, - anon_sym_RPAREN, + ACTIONS(12057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199196] = 2, - ACTIONS(12036), 1, - anon_sym_RPAREN, + ACTIONS(12059), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199204] = 2, - ACTIONS(12038), 1, - anon_sym_RBRACE, + ACTIONS(12061), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199212] = 2, - ACTIONS(12040), 1, - anon_sym_RBRACE, + ACTIONS(12063), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199220] = 2, - ACTIONS(12042), 1, - anon_sym_RPAREN, + ACTIONS(12065), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199228] = 2, - ACTIONS(12044), 1, - anon_sym_COLON, + ACTIONS(12067), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199236] = 2, - ACTIONS(10956), 1, - anon_sym_RPAREN, + ACTIONS(12069), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199244] = 2, - ACTIONS(12046), 1, + ACTIONS(1407), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199252] = 2, - ACTIONS(12048), 1, - anon_sym_DASH_GT, + ACTIONS(12071), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199260] = 2, - ACTIONS(12050), 1, - anon_sym_EQ, + ACTIONS(12073), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199268] = 2, - ACTIONS(12052), 1, - anon_sym_else, + ACTIONS(12075), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199276] = 2, - ACTIONS(12054), 1, - anon_sym_RPAREN, + ACTIONS(12077), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199284] = 2, - ACTIONS(12056), 1, - anon_sym_COLON, + ACTIONS(12079), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199292] = 2, - ACTIONS(12058), 1, - anon_sym_DASH_GT, + ACTIONS(12081), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199300] = 2, - ACTIONS(12060), 1, - anon_sym_class, + ACTIONS(12083), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199308] = 2, - ACTIONS(12062), 1, - anon_sym_RPAREN, + ACTIONS(12085), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199316] = 2, - ACTIONS(12064), 1, - anon_sym_COLON, + ACTIONS(12087), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199324] = 2, - ACTIONS(12066), 1, - anon_sym_else, + ACTIONS(12089), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199332] = 2, - ACTIONS(12068), 1, - anon_sym_LPAREN, + ACTIONS(12091), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199340] = 2, - ACTIONS(12070), 1, - anon_sym_COLON, + ACTIONS(12093), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199348] = 2, - ACTIONS(12072), 1, - anon_sym_EQ, + ACTIONS(12095), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199356] = 2, - ACTIONS(12074), 1, + ACTIONS(12097), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199364] = 2, - ACTIONS(1576), 1, - anon_sym_RBRACE, + ACTIONS(12099), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199372] = 2, - ACTIONS(12076), 1, - anon_sym_RPAREN, + ACTIONS(12101), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199380] = 2, - ACTIONS(12078), 1, - anon_sym_SQUOTE, + ACTIONS(12103), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199388] = 2, - ACTIONS(12080), 1, - anon_sym_COLON, + ACTIONS(12105), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199396] = 2, - ACTIONS(1391), 1, - anon_sym_RBRACE, + ACTIONS(12107), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199404] = 2, - ACTIONS(12082), 1, - anon_sym_DASH_GT, + ACTIONS(12109), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199412] = 2, - ACTIONS(12084), 1, - anon_sym_in, + ACTIONS(12111), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199420] = 2, - ACTIONS(10960), 1, - anon_sym_RPAREN, + ACTIONS(12113), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199428] = 2, - ACTIONS(12086), 1, - anon_sym_RBRACE, + ACTIONS(12115), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199436] = 2, - ACTIONS(12088), 1, - anon_sym_RBRACE, + ACTIONS(12117), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199444] = 2, - ACTIONS(12090), 1, - anon_sym_RPAREN, + ACTIONS(12119), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199452] = 2, - ACTIONS(12092), 1, - anon_sym_else, + ACTIONS(12121), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199460] = 2, - ACTIONS(11095), 1, - anon_sym_RPAREN, + ACTIONS(12123), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199468] = 2, - ACTIONS(12094), 1, - anon_sym_COLON, + ACTIONS(12125), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199476] = 2, - ACTIONS(12096), 1, - anon_sym_RBRACE, + ACTIONS(12127), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199484] = 2, - ACTIONS(12098), 1, - anon_sym_constructor, + ACTIONS(12129), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199492] = 2, - ACTIONS(12100), 1, + ACTIONS(12131), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199500] = 2, - ACTIONS(12102), 1, - anon_sym_EQ, + ACTIONS(12133), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199508] = 2, - ACTIONS(12104), 1, - anon_sym_RPAREN, + ACTIONS(12135), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199516] = 2, - ACTIONS(12106), 1, - anon_sym_DASH_GT, + ACTIONS(12137), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199524] = 2, - ACTIONS(12108), 1, - anon_sym_class, + ACTIONS(12139), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199532] = 2, - ACTIONS(12110), 1, + ACTIONS(12141), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199540] = 2, - ACTIONS(12112), 1, + ACTIONS(12143), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199548] = 2, - ACTIONS(12114), 1, - anon_sym_LBRACE, + ACTIONS(12145), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199556] = 2, - ACTIONS(12116), 1, + ACTIONS(12147), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199564] = 2, - ACTIONS(12118), 1, - anon_sym_else, + ACTIONS(12149), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199572] = 2, - ACTIONS(12120), 1, - anon_sym_DASH_GT, + ACTIONS(12151), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199580] = 2, - ACTIONS(12122), 1, + ACTIONS(12153), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199588] = 2, - ACTIONS(12124), 1, + ACTIONS(12155), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199596] = 2, - ACTIONS(12126), 1, + ACTIONS(12157), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199604] = 2, - ACTIONS(12128), 1, + ACTIONS(12159), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199612] = 2, - ACTIONS(12130), 1, + ACTIONS(12161), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199620] = 2, - ACTIONS(12132), 1, + ACTIONS(12163), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199628] = 2, - ACTIONS(12134), 1, + ACTIONS(12165), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199636] = 2, - ACTIONS(12136), 1, + ACTIONS(12167), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199644] = 2, - ACTIONS(12138), 1, + ACTIONS(12169), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199652] = 2, - ACTIONS(12140), 1, + ACTIONS(12171), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199660] = 2, - ACTIONS(12142), 1, + ACTIONS(12173), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199668] = 2, - ACTIONS(12144), 1, + ACTIONS(12175), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199676] = 2, - ACTIONS(12146), 1, + ACTIONS(12177), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199684] = 2, - ACTIONS(12148), 1, + ACTIONS(12179), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199692] = 2, - ACTIONS(12150), 1, + ACTIONS(12181), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199700] = 2, - ACTIONS(12152), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199708] = 2, - ACTIONS(12154), 1, + ACTIONS(12185), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199716] = 2, - ACTIONS(12156), 1, + ACTIONS(12187), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199724] = 2, - ACTIONS(12158), 1, - anon_sym_LPAREN, + ACTIONS(1391), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199732] = 2, - ACTIONS(12160), 1, - anon_sym_LPAREN, + ACTIONS(12189), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199740] = 2, - ACTIONS(12162), 1, - anon_sym_LPAREN, + ACTIONS(12191), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199748] = 2, - ACTIONS(12164), 1, - anon_sym_class, + ACTIONS(12193), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199756] = 2, - ACTIONS(12166), 1, - anon_sym_COLON, + ACTIONS(12195), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199764] = 2, - ACTIONS(12168), 1, - anon_sym_COLON, + ACTIONS(12197), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199772] = 2, - ACTIONS(1566), 1, - anon_sym_RBRACE, + ACTIONS(12199), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199780] = 2, - ACTIONS(12170), 1, - anon_sym_while, + ACTIONS(12201), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199788] = 2, - ACTIONS(12172), 1, + ACTIONS(12203), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199796] = 2, - ACTIONS(12174), 1, - anon_sym_SQUOTE, + ACTIONS(12205), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199804] = 2, - ACTIONS(12176), 1, + ACTIONS(12207), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199812] = 2, - ACTIONS(12178), 1, + ACTIONS(12209), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199820] = 2, - ACTIONS(12180), 1, - anon_sym_LPAREN, + ACTIONS(12211), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199828] = 2, - ACTIONS(12182), 1, - anon_sym_RPAREN, + ACTIONS(12213), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199836] = 2, - ACTIONS(12184), 1, + ACTIONS(12215), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199844] = 2, - ACTIONS(12186), 1, - anon_sym_RPAREN, + ACTIONS(12217), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199852] = 2, - ACTIONS(12188), 1, + ACTIONS(12219), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199860] = 2, - ACTIONS(12190), 1, + ACTIONS(12221), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199868] = 2, - ACTIONS(12192), 1, + ACTIONS(12223), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199876] = 2, - ACTIONS(12194), 1, + ACTIONS(12225), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199884] = 2, - ACTIONS(12196), 1, - anon_sym_DASH_GT, + ACTIONS(12227), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199892] = 2, - ACTIONS(12198), 1, + ACTIONS(11321), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199900] = 2, - ACTIONS(12200), 1, - anon_sym_else, + ACTIONS(12229), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199908] = 2, - ACTIONS(12202), 1, - anon_sym_RPAREN, + ACTIONS(12231), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199916] = 2, - ACTIONS(12204), 1, - anon_sym_DASH_GT, + ACTIONS(4975), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199924] = 2, - ACTIONS(12206), 1, - anon_sym_else, + ACTIONS(11265), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199932] = 2, - ACTIONS(12208), 1, - anon_sym_COLON, + ACTIONS(12233), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199940] = 2, - ACTIONS(12210), 1, - anon_sym_RPAREN, + ACTIONS(12235), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199948] = 2, - ACTIONS(12212), 1, + ACTIONS(12237), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199956] = 2, - ACTIONS(12214), 1, - anon_sym_EQ, + ACTIONS(12239), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199964] = 2, - ACTIONS(1578), 1, - anon_sym_RBRACE, + ACTIONS(12241), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199972] = 2, - ACTIONS(1590), 1, - anon_sym_RBRACE, + ACTIONS(12243), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199980] = 2, - ACTIONS(12216), 1, - anon_sym_RPAREN, + ACTIONS(12245), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199988] = 2, - ACTIONS(12218), 1, - anon_sym_else, + ACTIONS(12247), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [199996] = 2, - ACTIONS(12220), 1, - anon_sym_constructor, + ACTIONS(12249), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200004] = 2, - ACTIONS(12222), 1, - anon_sym_RPAREN, + ACTIONS(12251), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200012] = 2, - ACTIONS(12224), 1, - anon_sym_DASH_GT, + ACTIONS(12253), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200020] = 2, - ACTIONS(12226), 1, - anon_sym_RPAREN, + ACTIONS(12255), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200028] = 2, - ACTIONS(12228), 1, - anon_sym_COLON, + ACTIONS(12257), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200036] = 2, - ACTIONS(12230), 1, + ACTIONS(12259), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200044] = 2, - ACTIONS(10824), 1, + ACTIONS(12261), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200052] = 2, - ACTIONS(12232), 1, - anon_sym_RPAREN, + ACTIONS(12263), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200060] = 2, - ACTIONS(12234), 1, - anon_sym_DASH_GT, + ACTIONS(12265), 1, + aux_sym__uni_character_literal_token1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200068] = 2, - ACTIONS(12236), 1, - anon_sym_RPAREN, + ACTIONS(12267), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200076] = 2, - ACTIONS(12238), 1, - anon_sym_EQ, + ACTIONS(12269), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200084] = 2, - ACTIONS(12240), 1, - anon_sym_else, + ACTIONS(12271), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200092] = 2, - ACTIONS(12242), 1, - anon_sym_constructor, + ACTIONS(12273), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200100] = 2, - ACTIONS(12244), 1, + ACTIONS(11315), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200108] = 2, - ACTIONS(12246), 1, + ACTIONS(12275), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200116] = 2, - ACTIONS(12248), 1, - anon_sym_EQ, + ACTIONS(12277), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200124] = 2, - ACTIONS(12250), 1, - anon_sym_class, + ACTIONS(12279), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200132] = 2, - ACTIONS(12252), 1, - anon_sym_RPAREN, + ACTIONS(12281), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200140] = 2, - ACTIONS(12254), 1, - anon_sym_RBRACE, + ACTIONS(4931), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200148] = 2, - ACTIONS(12256), 1, - anon_sym_RPAREN, + ACTIONS(12283), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200156] = 2, - ACTIONS(12258), 1, - anon_sym_RBRACE, + ACTIONS(12285), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200164] = 2, - ACTIONS(12260), 1, + ACTIONS(12287), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200172] = 2, - ACTIONS(12262), 1, + ACTIONS(12289), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200180] = 2, - ACTIONS(12264), 1, - anon_sym_RPAREN, + ACTIONS(1588), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200188] = 2, - ACTIONS(12266), 1, - anon_sym_RPAREN, + ACTIONS(12291), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200196] = 2, - ACTIONS(12268), 1, - anon_sym_RPAREN, + ACTIONS(12293), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200204] = 2, - ACTIONS(12270), 1, - anon_sym_class, + ACTIONS(12295), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200212] = 2, - ACTIONS(12272), 1, - anon_sym_RBRACE, + ACTIONS(12297), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200220] = 2, - ACTIONS(12274), 1, + ACTIONS(12299), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200228] = 2, - ACTIONS(12276), 1, + ACTIONS(12301), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200236] = 2, - ACTIONS(12278), 1, - anon_sym_RBRACE, + ACTIONS(12303), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200244] = 2, - ACTIONS(12280), 1, - anon_sym_RPAREN, + ACTIONS(1586), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200252] = 2, - ACTIONS(12282), 1, - anon_sym_RPAREN, + ACTIONS(12305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200260] = 2, - ACTIONS(11201), 1, + ACTIONS(11229), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200268] = 2, - ACTIONS(12284), 1, - anon_sym_class, + ACTIONS(12307), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200276] = 2, - ACTIONS(12286), 1, - anon_sym_RPAREN, + ACTIONS(1415), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200284] = 2, - ACTIONS(12288), 1, + ACTIONS(12309), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200292] = 2, - ACTIONS(12290), 1, + ACTIONS(12311), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200300] = 2, - ACTIONS(12292), 1, + ACTIONS(11190), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200308] = 2, - ACTIONS(12294), 1, - anon_sym_LBRACE, + ACTIONS(11176), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200316] = 2, - ACTIONS(12296), 1, - anon_sym_else, + ACTIONS(12313), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200324] = 2, - ACTIONS(12298), 1, + ACTIONS(12315), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200332] = 2, - ACTIONS(12300), 1, + ACTIONS(1417), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200340] = 2, - ACTIONS(12302), 1, - anon_sym_else, + ACTIONS(12317), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200348] = 2, - ACTIONS(12304), 1, + ACTIONS(12319), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200356] = 2, - ACTIONS(12306), 1, - aux_sym__uni_character_literal_token1, + ACTIONS(1574), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200364] = 2, - ACTIONS(12308), 1, - anon_sym_SQUOTE, + ACTIONS(12321), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200372] = 2, - ACTIONS(12310), 1, - anon_sym_DASH_GT, + ACTIONS(12323), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200380] = 2, - ACTIONS(1387), 1, - anon_sym_RBRACE, + ACTIONS(12325), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200388] = 2, - ACTIONS(12312), 1, - anon_sym_while, + ACTIONS(12327), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200396] = 2, - ACTIONS(4752), 1, - anon_sym_while, + ACTIONS(12329), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200404] = 2, - ACTIONS(12314), 1, - anon_sym_LPAREN, + ACTIONS(12331), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200412] = 2, - ACTIONS(12316), 1, - anon_sym_RPAREN, + ACTIONS(12333), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200420] = 2, - ACTIONS(12318), 1, - anon_sym_SQUOTE, + ACTIONS(12335), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200428] = 2, - ACTIONS(12320), 1, - anon_sym_RPAREN, + ACTIONS(12337), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200436] = 2, - ACTIONS(1604), 1, - anon_sym_RBRACE, + ACTIONS(12339), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200444] = 2, - ACTIONS(12322), 1, - anon_sym_else, + ACTIONS(12341), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200452] = 2, - ACTIONS(12324), 1, - anon_sym_DASH_GT, + ACTIONS(12343), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200460] = 2, - ACTIONS(12326), 1, - anon_sym_else, + ACTIONS(8736), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200468] = 2, - ACTIONS(10755), 1, - anon_sym_RPAREN, + ACTIONS(12345), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200476] = 2, - ACTIONS(12328), 1, - anon_sym_RPAREN, + ACTIONS(12347), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200484] = 2, - ACTIONS(12330), 1, - anon_sym_RBRACE, + ACTIONS(12349), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200492] = 2, - ACTIONS(12332), 1, - anon_sym_RBRACE, + ACTIONS(12351), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200500] = 2, - ACTIONS(12334), 1, + ACTIONS(12353), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200508] = 2, - ACTIONS(10804), 1, - anon_sym_RPAREN, + ACTIONS(12355), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200516] = 2, - ACTIONS(12336), 1, - anon_sym_else, + ACTIONS(12357), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200524] = 2, - ACTIONS(12338), 1, - anon_sym_else, + ACTIONS(12359), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200532] = 2, - ACTIONS(12340), 1, - anon_sym_RBRACE, + ACTIONS(12361), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200540] = 2, - ACTIONS(12342), 1, - anon_sym_DASH_GT, + ACTIONS(12363), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200548] = 2, - ACTIONS(12344), 1, - anon_sym_else, + ACTIONS(12365), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200556] = 2, - ACTIONS(1598), 1, - anon_sym_RBRACE, + ACTIONS(12367), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200564] = 2, - ACTIONS(12346), 1, - anon_sym_DASH_GT, + ACTIONS(12369), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200572] = 2, - ACTIONS(12348), 1, - anon_sym_RBRACE, + ACTIONS(12371), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200580] = 2, - ACTIONS(12350), 1, - anon_sym_RBRACE, + ACTIONS(12373), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200588] = 2, - ACTIONS(12352), 1, + ACTIONS(12375), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200596] = 2, - ACTIONS(12354), 1, - anon_sym_DASH_GT, + ACTIONS(12377), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200604] = 2, - ACTIONS(12356), 1, - anon_sym_RPAREN, + ACTIONS(12379), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200612] = 2, - ACTIONS(12358), 1, - anon_sym_DASH_GT, + ACTIONS(12381), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200620] = 2, - ACTIONS(12360), 1, - anon_sym_else, + ACTIONS(12383), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200628] = 2, - ACTIONS(11018), 1, - anon_sym_RPAREN, + ACTIONS(12385), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200636] = 2, - ACTIONS(8721), 1, - anon_sym_COLON, + ACTIONS(12387), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200644] = 2, - ACTIONS(12362), 1, - anon_sym_RPAREN, + ACTIONS(12389), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200652] = 2, - ACTIONS(12364), 1, - anon_sym_COLON, + ACTIONS(12391), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200660] = 2, - ACTIONS(12366), 1, - anon_sym_RBRACE, + ACTIONS(12393), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200668] = 2, - ACTIONS(12368), 1, - anon_sym_RBRACE, + ACTIONS(12395), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200676] = 2, - ACTIONS(12370), 1, - anon_sym_RPAREN, + ACTIONS(12397), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200684] = 2, - ACTIONS(11058), 1, - anon_sym_RPAREN, + ACTIONS(12399), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200692] = 2, - ACTIONS(12372), 1, - anon_sym_RPAREN, + ACTIONS(12401), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200700] = 2, - ACTIONS(12374), 1, - anon_sym_DASH_GT, + ACTIONS(12403), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200708] = 2, - ACTIONS(12376), 1, - anon_sym_else, + ACTIONS(12405), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200716] = 2, - ACTIONS(12378), 1, - anon_sym_DASH_GT, + ACTIONS(12407), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200724] = 2, - ACTIONS(12380), 1, - ts_builtin_sym_end, + ACTIONS(12409), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200732] = 2, - ACTIONS(12382), 1, - anon_sym_RPAREN, + ACTIONS(12411), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200740] = 2, - ACTIONS(12384), 1, - anon_sym_DASH_GT, + ACTIONS(12413), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200748] = 2, - ACTIONS(11144), 1, - anon_sym_RPAREN, + ACTIONS(12415), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200756] = 2, - ACTIONS(12386), 1, - anon_sym_RPAREN, + ACTIONS(12417), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200764] = 2, - ACTIONS(12388), 1, - anon_sym_RBRACE, + ACTIONS(12419), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200772] = 2, - ACTIONS(12390), 1, - anon_sym_RBRACE, + ACTIONS(12421), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200780] = 2, - ACTIONS(12392), 1, - anon_sym_RPAREN, + ACTIONS(12423), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200788] = 2, - ACTIONS(12394), 1, + ACTIONS(12425), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200796] = 2, - ACTIONS(12396), 1, - anon_sym_LPAREN, + ACTIONS(12427), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200804] = 2, - ACTIONS(12398), 1, - anon_sym_LPAREN, + ACTIONS(12429), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200812] = 2, - ACTIONS(11169), 1, + ACTIONS(12431), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200820] = 2, - ACTIONS(12400), 1, + ACTIONS(12433), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200828] = 2, - ACTIONS(12402), 1, - anon_sym_RPAREN, + ACTIONS(12435), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200836] = 2, - ACTIONS(12404), 1, - anon_sym_COLON, + ACTIONS(12437), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200844] = 2, - ACTIONS(12406), 1, - anon_sym_COLON, + ACTIONS(12439), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200852] = 2, - ACTIONS(12408), 1, - anon_sym_while, + ACTIONS(12441), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200860] = 2, - ACTIONS(12410), 1, - anon_sym_DASH_GT, + ACTIONS(12443), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200868] = 2, - ACTIONS(12412), 1, - anon_sym_LPAREN, + ACTIONS(12445), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200876] = 2, - ACTIONS(12414), 1, + ACTIONS(12447), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200884] = 2, - ACTIONS(12416), 1, - anon_sym_class, + ACTIONS(12449), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200892] = 2, - ACTIONS(12418), 1, - anon_sym_DASH_GT, + ACTIONS(12451), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200900] = 2, - ACTIONS(12420), 1, - anon_sym_class, + ACTIONS(12453), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200908] = 2, - ACTIONS(12422), 1, - anon_sym_class, + ACTIONS(12455), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200916] = 2, - ACTIONS(12424), 1, - anon_sym_RBRACE, + ACTIONS(12457), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200924] = 2, - ACTIONS(12426), 1, - anon_sym_RBRACE, + ACTIONS(12459), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200932] = 2, - ACTIONS(12428), 1, + ACTIONS(12461), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200940] = 2, - ACTIONS(12430), 1, - anon_sym_else, + ACTIONS(12463), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200948] = 2, - ACTIONS(12432), 1, - anon_sym_DASH_GT, + ACTIONS(12465), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200956] = 2, - ACTIONS(12434), 1, - anon_sym_DASH_GT, + ACTIONS(12467), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200964] = 2, - ACTIONS(12436), 1, + ACTIONS(12469), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200972] = 2, - ACTIONS(11221), 1, + ACTIONS(12471), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200980] = 2, - ACTIONS(12438), 1, - anon_sym_RPAREN, + ACTIONS(12473), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200988] = 2, - ACTIONS(12440), 1, - anon_sym_RPAREN, + ACTIONS(12475), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [200996] = 2, - ACTIONS(12442), 1, + ACTIONS(12477), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201004] = 2, - ACTIONS(12444), 1, - anon_sym_RPAREN, + ACTIONS(12479), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201012] = 2, - ACTIONS(12446), 1, + ACTIONS(12481), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201020] = 2, - ACTIONS(12448), 1, + ACTIONS(12483), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201028] = 2, - ACTIONS(12450), 1, + ACTIONS(12485), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201036] = 2, - ACTIONS(12452), 1, - anon_sym_RBRACE, + ACTIONS(12487), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201044] = 2, - ACTIONS(12454), 1, - anon_sym_RBRACE, + ACTIONS(12489), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201052] = 2, - ACTIONS(12456), 1, - anon_sym_RPAREN, + ACTIONS(12491), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201060] = 2, - ACTIONS(12458), 1, + ACTIONS(12493), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201068] = 2, - ACTIONS(12460), 1, - anon_sym_RPAREN, + ACTIONS(12495), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201076] = 2, - ACTIONS(11083), 1, + ACTIONS(12497), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201084] = 2, - ACTIONS(12462), 1, - anon_sym_else, + ACTIONS(12499), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201092] = 2, - ACTIONS(12464), 1, + ACTIONS(12501), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201100] = 2, - ACTIONS(12466), 1, - anon_sym_RPAREN, + ACTIONS(12503), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201108] = 2, - ACTIONS(12468), 1, - anon_sym_RPAREN, + ACTIONS(12505), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201116] = 2, - ACTIONS(12470), 1, - anon_sym_RPAREN, + ACTIONS(12507), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201124] = 2, - ACTIONS(12472), 1, + ACTIONS(12509), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201132] = 2, - ACTIONS(12474), 1, + ACTIONS(12511), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201140] = 2, - ACTIONS(12476), 1, + ACTIONS(12513), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201148] = 2, - ACTIONS(12478), 1, + ACTIONS(12515), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201156] = 2, - ACTIONS(12480), 1, + ACTIONS(12517), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201164] = 2, - ACTIONS(12482), 1, - anon_sym_class, + ACTIONS(12519), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201172] = 2, - ACTIONS(12484), 1, - anon_sym_class, + ACTIONS(12521), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201180] = 2, - ACTIONS(12486), 1, - anon_sym_class, + ACTIONS(12523), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201188] = 2, - ACTIONS(12488), 1, - anon_sym_RBRACE, + ACTIONS(12525), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201196] = 2, - ACTIONS(12490), 1, - anon_sym_RBRACE, + ACTIONS(12527), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201204] = 2, - ACTIONS(12492), 1, - anon_sym_LPAREN, + ACTIONS(12529), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201212] = 2, - ACTIONS(12494), 1, - anon_sym_DASH_GT, + ACTIONS(12531), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201220] = 2, - ACTIONS(12496), 1, - anon_sym_RPAREN, + ACTIONS(12533), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201228] = 2, - ACTIONS(12498), 1, + ACTIONS(12535), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201236] = 2, - ACTIONS(12500), 1, - anon_sym_RPAREN, + ACTIONS(12537), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201244] = 2, - ACTIONS(12502), 1, - anon_sym_RPAREN, + ACTIONS(12539), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201252] = 2, - ACTIONS(12504), 1, - anon_sym_DASH_GT, + ACTIONS(12541), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201260] = 2, - ACTIONS(12506), 1, + ACTIONS(12543), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201268] = 2, - ACTIONS(12508), 1, + ACTIONS(12545), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [201276] = 2, - ACTIONS(12510), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201284] = 2, - ACTIONS(12512), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201292] = 2, - ACTIONS(12514), 1, + ACTIONS(12547), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [201300] = 2, - ACTIONS(12516), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [201308] = 2, - ACTIONS(12518), 1, + [201284] = 2, + ACTIONS(12549), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [201316] = 2, - ACTIONS(12520), 1, - anon_sym_RPAREN, + [201292] = 2, + ACTIONS(12551), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [201324] = 3, + [201300] = 3, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10443), 1, + ACTIONS(10397), 1, sym_line_comment, - ACTIONS(12522), 1, + ACTIONS(12553), 1, aux_sym_shebang_line_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(4437)] = 0, - [SMALL_STATE(4438)] = 79, - [SMALL_STATE(4439)] = 153, - [SMALL_STATE(4440)] = 237, - [SMALL_STATE(4441)] = 321, - [SMALL_STATE(4442)] = 405, - [SMALL_STATE(4443)] = 489, - [SMALL_STATE(4444)] = 573, - [SMALL_STATE(4445)] = 652, - [SMALL_STATE(4446)] = 725, - [SMALL_STATE(4447)] = 806, - [SMALL_STATE(4448)] = 887, - [SMALL_STATE(4449)] = 968, - [SMALL_STATE(4450)] = 1049, - [SMALL_STATE(4451)] = 1122, - [SMALL_STATE(4452)] = 1199, - [SMALL_STATE(4453)] = 1278, - [SMALL_STATE(4454)] = 1357, - [SMALL_STATE(4455)] = 1436, - [SMALL_STATE(4456)] = 1509, - [SMALL_STATE(4457)] = 1586, - [SMALL_STATE(4458)] = 1665, - [SMALL_STATE(4459)] = 1744, - [SMALL_STATE(4460)] = 1817, - [SMALL_STATE(4461)] = 1890, - [SMALL_STATE(4462)] = 1959, - [SMALL_STATE(4463)] = 2038, - [SMALL_STATE(4464)] = 2117, - [SMALL_STATE(4465)] = 2196, - [SMALL_STATE(4466)] = 2275, - [SMALL_STATE(4467)] = 2348, - [SMALL_STATE(4468)] = 2433, - [SMALL_STATE(4469)] = 2506, - [SMALL_STATE(4470)] = 2585, - [SMALL_STATE(4471)] = 2670, - [SMALL_STATE(4472)] = 2751, - [SMALL_STATE(4473)] = 2824, - [SMALL_STATE(4474)] = 2892, - [SMALL_STATE(4475)] = 2968, - [SMALL_STATE(4476)] = 3036, - [SMALL_STATE(4477)] = 3104, - [SMALL_STATE(4478)] = 3180, - [SMALL_STATE(4479)] = 3256, - [SMALL_STATE(4480)] = 3324, - [SMALL_STATE(4481)] = 3400, - [SMALL_STATE(4482)] = 3476, - [SMALL_STATE(4483)] = 3544, - [SMALL_STATE(4484)] = 3612, - [SMALL_STATE(4485)] = 3680, - [SMALL_STATE(4486)] = 3756, - [SMALL_STATE(4487)] = 3826, - [SMALL_STATE(4488)] = 3902, - [SMALL_STATE(4489)] = 3978, - [SMALL_STATE(4490)] = 4054, - [SMALL_STATE(4491)] = 4122, - [SMALL_STATE(4492)] = 4198, - [SMALL_STATE(4493)] = 4274, - [SMALL_STATE(4494)] = 4350, - [SMALL_STATE(4495)] = 4424, - [SMALL_STATE(4496)] = 4500, - [SMALL_STATE(4497)] = 4572, - [SMALL_STATE(4498)] = 4648, - [SMALL_STATE(4499)] = 4724, - [SMALL_STATE(4500)] = 4798, - [SMALL_STATE(4501)] = 4874, - [SMALL_STATE(4502)] = 4950, - [SMALL_STATE(4503)] = 5026, - [SMALL_STATE(4504)] = 5102, - [SMALL_STATE(4505)] = 5178, - [SMALL_STATE(4506)] = 5254, - [SMALL_STATE(4507)] = 5330, - [SMALL_STATE(4508)] = 5402, - [SMALL_STATE(4509)] = 5478, - [SMALL_STATE(4510)] = 5549, - [SMALL_STATE(4511)] = 5620, - [SMALL_STATE(4512)] = 5691, - [SMALL_STATE(4513)] = 5758, - [SMALL_STATE(4514)] = 5829, - [SMALL_STATE(4515)] = 5900, - [SMALL_STATE(4516)] = 5981, - [SMALL_STATE(4517)] = 6062, - [SMALL_STATE(4518)] = 6131, - [SMALL_STATE(4519)] = 6212, - [SMALL_STATE(4520)] = 6293, - [SMALL_STATE(4521)] = 6364, - [SMALL_STATE(4522)] = 6435, - [SMALL_STATE(4523)] = 6502, - [SMALL_STATE(4524)] = 6583, - [SMALL_STATE(4525)] = 6654, - [SMALL_STATE(4526)] = 6721, - [SMALL_STATE(4527)] = 6788, - [SMALL_STATE(4528)] = 6859, - [SMALL_STATE(4529)] = 6930, - [SMALL_STATE(4530)] = 6999, - [SMALL_STATE(4531)] = 7066, - [SMALL_STATE(4532)] = 7137, - [SMALL_STATE(4533)] = 7204, - [SMALL_STATE(4534)] = 7271, - [SMALL_STATE(4535)] = 7338, - [SMALL_STATE(4536)] = 7409, - [SMALL_STATE(4537)] = 7480, - [SMALL_STATE(4538)] = 7547, - [SMALL_STATE(4539)] = 7614, - [SMALL_STATE(4540)] = 7695, - [SMALL_STATE(4541)] = 7766, - [SMALL_STATE(4542)] = 7837, - [SMALL_STATE(4543)] = 7908, - [SMALL_STATE(4544)] = 7979, - [SMALL_STATE(4545)] = 8050, - [SMALL_STATE(4546)] = 8119, - [SMALL_STATE(4547)] = 8186, - [SMALL_STATE(4548)] = 8257, - [SMALL_STATE(4549)] = 8338, - [SMALL_STATE(4550)] = 8409, - [SMALL_STATE(4551)] = 8480, - [SMALL_STATE(4552)] = 8547, - [SMALL_STATE(4553)] = 8614, - [SMALL_STATE(4554)] = 8695, - [SMALL_STATE(4555)] = 8766, - [SMALL_STATE(4556)] = 8833, - [SMALL_STATE(4557)] = 8904, - [SMALL_STATE(4558)] = 8975, - [SMALL_STATE(4559)] = 9046, - [SMALL_STATE(4560)] = 9117, - [SMALL_STATE(4561)] = 9198, - [SMALL_STATE(4562)] = 9265, - [SMALL_STATE(4563)] = 9346, - [SMALL_STATE(4564)] = 9417, - [SMALL_STATE(4565)] = 9488, - [SMALL_STATE(4566)] = 9555, - [SMALL_STATE(4567)] = 9622, - [SMALL_STATE(4568)] = 9688, - [SMALL_STATE(4569)] = 9754, - [SMALL_STATE(4570)] = 9832, - [SMALL_STATE(4571)] = 9898, - [SMALL_STATE(4572)] = 9964, - [SMALL_STATE(4573)] = 10034, - [SMALL_STATE(4574)] = 10100, - [SMALL_STATE(4575)] = 10166, - [SMALL_STATE(4576)] = 10236, - [SMALL_STATE(4577)] = 10306, - [SMALL_STATE(4578)] = 10386, - [SMALL_STATE(4579)] = 10452, - [SMALL_STATE(4580)] = 10518, - [SMALL_STATE(4581)] = 10584, - [SMALL_STATE(4582)] = 10650, - [SMALL_STATE(4583)] = 10716, - [SMALL_STATE(4584)] = 10782, - [SMALL_STATE(4585)] = 10848, - [SMALL_STATE(4586)] = 10914, - [SMALL_STATE(4587)] = 10980, - [SMALL_STATE(4588)] = 11046, - [SMALL_STATE(4589)] = 11112, - [SMALL_STATE(4590)] = 11182, - [SMALL_STATE(4591)] = 11248, - [SMALL_STATE(4592)] = 11314, - [SMALL_STATE(4593)] = 11380, - [SMALL_STATE(4594)] = 11448, - [SMALL_STATE(4595)] = 11516, - [SMALL_STATE(4596)] = 11582, - [SMALL_STATE(4597)] = 11648, - [SMALL_STATE(4598)] = 11714, - [SMALL_STATE(4599)] = 11780, - [SMALL_STATE(4600)] = 11846, - [SMALL_STATE(4601)] = 11912, - [SMALL_STATE(4602)] = 11978, - [SMALL_STATE(4603)] = 12044, - [SMALL_STATE(4604)] = 12110, - [SMALL_STATE(4605)] = 12176, - [SMALL_STATE(4606)] = 12242, - [SMALL_STATE(4607)] = 12308, - [SMALL_STATE(4608)] = 12374, - [SMALL_STATE(4609)] = 12446, - [SMALL_STATE(4610)] = 12512, - [SMALL_STATE(4611)] = 12588, - [SMALL_STATE(4612)] = 12664, - [SMALL_STATE(4613)] = 12740, - [SMALL_STATE(4614)] = 12806, - [SMALL_STATE(4615)] = 12882, - [SMALL_STATE(4616)] = 12962, - [SMALL_STATE(4617)] = 13028, - [SMALL_STATE(4618)] = 13094, - [SMALL_STATE(4619)] = 13160, - [SMALL_STATE(4620)] = 13226, - [SMALL_STATE(4621)] = 13302, - [SMALL_STATE(4622)] = 13368, - [SMALL_STATE(4623)] = 13434, - [SMALL_STATE(4624)] = 13500, - [SMALL_STATE(4625)] = 13566, - [SMALL_STATE(4626)] = 13632, - [SMALL_STATE(4627)] = 13708, - [SMALL_STATE(4628)] = 13784, - [SMALL_STATE(4629)] = 13850, - [SMALL_STATE(4630)] = 13926, - [SMALL_STATE(4631)] = 13992, - [SMALL_STATE(4632)] = 14058, - [SMALL_STATE(4633)] = 14134, - [SMALL_STATE(4634)] = 14200, - [SMALL_STATE(4635)] = 14266, - [SMALL_STATE(4636)] = 14334, - [SMALL_STATE(4637)] = 14400, - [SMALL_STATE(4638)] = 14470, - [SMALL_STATE(4639)] = 14536, - [SMALL_STATE(4640)] = 14602, - [SMALL_STATE(4641)] = 14680, - [SMALL_STATE(4642)] = 14746, - [SMALL_STATE(4643)] = 14814, - [SMALL_STATE(4644)] = 14882, - [SMALL_STATE(4645)] = 14948, - [SMALL_STATE(4646)] = 15014, - [SMALL_STATE(4647)] = 15080, - [SMALL_STATE(4648)] = 15146, - [SMALL_STATE(4649)] = 15212, - [SMALL_STATE(4650)] = 15278, - [SMALL_STATE(4651)] = 15344, - [SMALL_STATE(4652)] = 15410, - [SMALL_STATE(4653)] = 15476, - [SMALL_STATE(4654)] = 15542, - [SMALL_STATE(4655)] = 15608, - [SMALL_STATE(4656)] = 15674, - [SMALL_STATE(4657)] = 15740, - [SMALL_STATE(4658)] = 15808, - [SMALL_STATE(4659)] = 15874, - [SMALL_STATE(4660)] = 15940, - [SMALL_STATE(4661)] = 16010, - [SMALL_STATE(4662)] = 16076, - [SMALL_STATE(4663)] = 16142, - [SMALL_STATE(4664)] = 16208, - [SMALL_STATE(4665)] = 16274, - [SMALL_STATE(4666)] = 16352, - [SMALL_STATE(4667)] = 16418, - [SMALL_STATE(4668)] = 16484, - [SMALL_STATE(4669)] = 16552, - [SMALL_STATE(4670)] = 16618, - [SMALL_STATE(4671)] = 16684, - [SMALL_STATE(4672)] = 16750, - [SMALL_STATE(4673)] = 16820, - [SMALL_STATE(4674)] = 16890, - [SMALL_STATE(4675)] = 16968, - [SMALL_STATE(4676)] = 17046, - [SMALL_STATE(4677)] = 17112, - [SMALL_STATE(4678)] = 17182, - [SMALL_STATE(4679)] = 17252, - [SMALL_STATE(4680)] = 17318, - [SMALL_STATE(4681)] = 17388, - [SMALL_STATE(4682)] = 17454, - [SMALL_STATE(4683)] = 17520, - [SMALL_STATE(4684)] = 17586, - [SMALL_STATE(4685)] = 17666, - [SMALL_STATE(4686)] = 17732, - [SMALL_STATE(4687)] = 17810, - [SMALL_STATE(4688)] = 17876, - [SMALL_STATE(4689)] = 17942, - [SMALL_STATE(4690)] = 18008, - [SMALL_STATE(4691)] = 18074, - [SMALL_STATE(4692)] = 18140, - [SMALL_STATE(4693)] = 18212, - [SMALL_STATE(4694)] = 18280, - [SMALL_STATE(4695)] = 18346, - [SMALL_STATE(4696)] = 18412, - [SMALL_STATE(4697)] = 18478, - [SMALL_STATE(4698)] = 18544, - [SMALL_STATE(4699)] = 18610, - [SMALL_STATE(4700)] = 18676, - [SMALL_STATE(4701)] = 18742, - [SMALL_STATE(4702)] = 18808, - [SMALL_STATE(4703)] = 18874, - [SMALL_STATE(4704)] = 18940, - [SMALL_STATE(4705)] = 19008, - [SMALL_STATE(4706)] = 19074, - [SMALL_STATE(4707)] = 19140, - [SMALL_STATE(4708)] = 19206, - [SMALL_STATE(4709)] = 19272, - [SMALL_STATE(4710)] = 19338, - [SMALL_STATE(4711)] = 19418, - [SMALL_STATE(4712)] = 19496, - [SMALL_STATE(4713)] = 19562, - [SMALL_STATE(4714)] = 19638, - [SMALL_STATE(4715)] = 19704, - [SMALL_STATE(4716)] = 19770, - [SMALL_STATE(4717)] = 19836, - [SMALL_STATE(4718)] = 19902, - [SMALL_STATE(4719)] = 19968, - [SMALL_STATE(4720)] = 20034, - [SMALL_STATE(4721)] = 20100, - [SMALL_STATE(4722)] = 20178, - [SMALL_STATE(4723)] = 20248, - [SMALL_STATE(4724)] = 20314, - [SMALL_STATE(4725)] = 20390, - [SMALL_STATE(4726)] = 20456, - [SMALL_STATE(4727)] = 20522, - [SMALL_STATE(4728)] = 20588, - [SMALL_STATE(4729)] = 20664, - [SMALL_STATE(4730)] = 20740, - [SMALL_STATE(4731)] = 20816, - [SMALL_STATE(4732)] = 20886, - [SMALL_STATE(4733)] = 20962, - [SMALL_STATE(4734)] = 21038, - [SMALL_STATE(4735)] = 21114, - [SMALL_STATE(4736)] = 21190, - [SMALL_STATE(4737)] = 21256, - [SMALL_STATE(4738)] = 21334, - [SMALL_STATE(4739)] = 21400, - [SMALL_STATE(4740)] = 21472, - [SMALL_STATE(4741)] = 21538, - [SMALL_STATE(4742)] = 21608, - [SMALL_STATE(4743)] = 21674, - [SMALL_STATE(4744)] = 21740, - [SMALL_STATE(4745)] = 21820, - [SMALL_STATE(4746)] = 21886, - [SMALL_STATE(4747)] = 21964, - [SMALL_STATE(4748)] = 22030, - [SMALL_STATE(4749)] = 22106, - [SMALL_STATE(4750)] = 22172, - [SMALL_STATE(4751)] = 22238, - [SMALL_STATE(4752)] = 22304, - [SMALL_STATE(4753)] = 22370, - [SMALL_STATE(4754)] = 22436, - [SMALL_STATE(4755)] = 22502, - [SMALL_STATE(4756)] = 22581, - [SMALL_STATE(4757)] = 22650, - [SMALL_STATE(4758)] = 22719, - [SMALL_STATE(4759)] = 22792, - [SMALL_STATE(4760)] = 22857, - [SMALL_STATE(4761)] = 22936, - [SMALL_STATE(4762)] = 23001, - [SMALL_STATE(4763)] = 23070, - [SMALL_STATE(4764)] = 23149, - [SMALL_STATE(4765)] = 23222, - [SMALL_STATE(4766)] = 23295, - [SMALL_STATE(4767)] = 23368, - [SMALL_STATE(4768)] = 23437, - [SMALL_STATE(4769)] = 23510, - [SMALL_STATE(4770)] = 23589, - [SMALL_STATE(4771)] = 23658, - [SMALL_STATE(4772)] = 23723, - [SMALL_STATE(4773)] = 23798, - [SMALL_STATE(4774)] = 23871, - [SMALL_STATE(4775)] = 23944, - [SMALL_STATE(4776)] = 24017, - [SMALL_STATE(4777)] = 24094, - [SMALL_STATE(4778)] = 24167, - [SMALL_STATE(4779)] = 24232, - [SMALL_STATE(4780)] = 24305, - [SMALL_STATE(4781)] = 24384, - [SMALL_STATE(4782)] = 24457, - [SMALL_STATE(4783)] = 24530, - [SMALL_STATE(4784)] = 24595, - [SMALL_STATE(4785)] = 24674, - [SMALL_STATE(4786)] = 24743, - [SMALL_STATE(4787)] = 24808, - [SMALL_STATE(4788)] = 24873, - [SMALL_STATE(4789)] = 24938, - [SMALL_STATE(4790)] = 25003, - [SMALL_STATE(4791)] = 25078, - [SMALL_STATE(4792)] = 25143, - [SMALL_STATE(4793)] = 25218, - [SMALL_STATE(4794)] = 25293, - [SMALL_STATE(4795)] = 25358, - [SMALL_STATE(4796)] = 25423, - [SMALL_STATE(4797)] = 25496, - [SMALL_STATE(4798)] = 25575, - [SMALL_STATE(4799)] = 25648, - [SMALL_STATE(4800)] = 25721, - [SMALL_STATE(4801)] = 25796, - [SMALL_STATE(4802)] = 25871, - [SMALL_STATE(4803)] = 25940, - [SMALL_STATE(4804)] = 26013, - [SMALL_STATE(4805)] = 26090, - [SMALL_STATE(4806)] = 26161, - [SMALL_STATE(4807)] = 26232, - [SMALL_STATE(4808)] = 26307, - [SMALL_STATE(4809)] = 26380, - [SMALL_STATE(4810)] = 26459, - [SMALL_STATE(4811)] = 26534, - [SMALL_STATE(4812)] = 26609, - [SMALL_STATE(4813)] = 26678, - [SMALL_STATE(4814)] = 26753, - [SMALL_STATE(4815)] = 26820, - [SMALL_STATE(4816)] = 26897, - [SMALL_STATE(4817)] = 26976, - [SMALL_STATE(4818)] = 27051, - [SMALL_STATE(4819)] = 27124, - [SMALL_STATE(4820)] = 27197, - [SMALL_STATE(4821)] = 27274, - [SMALL_STATE(4822)] = 27353, - [SMALL_STATE(4823)] = 27426, - [SMALL_STATE(4824)] = 27503, - [SMALL_STATE(4825)] = 27576, - [SMALL_STATE(4826)] = 27649, - [SMALL_STATE(4827)] = 27725, - [SMALL_STATE(4828)] = 27791, - [SMALL_STATE(4829)] = 27855, - [SMALL_STATE(4830)] = 27931, - [SMALL_STATE(4831)] = 28005, - [SMALL_STATE(4832)] = 28081, - [SMALL_STATE(4833)] = 28157, - [SMALL_STATE(4834)] = 28229, - [SMALL_STATE(4835)] = 28301, - [SMALL_STATE(4836)] = 28377, - [SMALL_STATE(4837)] = 28445, - [SMALL_STATE(4838)] = 28509, - [SMALL_STATE(4839)] = 28585, - [SMALL_STATE(4840)] = 28653, - [SMALL_STATE(4841)] = 28721, - [SMALL_STATE(4842)] = 28785, - [SMALL_STATE(4843)] = 28853, - [SMALL_STATE(4844)] = 28917, - [SMALL_STATE(4845)] = 28991, - [SMALL_STATE(4846)] = 29055, - [SMALL_STATE(4847)] = 29131, - [SMALL_STATE(4848)] = 29203, - [SMALL_STATE(4849)] = 29275, - [SMALL_STATE(4850)] = 29347, - [SMALL_STATE(4851)] = 29415, - [SMALL_STATE(4852)] = 29491, - [SMALL_STATE(4853)] = 29563, - [SMALL_STATE(4854)] = 29637, - [SMALL_STATE(4855)] = 29705, - [SMALL_STATE(4856)] = 29769, - [SMALL_STATE(4857)] = 29837, - [SMALL_STATE(4858)] = 29909, - [SMALL_STATE(4859)] = 29977, - [SMALL_STATE(4860)] = 30053, - [SMALL_STATE(4861)] = 30121, - [SMALL_STATE(4862)] = 30185, - [SMALL_STATE(4863)] = 30257, - [SMALL_STATE(4864)] = 30329, - [SMALL_STATE(4865)] = 30393, - [SMALL_STATE(4866)] = 30461, - [SMALL_STATE(4867)] = 30527, - [SMALL_STATE(4868)] = 30595, - [SMALL_STATE(4869)] = 30663, - [SMALL_STATE(4870)] = 30727, - [SMALL_STATE(4871)] = 30801, - [SMALL_STATE(4872)] = 30867, - [SMALL_STATE(4873)] = 30931, - [SMALL_STATE(4874)] = 30999, - [SMALL_STATE(4875)] = 31075, - [SMALL_STATE(4876)] = 31143, - [SMALL_STATE(4877)] = 31211, - [SMALL_STATE(4878)] = 31275, - [SMALL_STATE(4879)] = 31347, - [SMALL_STATE(4880)] = 31415, - [SMALL_STATE(4881)] = 31483, - [SMALL_STATE(4882)] = 31547, - [SMALL_STATE(4883)] = 31615, - [SMALL_STATE(4884)] = 31683, - [SMALL_STATE(4885)] = 31747, - [SMALL_STATE(4886)] = 31815, - [SMALL_STATE(4887)] = 31883, - [SMALL_STATE(4888)] = 31957, - [SMALL_STATE(4889)] = 32021, - [SMALL_STATE(4890)] = 32095, - [SMALL_STATE(4891)] = 32163, - [SMALL_STATE(4892)] = 32231, - [SMALL_STATE(4893)] = 32299, - [SMALL_STATE(4894)] = 32369, - [SMALL_STATE(4895)] = 32437, - [SMALL_STATE(4896)] = 32505, - [SMALL_STATE(4897)] = 32573, - [SMALL_STATE(4898)] = 32643, - [SMALL_STATE(4899)] = 32711, - [SMALL_STATE(4900)] = 32784, - [SMALL_STATE(4901)] = 32847, - [SMALL_STATE(4902)] = 32910, - [SMALL_STATE(4903)] = 32973, - [SMALL_STATE(4904)] = 33036, - [SMALL_STATE(4905)] = 33099, - [SMALL_STATE(4906)] = 33164, - [SMALL_STATE(4907)] = 33227, - [SMALL_STATE(4908)] = 33290, - [SMALL_STATE(4909)] = 33361, - [SMALL_STATE(4910)] = 33432, - [SMALL_STATE(4911)] = 33495, - [SMALL_STATE(4912)] = 33566, - [SMALL_STATE(4913)] = 33629, - [SMALL_STATE(4914)] = 33694, - [SMALL_STATE(4915)] = 33757, - [SMALL_STATE(4916)] = 33820, - [SMALL_STATE(4917)] = 33883, - [SMALL_STATE(4918)] = 33946, - [SMALL_STATE(4919)] = 34011, - [SMALL_STATE(4920)] = 34074, - [SMALL_STATE(4921)] = 34143, - [SMALL_STATE(4922)] = 34206, - [SMALL_STATE(4923)] = 34269, - [SMALL_STATE(4924)] = 34332, - [SMALL_STATE(4925)] = 34395, - [SMALL_STATE(4926)] = 34458, - [SMALL_STATE(4927)] = 34529, - [SMALL_STATE(4928)] = 34600, - [SMALL_STATE(4929)] = 34665, - [SMALL_STATE(4930)] = 34738, - [SMALL_STATE(4931)] = 34809, - [SMALL_STATE(4932)] = 34872, - [SMALL_STATE(4933)] = 34935, - [SMALL_STATE(4934)] = 34998, - [SMALL_STATE(4935)] = 35061, - [SMALL_STATE(4936)] = 35124, - [SMALL_STATE(4937)] = 35187, - [SMALL_STATE(4938)] = 35250, - [SMALL_STATE(4939)] = 35313, - [SMALL_STATE(4940)] = 35376, - [SMALL_STATE(4941)] = 35439, - [SMALL_STATE(4942)] = 35504, - [SMALL_STATE(4943)] = 35567, - [SMALL_STATE(4944)] = 35630, - [SMALL_STATE(4945)] = 35697, - [SMALL_STATE(4946)] = 35760, - [SMALL_STATE(4947)] = 35823, - [SMALL_STATE(4948)] = 35886, - [SMALL_STATE(4949)] = 35949, - [SMALL_STATE(4950)] = 36012, - [SMALL_STATE(4951)] = 36075, - [SMALL_STATE(4952)] = 36138, - [SMALL_STATE(4953)] = 36209, - [SMALL_STATE(4954)] = 36272, - [SMALL_STATE(4955)] = 36335, - [SMALL_STATE(4956)] = 36398, - [SMALL_STATE(4957)] = 36461, - [SMALL_STATE(4958)] = 36534, - [SMALL_STATE(4959)] = 36597, - [SMALL_STATE(4960)] = 36670, - [SMALL_STATE(4961)] = 36733, - [SMALL_STATE(4962)] = 36796, - [SMALL_STATE(4963)] = 36859, - [SMALL_STATE(4964)] = 36930, - [SMALL_STATE(4965)] = 36993, - [SMALL_STATE(4966)] = 37064, - [SMALL_STATE(4967)] = 37127, - [SMALL_STATE(4968)] = 37190, - [SMALL_STATE(4969)] = 37253, - [SMALL_STATE(4970)] = 37316, - [SMALL_STATE(4971)] = 37379, - [SMALL_STATE(4972)] = 37442, - [SMALL_STATE(4973)] = 37505, - [SMALL_STATE(4974)] = 37568, - [SMALL_STATE(4975)] = 37631, - [SMALL_STATE(4976)] = 37694, - [SMALL_STATE(4977)] = 37757, - [SMALL_STATE(4978)] = 37820, - [SMALL_STATE(4979)] = 37889, - [SMALL_STATE(4980)] = 37962, - [SMALL_STATE(4981)] = 38025, - [SMALL_STATE(4982)] = 38088, - [SMALL_STATE(4983)] = 38151, - [SMALL_STATE(4984)] = 38222, - [SMALL_STATE(4985)] = 38285, - [SMALL_STATE(4986)] = 38348, - [SMALL_STATE(4987)] = 38411, - [SMALL_STATE(4988)] = 38476, - [SMALL_STATE(4989)] = 38539, - [SMALL_STATE(4990)] = 38602, - [SMALL_STATE(4991)] = 38665, - [SMALL_STATE(4992)] = 38728, - [SMALL_STATE(4993)] = 38791, - [SMALL_STATE(4994)] = 38854, - [SMALL_STATE(4995)] = 38917, - [SMALL_STATE(4996)] = 38980, - [SMALL_STATE(4997)] = 39043, - [SMALL_STATE(4998)] = 39106, - [SMALL_STATE(4999)] = 39169, - [SMALL_STATE(5000)] = 39234, - [SMALL_STATE(5001)] = 39297, - [SMALL_STATE(5002)] = 39360, - [SMALL_STATE(5003)] = 39431, - [SMALL_STATE(5004)] = 39504, - [SMALL_STATE(5005)] = 39567, - [SMALL_STATE(5006)] = 39634, - [SMALL_STATE(5007)] = 39697, - [SMALL_STATE(5008)] = 39766, - [SMALL_STATE(5009)] = 39829, - [SMALL_STATE(5010)] = 39898, - [SMALL_STATE(5011)] = 39961, - [SMALL_STATE(5012)] = 40024, - [SMALL_STATE(5013)] = 40087, - [SMALL_STATE(5014)] = 40158, - [SMALL_STATE(5015)] = 40221, - [SMALL_STATE(5016)] = 40284, - [SMALL_STATE(5017)] = 40347, - [SMALL_STATE(5018)] = 40410, - [SMALL_STATE(5019)] = 40473, - [SMALL_STATE(5020)] = 40544, - [SMALL_STATE(5021)] = 40607, - [SMALL_STATE(5022)] = 40670, - [SMALL_STATE(5023)] = 40733, - [SMALL_STATE(5024)] = 40804, - [SMALL_STATE(5025)] = 40867, - [SMALL_STATE(5026)] = 40930, - [SMALL_STATE(5027)] = 40993, - [SMALL_STATE(5028)] = 41066, - [SMALL_STATE(5029)] = 41139, - [SMALL_STATE(5030)] = 41202, - [SMALL_STATE(5031)] = 41265, - [SMALL_STATE(5032)] = 41328, - [SMALL_STATE(5033)] = 41391, - [SMALL_STATE(5034)] = 41454, - [SMALL_STATE(5035)] = 41517, - [SMALL_STATE(5036)] = 41580, - [SMALL_STATE(5037)] = 41647, - [SMALL_STATE(5038)] = 41710, - [SMALL_STATE(5039)] = 41773, - [SMALL_STATE(5040)] = 41836, - [SMALL_STATE(5041)] = 41899, - [SMALL_STATE(5042)] = 41972, - [SMALL_STATE(5043)] = 42043, - [SMALL_STATE(5044)] = 42114, - [SMALL_STATE(5045)] = 42187, - [SMALL_STATE(5046)] = 42256, - [SMALL_STATE(5047)] = 42329, - [SMALL_STATE(5048)] = 42392, - [SMALL_STATE(5049)] = 42455, - [SMALL_STATE(5050)] = 42518, - [SMALL_STATE(5051)] = 42581, - [SMALL_STATE(5052)] = 42644, - [SMALL_STATE(5053)] = 42707, - [SMALL_STATE(5054)] = 42780, - [SMALL_STATE(5055)] = 42843, - [SMALL_STATE(5056)] = 42906, - [SMALL_STATE(5057)] = 42973, - [SMALL_STATE(5058)] = 43044, - [SMALL_STATE(5059)] = 43107, - [SMALL_STATE(5060)] = 43170, - [SMALL_STATE(5061)] = 43233, - [SMALL_STATE(5062)] = 43304, - [SMALL_STATE(5063)] = 43367, - [SMALL_STATE(5064)] = 43430, - [SMALL_STATE(5065)] = 43495, - [SMALL_STATE(5066)] = 43558, - [SMALL_STATE(5067)] = 43621, - [SMALL_STATE(5068)] = 43684, - [SMALL_STATE(5069)] = 43747, - [SMALL_STATE(5070)] = 43810, - [SMALL_STATE(5071)] = 43873, - [SMALL_STATE(5072)] = 43946, - [SMALL_STATE(5073)] = 44019, - [SMALL_STATE(5074)] = 44082, - [SMALL_STATE(5075)] = 44153, - [SMALL_STATE(5076)] = 44226, - [SMALL_STATE(5077)] = 44299, - [SMALL_STATE(5078)] = 44362, - [SMALL_STATE(5079)] = 44425, - [SMALL_STATE(5080)] = 44488, - [SMALL_STATE(5081)] = 44551, - [SMALL_STATE(5082)] = 44614, - [SMALL_STATE(5083)] = 44685, - [SMALL_STATE(5084)] = 44747, - [SMALL_STATE(5085)] = 44817, - [SMALL_STATE(5086)] = 44887, - [SMALL_STATE(5087)] = 44953, - [SMALL_STATE(5088)] = 45019, - [SMALL_STATE(5089)] = 45081, - [SMALL_STATE(5090)] = 45151, - [SMALL_STATE(5091)] = 45217, - [SMALL_STATE(5092)] = 45287, - [SMALL_STATE(5093)] = 45357, - [SMALL_STATE(5094)] = 45433, - [SMALL_STATE(5095)] = 45503, - [SMALL_STATE(5096)] = 45569, - [SMALL_STATE(5097)] = 45637, - [SMALL_STATE(5098)] = 45713, - [SMALL_STATE(5099)] = 45777, - [SMALL_STATE(5100)] = 45841, - [SMALL_STATE(5101)] = 45905, - [SMALL_STATE(5102)] = 45969, - [SMALL_STATE(5103)] = 46033, - [SMALL_STATE(5104)] = 46109, - [SMALL_STATE(5105)] = 46185, - [SMALL_STATE(5106)] = 46249, - [SMALL_STATE(5107)] = 46319, - [SMALL_STATE(5108)] = 46389, - [SMALL_STATE(5109)] = 46455, - [SMALL_STATE(5110)] = 46525, - [SMALL_STATE(5111)] = 46595, - [SMALL_STATE(5112)] = 46665, - [SMALL_STATE(5113)] = 46727, - [SMALL_STATE(5114)] = 46797, - [SMALL_STATE(5115)] = 46873, - [SMALL_STATE(5116)] = 46943, - [SMALL_STATE(5117)] = 47005, - [SMALL_STATE(5118)] = 47081, - [SMALL_STATE(5119)] = 47151, - [SMALL_STATE(5120)] = 47213, - [SMALL_STATE(5121)] = 47277, - [SMALL_STATE(5122)] = 47343, - [SMALL_STATE(5123)] = 47419, - [SMALL_STATE(5124)] = 47495, - [SMALL_STATE(5125)] = 47565, - [SMALL_STATE(5126)] = 47641, - [SMALL_STATE(5127)] = 47711, - [SMALL_STATE(5128)] = 47781, - [SMALL_STATE(5129)] = 47847, - [SMALL_STATE(5130)] = 47923, - [SMALL_STATE(5131)] = 47991, - [SMALL_STATE(5132)] = 48061, - [SMALL_STATE(5133)] = 48133, - [SMALL_STATE(5134)] = 48199, - [SMALL_STATE(5135)] = 48265, - [SMALL_STATE(5136)] = 48333, - [SMALL_STATE(5137)] = 48395, - [SMALL_STATE(5138)] = 48459, - [SMALL_STATE(5139)] = 48527, - [SMALL_STATE(5140)] = 48593, - [SMALL_STATE(5141)] = 48663, - [SMALL_STATE(5142)] = 48724, - [SMALL_STATE(5143)] = 48785, - [SMALL_STATE(5144)] = 48860, - [SMALL_STATE(5145)] = 48925, - [SMALL_STATE(5146)] = 48988, - [SMALL_STATE(5147)] = 49051, - [SMALL_STATE(5148)] = 49114, - [SMALL_STATE(5149)] = 49179, - [SMALL_STATE(5150)] = 49242, - [SMALL_STATE(5151)] = 49305, - [SMALL_STATE(5152)] = 49410, - [SMALL_STATE(5153)] = 49515, - [SMALL_STATE(5154)] = 49582, - [SMALL_STATE(5155)] = 49687, - [SMALL_STATE(5156)] = 49760, - [SMALL_STATE(5157)] = 49823, - [SMALL_STATE(5158)] = 49894, - [SMALL_STATE(5159)] = 49999, - [SMALL_STATE(5160)] = 50072, - [SMALL_STATE(5161)] = 50133, - [SMALL_STATE(5162)] = 50206, - [SMALL_STATE(5163)] = 50267, - [SMALL_STATE(5164)] = 50340, - [SMALL_STATE(5165)] = 50401, - [SMALL_STATE(5166)] = 50474, - [SMALL_STATE(5167)] = 50545, - [SMALL_STATE(5168)] = 50620, - [SMALL_STATE(5169)] = 50681, - [SMALL_STATE(5170)] = 50742, - [SMALL_STATE(5171)] = 50815, - [SMALL_STATE(5172)] = 50886, - [SMALL_STATE(5173)] = 50947, - [SMALL_STATE(5174)] = 51014, - [SMALL_STATE(5175)] = 51081, - [SMALL_STATE(5176)] = 51154, - [SMALL_STATE(5177)] = 51215, - [SMALL_STATE(5178)] = 51276, - [SMALL_STATE(5179)] = 51339, - [SMALL_STATE(5180)] = 51406, - [SMALL_STATE(5181)] = 51467, - [SMALL_STATE(5182)] = 51530, - [SMALL_STATE(5183)] = 51591, - [SMALL_STATE(5184)] = 51652, - [SMALL_STATE(5185)] = 51727, - [SMALL_STATE(5186)] = 51790, - [SMALL_STATE(5187)] = 51851, - [SMALL_STATE(5188)] = 51916, - [SMALL_STATE(5189)] = 51989, - [SMALL_STATE(5190)] = 52064, - [SMALL_STATE(5191)] = 52125, - [SMALL_STATE(5192)] = 52198, - [SMALL_STATE(5193)] = 52271, - [SMALL_STATE(5194)] = 52346, - [SMALL_STATE(5195)] = 52407, - [SMALL_STATE(5196)] = 52468, - [SMALL_STATE(5197)] = 52538, - [SMALL_STATE(5198)] = 52600, - [SMALL_STATE(5199)] = 52664, - [SMALL_STATE(5200)] = 52736, - [SMALL_STATE(5201)] = 52806, - [SMALL_STATE(5202)] = 52870, - [SMALL_STATE(5203)] = 52942, - [SMALL_STATE(5204)] = 53014, - [SMALL_STATE(5205)] = 53078, - [SMALL_STATE(5206)] = 53148, - [SMALL_STATE(5207)] = 53218, - [SMALL_STATE(5208)] = 53288, - [SMALL_STATE(5209)] = 53356, - [SMALL_STATE(5210)] = 53420, - [SMALL_STATE(5211)] = 53490, - [SMALL_STATE(5212)] = 53558, - [SMALL_STATE(5213)] = 53628, - [SMALL_STATE(5214)] = 53700, - [SMALL_STATE(5215)] = 53768, - [SMALL_STATE(5216)] = 53832, - [SMALL_STATE(5217)] = 53904, - [SMALL_STATE(5218)] = 53968, - [SMALL_STATE(5219)] = 54030, - [SMALL_STATE(5220)] = 54130, - [SMALL_STATE(5221)] = 54230, - [SMALL_STATE(5222)] = 54292, - [SMALL_STATE(5223)] = 54354, - [SMALL_STATE(5224)] = 54418, - [SMALL_STATE(5225)] = 54482, - [SMALL_STATE(5226)] = 54550, - [SMALL_STATE(5227)] = 54614, - [SMALL_STATE(5228)] = 54678, - [SMALL_STATE(5229)] = 54742, - [SMALL_STATE(5230)] = 54804, - [SMALL_STATE(5231)] = 54874, - [SMALL_STATE(5232)] = 54978, - [SMALL_STATE(5233)] = 55048, - [SMALL_STATE(5234)] = 55118, - [SMALL_STATE(5235)] = 55182, - [SMALL_STATE(5236)] = 55252, - [SMALL_STATE(5237)] = 55322, - [SMALL_STATE(5238)] = 55386, - [SMALL_STATE(5239)] = 55450, - [SMALL_STATE(5240)] = 55520, - [SMALL_STATE(5241)] = 55590, - [SMALL_STATE(5242)] = 55694, - [SMALL_STATE(5243)] = 55794, - [SMALL_STATE(5244)] = 55862, - [SMALL_STATE(5245)] = 55926, - [SMALL_STATE(5246)] = 55990, - [SMALL_STATE(5247)] = 56094, - [SMALL_STATE(5248)] = 56162, - [SMALL_STATE(5249)] = 56226, - [SMALL_STATE(5250)] = 56294, - [SMALL_STATE(5251)] = 56364, - [SMALL_STATE(5252)] = 56434, - [SMALL_STATE(5253)] = 56498, - [SMALL_STATE(5254)] = 56568, - [SMALL_STATE(5255)] = 56638, - [SMALL_STATE(5256)] = 56702, - [SMALL_STATE(5257)] = 56766, - [SMALL_STATE(5258)] = 56830, - [SMALL_STATE(5259)] = 56894, - [SMALL_STATE(5260)] = 56962, - [SMALL_STATE(5261)] = 57032, - [SMALL_STATE(5262)] = 57132, - [SMALL_STATE(5263)] = 57236, - [SMALL_STATE(5264)] = 57300, - [SMALL_STATE(5265)] = 57400, - [SMALL_STATE(5266)] = 57468, - [SMALL_STATE(5267)] = 57536, - [SMALL_STATE(5268)] = 57600, - [SMALL_STATE(5269)] = 57664, - [SMALL_STATE(5270)] = 57723, - [SMALL_STATE(5271)] = 57782, - [SMALL_STATE(5272)] = 57849, - [SMALL_STATE(5273)] = 57908, - [SMALL_STATE(5274)] = 57975, - [SMALL_STATE(5275)] = 58042, - [SMALL_STATE(5276)] = 58101, - [SMALL_STATE(5277)] = 58200, - [SMALL_STATE(5278)] = 58259, - [SMALL_STATE(5279)] = 58356, - [SMALL_STATE(5280)] = 58425, - [SMALL_STATE(5281)] = 58488, - [SMALL_STATE(5282)] = 58547, - [SMALL_STATE(5283)] = 58616, - [SMALL_STATE(5284)] = 58715, - [SMALL_STATE(5285)] = 58814, - [SMALL_STATE(5286)] = 58873, - [SMALL_STATE(5287)] = 58970, - [SMALL_STATE(5288)] = 59029, - [SMALL_STATE(5289)] = 59096, - [SMALL_STATE(5290)] = 59155, - [SMALL_STATE(5291)] = 59214, - [SMALL_STATE(5292)] = 59273, - [SMALL_STATE(5293)] = 59342, - [SMALL_STATE(5294)] = 59401, - [SMALL_STATE(5295)] = 59460, - [SMALL_STATE(5296)] = 59527, - [SMALL_STATE(5297)] = 59586, - [SMALL_STATE(5298)] = 59653, - [SMALL_STATE(5299)] = 59712, - [SMALL_STATE(5300)] = 59809, - [SMALL_STATE(5301)] = 59868, - [SMALL_STATE(5302)] = 59929, - [SMALL_STATE(5303)] = 59996, - [SMALL_STATE(5304)] = 60095, - [SMALL_STATE(5305)] = 60154, - [SMALL_STATE(5306)] = 60235, - [SMALL_STATE(5307)] = 60294, - [SMALL_STATE(5308)] = 60355, - [SMALL_STATE(5309)] = 60452, - [SMALL_STATE(5310)] = 60511, - [SMALL_STATE(5311)] = 60592, - [SMALL_STATE(5312)] = 60651, - [SMALL_STATE(5313)] = 60720, - [SMALL_STATE(5314)] = 60789, - [SMALL_STATE(5315)] = 60858, - [SMALL_STATE(5316)] = 60957, - [SMALL_STATE(5317)] = 61026, - [SMALL_STATE(5318)] = 61093, - [SMALL_STATE(5319)] = 61174, - [SMALL_STATE(5320)] = 61233, - [SMALL_STATE(5321)] = 61292, - [SMALL_STATE(5322)] = 61351, - [SMALL_STATE(5323)] = 61410, - [SMALL_STATE(5324)] = 61469, - [SMALL_STATE(5325)] = 61528, - [SMALL_STATE(5326)] = 61597, - [SMALL_STATE(5327)] = 61656, - [SMALL_STATE(5328)] = 61715, - [SMALL_STATE(5329)] = 61774, - [SMALL_STATE(5330)] = 61833, - [SMALL_STATE(5331)] = 61892, - [SMALL_STATE(5332)] = 61989, - [SMALL_STATE(5333)] = 62048, - [SMALL_STATE(5334)] = 62145, - [SMALL_STATE(5335)] = 62212, - [SMALL_STATE(5336)] = 62271, - [SMALL_STATE(5337)] = 62330, - [SMALL_STATE(5338)] = 62399, - [SMALL_STATE(5339)] = 62468, - [SMALL_STATE(5340)] = 62527, - [SMALL_STATE(5341)] = 62594, - [SMALL_STATE(5342)] = 62653, - [SMALL_STATE(5343)] = 62712, - [SMALL_STATE(5344)] = 62779, - [SMALL_STATE(5345)] = 62838, - [SMALL_STATE(5346)] = 62937, - [SMALL_STATE(5347)] = 62996, - [SMALL_STATE(5348)] = 63055, - [SMALL_STATE(5349)] = 63114, - [SMALL_STATE(5350)] = 63173, - [SMALL_STATE(5351)] = 63272, - [SMALL_STATE(5352)] = 63331, - [SMALL_STATE(5353)] = 63390, - [SMALL_STATE(5354)] = 63451, - [SMALL_STATE(5355)] = 63512, - [SMALL_STATE(5356)] = 63571, - [SMALL_STATE(5357)] = 63630, - [SMALL_STATE(5358)] = 63689, - [SMALL_STATE(5359)] = 63758, - [SMALL_STATE(5360)] = 63817, - [SMALL_STATE(5361)] = 63876, - [SMALL_STATE(5362)] = 63939, - [SMALL_STATE(5363)] = 64038, - [SMALL_STATE(5364)] = 64097, - [SMALL_STATE(5365)] = 64156, - [SMALL_STATE(5366)] = 64253, - [SMALL_STATE(5367)] = 64312, - [SMALL_STATE(5368)] = 64371, - [SMALL_STATE(5369)] = 64430, - [SMALL_STATE(5370)] = 64527, - [SMALL_STATE(5371)] = 64626, - [SMALL_STATE(5372)] = 64685, - [SMALL_STATE(5373)] = 64744, - [SMALL_STATE(5374)] = 64803, - [SMALL_STATE(5375)] = 64900, - [SMALL_STATE(5376)] = 64961, - [SMALL_STATE(5377)] = 65026, - [SMALL_STATE(5378)] = 65089, - [SMALL_STATE(5379)] = 65148, - [SMALL_STATE(5380)] = 65207, - [SMALL_STATE(5381)] = 65272, - [SMALL_STATE(5382)] = 65333, - [SMALL_STATE(5383)] = 65392, - [SMALL_STATE(5384)] = 65451, - [SMALL_STATE(5385)] = 65516, - [SMALL_STATE(5386)] = 65575, - [SMALL_STATE(5387)] = 65634, - [SMALL_STATE(5388)] = 65699, - [SMALL_STATE(5389)] = 65758, - [SMALL_STATE(5390)] = 65817, - [SMALL_STATE(5391)] = 65876, - [SMALL_STATE(5392)] = 65935, - [SMALL_STATE(5393)] = 65994, - [SMALL_STATE(5394)] = 66088, - [SMALL_STATE(5395)] = 66184, - [SMALL_STATE(5396)] = 66278, - [SMALL_STATE(5397)] = 66344, - [SMALL_STATE(5398)] = 66402, - [SMALL_STATE(5399)] = 66468, - [SMALL_STATE(5400)] = 66566, - [SMALL_STATE(5401)] = 66664, - [SMALL_STATE(5402)] = 66730, - [SMALL_STATE(5403)] = 66824, - [SMALL_STATE(5404)] = 66918, - [SMALL_STATE(5405)] = 66984, - [SMALL_STATE(5406)] = 67046, - [SMALL_STATE(5407)] = 67112, - [SMALL_STATE(5408)] = 67206, - [SMALL_STATE(5409)] = 67272, - [SMALL_STATE(5410)] = 67368, - [SMALL_STATE(5411)] = 67434, - [SMALL_STATE(5412)] = 67528, - [SMALL_STATE(5413)] = 67594, - [SMALL_STATE(5414)] = 67660, - [SMALL_STATE(5415)] = 67726, - [SMALL_STATE(5416)] = 67824, - [SMALL_STATE(5417)] = 67884, - [SMALL_STATE(5418)] = 67980, - [SMALL_STATE(5419)] = 68040, - [SMALL_STATE(5420)] = 68098, - [SMALL_STATE(5421)] = 68192, - [SMALL_STATE(5422)] = 68288, - [SMALL_STATE(5423)] = 68384, - [SMALL_STATE(5424)] = 68478, - [SMALL_STATE(5425)] = 68542, - [SMALL_STATE(5426)] = 68604, - [SMALL_STATE(5427)] = 68668, - [SMALL_STATE(5428)] = 68764, - [SMALL_STATE(5429)] = 68826, - [SMALL_STATE(5430)] = 68922, - [SMALL_STATE(5431)] = 69016, - [SMALL_STATE(5432)] = 69110, - [SMALL_STATE(5433)] = 69204, - [SMALL_STATE(5434)] = 69266, - [SMALL_STATE(5435)] = 69328, - [SMALL_STATE(5436)] = 69386, - [SMALL_STATE(5437)] = 69480, - [SMALL_STATE(5438)] = 69576, - [SMALL_STATE(5439)] = 69674, - [SMALL_STATE(5440)] = 69734, - [SMALL_STATE(5441)] = 69828, - [SMALL_STATE(5442)] = 69922, - [SMALL_STATE(5443)] = 70016, - [SMALL_STATE(5444)] = 70110, - [SMALL_STATE(5445)] = 70204, - [SMALL_STATE(5446)] = 70298, - [SMALL_STATE(5447)] = 70392, - [SMALL_STATE(5448)] = 70486, - [SMALL_STATE(5449)] = 70546, - [SMALL_STATE(5450)] = 70640, - [SMALL_STATE(5451)] = 70736, - [SMALL_STATE(5452)] = 70830, - [SMALL_STATE(5453)] = 70924, - [SMALL_STATE(5454)] = 70983, - [SMALL_STATE(5455)] = 71046, - [SMALL_STATE(5456)] = 71107, - [SMALL_STATE(5457)] = 71200, - [SMALL_STATE(5458)] = 71263, - [SMALL_STATE(5459)] = 71356, - [SMALL_STATE(5460)] = 71435, - [SMALL_STATE(5461)] = 71494, - [SMALL_STATE(5462)] = 71553, - [SMALL_STATE(5463)] = 71646, - [SMALL_STATE(5464)] = 71737, - [SMALL_STATE(5465)] = 71798, - [SMALL_STATE(5466)] = 71889, - [SMALL_STATE(5467)] = 71982, - [SMALL_STATE(5468)] = 72075, - [SMALL_STATE(5469)] = 72166, - [SMALL_STATE(5470)] = 72227, - [SMALL_STATE(5471)] = 72286, - [SMALL_STATE(5472)] = 72345, - [SMALL_STATE(5473)] = 72403, - [SMALL_STATE(5474)] = 72461, - [SMALL_STATE(5475)] = 72521, - [SMALL_STATE(5476)] = 72577, - [SMALL_STATE(5477)] = 72635, - [SMALL_STATE(5478)] = 72693, - [SMALL_STATE(5479)] = 72749, - [SMALL_STATE(5480)] = 72805, - [SMALL_STATE(5481)] = 72863, - [SMALL_STATE(5482)] = 72919, - [SMALL_STATE(5483)] = 73004, - [SMALL_STATE(5484)] = 73061, - [SMALL_STATE(5485)] = 73146, - [SMALL_STATE(5486)] = 73203, - [SMALL_STATE(5487)] = 73260, - [SMALL_STATE(5488)] = 73347, - [SMALL_STATE(5489)] = 73404, - [SMALL_STATE(5490)] = 73489, - [SMALL_STATE(5491)] = 73546, - [SMALL_STATE(5492)] = 73631, - [SMALL_STATE(5493)] = 73690, - [SMALL_STATE(5494)] = 73775, - [SMALL_STATE(5495)] = 73860, - [SMALL_STATE(5496)] = 73942, - [SMALL_STATE(5497)] = 74026, - [SMALL_STATE(5498)] = 74110, - [SMALL_STATE(5499)] = 74194, - [SMALL_STATE(5500)] = 74254, - [SMALL_STATE(5501)] = 74338, - [SMALL_STATE(5502)] = 74396, - [SMALL_STATE(5503)] = 74478, - [SMALL_STATE(5504)] = 74562, - [SMALL_STATE(5505)] = 74616, - [SMALL_STATE(5506)] = 74698, - [SMALL_STATE(5507)] = 74780, - [SMALL_STATE(5508)] = 74838, - [SMALL_STATE(5509)] = 74920, - [SMALL_STATE(5510)] = 75002, - [SMALL_STATE(5511)] = 75060, - [SMALL_STATE(5512)] = 75142, - [SMALL_STATE(5513)] = 75224, - [SMALL_STATE(5514)] = 75308, - [SMALL_STATE(5515)] = 75366, - [SMALL_STATE(5516)] = 75423, - [SMALL_STATE(5517)] = 75504, - [SMALL_STATE(5518)] = 75585, - [SMALL_STATE(5519)] = 75666, - [SMALL_STATE(5520)] = 75747, - [SMALL_STATE(5521)] = 75828, - [SMALL_STATE(5522)] = 75909, - [SMALL_STATE(5523)] = 75990, - [SMALL_STATE(5524)] = 76071, - [SMALL_STATE(5525)] = 76128, - [SMALL_STATE(5526)] = 76185, - [SMALL_STATE(5527)] = 76242, - [SMALL_STATE(5528)] = 76315, - [SMALL_STATE(5529)] = 76369, - [SMALL_STATE(5530)] = 76422, - [SMALL_STATE(5531)] = 76477, - [SMALL_STATE(5532)] = 76538, - [SMALL_STATE(5533)] = 76589, - [SMALL_STATE(5534)] = 76643, - [SMALL_STATE(5535)] = 76697, - [SMALL_STATE(5536)] = 76757, - [SMALL_STATE(5537)] = 76807, - [SMALL_STATE(5538)] = 76859, - [SMALL_STATE(5539)] = 76913, - [SMALL_STATE(5540)] = 76967, - [SMALL_STATE(5541)] = 77021, - [SMALL_STATE(5542)] = 77070, - [SMALL_STATE(5543)] = 77123, - [SMALL_STATE(5544)] = 77172, - [SMALL_STATE(5545)] = 77221, - [SMALL_STATE(5546)] = 77270, - [SMALL_STATE(5547)] = 77319, - [SMALL_STATE(5548)] = 77370, - [SMALL_STATE(5549)] = 77419, - [SMALL_STATE(5550)] = 77468, - [SMALL_STATE(5551)] = 77517, - [SMALL_STATE(5552)] = 77566, - [SMALL_STATE(5553)] = 77615, - [SMALL_STATE(5554)] = 77663, - [SMALL_STATE(5555)] = 77709, - [SMALL_STATE(5556)] = 77755, - [SMALL_STATE(5557)] = 77803, - [SMALL_STATE(5558)] = 77849, - [SMALL_STATE(5559)] = 77895, - [SMALL_STATE(5560)] = 77944, - [SMALL_STATE(5561)] = 77991, - [SMALL_STATE(5562)] = 78080, - [SMALL_STATE(5563)] = 78127, - [SMALL_STATE(5564)] = 78174, - [SMALL_STATE(5565)] = 78223, - [SMALL_STATE(5566)] = 78272, - [SMALL_STATE(5567)] = 78321, - [SMALL_STATE(5568)] = 78370, - [SMALL_STATE(5569)] = 78417, - [SMALL_STATE(5570)] = 78464, - [SMALL_STATE(5571)] = 78511, - [SMALL_STATE(5572)] = 78558, - [SMALL_STATE(5573)] = 78605, - [SMALL_STATE(5574)] = 78694, - [SMALL_STATE(5575)] = 78741, - [SMALL_STATE(5576)] = 78830, - [SMALL_STATE(5577)] = 78879, - [SMALL_STATE(5578)] = 78968, - [SMALL_STATE(5579)] = 79015, - [SMALL_STATE(5580)] = 79062, - [SMALL_STATE(5581)] = 79109, - [SMALL_STATE(5582)] = 79156, - [SMALL_STATE(5583)] = 79205, - [SMALL_STATE(5584)] = 79252, - [SMALL_STATE(5585)] = 79299, - [SMALL_STATE(5586)] = 79346, - [SMALL_STATE(5587)] = 79393, - [SMALL_STATE(5588)] = 79442, - [SMALL_STATE(5589)] = 79489, - [SMALL_STATE(5590)] = 79536, - [SMALL_STATE(5591)] = 79583, - [SMALL_STATE(5592)] = 79632, - [SMALL_STATE(5593)] = 79679, - [SMALL_STATE(5594)] = 79726, - [SMALL_STATE(5595)] = 79773, - [SMALL_STATE(5596)] = 79820, - [SMALL_STATE(5597)] = 79909, - [SMALL_STATE(5598)] = 79998, - [SMALL_STATE(5599)] = 80045, - [SMALL_STATE(5600)] = 80092, - [SMALL_STATE(5601)] = 80139, - [SMALL_STATE(5602)] = 80187, - [SMALL_STATE(5603)] = 80268, - [SMALL_STATE(5604)] = 80349, - [SMALL_STATE(5605)] = 80430, - [SMALL_STATE(5606)] = 80511, - [SMALL_STATE(5607)] = 80592, - [SMALL_STATE(5608)] = 80673, - [SMALL_STATE(5609)] = 80754, - [SMALL_STATE(5610)] = 80835, - [SMALL_STATE(5611)] = 80878, - [SMALL_STATE(5612)] = 80959, - [SMALL_STATE(5613)] = 81040, - [SMALL_STATE(5614)] = 81087, - [SMALL_STATE(5615)] = 81168, - [SMALL_STATE(5616)] = 81249, - [SMALL_STATE(5617)] = 81292, - [SMALL_STATE(5618)] = 81373, - [SMALL_STATE(5619)] = 81454, - [SMALL_STATE(5620)] = 81497, - [SMALL_STATE(5621)] = 81578, - [SMALL_STATE(5622)] = 81623, - [SMALL_STATE(5623)] = 81704, - [SMALL_STATE(5624)] = 81750, - [SMALL_STATE(5625)] = 81792, - [SMALL_STATE(5626)] = 81838, - [SMALL_STATE(5627)] = 81880, - [SMALL_STATE(5628)] = 81926, - [SMALL_STATE(5629)] = 81968, - [SMALL_STATE(5630)] = 82012, - [SMALL_STATE(5631)] = 82053, - [SMALL_STATE(5632)] = 82094, - [SMALL_STATE(5633)] = 82141, - [SMALL_STATE(5634)] = 82182, - [SMALL_STATE(5635)] = 82227, - [SMALL_STATE(5636)] = 82272, - [SMALL_STATE(5637)] = 82313, - [SMALL_STATE(5638)] = 82358, - [SMALL_STATE(5639)] = 82399, - [SMALL_STATE(5640)] = 82440, - [SMALL_STATE(5641)] = 82481, - [SMALL_STATE(5642)] = 82522, - [SMALL_STATE(5643)] = 82563, - [SMALL_STATE(5644)] = 82606, - [SMALL_STATE(5645)] = 82651, - [SMALL_STATE(5646)] = 82691, - [SMALL_STATE(5647)] = 82731, - [SMALL_STATE(5648)] = 82771, - [SMALL_STATE(5649)] = 82813, - [SMALL_STATE(5650)] = 82855, - [SMALL_STATE(5651)] = 82901, - [SMALL_STATE(5652)] = 82947, - [SMALL_STATE(5653)] = 82993, - [SMALL_STATE(5654)] = 83035, - [SMALL_STATE(5655)] = 83076, - [SMALL_STATE(5656)] = 83121, - [SMALL_STATE(5657)] = 83162, - [SMALL_STATE(5658)] = 83201, - [SMALL_STATE(5659)] = 83270, - [SMALL_STATE(5660)] = 83309, - [SMALL_STATE(5661)] = 83378, - [SMALL_STATE(5662)] = 83447, - [SMALL_STATE(5663)] = 83516, - [SMALL_STATE(5664)] = 83585, - [SMALL_STATE(5665)] = 83654, - [SMALL_STATE(5666)] = 83723, - [SMALL_STATE(5667)] = 83762, - [SMALL_STATE(5668)] = 83831, - [SMALL_STATE(5669)] = 83900, - [SMALL_STATE(5670)] = 83969, - [SMALL_STATE(5671)] = 84038, - [SMALL_STATE(5672)] = 84107, - [SMALL_STATE(5673)] = 84176, - [SMALL_STATE(5674)] = 84245, - [SMALL_STATE(5675)] = 84314, - [SMALL_STATE(5676)] = 84383, - [SMALL_STATE(5677)] = 84452, - [SMALL_STATE(5678)] = 84521, - [SMALL_STATE(5679)] = 84590, - [SMALL_STATE(5680)] = 84659, - [SMALL_STATE(5681)] = 84728, - [SMALL_STATE(5682)] = 84797, - [SMALL_STATE(5683)] = 84866, - [SMALL_STATE(5684)] = 84935, - [SMALL_STATE(5685)] = 85004, - [SMALL_STATE(5686)] = 85073, - [SMALL_STATE(5687)] = 85112, - [SMALL_STATE(5688)] = 85181, - [SMALL_STATE(5689)] = 85250, - [SMALL_STATE(5690)] = 85289, - [SMALL_STATE(5691)] = 85358, - [SMALL_STATE(5692)] = 85397, - [SMALL_STATE(5693)] = 85466, - [SMALL_STATE(5694)] = 85535, - [SMALL_STATE(5695)] = 85604, - [SMALL_STATE(5696)] = 85673, - [SMALL_STATE(5697)] = 85742, - [SMALL_STATE(5698)] = 85811, - [SMALL_STATE(5699)] = 85880, - [SMALL_STATE(5700)] = 85949, - [SMALL_STATE(5701)] = 86016, - [SMALL_STATE(5702)] = 86085, - [SMALL_STATE(5703)] = 86154, - [SMALL_STATE(5704)] = 86223, - [SMALL_STATE(5705)] = 86292, - [SMALL_STATE(5706)] = 86361, - [SMALL_STATE(5707)] = 86430, - [SMALL_STATE(5708)] = 86499, - [SMALL_STATE(5709)] = 86568, - [SMALL_STATE(5710)] = 86609, - [SMALL_STATE(5711)] = 86678, - [SMALL_STATE(5712)] = 86747, - [SMALL_STATE(5713)] = 86816, - [SMALL_STATE(5714)] = 86855, - [SMALL_STATE(5715)] = 86924, - [SMALL_STATE(5716)] = 86993, - [SMALL_STATE(5717)] = 87062, - [SMALL_STATE(5718)] = 87131, - [SMALL_STATE(5719)] = 87200, - [SMALL_STATE(5720)] = 87269, - [SMALL_STATE(5721)] = 87338, - [SMALL_STATE(5722)] = 87407, - [SMALL_STATE(5723)] = 87476, - [SMALL_STATE(5724)] = 87545, - [SMALL_STATE(5725)] = 87584, - [SMALL_STATE(5726)] = 87653, - [SMALL_STATE(5727)] = 87722, - [SMALL_STATE(5728)] = 87791, - [SMALL_STATE(5729)] = 87860, - [SMALL_STATE(5730)] = 87929, - [SMALL_STATE(5731)] = 87968, - [SMALL_STATE(5732)] = 88037, - [SMALL_STATE(5733)] = 88106, - [SMALL_STATE(5734)] = 88145, - [SMALL_STATE(5735)] = 88213, - [SMALL_STATE(5736)] = 88277, - [SMALL_STATE(5737)] = 88345, - [SMALL_STATE(5738)] = 88413, - [SMALL_STATE(5739)] = 88481, - [SMALL_STATE(5740)] = 88547, - [SMALL_STATE(5741)] = 88615, - [SMALL_STATE(5742)] = 88683, - [SMALL_STATE(5743)] = 88751, - [SMALL_STATE(5744)] = 88819, - [SMALL_STATE(5745)] = 88887, - [SMALL_STATE(5746)] = 88955, - [SMALL_STATE(5747)] = 89023, - [SMALL_STATE(5748)] = 89091, - [SMALL_STATE(5749)] = 89159, - [SMALL_STATE(5750)] = 89227, - [SMALL_STATE(5751)] = 89293, - [SMALL_STATE(5752)] = 89359, - [SMALL_STATE(5753)] = 89427, - [SMALL_STATE(5754)] = 89495, - [SMALL_STATE(5755)] = 89563, - [SMALL_STATE(5756)] = 89631, - [SMALL_STATE(5757)] = 89697, - [SMALL_STATE(5758)] = 89763, - [SMALL_STATE(5759)] = 89829, - [SMALL_STATE(5760)] = 89897, - [SMALL_STATE(5761)] = 89965, - [SMALL_STATE(5762)] = 90033, - [SMALL_STATE(5763)] = 90101, - [SMALL_STATE(5764)] = 90169, - [SMALL_STATE(5765)] = 90237, - [SMALL_STATE(5766)] = 90305, - [SMALL_STATE(5767)] = 90373, - [SMALL_STATE(5768)] = 90441, - [SMALL_STATE(5769)] = 90504, - [SMALL_STATE(5770)] = 90567, - [SMALL_STATE(5771)] = 90630, - [SMALL_STATE(5772)] = 90693, - [SMALL_STATE(5773)] = 90756, - [SMALL_STATE(5774)] = 90819, - [SMALL_STATE(5775)] = 90882, - [SMALL_STATE(5776)] = 90945, - [SMALL_STATE(5777)] = 91008, - [SMALL_STATE(5778)] = 91071, - [SMALL_STATE(5779)] = 91136, - [SMALL_STATE(5780)] = 91199, - [SMALL_STATE(5781)] = 91262, - [SMALL_STATE(5782)] = 91325, - [SMALL_STATE(5783)] = 91388, - [SMALL_STATE(5784)] = 91451, - [SMALL_STATE(5785)] = 91514, - [SMALL_STATE(5786)] = 91577, - [SMALL_STATE(5787)] = 91640, - [SMALL_STATE(5788)] = 91703, - [SMALL_STATE(5789)] = 91766, - [SMALL_STATE(5790)] = 91829, - [SMALL_STATE(5791)] = 91892, - [SMALL_STATE(5792)] = 91955, - [SMALL_STATE(5793)] = 92018, - [SMALL_STATE(5794)] = 92081, - [SMALL_STATE(5795)] = 92144, - [SMALL_STATE(5796)] = 92207, - [SMALL_STATE(5797)] = 92270, - [SMALL_STATE(5798)] = 92333, - [SMALL_STATE(5799)] = 92396, - [SMALL_STATE(5800)] = 92459, - [SMALL_STATE(5801)] = 92524, - [SMALL_STATE(5802)] = 92587, - [SMALL_STATE(5803)] = 92650, - [SMALL_STATE(5804)] = 92713, - [SMALL_STATE(5805)] = 92776, - [SMALL_STATE(5806)] = 92839, - [SMALL_STATE(5807)] = 92902, - [SMALL_STATE(5808)] = 92965, - [SMALL_STATE(5809)] = 93028, - [SMALL_STATE(5810)] = 93091, - [SMALL_STATE(5811)] = 93154, - [SMALL_STATE(5812)] = 93217, - [SMALL_STATE(5813)] = 93280, - [SMALL_STATE(5814)] = 93343, - [SMALL_STATE(5815)] = 93406, - [SMALL_STATE(5816)] = 93469, - [SMALL_STATE(5817)] = 93532, - [SMALL_STATE(5818)] = 93595, - [SMALL_STATE(5819)] = 93658, - [SMALL_STATE(5820)] = 93721, - [SMALL_STATE(5821)] = 93784, - [SMALL_STATE(5822)] = 93847, - [SMALL_STATE(5823)] = 93910, - [SMALL_STATE(5824)] = 93973, - [SMALL_STATE(5825)] = 94036, - [SMALL_STATE(5826)] = 94099, - [SMALL_STATE(5827)] = 94162, - [SMALL_STATE(5828)] = 94225, - [SMALL_STATE(5829)] = 94288, - [SMALL_STATE(5830)] = 94351, - [SMALL_STATE(5831)] = 94414, - [SMALL_STATE(5832)] = 94477, - [SMALL_STATE(5833)] = 94540, - [SMALL_STATE(5834)] = 94603, - [SMALL_STATE(5835)] = 94666, - [SMALL_STATE(5836)] = 94729, - [SMALL_STATE(5837)] = 94792, - [SMALL_STATE(5838)] = 94855, - [SMALL_STATE(5839)] = 94918, - [SMALL_STATE(5840)] = 94981, - [SMALL_STATE(5841)] = 95044, - [SMALL_STATE(5842)] = 95107, - [SMALL_STATE(5843)] = 95170, - [SMALL_STATE(5844)] = 95233, - [SMALL_STATE(5845)] = 95296, - [SMALL_STATE(5846)] = 95359, - [SMALL_STATE(5847)] = 95422, - [SMALL_STATE(5848)] = 95485, - [SMALL_STATE(5849)] = 95548, - [SMALL_STATE(5850)] = 95611, - [SMALL_STATE(5851)] = 95674, - [SMALL_STATE(5852)] = 95737, - [SMALL_STATE(5853)] = 95800, - [SMALL_STATE(5854)] = 95863, - [SMALL_STATE(5855)] = 95926, - [SMALL_STATE(5856)] = 95989, - [SMALL_STATE(5857)] = 96052, - [SMALL_STATE(5858)] = 96115, - [SMALL_STATE(5859)] = 96178, - [SMALL_STATE(5860)] = 96241, - [SMALL_STATE(5861)] = 96304, - [SMALL_STATE(5862)] = 96367, - [SMALL_STATE(5863)] = 96430, - [SMALL_STATE(5864)] = 96493, - [SMALL_STATE(5865)] = 96556, - [SMALL_STATE(5866)] = 96619, - [SMALL_STATE(5867)] = 96682, - [SMALL_STATE(5868)] = 96745, - [SMALL_STATE(5869)] = 96808, - [SMALL_STATE(5870)] = 96871, - [SMALL_STATE(5871)] = 96934, - [SMALL_STATE(5872)] = 96997, - [SMALL_STATE(5873)] = 97060, - [SMALL_STATE(5874)] = 97123, - [SMALL_STATE(5875)] = 97186, - [SMALL_STATE(5876)] = 97249, - [SMALL_STATE(5877)] = 97312, - [SMALL_STATE(5878)] = 97375, - [SMALL_STATE(5879)] = 97440, - [SMALL_STATE(5880)] = 97503, - [SMALL_STATE(5881)] = 97566, - [SMALL_STATE(5882)] = 97629, - [SMALL_STATE(5883)] = 97692, - [SMALL_STATE(5884)] = 97755, - [SMALL_STATE(5885)] = 97818, - [SMALL_STATE(5886)] = 97881, - [SMALL_STATE(5887)] = 97944, - [SMALL_STATE(5888)] = 98007, - [SMALL_STATE(5889)] = 98070, - [SMALL_STATE(5890)] = 98133, - [SMALL_STATE(5891)] = 98196, - [SMALL_STATE(5892)] = 98259, - [SMALL_STATE(5893)] = 98322, - [SMALL_STATE(5894)] = 98385, - [SMALL_STATE(5895)] = 98448, - [SMALL_STATE(5896)] = 98511, - [SMALL_STATE(5897)] = 98574, - [SMALL_STATE(5898)] = 98637, - [SMALL_STATE(5899)] = 98700, - [SMALL_STATE(5900)] = 98763, - [SMALL_STATE(5901)] = 98826, - [SMALL_STATE(5902)] = 98889, - [SMALL_STATE(5903)] = 98952, - [SMALL_STATE(5904)] = 99015, - [SMALL_STATE(5905)] = 99078, - [SMALL_STATE(5906)] = 99141, - [SMALL_STATE(5907)] = 99204, - [SMALL_STATE(5908)] = 99267, - [SMALL_STATE(5909)] = 99330, - [SMALL_STATE(5910)] = 99393, - [SMALL_STATE(5911)] = 99456, - [SMALL_STATE(5912)] = 99519, - [SMALL_STATE(5913)] = 99582, - [SMALL_STATE(5914)] = 99645, - [SMALL_STATE(5915)] = 99708, - [SMALL_STATE(5916)] = 99771, - [SMALL_STATE(5917)] = 99834, - [SMALL_STATE(5918)] = 99897, - [SMALL_STATE(5919)] = 99960, - [SMALL_STATE(5920)] = 100023, - [SMALL_STATE(5921)] = 100086, - [SMALL_STATE(5922)] = 100149, - [SMALL_STATE(5923)] = 100212, - [SMALL_STATE(5924)] = 100275, - [SMALL_STATE(5925)] = 100338, - [SMALL_STATE(5926)] = 100401, - [SMALL_STATE(5927)] = 100464, - [SMALL_STATE(5928)] = 100527, - [SMALL_STATE(5929)] = 100590, - [SMALL_STATE(5930)] = 100653, - [SMALL_STATE(5931)] = 100716, - [SMALL_STATE(5932)] = 100779, - [SMALL_STATE(5933)] = 100842, - [SMALL_STATE(5934)] = 100905, - [SMALL_STATE(5935)] = 100968, - [SMALL_STATE(5936)] = 101031, - [SMALL_STATE(5937)] = 101094, - [SMALL_STATE(5938)] = 101157, - [SMALL_STATE(5939)] = 101220, - [SMALL_STATE(5940)] = 101283, - [SMALL_STATE(5941)] = 101346, - [SMALL_STATE(5942)] = 101409, - [SMALL_STATE(5943)] = 101472, - [SMALL_STATE(5944)] = 101535, - [SMALL_STATE(5945)] = 101598, - [SMALL_STATE(5946)] = 101661, - [SMALL_STATE(5947)] = 101724, - [SMALL_STATE(5948)] = 101787, - [SMALL_STATE(5949)] = 101850, - [SMALL_STATE(5950)] = 101913, - [SMALL_STATE(5951)] = 101976, - [SMALL_STATE(5952)] = 102039, - [SMALL_STATE(5953)] = 102102, - [SMALL_STATE(5954)] = 102165, - [SMALL_STATE(5955)] = 102228, - [SMALL_STATE(5956)] = 102291, - [SMALL_STATE(5957)] = 102354, - [SMALL_STATE(5958)] = 102417, - [SMALL_STATE(5959)] = 102480, - [SMALL_STATE(5960)] = 102543, - [SMALL_STATE(5961)] = 102606, - [SMALL_STATE(5962)] = 102669, - [SMALL_STATE(5963)] = 102732, - [SMALL_STATE(5964)] = 102797, - [SMALL_STATE(5965)] = 102860, - [SMALL_STATE(5966)] = 102923, - [SMALL_STATE(5967)] = 102986, - [SMALL_STATE(5968)] = 103049, - [SMALL_STATE(5969)] = 103112, - [SMALL_STATE(5970)] = 103175, - [SMALL_STATE(5971)] = 103238, - [SMALL_STATE(5972)] = 103301, - [SMALL_STATE(5973)] = 103364, - [SMALL_STATE(5974)] = 103427, - [SMALL_STATE(5975)] = 103490, - [SMALL_STATE(5976)] = 103553, - [SMALL_STATE(5977)] = 103616, - [SMALL_STATE(5978)] = 103679, - [SMALL_STATE(5979)] = 103742, - [SMALL_STATE(5980)] = 103805, - [SMALL_STATE(5981)] = 103868, - [SMALL_STATE(5982)] = 103931, - [SMALL_STATE(5983)] = 103994, - [SMALL_STATE(5984)] = 104057, - [SMALL_STATE(5985)] = 104122, - [SMALL_STATE(5986)] = 104185, - [SMALL_STATE(5987)] = 104248, - [SMALL_STATE(5988)] = 104313, - [SMALL_STATE(5989)] = 104376, - [SMALL_STATE(5990)] = 104439, - [SMALL_STATE(5991)] = 104502, - [SMALL_STATE(5992)] = 104565, - [SMALL_STATE(5993)] = 104630, - [SMALL_STATE(5994)] = 104693, - [SMALL_STATE(5995)] = 104756, - [SMALL_STATE(5996)] = 104819, - [SMALL_STATE(5997)] = 104882, - [SMALL_STATE(5998)] = 104945, - [SMALL_STATE(5999)] = 105008, - [SMALL_STATE(6000)] = 105073, - [SMALL_STATE(6001)] = 105136, - [SMALL_STATE(6002)] = 105199, - [SMALL_STATE(6003)] = 105262, - [SMALL_STATE(6004)] = 105327, - [SMALL_STATE(6005)] = 105390, - [SMALL_STATE(6006)] = 105453, - [SMALL_STATE(6007)] = 105518, - [SMALL_STATE(6008)] = 105581, - [SMALL_STATE(6009)] = 105644, - [SMALL_STATE(6010)] = 105707, - [SMALL_STATE(6011)] = 105770, - [SMALL_STATE(6012)] = 105833, - [SMALL_STATE(6013)] = 105898, - [SMALL_STATE(6014)] = 105961, - [SMALL_STATE(6015)] = 106024, - [SMALL_STATE(6016)] = 106087, - [SMALL_STATE(6017)] = 106150, - [SMALL_STATE(6018)] = 106213, - [SMALL_STATE(6019)] = 106276, - [SMALL_STATE(6020)] = 106339, - [SMALL_STATE(6021)] = 106402, - [SMALL_STATE(6022)] = 106465, - [SMALL_STATE(6023)] = 106528, - [SMALL_STATE(6024)] = 106591, - [SMALL_STATE(6025)] = 106654, - [SMALL_STATE(6026)] = 106717, - [SMALL_STATE(6027)] = 106780, - [SMALL_STATE(6028)] = 106843, - [SMALL_STATE(6029)] = 106906, - [SMALL_STATE(6030)] = 106969, - [SMALL_STATE(6031)] = 107034, - [SMALL_STATE(6032)] = 107097, - [SMALL_STATE(6033)] = 107160, - [SMALL_STATE(6034)] = 107223, - [SMALL_STATE(6035)] = 107286, - [SMALL_STATE(6036)] = 107349, - [SMALL_STATE(6037)] = 107412, - [SMALL_STATE(6038)] = 107475, - [SMALL_STATE(6039)] = 107538, - [SMALL_STATE(6040)] = 107601, - [SMALL_STATE(6041)] = 107664, - [SMALL_STATE(6042)] = 107727, - [SMALL_STATE(6043)] = 107790, - [SMALL_STATE(6044)] = 107853, - [SMALL_STATE(6045)] = 107916, - [SMALL_STATE(6046)] = 107979, - [SMALL_STATE(6047)] = 108042, - [SMALL_STATE(6048)] = 108105, - [SMALL_STATE(6049)] = 108168, - [SMALL_STATE(6050)] = 108231, - [SMALL_STATE(6051)] = 108294, - [SMALL_STATE(6052)] = 108357, - [SMALL_STATE(6053)] = 108420, - [SMALL_STATE(6054)] = 108483, - [SMALL_STATE(6055)] = 108546, - [SMALL_STATE(6056)] = 108609, - [SMALL_STATE(6057)] = 108672, - [SMALL_STATE(6058)] = 108735, - [SMALL_STATE(6059)] = 108798, - [SMALL_STATE(6060)] = 108861, - [SMALL_STATE(6061)] = 108924, - [SMALL_STATE(6062)] = 108987, - [SMALL_STATE(6063)] = 109050, - [SMALL_STATE(6064)] = 109113, - [SMALL_STATE(6065)] = 109176, - [SMALL_STATE(6066)] = 109239, - [SMALL_STATE(6067)] = 109304, - [SMALL_STATE(6068)] = 109367, - [SMALL_STATE(6069)] = 109430, - [SMALL_STATE(6070)] = 109493, - [SMALL_STATE(6071)] = 109556, - [SMALL_STATE(6072)] = 109619, - [SMALL_STATE(6073)] = 109682, - [SMALL_STATE(6074)] = 109745, - [SMALL_STATE(6075)] = 109810, - [SMALL_STATE(6076)] = 109873, - [SMALL_STATE(6077)] = 109936, - [SMALL_STATE(6078)] = 109999, - [SMALL_STATE(6079)] = 110062, - [SMALL_STATE(6080)] = 110125, - [SMALL_STATE(6081)] = 110188, - [SMALL_STATE(6082)] = 110251, - [SMALL_STATE(6083)] = 110314, - [SMALL_STATE(6084)] = 110377, - [SMALL_STATE(6085)] = 110440, - [SMALL_STATE(6086)] = 110503, - [SMALL_STATE(6087)] = 110566, - [SMALL_STATE(6088)] = 110629, - [SMALL_STATE(6089)] = 110692, - [SMALL_STATE(6090)] = 110755, - [SMALL_STATE(6091)] = 110818, - [SMALL_STATE(6092)] = 110881, - [SMALL_STATE(6093)] = 110944, - [SMALL_STATE(6094)] = 111007, - [SMALL_STATE(6095)] = 111070, - [SMALL_STATE(6096)] = 111133, - [SMALL_STATE(6097)] = 111196, - [SMALL_STATE(6098)] = 111259, - [SMALL_STATE(6099)] = 111322, - [SMALL_STATE(6100)] = 111385, - [SMALL_STATE(6101)] = 111448, - [SMALL_STATE(6102)] = 111511, - [SMALL_STATE(6103)] = 111574, - [SMALL_STATE(6104)] = 111639, - [SMALL_STATE(6105)] = 111702, - [SMALL_STATE(6106)] = 111765, - [SMALL_STATE(6107)] = 111830, - [SMALL_STATE(6108)] = 111893, - [SMALL_STATE(6109)] = 111956, - [SMALL_STATE(6110)] = 112019, - [SMALL_STATE(6111)] = 112084, - [SMALL_STATE(6112)] = 112149, - [SMALL_STATE(6113)] = 112214, - [SMALL_STATE(6114)] = 112277, - [SMALL_STATE(6115)] = 112340, - [SMALL_STATE(6116)] = 112403, - [SMALL_STATE(6117)] = 112466, - [SMALL_STATE(6118)] = 112531, - [SMALL_STATE(6119)] = 112594, - [SMALL_STATE(6120)] = 112657, - [SMALL_STATE(6121)] = 112720, - [SMALL_STATE(6122)] = 112783, - [SMALL_STATE(6123)] = 112846, - [SMALL_STATE(6124)] = 112909, - [SMALL_STATE(6125)] = 112972, - [SMALL_STATE(6126)] = 113035, - [SMALL_STATE(6127)] = 113098, - [SMALL_STATE(6128)] = 113161, - [SMALL_STATE(6129)] = 113224, - [SMALL_STATE(6130)] = 113287, - [SMALL_STATE(6131)] = 113350, - [SMALL_STATE(6132)] = 113413, - [SMALL_STATE(6133)] = 113476, - [SMALL_STATE(6134)] = 113539, - [SMALL_STATE(6135)] = 113602, - [SMALL_STATE(6136)] = 113665, - [SMALL_STATE(6137)] = 113728, - [SMALL_STATE(6138)] = 113791, - [SMALL_STATE(6139)] = 113854, - [SMALL_STATE(6140)] = 113917, - [SMALL_STATE(6141)] = 113980, - [SMALL_STATE(6142)] = 114043, - [SMALL_STATE(6143)] = 114106, - [SMALL_STATE(6144)] = 114169, - [SMALL_STATE(6145)] = 114232, - [SMALL_STATE(6146)] = 114295, - [SMALL_STATE(6147)] = 114358, - [SMALL_STATE(6148)] = 114421, - [SMALL_STATE(6149)] = 114484, - [SMALL_STATE(6150)] = 114549, - [SMALL_STATE(6151)] = 114612, - [SMALL_STATE(6152)] = 114675, - [SMALL_STATE(6153)] = 114738, - [SMALL_STATE(6154)] = 114801, - [SMALL_STATE(6155)] = 114864, - [SMALL_STATE(6156)] = 114927, - [SMALL_STATE(6157)] = 114990, - [SMALL_STATE(6158)] = 115053, - [SMALL_STATE(6159)] = 115116, - [SMALL_STATE(6160)] = 115179, - [SMALL_STATE(6161)] = 115242, - [SMALL_STATE(6162)] = 115305, - [SMALL_STATE(6163)] = 115368, - [SMALL_STATE(6164)] = 115431, - [SMALL_STATE(6165)] = 115494, - [SMALL_STATE(6166)] = 115557, - [SMALL_STATE(6167)] = 115620, - [SMALL_STATE(6168)] = 115683, - [SMALL_STATE(6169)] = 115746, - [SMALL_STATE(6170)] = 115811, - [SMALL_STATE(6171)] = 115874, - [SMALL_STATE(6172)] = 115937, - [SMALL_STATE(6173)] = 116000, - [SMALL_STATE(6174)] = 116065, - [SMALL_STATE(6175)] = 116128, - [SMALL_STATE(6176)] = 116191, - [SMALL_STATE(6177)] = 116254, - [SMALL_STATE(6178)] = 116317, - [SMALL_STATE(6179)] = 116382, - [SMALL_STATE(6180)] = 116445, - [SMALL_STATE(6181)] = 116508, - [SMALL_STATE(6182)] = 116571, - [SMALL_STATE(6183)] = 116634, - [SMALL_STATE(6184)] = 116699, - [SMALL_STATE(6185)] = 116762, - [SMALL_STATE(6186)] = 116825, - [SMALL_STATE(6187)] = 116888, - [SMALL_STATE(6188)] = 116951, - [SMALL_STATE(6189)] = 117016, - [SMALL_STATE(6190)] = 117079, - [SMALL_STATE(6191)] = 117142, - [SMALL_STATE(6192)] = 117205, - [SMALL_STATE(6193)] = 117268, - [SMALL_STATE(6194)] = 117331, - [SMALL_STATE(6195)] = 117396, - [SMALL_STATE(6196)] = 117459, - [SMALL_STATE(6197)] = 117522, - [SMALL_STATE(6198)] = 117585, - [SMALL_STATE(6199)] = 117648, - [SMALL_STATE(6200)] = 117711, - [SMALL_STATE(6201)] = 117774, - [SMALL_STATE(6202)] = 117837, - [SMALL_STATE(6203)] = 117900, - [SMALL_STATE(6204)] = 117963, - [SMALL_STATE(6205)] = 118026, - [SMALL_STATE(6206)] = 118089, - [SMALL_STATE(6207)] = 118152, - [SMALL_STATE(6208)] = 118215, - [SMALL_STATE(6209)] = 118278, - [SMALL_STATE(6210)] = 118341, - [SMALL_STATE(6211)] = 118404, - [SMALL_STATE(6212)] = 118467, - [SMALL_STATE(6213)] = 118530, - [SMALL_STATE(6214)] = 118593, - [SMALL_STATE(6215)] = 118656, - [SMALL_STATE(6216)] = 118719, - [SMALL_STATE(6217)] = 118782, - [SMALL_STATE(6218)] = 118845, - [SMALL_STATE(6219)] = 118908, - [SMALL_STATE(6220)] = 118971, - [SMALL_STATE(6221)] = 119034, - [SMALL_STATE(6222)] = 119097, - [SMALL_STATE(6223)] = 119160, - [SMALL_STATE(6224)] = 119223, - [SMALL_STATE(6225)] = 119286, - [SMALL_STATE(6226)] = 119349, - [SMALL_STATE(6227)] = 119412, - [SMALL_STATE(6228)] = 119475, - [SMALL_STATE(6229)] = 119538, - [SMALL_STATE(6230)] = 119601, - [SMALL_STATE(6231)] = 119664, - [SMALL_STATE(6232)] = 119727, - [SMALL_STATE(6233)] = 119790, - [SMALL_STATE(6234)] = 119853, - [SMALL_STATE(6235)] = 119916, - [SMALL_STATE(6236)] = 119979, - [SMALL_STATE(6237)] = 120042, - [SMALL_STATE(6238)] = 120107, - [SMALL_STATE(6239)] = 120170, - [SMALL_STATE(6240)] = 120233, - [SMALL_STATE(6241)] = 120296, - [SMALL_STATE(6242)] = 120359, - [SMALL_STATE(6243)] = 120422, - [SMALL_STATE(6244)] = 120485, - [SMALL_STATE(6245)] = 120548, - [SMALL_STATE(6246)] = 120611, - [SMALL_STATE(6247)] = 120674, - [SMALL_STATE(6248)] = 120737, - [SMALL_STATE(6249)] = 120800, - [SMALL_STATE(6250)] = 120863, - [SMALL_STATE(6251)] = 120926, - [SMALL_STATE(6252)] = 120989, - [SMALL_STATE(6253)] = 121052, - [SMALL_STATE(6254)] = 121115, - [SMALL_STATE(6255)] = 121178, - [SMALL_STATE(6256)] = 121241, - [SMALL_STATE(6257)] = 121304, - [SMALL_STATE(6258)] = 121367, - [SMALL_STATE(6259)] = 121430, - [SMALL_STATE(6260)] = 121493, - [SMALL_STATE(6261)] = 121556, - [SMALL_STATE(6262)] = 121619, - [SMALL_STATE(6263)] = 121682, - [SMALL_STATE(6264)] = 121745, - [SMALL_STATE(6265)] = 121808, - [SMALL_STATE(6266)] = 121871, - [SMALL_STATE(6267)] = 121934, - [SMALL_STATE(6268)] = 121997, - [SMALL_STATE(6269)] = 122060, - [SMALL_STATE(6270)] = 122123, - [SMALL_STATE(6271)] = 122186, - [SMALL_STATE(6272)] = 122249, - [SMALL_STATE(6273)] = 122312, - [SMALL_STATE(6274)] = 122375, - [SMALL_STATE(6275)] = 122438, - [SMALL_STATE(6276)] = 122501, - [SMALL_STATE(6277)] = 122564, - [SMALL_STATE(6278)] = 122627, - [SMALL_STATE(6279)] = 122690, - [SMALL_STATE(6280)] = 122753, - [SMALL_STATE(6281)] = 122816, - [SMALL_STATE(6282)] = 122879, - [SMALL_STATE(6283)] = 122942, - [SMALL_STATE(6284)] = 123005, - [SMALL_STATE(6285)] = 123068, - [SMALL_STATE(6286)] = 123131, - [SMALL_STATE(6287)] = 123194, - [SMALL_STATE(6288)] = 123257, - [SMALL_STATE(6289)] = 123320, - [SMALL_STATE(6290)] = 123383, - [SMALL_STATE(6291)] = 123446, - [SMALL_STATE(6292)] = 123509, - [SMALL_STATE(6293)] = 123572, - [SMALL_STATE(6294)] = 123635, - [SMALL_STATE(6295)] = 123698, - [SMALL_STATE(6296)] = 123761, - [SMALL_STATE(6297)] = 123820, - [SMALL_STATE(6298)] = 123879, - [SMALL_STATE(6299)] = 123938, - [SMALL_STATE(6300)] = 123997, - [SMALL_STATE(6301)] = 124056, - [SMALL_STATE(6302)] = 124115, - [SMALL_STATE(6303)] = 124174, - [SMALL_STATE(6304)] = 124233, - [SMALL_STATE(6305)] = 124292, - [SMALL_STATE(6306)] = 124351, - [SMALL_STATE(6307)] = 124410, - [SMALL_STATE(6308)] = 124469, - [SMALL_STATE(6309)] = 124528, - [SMALL_STATE(6310)] = 124587, - [SMALL_STATE(6311)] = 124646, - [SMALL_STATE(6312)] = 124705, - [SMALL_STATE(6313)] = 124764, - [SMALL_STATE(6314)] = 124823, - [SMALL_STATE(6315)] = 124882, - [SMALL_STATE(6316)] = 124941, - [SMALL_STATE(6317)] = 125000, - [SMALL_STATE(6318)] = 125059, - [SMALL_STATE(6319)] = 125118, - [SMALL_STATE(6320)] = 125177, - [SMALL_STATE(6321)] = 125236, - [SMALL_STATE(6322)] = 125295, - [SMALL_STATE(6323)] = 125354, - [SMALL_STATE(6324)] = 125413, - [SMALL_STATE(6325)] = 125472, - [SMALL_STATE(6326)] = 125531, - [SMALL_STATE(6327)] = 125590, - [SMALL_STATE(6328)] = 125649, - [SMALL_STATE(6329)] = 125708, - [SMALL_STATE(6330)] = 125767, - [SMALL_STATE(6331)] = 125826, - [SMALL_STATE(6332)] = 125885, - [SMALL_STATE(6333)] = 125944, - [SMALL_STATE(6334)] = 126003, - [SMALL_STATE(6335)] = 126062, - [SMALL_STATE(6336)] = 126121, - [SMALL_STATE(6337)] = 126160, - [SMALL_STATE(6338)] = 126219, - [SMALL_STATE(6339)] = 126278, - [SMALL_STATE(6340)] = 126337, - [SMALL_STATE(6341)] = 126396, - [SMALL_STATE(6342)] = 126455, - [SMALL_STATE(6343)] = 126514, - [SMALL_STATE(6344)] = 126573, - [SMALL_STATE(6345)] = 126632, - [SMALL_STATE(6346)] = 126691, - [SMALL_STATE(6347)] = 126730, - [SMALL_STATE(6348)] = 126789, - [SMALL_STATE(6349)] = 126848, - [SMALL_STATE(6350)] = 126907, - [SMALL_STATE(6351)] = 126966, - [SMALL_STATE(6352)] = 127025, - [SMALL_STATE(6353)] = 127080, - [SMALL_STATE(6354)] = 127135, - [SMALL_STATE(6355)] = 127190, - [SMALL_STATE(6356)] = 127245, - [SMALL_STATE(6357)] = 127300, - [SMALL_STATE(6358)] = 127355, - [SMALL_STATE(6359)] = 127410, - [SMALL_STATE(6360)] = 127465, - [SMALL_STATE(6361)] = 127520, - [SMALL_STATE(6362)] = 127572, - [SMALL_STATE(6363)] = 127624, - [SMALL_STATE(6364)] = 127676, - [SMALL_STATE(6365)] = 127728, - [SMALL_STATE(6366)] = 127780, - [SMALL_STATE(6367)] = 127832, - [SMALL_STATE(6368)] = 127884, - [SMALL_STATE(6369)] = 127936, - [SMALL_STATE(6370)] = 127988, - [SMALL_STATE(6371)] = 128040, - [SMALL_STATE(6372)] = 128092, - [SMALL_STATE(6373)] = 128144, - [SMALL_STATE(6374)] = 128196, - [SMALL_STATE(6375)] = 128248, - [SMALL_STATE(6376)] = 128300, - [SMALL_STATE(6377)] = 128352, - [SMALL_STATE(6378)] = 128404, - [SMALL_STATE(6379)] = 128456, - [SMALL_STATE(6380)] = 128508, - [SMALL_STATE(6381)] = 128557, - [SMALL_STATE(6382)] = 128606, - [SMALL_STATE(6383)] = 128655, - [SMALL_STATE(6384)] = 128704, - [SMALL_STATE(6385)] = 128753, - [SMALL_STATE(6386)] = 128802, - [SMALL_STATE(6387)] = 128851, - [SMALL_STATE(6388)] = 128900, - [SMALL_STATE(6389)] = 128949, - [SMALL_STATE(6390)] = 128998, - [SMALL_STATE(6391)] = 129047, - [SMALL_STATE(6392)] = 129096, - [SMALL_STATE(6393)] = 129145, - [SMALL_STATE(6394)] = 129194, - [SMALL_STATE(6395)] = 129243, - [SMALL_STATE(6396)] = 129289, - [SMALL_STATE(6397)] = 129335, - [SMALL_STATE(6398)] = 129381, - [SMALL_STATE(6399)] = 129427, - [SMALL_STATE(6400)] = 129473, - [SMALL_STATE(6401)] = 129519, - [SMALL_STATE(6402)] = 129565, - [SMALL_STATE(6403)] = 129611, - [SMALL_STATE(6404)] = 129657, - [SMALL_STATE(6405)] = 129703, - [SMALL_STATE(6406)] = 129749, - [SMALL_STATE(6407)] = 129795, - [SMALL_STATE(6408)] = 129841, - [SMALL_STATE(6409)] = 129887, - [SMALL_STATE(6410)] = 129933, - [SMALL_STATE(6411)] = 129979, - [SMALL_STATE(6412)] = 130025, - [SMALL_STATE(6413)] = 130071, - [SMALL_STATE(6414)] = 130117, - [SMALL_STATE(6415)] = 130163, - [SMALL_STATE(6416)] = 130209, - [SMALL_STATE(6417)] = 130255, - [SMALL_STATE(6418)] = 130301, - [SMALL_STATE(6419)] = 130347, - [SMALL_STATE(6420)] = 130393, - [SMALL_STATE(6421)] = 130439, - [SMALL_STATE(6422)] = 130485, - [SMALL_STATE(6423)] = 130531, - [SMALL_STATE(6424)] = 130577, - [SMALL_STATE(6425)] = 130623, - [SMALL_STATE(6426)] = 130669, - [SMALL_STATE(6427)] = 130715, - [SMALL_STATE(6428)] = 130761, - [SMALL_STATE(6429)] = 130807, - [SMALL_STATE(6430)] = 130853, - [SMALL_STATE(6431)] = 130899, - [SMALL_STATE(6432)] = 130945, - [SMALL_STATE(6433)] = 130991, - [SMALL_STATE(6434)] = 131037, - [SMALL_STATE(6435)] = 131083, - [SMALL_STATE(6436)] = 131129, - [SMALL_STATE(6437)] = 131175, - [SMALL_STATE(6438)] = 131221, - [SMALL_STATE(6439)] = 131267, - [SMALL_STATE(6440)] = 131313, - [SMALL_STATE(6441)] = 131359, - [SMALL_STATE(6442)] = 131405, - [SMALL_STATE(6443)] = 131451, - [SMALL_STATE(6444)] = 131497, - [SMALL_STATE(6445)] = 131543, - [SMALL_STATE(6446)] = 131589, - [SMALL_STATE(6447)] = 131635, - [SMALL_STATE(6448)] = 131681, - [SMALL_STATE(6449)] = 131727, - [SMALL_STATE(6450)] = 131773, - [SMALL_STATE(6451)] = 131821, - [SMALL_STATE(6452)] = 131869, - [SMALL_STATE(6453)] = 131917, - [SMALL_STATE(6454)] = 131965, - [SMALL_STATE(6455)] = 132013, - [SMALL_STATE(6456)] = 132061, - [SMALL_STATE(6457)] = 132109, - [SMALL_STATE(6458)] = 132157, - [SMALL_STATE(6459)] = 132205, - [SMALL_STATE(6460)] = 132253, - [SMALL_STATE(6461)] = 132301, - [SMALL_STATE(6462)] = 132349, - [SMALL_STATE(6463)] = 132397, - [SMALL_STATE(6464)] = 132445, - [SMALL_STATE(6465)] = 132493, - [SMALL_STATE(6466)] = 132541, - [SMALL_STATE(6467)] = 132589, - [SMALL_STATE(6468)] = 132637, - [SMALL_STATE(6469)] = 132685, - [SMALL_STATE(6470)] = 132733, - [SMALL_STATE(6471)] = 132781, - [SMALL_STATE(6472)] = 132829, - [SMALL_STATE(6473)] = 132875, - [SMALL_STATE(6474)] = 132923, - [SMALL_STATE(6475)] = 132969, - [SMALL_STATE(6476)] = 133015, - [SMALL_STATE(6477)] = 133063, - [SMALL_STATE(6478)] = 133109, - [SMALL_STATE(6479)] = 133155, - [SMALL_STATE(6480)] = 133201, - [SMALL_STATE(6481)] = 133249, - [SMALL_STATE(6482)] = 133297, - [SMALL_STATE(6483)] = 133345, - [SMALL_STATE(6484)] = 133391, - [SMALL_STATE(6485)] = 133437, - [SMALL_STATE(6486)] = 133485, - [SMALL_STATE(6487)] = 133531, - [SMALL_STATE(6488)] = 133577, - [SMALL_STATE(6489)] = 133623, - [SMALL_STATE(6490)] = 133669, - [SMALL_STATE(6491)] = 133715, - [SMALL_STATE(6492)] = 133761, - [SMALL_STATE(6493)] = 133809, - [SMALL_STATE(6494)] = 133855, - [SMALL_STATE(6495)] = 133901, - [SMALL_STATE(6496)] = 133947, - [SMALL_STATE(6497)] = 133993, - [SMALL_STATE(6498)] = 134041, - [SMALL_STATE(6499)] = 134087, - [SMALL_STATE(6500)] = 134133, - [SMALL_STATE(6501)] = 134179, - [SMALL_STATE(6502)] = 134225, - [SMALL_STATE(6503)] = 134273, - [SMALL_STATE(6504)] = 134321, - [SMALL_STATE(6505)] = 134367, - [SMALL_STATE(6506)] = 134413, - [SMALL_STATE(6507)] = 134459, - [SMALL_STATE(6508)] = 134505, - [SMALL_STATE(6509)] = 134551, - [SMALL_STATE(6510)] = 134599, - [SMALL_STATE(6511)] = 134647, - [SMALL_STATE(6512)] = 134695, - [SMALL_STATE(6513)] = 134741, - [SMALL_STATE(6514)] = 134787, - [SMALL_STATE(6515)] = 134833, - [SMALL_STATE(6516)] = 134879, - [SMALL_STATE(6517)] = 134925, - [SMALL_STATE(6518)] = 134973, - [SMALL_STATE(6519)] = 135021, - [SMALL_STATE(6520)] = 135067, - [SMALL_STATE(6521)] = 135115, - [SMALL_STATE(6522)] = 135161, - [SMALL_STATE(6523)] = 135207, - [SMALL_STATE(6524)] = 135253, - [SMALL_STATE(6525)] = 135299, - [SMALL_STATE(6526)] = 135347, - [SMALL_STATE(6527)] = 135395, - [SMALL_STATE(6528)] = 135441, - [SMALL_STATE(6529)] = 135487, - [SMALL_STATE(6530)] = 135535, - [SMALL_STATE(6531)] = 135583, - [SMALL_STATE(6532)] = 135631, - [SMALL_STATE(6533)] = 135677, - [SMALL_STATE(6534)] = 135723, - [SMALL_STATE(6535)] = 135759, - [SMALL_STATE(6536)] = 135807, - [SMALL_STATE(6537)] = 135855, - [SMALL_STATE(6538)] = 135901, - [SMALL_STATE(6539)] = 135949, - [SMALL_STATE(6540)] = 135997, - [SMALL_STATE(6541)] = 136043, - [SMALL_STATE(6542)] = 136091, - [SMALL_STATE(6543)] = 136139, - [SMALL_STATE(6544)] = 136185, - [SMALL_STATE(6545)] = 136233, - [SMALL_STATE(6546)] = 136281, - [SMALL_STATE(6547)] = 136329, - [SMALL_STATE(6548)] = 136377, - [SMALL_STATE(6549)] = 136425, - [SMALL_STATE(6550)] = 136473, - [SMALL_STATE(6551)] = 136517, - [SMALL_STATE(6552)] = 136565, - [SMALL_STATE(6553)] = 136613, - [SMALL_STATE(6554)] = 136661, - [SMALL_STATE(6555)] = 136709, - [SMALL_STATE(6556)] = 136757, - [SMALL_STATE(6557)] = 136805, - [SMALL_STATE(6558)] = 136851, - [SMALL_STATE(6559)] = 136899, - [SMALL_STATE(6560)] = 136947, - [SMALL_STATE(6561)] = 136995, - [SMALL_STATE(6562)] = 137043, - [SMALL_STATE(6563)] = 137091, - [SMALL_STATE(6564)] = 137139, - [SMALL_STATE(6565)] = 137187, - [SMALL_STATE(6566)] = 137235, - [SMALL_STATE(6567)] = 137283, - [SMALL_STATE(6568)] = 137327, - [SMALL_STATE(6569)] = 137375, - [SMALL_STATE(6570)] = 137423, - [SMALL_STATE(6571)] = 137471, - [SMALL_STATE(6572)] = 137519, - [SMALL_STATE(6573)] = 137567, - [SMALL_STATE(6574)] = 137615, - [SMALL_STATE(6575)] = 137663, - [SMALL_STATE(6576)] = 137711, - [SMALL_STATE(6577)] = 137759, - [SMALL_STATE(6578)] = 137807, - [SMALL_STATE(6579)] = 137855, - [SMALL_STATE(6580)] = 137901, - [SMALL_STATE(6581)] = 137949, - [SMALL_STATE(6582)] = 137997, - [SMALL_STATE(6583)] = 138043, - [SMALL_STATE(6584)] = 138089, - [SMALL_STATE(6585)] = 138137, - [SMALL_STATE(6586)] = 138183, - [SMALL_STATE(6587)] = 138229, - [SMALL_STATE(6588)] = 138275, - [SMALL_STATE(6589)] = 138323, - [SMALL_STATE(6590)] = 138371, - [SMALL_STATE(6591)] = 138419, - [SMALL_STATE(6592)] = 138467, - [SMALL_STATE(6593)] = 138513, - [SMALL_STATE(6594)] = 138561, - [SMALL_STATE(6595)] = 138607, - [SMALL_STATE(6596)] = 138655, - [SMALL_STATE(6597)] = 138703, - [SMALL_STATE(6598)] = 138751, - [SMALL_STATE(6599)] = 138799, - [SMALL_STATE(6600)] = 138845, - [SMALL_STATE(6601)] = 138891, - [SMALL_STATE(6602)] = 138937, - [SMALL_STATE(6603)] = 138985, - [SMALL_STATE(6604)] = 139033, - [SMALL_STATE(6605)] = 139081, - [SMALL_STATE(6606)] = 139129, - [SMALL_STATE(6607)] = 139177, - [SMALL_STATE(6608)] = 139225, - [SMALL_STATE(6609)] = 139269, - [SMALL_STATE(6610)] = 139305, - [SMALL_STATE(6611)] = 139353, - [SMALL_STATE(6612)] = 139399, - [SMALL_STATE(6613)] = 139445, - [SMALL_STATE(6614)] = 139489, - [SMALL_STATE(6615)] = 139533, - [SMALL_STATE(6616)] = 139579, - [SMALL_STATE(6617)] = 139625, - [SMALL_STATE(6618)] = 139671, - [SMALL_STATE(6619)] = 139717, - [SMALL_STATE(6620)] = 139763, - [SMALL_STATE(6621)] = 139809, - [SMALL_STATE(6622)] = 139855, - [SMALL_STATE(6623)] = 139901, - [SMALL_STATE(6624)] = 139947, - [SMALL_STATE(6625)] = 139993, - [SMALL_STATE(6626)] = 140039, - [SMALL_STATE(6627)] = 140085, - [SMALL_STATE(6628)] = 140133, - [SMALL_STATE(6629)] = 140179, - [SMALL_STATE(6630)] = 140225, - [SMALL_STATE(6631)] = 140271, - [SMALL_STATE(6632)] = 140317, - [SMALL_STATE(6633)] = 140365, - [SMALL_STATE(6634)] = 140411, - [SMALL_STATE(6635)] = 140459, - [SMALL_STATE(6636)] = 140505, - [SMALL_STATE(6637)] = 140551, - [SMALL_STATE(6638)] = 140597, - [SMALL_STATE(6639)] = 140643, - [SMALL_STATE(6640)] = 140689, - [SMALL_STATE(6641)] = 140735, - [SMALL_STATE(6642)] = 140783, - [SMALL_STATE(6643)] = 140829, - [SMALL_STATE(6644)] = 140875, - [SMALL_STATE(6645)] = 140921, - [SMALL_STATE(6646)] = 140969, - [SMALL_STATE(6647)] = 141015, - [SMALL_STATE(6648)] = 141061, - [SMALL_STATE(6649)] = 141107, - [SMALL_STATE(6650)] = 141153, - [SMALL_STATE(6651)] = 141199, - [SMALL_STATE(6652)] = 141245, - [SMALL_STATE(6653)] = 141291, - [SMALL_STATE(6654)] = 141339, - [SMALL_STATE(6655)] = 141385, - [SMALL_STATE(6656)] = 141431, - [SMALL_STATE(6657)] = 141477, - [SMALL_STATE(6658)] = 141523, - [SMALL_STATE(6659)] = 141569, - [SMALL_STATE(6660)] = 141615, - [SMALL_STATE(6661)] = 141663, - [SMALL_STATE(6662)] = 141711, - [SMALL_STATE(6663)] = 141757, - [SMALL_STATE(6664)] = 141803, - [SMALL_STATE(6665)] = 141849, - [SMALL_STATE(6666)] = 141895, - [SMALL_STATE(6667)] = 141941, - [SMALL_STATE(6668)] = 141987, - [SMALL_STATE(6669)] = 142035, - [SMALL_STATE(6670)] = 142081, - [SMALL_STATE(6671)] = 142129, - [SMALL_STATE(6672)] = 142175, - [SMALL_STATE(6673)] = 142221, - [SMALL_STATE(6674)] = 142267, - [SMALL_STATE(6675)] = 142313, - [SMALL_STATE(6676)] = 142359, - [SMALL_STATE(6677)] = 142405, - [SMALL_STATE(6678)] = 142451, - [SMALL_STATE(6679)] = 142497, - [SMALL_STATE(6680)] = 142541, - [SMALL_STATE(6681)] = 142587, - [SMALL_STATE(6682)] = 142635, - [SMALL_STATE(6683)] = 142681, - [SMALL_STATE(6684)] = 142727, - [SMALL_STATE(6685)] = 142775, - [SMALL_STATE(6686)] = 142823, - [SMALL_STATE(6687)] = 142869, - [SMALL_STATE(6688)] = 142917, - [SMALL_STATE(6689)] = 142963, - [SMALL_STATE(6690)] = 143009, - [SMALL_STATE(6691)] = 143055, - [SMALL_STATE(6692)] = 143101, - [SMALL_STATE(6693)] = 143147, - [SMALL_STATE(6694)] = 143193, - [SMALL_STATE(6695)] = 143239, - [SMALL_STATE(6696)] = 143285, - [SMALL_STATE(6697)] = 143333, - [SMALL_STATE(6698)] = 143379, - [SMALL_STATE(6699)] = 143425, - [SMALL_STATE(6700)] = 143471, - [SMALL_STATE(6701)] = 143517, - [SMALL_STATE(6702)] = 143563, - [SMALL_STATE(6703)] = 143607, - [SMALL_STATE(6704)] = 143653, - [SMALL_STATE(6705)] = 143697, - [SMALL_STATE(6706)] = 143743, - [SMALL_STATE(6707)] = 143789, - [SMALL_STATE(6708)] = 143835, - [SMALL_STATE(6709)] = 143883, - [SMALL_STATE(6710)] = 143927, - [SMALL_STATE(6711)] = 143971, - [SMALL_STATE(6712)] = 144019, - [SMALL_STATE(6713)] = 144067, - [SMALL_STATE(6714)] = 144115, - [SMALL_STATE(6715)] = 144161, - [SMALL_STATE(6716)] = 144207, - [SMALL_STATE(6717)] = 144255, - [SMALL_STATE(6718)] = 144301, - [SMALL_STATE(6719)] = 144349, - [SMALL_STATE(6720)] = 144393, - [SMALL_STATE(6721)] = 144437, - [SMALL_STATE(6722)] = 144485, - [SMALL_STATE(6723)] = 144531, - [SMALL_STATE(6724)] = 144579, - [SMALL_STATE(6725)] = 144627, - [SMALL_STATE(6726)] = 144675, - [SMALL_STATE(6727)] = 144723, - [SMALL_STATE(6728)] = 144771, - [SMALL_STATE(6729)] = 144819, - [SMALL_STATE(6730)] = 144863, - [SMALL_STATE(6731)] = 144911, - [SMALL_STATE(6732)] = 144959, - [SMALL_STATE(6733)] = 145007, - [SMALL_STATE(6734)] = 145055, - [SMALL_STATE(6735)] = 145103, - [SMALL_STATE(6736)] = 145151, - [SMALL_STATE(6737)] = 145199, - [SMALL_STATE(6738)] = 145245, - [SMALL_STATE(6739)] = 145291, - [SMALL_STATE(6740)] = 145337, - [SMALL_STATE(6741)] = 145383, - [SMALL_STATE(6742)] = 145427, - [SMALL_STATE(6743)] = 145475, - [SMALL_STATE(6744)] = 145523, - [SMALL_STATE(6745)] = 145571, - [SMALL_STATE(6746)] = 145619, - [SMALL_STATE(6747)] = 145651, - [SMALL_STATE(6748)] = 145699, - [SMALL_STATE(6749)] = 145747, - [SMALL_STATE(6750)] = 145795, - [SMALL_STATE(6751)] = 145843, - [SMALL_STATE(6752)] = 145891, - [SMALL_STATE(6753)] = 145937, - [SMALL_STATE(6754)] = 145985, - [SMALL_STATE(6755)] = 146033, - [SMALL_STATE(6756)] = 146081, - [SMALL_STATE(6757)] = 146127, - [SMALL_STATE(6758)] = 146175, - [SMALL_STATE(6759)] = 146223, - [SMALL_STATE(6760)] = 146269, - [SMALL_STATE(6761)] = 146317, - [SMALL_STATE(6762)] = 146365, - [SMALL_STATE(6763)] = 146411, - [SMALL_STATE(6764)] = 146459, - [SMALL_STATE(6765)] = 146507, - [SMALL_STATE(6766)] = 146553, - [SMALL_STATE(6767)] = 146601, - [SMALL_STATE(6768)] = 146647, - [SMALL_STATE(6769)] = 146695, - [SMALL_STATE(6770)] = 146743, - [SMALL_STATE(6771)] = 146791, - [SMALL_STATE(6772)] = 146839, - [SMALL_STATE(6773)] = 146885, - [SMALL_STATE(6774)] = 146933, - [SMALL_STATE(6775)] = 146981, - [SMALL_STATE(6776)] = 147029, - [SMALL_STATE(6777)] = 147077, - [SMALL_STATE(6778)] = 147125, - [SMALL_STATE(6779)] = 147171, - [SMALL_STATE(6780)] = 147219, - [SMALL_STATE(6781)] = 147265, - [SMALL_STATE(6782)] = 147313, - [SMALL_STATE(6783)] = 147361, - [SMALL_STATE(6784)] = 147409, - [SMALL_STATE(6785)] = 147455, - [SMALL_STATE(6786)] = 147503, - [SMALL_STATE(6787)] = 147551, - [SMALL_STATE(6788)] = 147599, - [SMALL_STATE(6789)] = 147647, - [SMALL_STATE(6790)] = 147695, - [SMALL_STATE(6791)] = 147743, - [SMALL_STATE(6792)] = 147789, - [SMALL_STATE(6793)] = 147837, - [SMALL_STATE(6794)] = 147883, - [SMALL_STATE(6795)] = 147929, - [SMALL_STATE(6796)] = 147977, - [SMALL_STATE(6797)] = 148025, - [SMALL_STATE(6798)] = 148073, - [SMALL_STATE(6799)] = 148121, - [SMALL_STATE(6800)] = 148167, - [SMALL_STATE(6801)] = 148213, - [SMALL_STATE(6802)] = 148261, - [SMALL_STATE(6803)] = 148309, - [SMALL_STATE(6804)] = 148357, - [SMALL_STATE(6805)] = 148405, - [SMALL_STATE(6806)] = 148451, - [SMALL_STATE(6807)] = 148499, - [SMALL_STATE(6808)] = 148547, - [SMALL_STATE(6809)] = 148595, - [SMALL_STATE(6810)] = 148641, - [SMALL_STATE(6811)] = 148689, - [SMALL_STATE(6812)] = 148737, - [SMALL_STATE(6813)] = 148783, - [SMALL_STATE(6814)] = 148831, - [SMALL_STATE(6815)] = 148879, - [SMALL_STATE(6816)] = 148927, - [SMALL_STATE(6817)] = 148975, - [SMALL_STATE(6818)] = 149023, - [SMALL_STATE(6819)] = 149071, - [SMALL_STATE(6820)] = 149119, - [SMALL_STATE(6821)] = 149165, - [SMALL_STATE(6822)] = 149211, - [SMALL_STATE(6823)] = 149259, - [SMALL_STATE(6824)] = 149307, - [SMALL_STATE(6825)] = 149353, - [SMALL_STATE(6826)] = 149401, - [SMALL_STATE(6827)] = 149449, - [SMALL_STATE(6828)] = 149495, - [SMALL_STATE(6829)] = 149543, - [SMALL_STATE(6830)] = 149591, - [SMALL_STATE(6831)] = 149639, - [SMALL_STATE(6832)] = 149687, - [SMALL_STATE(6833)] = 149735, - [SMALL_STATE(6834)] = 149781, - [SMALL_STATE(6835)] = 149829, - [SMALL_STATE(6836)] = 149877, - [SMALL_STATE(6837)] = 149925, - [SMALL_STATE(6838)] = 149973, - [SMALL_STATE(6839)] = 150021, - [SMALL_STATE(6840)] = 150067, - [SMALL_STATE(6841)] = 150115, - [SMALL_STATE(6842)] = 150163, - [SMALL_STATE(6843)] = 150211, - [SMALL_STATE(6844)] = 150259, - [SMALL_STATE(6845)] = 150307, - [SMALL_STATE(6846)] = 150353, - [SMALL_STATE(6847)] = 150401, - [SMALL_STATE(6848)] = 150449, - [SMALL_STATE(6849)] = 150497, - [SMALL_STATE(6850)] = 150545, - [SMALL_STATE(6851)] = 150591, - [SMALL_STATE(6852)] = 150639, - [SMALL_STATE(6853)] = 150687, - [SMALL_STATE(6854)] = 150735, - [SMALL_STATE(6855)] = 150776, - [SMALL_STATE(6856)] = 150817, - [SMALL_STATE(6857)] = 150858, - [SMALL_STATE(6858)] = 150899, - [SMALL_STATE(6859)] = 150940, - [SMALL_STATE(6860)] = 150985, - [SMALL_STATE(6861)] = 151026, - [SMALL_STATE(6862)] = 151067, - [SMALL_STATE(6863)] = 151108, - [SMALL_STATE(6864)] = 151149, - [SMALL_STATE(6865)] = 151190, - [SMALL_STATE(6866)] = 151235, - [SMALL_STATE(6867)] = 151276, - [SMALL_STATE(6868)] = 151317, - [SMALL_STATE(6869)] = 151362, - [SMALL_STATE(6870)] = 151407, - [SMALL_STATE(6871)] = 151448, - [SMALL_STATE(6872)] = 151489, - [SMALL_STATE(6873)] = 151530, - [SMALL_STATE(6874)] = 151575, - [SMALL_STATE(6875)] = 151616, - [SMALL_STATE(6876)] = 151653, - [SMALL_STATE(6877)] = 151698, - [SMALL_STATE(6878)] = 151743, - [SMALL_STATE(6879)] = 151784, - [SMALL_STATE(6880)] = 151825, - [SMALL_STATE(6881)] = 151866, - [SMALL_STATE(6882)] = 151911, - [SMALL_STATE(6883)] = 151952, - [SMALL_STATE(6884)] = 151993, - [SMALL_STATE(6885)] = 152034, - [SMALL_STATE(6886)] = 152075, - [SMALL_STATE(6887)] = 152120, - [SMALL_STATE(6888)] = 152161, - [SMALL_STATE(6889)] = 152202, - [SMALL_STATE(6890)] = 152243, - [SMALL_STATE(6891)] = 152284, - [SMALL_STATE(6892)] = 152325, - [SMALL_STATE(6893)] = 152366, - [SMALL_STATE(6894)] = 152407, - [SMALL_STATE(6895)] = 152448, - [SMALL_STATE(6896)] = 152489, - [SMALL_STATE(6897)] = 152534, - [SMALL_STATE(6898)] = 152575, - [SMALL_STATE(6899)] = 152616, - [SMALL_STATE(6900)] = 152657, - [SMALL_STATE(6901)] = 152698, - [SMALL_STATE(6902)] = 152739, - [SMALL_STATE(6903)] = 152780, - [SMALL_STATE(6904)] = 152821, - [SMALL_STATE(6905)] = 152866, - [SMALL_STATE(6906)] = 152907, - [SMALL_STATE(6907)] = 152948, - [SMALL_STATE(6908)] = 152989, - [SMALL_STATE(6909)] = 153030, - [SMALL_STATE(6910)] = 153071, - [SMALL_STATE(6911)] = 153112, - [SMALL_STATE(6912)] = 153157, - [SMALL_STATE(6913)] = 153198, - [SMALL_STATE(6914)] = 153243, - [SMALL_STATE(6915)] = 153284, - [SMALL_STATE(6916)] = 153325, - [SMALL_STATE(6917)] = 153366, - [SMALL_STATE(6918)] = 153411, - [SMALL_STATE(6919)] = 153448, - [SMALL_STATE(6920)] = 153489, - [SMALL_STATE(6921)] = 153534, - [SMALL_STATE(6922)] = 153575, - [SMALL_STATE(6923)] = 153616, - [SMALL_STATE(6924)] = 153657, - [SMALL_STATE(6925)] = 153698, - [SMALL_STATE(6926)] = 153732, - [SMALL_STATE(6927)] = 153766, - [SMALL_STATE(6928)] = 153800, - [SMALL_STATE(6929)] = 153830, - [SMALL_STATE(6930)] = 153860, - [SMALL_STATE(6931)] = 153900, - [SMALL_STATE(6932)] = 153934, - [SMALL_STATE(6933)] = 153971, - [SMALL_STATE(6934)] = 154008, - [SMALL_STATE(6935)] = 154045, - [SMALL_STATE(6936)] = 154082, - [SMALL_STATE(6937)] = 154119, - [SMALL_STATE(6938)] = 154156, - [SMALL_STATE(6939)] = 154193, - [SMALL_STATE(6940)] = 154230, - [SMALL_STATE(6941)] = 154267, - [SMALL_STATE(6942)] = 154304, - [SMALL_STATE(6943)] = 154341, - [SMALL_STATE(6944)] = 154378, - [SMALL_STATE(6945)] = 154415, - [SMALL_STATE(6946)] = 154452, - [SMALL_STATE(6947)] = 154489, - [SMALL_STATE(6948)] = 154526, - [SMALL_STATE(6949)] = 154563, - [SMALL_STATE(6950)] = 154600, - [SMALL_STATE(6951)] = 154637, - [SMALL_STATE(6952)] = 154674, - [SMALL_STATE(6953)] = 154711, - [SMALL_STATE(6954)] = 154748, - [SMALL_STATE(6955)] = 154785, - [SMALL_STATE(6956)] = 154822, - [SMALL_STATE(6957)] = 154859, - [SMALL_STATE(6958)] = 154886, - [SMALL_STATE(6959)] = 154923, - [SMALL_STATE(6960)] = 154960, - [SMALL_STATE(6961)] = 154997, - [SMALL_STATE(6962)] = 155026, - [SMALL_STATE(6963)] = 155063, - [SMALL_STATE(6964)] = 155100, - [SMALL_STATE(6965)] = 155137, - [SMALL_STATE(6966)] = 155166, - [SMALL_STATE(6967)] = 155203, - [SMALL_STATE(6968)] = 155240, - [SMALL_STATE(6969)] = 155277, - [SMALL_STATE(6970)] = 155314, - [SMALL_STATE(6971)] = 155351, - [SMALL_STATE(6972)] = 155379, - [SMALL_STATE(6973)] = 155413, - [SMALL_STATE(6974)] = 155447, - [SMALL_STATE(6975)] = 155481, - [SMALL_STATE(6976)] = 155515, - [SMALL_STATE(6977)] = 155551, - [SMALL_STATE(6978)] = 155585, - [SMALL_STATE(6979)] = 155619, - [SMALL_STATE(6980)] = 155653, - [SMALL_STATE(6981)] = 155677, - [SMALL_STATE(6982)] = 155711, - [SMALL_STATE(6983)] = 155747, - [SMALL_STATE(6984)] = 155781, - [SMALL_STATE(6985)] = 155815, - [SMALL_STATE(6986)] = 155849, - [SMALL_STATE(6987)] = 155885, - [SMALL_STATE(6988)] = 155919, - [SMALL_STATE(6989)] = 155953, - [SMALL_STATE(6990)] = 155983, - [SMALL_STATE(6991)] = 156017, - [SMALL_STATE(6992)] = 156051, - [SMALL_STATE(6993)] = 156085, - [SMALL_STATE(6994)] = 156119, - [SMALL_STATE(6995)] = 156147, - [SMALL_STATE(6996)] = 156181, - [SMALL_STATE(6997)] = 156215, - [SMALL_STATE(6998)] = 156249, - [SMALL_STATE(6999)] = 156273, - [SMALL_STATE(7000)] = 156307, - [SMALL_STATE(7001)] = 156343, - [SMALL_STATE(7002)] = 156379, - [SMALL_STATE(7003)] = 156413, - [SMALL_STATE(7004)] = 156447, - [SMALL_STATE(7005)] = 156481, - [SMALL_STATE(7006)] = 156515, - [SMALL_STATE(7007)] = 156549, - [SMALL_STATE(7008)] = 156583, - [SMALL_STATE(7009)] = 156617, - [SMALL_STATE(7010)] = 156651, - [SMALL_STATE(7011)] = 156685, - [SMALL_STATE(7012)] = 156721, - [SMALL_STATE(7013)] = 156755, - [SMALL_STATE(7014)] = 156789, - [SMALL_STATE(7015)] = 156825, - [SMALL_STATE(7016)] = 156859, - [SMALL_STATE(7017)] = 156893, - [SMALL_STATE(7018)] = 156921, - [SMALL_STATE(7019)] = 156955, - [SMALL_STATE(7020)] = 156991, - [SMALL_STATE(7021)] = 157024, - [SMALL_STATE(7022)] = 157055, - [SMALL_STATE(7023)] = 157086, - [SMALL_STATE(7024)] = 157119, - [SMALL_STATE(7025)] = 157150, - [SMALL_STATE(7026)] = 157183, - [SMALL_STATE(7027)] = 157216, - [SMALL_STATE(7028)] = 157249, - [SMALL_STATE(7029)] = 157282, - [SMALL_STATE(7030)] = 157313, - [SMALL_STATE(7031)] = 157344, - [SMALL_STATE(7032)] = 157377, - [SMALL_STATE(7033)] = 157410, - [SMALL_STATE(7034)] = 157441, - [SMALL_STATE(7035)] = 157470, - [SMALL_STATE(7036)] = 157501, - [SMALL_STATE(7037)] = 157534, - [SMALL_STATE(7038)] = 157565, - [SMALL_STATE(7039)] = 157598, - [SMALL_STATE(7040)] = 157629, - [SMALL_STATE(7041)] = 157660, - [SMALL_STATE(7042)] = 157691, - [SMALL_STATE(7043)] = 157724, - [SMALL_STATE(7044)] = 157757, - [SMALL_STATE(7045)] = 157790, - [SMALL_STATE(7046)] = 157821, - [SMALL_STATE(7047)] = 157852, - [SMALL_STATE(7048)] = 157883, - [SMALL_STATE(7049)] = 157914, - [SMALL_STATE(7050)] = 157945, - [SMALL_STATE(7051)] = 157976, - [SMALL_STATE(7052)] = 158007, - [SMALL_STATE(7053)] = 158038, - [SMALL_STATE(7054)] = 158069, - [SMALL_STATE(7055)] = 158102, - [SMALL_STATE(7056)] = 158133, - [SMALL_STATE(7057)] = 158164, - [SMALL_STATE(7058)] = 158191, - [SMALL_STATE(7059)] = 158222, - [SMALL_STATE(7060)] = 158253, - [SMALL_STATE(7061)] = 158284, - [SMALL_STATE(7062)] = 158315, - [SMALL_STATE(7063)] = 158348, - [SMALL_STATE(7064)] = 158379, - [SMALL_STATE(7065)] = 158412, - [SMALL_STATE(7066)] = 158445, - [SMALL_STATE(7067)] = 158476, - [SMALL_STATE(7068)] = 158509, - [SMALL_STATE(7069)] = 158542, - [SMALL_STATE(7070)] = 158575, - [SMALL_STATE(7071)] = 158606, - [SMALL_STATE(7072)] = 158637, - [SMALL_STATE(7073)] = 158670, - [SMALL_STATE(7074)] = 158701, - [SMALL_STATE(7075)] = 158732, - [SMALL_STATE(7076)] = 158763, - [SMALL_STATE(7077)] = 158796, - [SMALL_STATE(7078)] = 158827, - [SMALL_STATE(7079)] = 158858, - [SMALL_STATE(7080)] = 158891, - [SMALL_STATE(7081)] = 158922, - [SMALL_STATE(7082)] = 158953, - [SMALL_STATE(7083)] = 158986, - [SMALL_STATE(7084)] = 159019, - [SMALL_STATE(7085)] = 159050, - [SMALL_STATE(7086)] = 159081, - [SMALL_STATE(7087)] = 159104, - [SMALL_STATE(7088)] = 159137, - [SMALL_STATE(7089)] = 159160, - [SMALL_STATE(7090)] = 159191, - [SMALL_STATE(7091)] = 159222, - [SMALL_STATE(7092)] = 159255, - [SMALL_STATE(7093)] = 159278, - [SMALL_STATE(7094)] = 159309, - [SMALL_STATE(7095)] = 159332, - [SMALL_STATE(7096)] = 159365, - [SMALL_STATE(7097)] = 159396, - [SMALL_STATE(7098)] = 159427, - [SMALL_STATE(7099)] = 159460, - [SMALL_STATE(7100)] = 159493, - [SMALL_STATE(7101)] = 159526, - [SMALL_STATE(7102)] = 159557, - [SMALL_STATE(7103)] = 159590, - [SMALL_STATE(7104)] = 159623, - [SMALL_STATE(7105)] = 159654, - [SMALL_STATE(7106)] = 159687, - [SMALL_STATE(7107)] = 159720, - [SMALL_STATE(7108)] = 159751, - [SMALL_STATE(7109)] = 159784, - [SMALL_STATE(7110)] = 159817, - [SMALL_STATE(7111)] = 159850, - [SMALL_STATE(7112)] = 159883, - [SMALL_STATE(7113)] = 159916, - [SMALL_STATE(7114)] = 159947, - [SMALL_STATE(7115)] = 159980, - [SMALL_STATE(7116)] = 160011, - [SMALL_STATE(7117)] = 160042, - [SMALL_STATE(7118)] = 160073, - [SMALL_STATE(7119)] = 160104, - [SMALL_STATE(7120)] = 160137, - [SMALL_STATE(7121)] = 160170, - [SMALL_STATE(7122)] = 160203, - [SMALL_STATE(7123)] = 160238, - [SMALL_STATE(7124)] = 160269, - [SMALL_STATE(7125)] = 160300, - [SMALL_STATE(7126)] = 160335, - [SMALL_STATE(7127)] = 160368, - [SMALL_STATE(7128)] = 160401, - [SMALL_STATE(7129)] = 160432, - [SMALL_STATE(7130)] = 160463, - [SMALL_STATE(7131)] = 160494, - [SMALL_STATE(7132)] = 160527, - [SMALL_STATE(7133)] = 160560, - [SMALL_STATE(7134)] = 160591, - [SMALL_STATE(7135)] = 160624, - [SMALL_STATE(7136)] = 160655, - [SMALL_STATE(7137)] = 160688, - [SMALL_STATE(7138)] = 160719, - [SMALL_STATE(7139)] = 160750, - [SMALL_STATE(7140)] = 160783, - [SMALL_STATE(7141)] = 160816, - [SMALL_STATE(7142)] = 160847, - [SMALL_STATE(7143)] = 160878, - [SMALL_STATE(7144)] = 160911, - [SMALL_STATE(7145)] = 160944, - [SMALL_STATE(7146)] = 160977, - [SMALL_STATE(7147)] = 161008, - [SMALL_STATE(7148)] = 161041, - [SMALL_STATE(7149)] = 161072, - [SMALL_STATE(7150)] = 161103, - [SMALL_STATE(7151)] = 161136, - [SMALL_STATE(7152)] = 161169, - [SMALL_STATE(7153)] = 161200, - [SMALL_STATE(7154)] = 161233, - [SMALL_STATE(7155)] = 161264, - [SMALL_STATE(7156)] = 161297, - [SMALL_STATE(7157)] = 161330, - [SMALL_STATE(7158)] = 161363, - [SMALL_STATE(7159)] = 161394, - [SMALL_STATE(7160)] = 161427, - [SMALL_STATE(7161)] = 161460, - [SMALL_STATE(7162)] = 161489, - [SMALL_STATE(7163)] = 161522, - [SMALL_STATE(7164)] = 161555, - [SMALL_STATE(7165)] = 161588, - [SMALL_STATE(7166)] = 161619, - [SMALL_STATE(7167)] = 161650, - [SMALL_STATE(7168)] = 161681, - [SMALL_STATE(7169)] = 161714, - [SMALL_STATE(7170)] = 161747, - [SMALL_STATE(7171)] = 161780, - [SMALL_STATE(7172)] = 161813, - [SMALL_STATE(7173)] = 161844, - [SMALL_STATE(7174)] = 161875, - [SMALL_STATE(7175)] = 161908, - [SMALL_STATE(7176)] = 161941, - [SMALL_STATE(7177)] = 161972, - [SMALL_STATE(7178)] = 162005, - [SMALL_STATE(7179)] = 162038, - [SMALL_STATE(7180)] = 162071, - [SMALL_STATE(7181)] = 162102, - [SMALL_STATE(7182)] = 162135, - [SMALL_STATE(7183)] = 162166, - [SMALL_STATE(7184)] = 162199, - [SMALL_STATE(7185)] = 162230, - [SMALL_STATE(7186)] = 162263, - [SMALL_STATE(7187)] = 162294, - [SMALL_STATE(7188)] = 162327, - [SMALL_STATE(7189)] = 162358, - [SMALL_STATE(7190)] = 162389, - [SMALL_STATE(7191)] = 162422, - [SMALL_STATE(7192)] = 162453, - [SMALL_STATE(7193)] = 162483, - [SMALL_STATE(7194)] = 162515, - [SMALL_STATE(7195)] = 162545, - [SMALL_STATE(7196)] = 162575, - [SMALL_STATE(7197)] = 162605, - [SMALL_STATE(7198)] = 162637, - [SMALL_STATE(7199)] = 162667, - [SMALL_STATE(7200)] = 162699, - [SMALL_STATE(7201)] = 162731, - [SMALL_STATE(7202)] = 162761, - [SMALL_STATE(7203)] = 162791, - [SMALL_STATE(7204)] = 162821, - [SMALL_STATE(7205)] = 162851, - [SMALL_STATE(7206)] = 162883, - [SMALL_STATE(7207)] = 162915, - [SMALL_STATE(7208)] = 162947, - [SMALL_STATE(7209)] = 162979, - [SMALL_STATE(7210)] = 163009, - [SMALL_STATE(7211)] = 163041, - [SMALL_STATE(7212)] = 163073, - [SMALL_STATE(7213)] = 163105, - [SMALL_STATE(7214)] = 163137, - [SMALL_STATE(7215)] = 163167, - [SMALL_STATE(7216)] = 163199, - [SMALL_STATE(7217)] = 163231, - [SMALL_STATE(7218)] = 163263, - [SMALL_STATE(7219)] = 163295, - [SMALL_STATE(7220)] = 163325, - [SMALL_STATE(7221)] = 163355, - [SMALL_STATE(7222)] = 163385, - [SMALL_STATE(7223)] = 163415, - [SMALL_STATE(7224)] = 163447, - [SMALL_STATE(7225)] = 163479, - [SMALL_STATE(7226)] = 163511, - [SMALL_STATE(7227)] = 163543, - [SMALL_STATE(7228)] = 163575, - [SMALL_STATE(7229)] = 163605, - [SMALL_STATE(7230)] = 163635, - [SMALL_STATE(7231)] = 163667, - [SMALL_STATE(7232)] = 163697, - [SMALL_STATE(7233)] = 163729, - [SMALL_STATE(7234)] = 163761, - [SMALL_STATE(7235)] = 163791, - [SMALL_STATE(7236)] = 163821, - [SMALL_STATE(7237)] = 163853, - [SMALL_STATE(7238)] = 163885, - [SMALL_STATE(7239)] = 163917, - [SMALL_STATE(7240)] = 163949, - [SMALL_STATE(7241)] = 163979, - [SMALL_STATE(7242)] = 164009, - [SMALL_STATE(7243)] = 164039, - [SMALL_STATE(7244)] = 164069, - [SMALL_STATE(7245)] = 164101, - [SMALL_STATE(7246)] = 164133, - [SMALL_STATE(7247)] = 164163, - [SMALL_STATE(7248)] = 164195, - [SMALL_STATE(7249)] = 164225, - [SMALL_STATE(7250)] = 164257, - [SMALL_STATE(7251)] = 164289, - [SMALL_STATE(7252)] = 164319, - [SMALL_STATE(7253)] = 164351, - [SMALL_STATE(7254)] = 164381, - [SMALL_STATE(7255)] = 164411, - [SMALL_STATE(7256)] = 164443, - [SMALL_STATE(7257)] = 164473, - [SMALL_STATE(7258)] = 164505, - [SMALL_STATE(7259)] = 164535, - [SMALL_STATE(7260)] = 164567, - [SMALL_STATE(7261)] = 164597, - [SMALL_STATE(7262)] = 164629, - [SMALL_STATE(7263)] = 164659, - [SMALL_STATE(7264)] = 164691, - [SMALL_STATE(7265)] = 164723, - [SMALL_STATE(7266)] = 164755, - [SMALL_STATE(7267)] = 164787, - [SMALL_STATE(7268)] = 164817, - [SMALL_STATE(7269)] = 164847, - [SMALL_STATE(7270)] = 164879, - [SMALL_STATE(7271)] = 164911, - [SMALL_STATE(7272)] = 164943, - [SMALL_STATE(7273)] = 164975, - [SMALL_STATE(7274)] = 165007, - [SMALL_STATE(7275)] = 165039, - [SMALL_STATE(7276)] = 165071, - [SMALL_STATE(7277)] = 165103, - [SMALL_STATE(7278)] = 165135, - [SMALL_STATE(7279)] = 165167, - [SMALL_STATE(7280)] = 165197, - [SMALL_STATE(7281)] = 165229, - [SMALL_STATE(7282)] = 165261, - [SMALL_STATE(7283)] = 165293, - [SMALL_STATE(7284)] = 165325, - [SMALL_STATE(7285)] = 165357, - [SMALL_STATE(7286)] = 165387, - [SMALL_STATE(7287)] = 165417, - [SMALL_STATE(7288)] = 165449, - [SMALL_STATE(7289)] = 165481, - [SMALL_STATE(7290)] = 165513, - [SMALL_STATE(7291)] = 165543, - [SMALL_STATE(7292)] = 165573, - [SMALL_STATE(7293)] = 165603, - [SMALL_STATE(7294)] = 165635, - [SMALL_STATE(7295)] = 165665, - [SMALL_STATE(7296)] = 165697, - [SMALL_STATE(7297)] = 165729, - [SMALL_STATE(7298)] = 165759, - [SMALL_STATE(7299)] = 165791, - [SMALL_STATE(7300)] = 165823, - [SMALL_STATE(7301)] = 165853, - [SMALL_STATE(7302)] = 165885, - [SMALL_STATE(7303)] = 165917, - [SMALL_STATE(7304)] = 165949, - [SMALL_STATE(7305)] = 165979, - [SMALL_STATE(7306)] = 166009, - [SMALL_STATE(7307)] = 166041, - [SMALL_STATE(7308)] = 166073, - [SMALL_STATE(7309)] = 166103, - [SMALL_STATE(7310)] = 166135, - [SMALL_STATE(7311)] = 166167, - [SMALL_STATE(7312)] = 166197, - [SMALL_STATE(7313)] = 166229, - [SMALL_STATE(7314)] = 166261, - [SMALL_STATE(7315)] = 166293, - [SMALL_STATE(7316)] = 166325, - [SMALL_STATE(7317)] = 166357, - [SMALL_STATE(7318)] = 166389, - [SMALL_STATE(7319)] = 166421, - [SMALL_STATE(7320)] = 166453, - [SMALL_STATE(7321)] = 166483, - [SMALL_STATE(7322)] = 166515, - [SMALL_STATE(7323)] = 166545, - [SMALL_STATE(7324)] = 166577, - [SMALL_STATE(7325)] = 166607, - [SMALL_STATE(7326)] = 166639, - [SMALL_STATE(7327)] = 166671, - [SMALL_STATE(7328)] = 166703, - [SMALL_STATE(7329)] = 166735, - [SMALL_STATE(7330)] = 166767, - [SMALL_STATE(7331)] = 166799, - [SMALL_STATE(7332)] = 166831, - [SMALL_STATE(7333)] = 166863, - [SMALL_STATE(7334)] = 166893, - [SMALL_STATE(7335)] = 166923, - [SMALL_STATE(7336)] = 166953, - [SMALL_STATE(7337)] = 166985, - [SMALL_STATE(7338)] = 167015, - [SMALL_STATE(7339)] = 167047, - [SMALL_STATE(7340)] = 167079, - [SMALL_STATE(7341)] = 167111, - [SMALL_STATE(7342)] = 167143, - [SMALL_STATE(7343)] = 167175, - [SMALL_STATE(7344)] = 167207, - [SMALL_STATE(7345)] = 167239, - [SMALL_STATE(7346)] = 167269, - [SMALL_STATE(7347)] = 167301, - [SMALL_STATE(7348)] = 167331, - [SMALL_STATE(7349)] = 167361, - [SMALL_STATE(7350)] = 167391, - [SMALL_STATE(7351)] = 167421, - [SMALL_STATE(7352)] = 167453, - [SMALL_STATE(7353)] = 167483, - [SMALL_STATE(7354)] = 167513, - [SMALL_STATE(7355)] = 167543, - [SMALL_STATE(7356)] = 167575, - [SMALL_STATE(7357)] = 167607, - [SMALL_STATE(7358)] = 167637, - [SMALL_STATE(7359)] = 167667, - [SMALL_STATE(7360)] = 167699, - [SMALL_STATE(7361)] = 167731, - [SMALL_STATE(7362)] = 167763, - [SMALL_STATE(7363)] = 167795, - [SMALL_STATE(7364)] = 167827, - [SMALL_STATE(7365)] = 167859, - [SMALL_STATE(7366)] = 167891, - [SMALL_STATE(7367)] = 167923, - [SMALL_STATE(7368)] = 167955, - [SMALL_STATE(7369)] = 167987, - [SMALL_STATE(7370)] = 168017, - [SMALL_STATE(7371)] = 168047, - [SMALL_STATE(7372)] = 168079, - [SMALL_STATE(7373)] = 168111, - [SMALL_STATE(7374)] = 168141, - [SMALL_STATE(7375)] = 168173, - [SMALL_STATE(7376)] = 168205, - [SMALL_STATE(7377)] = 168237, - [SMALL_STATE(7378)] = 168267, - [SMALL_STATE(7379)] = 168297, - [SMALL_STATE(7380)] = 168327, - [SMALL_STATE(7381)] = 168359, - [SMALL_STATE(7382)] = 168389, - [SMALL_STATE(7383)] = 168421, - [SMALL_STATE(7384)] = 168453, - [SMALL_STATE(7385)] = 168485, - [SMALL_STATE(7386)] = 168517, - [SMALL_STATE(7387)] = 168549, - [SMALL_STATE(7388)] = 168579, - [SMALL_STATE(7389)] = 168611, - [SMALL_STATE(7390)] = 168643, - [SMALL_STATE(7391)] = 168673, - [SMALL_STATE(7392)] = 168703, - [SMALL_STATE(7393)] = 168735, - [SMALL_STATE(7394)] = 168765, - [SMALL_STATE(7395)] = 168797, - [SMALL_STATE(7396)] = 168829, - [SMALL_STATE(7397)] = 168861, - [SMALL_STATE(7398)] = 168891, - [SMALL_STATE(7399)] = 168921, - [SMALL_STATE(7400)] = 168953, - [SMALL_STATE(7401)] = 168985, - [SMALL_STATE(7402)] = 169015, - [SMALL_STATE(7403)] = 169045, - [SMALL_STATE(7404)] = 169075, - [SMALL_STATE(7405)] = 169107, - [SMALL_STATE(7406)] = 169137, - [SMALL_STATE(7407)] = 169167, - [SMALL_STATE(7408)] = 169199, - [SMALL_STATE(7409)] = 169229, - [SMALL_STATE(7410)] = 169261, - [SMALL_STATE(7411)] = 169293, - [SMALL_STATE(7412)] = 169323, - [SMALL_STATE(7413)] = 169353, - [SMALL_STATE(7414)] = 169383, - [SMALL_STATE(7415)] = 169415, - [SMALL_STATE(7416)] = 169447, - [SMALL_STATE(7417)] = 169472, - [SMALL_STATE(7418)] = 169493, - [SMALL_STATE(7419)] = 169514, - [SMALL_STATE(7420)] = 169535, - [SMALL_STATE(7421)] = 169556, - [SMALL_STATE(7422)] = 169577, - [SMALL_STATE(7423)] = 169598, - [SMALL_STATE(7424)] = 169623, - [SMALL_STATE(7425)] = 169650, - [SMALL_STATE(7426)] = 169675, - [SMALL_STATE(7427)] = 169712, - [SMALL_STATE(7428)] = 169737, - [SMALL_STATE(7429)] = 169758, - [SMALL_STATE(7430)] = 169779, - [SMALL_STATE(7431)] = 169800, - [SMALL_STATE(7432)] = 169821, - [SMALL_STATE(7433)] = 169847, - [SMALL_STATE(7434)] = 169873, - [SMALL_STATE(7435)] = 169897, - [SMALL_STATE(7436)] = 169921, - [SMALL_STATE(7437)] = 169947, - [SMALL_STATE(7438)] = 169973, - [SMALL_STATE(7439)] = 169999, - [SMALL_STATE(7440)] = 170025, - [SMALL_STATE(7441)] = 170051, - [SMALL_STATE(7442)] = 170077, - [SMALL_STATE(7443)] = 170103, - [SMALL_STATE(7444)] = 170127, - [SMALL_STATE(7445)] = 170153, - [SMALL_STATE(7446)] = 170179, - [SMALL_STATE(7447)] = 170205, - [SMALL_STATE(7448)] = 170231, - [SMALL_STATE(7449)] = 170257, - [SMALL_STATE(7450)] = 170283, - [SMALL_STATE(7451)] = 170309, - [SMALL_STATE(7452)] = 170335, - [SMALL_STATE(7453)] = 170361, - [SMALL_STATE(7454)] = 170387, - [SMALL_STATE(7455)] = 170413, - [SMALL_STATE(7456)] = 170439, - [SMALL_STATE(7457)] = 170465, - [SMALL_STATE(7458)] = 170487, - [SMALL_STATE(7459)] = 170513, - [SMALL_STATE(7460)] = 170539, - [SMALL_STATE(7461)] = 170565, - [SMALL_STATE(7462)] = 170591, - [SMALL_STATE(7463)] = 170615, - [SMALL_STATE(7464)] = 170641, - [SMALL_STATE(7465)] = 170667, - [SMALL_STATE(7466)] = 170693, - [SMALL_STATE(7467)] = 170719, - [SMALL_STATE(7468)] = 170745, - [SMALL_STATE(7469)] = 170769, - [SMALL_STATE(7470)] = 170795, - [SMALL_STATE(7471)] = 170821, - [SMALL_STATE(7472)] = 170847, - [SMALL_STATE(7473)] = 170873, - [SMALL_STATE(7474)] = 170899, - [SMALL_STATE(7475)] = 170925, - [SMALL_STATE(7476)] = 170951, - [SMALL_STATE(7477)] = 170975, - [SMALL_STATE(7478)] = 171001, - [SMALL_STATE(7479)] = 171027, - [SMALL_STATE(7480)] = 171053, - [SMALL_STATE(7481)] = 171079, - [SMALL_STATE(7482)] = 171105, - [SMALL_STATE(7483)] = 171131, - [SMALL_STATE(7484)] = 171153, - [SMALL_STATE(7485)] = 171179, - [SMALL_STATE(7486)] = 171205, - [SMALL_STATE(7487)] = 171231, - [SMALL_STATE(7488)] = 171253, - [SMALL_STATE(7489)] = 171279, - [SMALL_STATE(7490)] = 171305, - [SMALL_STATE(7491)] = 171329, - [SMALL_STATE(7492)] = 171355, - [SMALL_STATE(7493)] = 171389, - [SMALL_STATE(7494)] = 171409, - [SMALL_STATE(7495)] = 171433, - [SMALL_STATE(7496)] = 171459, - [SMALL_STATE(7497)] = 171485, - [SMALL_STATE(7498)] = 171511, - [SMALL_STATE(7499)] = 171537, - [SMALL_STATE(7500)] = 171563, - [SMALL_STATE(7501)] = 171589, - [SMALL_STATE(7502)] = 171623, - [SMALL_STATE(7503)] = 171649, - [SMALL_STATE(7504)] = 171675, - [SMALL_STATE(7505)] = 171701, - [SMALL_STATE(7506)] = 171727, - [SMALL_STATE(7507)] = 171753, - [SMALL_STATE(7508)] = 171779, - [SMALL_STATE(7509)] = 171805, - [SMALL_STATE(7510)] = 171831, - [SMALL_STATE(7511)] = 171865, - [SMALL_STATE(7512)] = 171891, - [SMALL_STATE(7513)] = 171917, - [SMALL_STATE(7514)] = 171943, - [SMALL_STATE(7515)] = 171969, - [SMALL_STATE(7516)] = 171995, - [SMALL_STATE(7517)] = 172019, - [SMALL_STATE(7518)] = 172041, - [SMALL_STATE(7519)] = 172065, - [SMALL_STATE(7520)] = 172091, - [SMALL_STATE(7521)] = 172117, - [SMALL_STATE(7522)] = 172143, - [SMALL_STATE(7523)] = 172169, - [SMALL_STATE(7524)] = 172195, - [SMALL_STATE(7525)] = 172221, - [SMALL_STATE(7526)] = 172247, - [SMALL_STATE(7527)] = 172273, - [SMALL_STATE(7528)] = 172299, - [SMALL_STATE(7529)] = 172325, - [SMALL_STATE(7530)] = 172349, - [SMALL_STATE(7531)] = 172375, - [SMALL_STATE(7532)] = 172401, - [SMALL_STATE(7533)] = 172427, - [SMALL_STATE(7534)] = 172453, - [SMALL_STATE(7535)] = 172479, - [SMALL_STATE(7536)] = 172505, - [SMALL_STATE(7537)] = 172531, - [SMALL_STATE(7538)] = 172553, - [SMALL_STATE(7539)] = 172579, - [SMALL_STATE(7540)] = 172603, - [SMALL_STATE(7541)] = 172629, - [SMALL_STATE(7542)] = 172655, - [SMALL_STATE(7543)] = 172681, - [SMALL_STATE(7544)] = 172707, - [SMALL_STATE(7545)] = 172733, - [SMALL_STATE(7546)] = 172757, - [SMALL_STATE(7547)] = 172783, - [SMALL_STATE(7548)] = 172809, - [SMALL_STATE(7549)] = 172835, - [SMALL_STATE(7550)] = 172861, - [SMALL_STATE(7551)] = 172887, - [SMALL_STATE(7552)] = 172921, - [SMALL_STATE(7553)] = 172947, - [SMALL_STATE(7554)] = 172973, - [SMALL_STATE(7555)] = 172999, - [SMALL_STATE(7556)] = 173025, - [SMALL_STATE(7557)] = 173051, - [SMALL_STATE(7558)] = 173077, - [SMALL_STATE(7559)] = 173101, - [SMALL_STATE(7560)] = 173125, - [SMALL_STATE(7561)] = 173151, - [SMALL_STATE(7562)] = 173175, - [SMALL_STATE(7563)] = 173209, - [SMALL_STATE(7564)] = 173243, - [SMALL_STATE(7565)] = 173269, - [SMALL_STATE(7566)] = 173295, - [SMALL_STATE(7567)] = 173321, - [SMALL_STATE(7568)] = 173341, - [SMALL_STATE(7569)] = 173365, - [SMALL_STATE(7570)] = 173391, - [SMALL_STATE(7571)] = 173415, - [SMALL_STATE(7572)] = 173439, - [SMALL_STATE(7573)] = 173465, - [SMALL_STATE(7574)] = 173489, - [SMALL_STATE(7575)] = 173515, - [SMALL_STATE(7576)] = 173541, - [SMALL_STATE(7577)] = 173565, - [SMALL_STATE(7578)] = 173591, - [SMALL_STATE(7579)] = 173617, - [SMALL_STATE(7580)] = 173643, - [SMALL_STATE(7581)] = 173669, - [SMALL_STATE(7582)] = 173695, - [SMALL_STATE(7583)] = 173721, - [SMALL_STATE(7584)] = 173745, - [SMALL_STATE(7585)] = 173771, - [SMALL_STATE(7586)] = 173797, - [SMALL_STATE(7587)] = 173821, - [SMALL_STATE(7588)] = 173847, - [SMALL_STATE(7589)] = 173871, - [SMALL_STATE(7590)] = 173897, - [SMALL_STATE(7591)] = 173923, - [SMALL_STATE(7592)] = 173949, - [SMALL_STATE(7593)] = 173975, - [SMALL_STATE(7594)] = 173998, - [SMALL_STATE(7595)] = 174021, - [SMALL_STATE(7596)] = 174044, - [SMALL_STATE(7597)] = 174067, - [SMALL_STATE(7598)] = 174090, - [SMALL_STATE(7599)] = 174113, - [SMALL_STATE(7600)] = 174136, - [SMALL_STATE(7601)] = 174159, - [SMALL_STATE(7602)] = 174182, - [SMALL_STATE(7603)] = 174205, - [SMALL_STATE(7604)] = 174228, - [SMALL_STATE(7605)] = 174245, - [SMALL_STATE(7606)] = 174268, - [SMALL_STATE(7607)] = 174291, - [SMALL_STATE(7608)] = 174314, - [SMALL_STATE(7609)] = 174337, - [SMALL_STATE(7610)] = 174360, - [SMALL_STATE(7611)] = 174383, - [SMALL_STATE(7612)] = 174406, - [SMALL_STATE(7613)] = 174429, - [SMALL_STATE(7614)] = 174460, - [SMALL_STATE(7615)] = 174483, - [SMALL_STATE(7616)] = 174514, - [SMALL_STATE(7617)] = 174537, - [SMALL_STATE(7618)] = 174560, - [SMALL_STATE(7619)] = 174581, - [SMALL_STATE(7620)] = 174604, - [SMALL_STATE(7621)] = 174627, - [SMALL_STATE(7622)] = 174658, - [SMALL_STATE(7623)] = 174681, - [SMALL_STATE(7624)] = 174704, - [SMALL_STATE(7625)] = 174727, - [SMALL_STATE(7626)] = 174750, - [SMALL_STATE(7627)] = 174773, - [SMALL_STATE(7628)] = 174796, - [SMALL_STATE(7629)] = 174819, - [SMALL_STATE(7630)] = 174842, - [SMALL_STATE(7631)] = 174865, - [SMALL_STATE(7632)] = 174888, - [SMALL_STATE(7633)] = 174911, - [SMALL_STATE(7634)] = 174932, - [SMALL_STATE(7635)] = 174955, - [SMALL_STATE(7636)] = 174978, - [SMALL_STATE(7637)] = 175001, - [SMALL_STATE(7638)] = 175024, - [SMALL_STATE(7639)] = 175055, - [SMALL_STATE(7640)] = 175078, - [SMALL_STATE(7641)] = 175101, - [SMALL_STATE(7642)] = 175124, - [SMALL_STATE(7643)] = 175147, - [SMALL_STATE(7644)] = 175170, - [SMALL_STATE(7645)] = 175193, - [SMALL_STATE(7646)] = 175216, - [SMALL_STATE(7647)] = 175239, - [SMALL_STATE(7648)] = 175262, - [SMALL_STATE(7649)] = 175285, - [SMALL_STATE(7650)] = 175308, - [SMALL_STATE(7651)] = 175331, - [SMALL_STATE(7652)] = 175354, - [SMALL_STATE(7653)] = 175377, - [SMALL_STATE(7654)] = 175408, - [SMALL_STATE(7655)] = 175431, - [SMALL_STATE(7656)] = 175454, - [SMALL_STATE(7657)] = 175477, - [SMALL_STATE(7658)] = 175500, - [SMALL_STATE(7659)] = 175523, - [SMALL_STATE(7660)] = 175546, - [SMALL_STATE(7661)] = 175569, - [SMALL_STATE(7662)] = 175588, - [SMALL_STATE(7663)] = 175619, - [SMALL_STATE(7664)] = 175642, - [SMALL_STATE(7665)] = 175665, - [SMALL_STATE(7666)] = 175688, - [SMALL_STATE(7667)] = 175711, - [SMALL_STATE(7668)] = 175734, - [SMALL_STATE(7669)] = 175757, - [SMALL_STATE(7670)] = 175788, - [SMALL_STATE(7671)] = 175811, - [SMALL_STATE(7672)] = 175834, - [SMALL_STATE(7673)] = 175857, - [SMALL_STATE(7674)] = 175880, - [SMALL_STATE(7675)] = 175903, - [SMALL_STATE(7676)] = 175934, - [SMALL_STATE(7677)] = 175957, - [SMALL_STATE(7678)] = 175980, - [SMALL_STATE(7679)] = 176003, - [SMALL_STATE(7680)] = 176026, - [SMALL_STATE(7681)] = 176049, - [SMALL_STATE(7682)] = 176072, - [SMALL_STATE(7683)] = 176095, - [SMALL_STATE(7684)] = 176118, - [SMALL_STATE(7685)] = 176141, - [SMALL_STATE(7686)] = 176164, - [SMALL_STATE(7687)] = 176187, - [SMALL_STATE(7688)] = 176210, - [SMALL_STATE(7689)] = 176233, - [SMALL_STATE(7690)] = 176256, - [SMALL_STATE(7691)] = 176279, - [SMALL_STATE(7692)] = 176302, - [SMALL_STATE(7693)] = 176323, - [SMALL_STATE(7694)] = 176346, - [SMALL_STATE(7695)] = 176369, - [SMALL_STATE(7696)] = 176392, - [SMALL_STATE(7697)] = 176415, - [SMALL_STATE(7698)] = 176438, - [SMALL_STATE(7699)] = 176461, - [SMALL_STATE(7700)] = 176478, - [SMALL_STATE(7701)] = 176495, - [SMALL_STATE(7702)] = 176518, - [SMALL_STATE(7703)] = 176541, - [SMALL_STATE(7704)] = 176564, - [SMALL_STATE(7705)] = 176587, - [SMALL_STATE(7706)] = 176610, - [SMALL_STATE(7707)] = 176633, - [SMALL_STATE(7708)] = 176656, - [SMALL_STATE(7709)] = 176679, - [SMALL_STATE(7710)] = 176702, - [SMALL_STATE(7711)] = 176725, - [SMALL_STATE(7712)] = 176748, - [SMALL_STATE(7713)] = 176771, - [SMALL_STATE(7714)] = 176794, - [SMALL_STATE(7715)] = 176817, - [SMALL_STATE(7716)] = 176840, - [SMALL_STATE(7717)] = 176863, - [SMALL_STATE(7718)] = 176886, - [SMALL_STATE(7719)] = 176909, - [SMALL_STATE(7720)] = 176932, - [SMALL_STATE(7721)] = 176955, - [SMALL_STATE(7722)] = 176986, - [SMALL_STATE(7723)] = 177009, - [SMALL_STATE(7724)] = 177032, - [SMALL_STATE(7725)] = 177055, - [SMALL_STATE(7726)] = 177086, - [SMALL_STATE(7727)] = 177109, - [SMALL_STATE(7728)] = 177132, - [SMALL_STATE(7729)] = 177163, - [SMALL_STATE(7730)] = 177186, - [SMALL_STATE(7731)] = 177209, - [SMALL_STATE(7732)] = 177232, - [SMALL_STATE(7733)] = 177255, - [SMALL_STATE(7734)] = 177278, - [SMALL_STATE(7735)] = 177301, - [SMALL_STATE(7736)] = 177324, - [SMALL_STATE(7737)] = 177347, - [SMALL_STATE(7738)] = 177370, - [SMALL_STATE(7739)] = 177393, - [SMALL_STATE(7740)] = 177416, - [SMALL_STATE(7741)] = 177439, - [SMALL_STATE(7742)] = 177470, - [SMALL_STATE(7743)] = 177493, - [SMALL_STATE(7744)] = 177516, - [SMALL_STATE(7745)] = 177539, - [SMALL_STATE(7746)] = 177562, - [SMALL_STATE(7747)] = 177585, - [SMALL_STATE(7748)] = 177608, - [SMALL_STATE(7749)] = 177631, - [SMALL_STATE(7750)] = 177654, - [SMALL_STATE(7751)] = 177685, - [SMALL_STATE(7752)] = 177708, - [SMALL_STATE(7753)] = 177731, - [SMALL_STATE(7754)] = 177754, - [SMALL_STATE(7755)] = 177777, - [SMALL_STATE(7756)] = 177800, - [SMALL_STATE(7757)] = 177823, - [SMALL_STATE(7758)] = 177846, - [SMALL_STATE(7759)] = 177869, - [SMALL_STATE(7760)] = 177892, - [SMALL_STATE(7761)] = 177915, - [SMALL_STATE(7762)] = 177938, - [SMALL_STATE(7763)] = 177961, - [SMALL_STATE(7764)] = 177984, - [SMALL_STATE(7765)] = 178007, - [SMALL_STATE(7766)] = 178030, - [SMALL_STATE(7767)] = 178053, - [SMALL_STATE(7768)] = 178084, - [SMALL_STATE(7769)] = 178107, - [SMALL_STATE(7770)] = 178130, - [SMALL_STATE(7771)] = 178153, - [SMALL_STATE(7772)] = 178184, - [SMALL_STATE(7773)] = 178207, - [SMALL_STATE(7774)] = 178230, - [SMALL_STATE(7775)] = 178253, - [SMALL_STATE(7776)] = 178276, - [SMALL_STATE(7777)] = 178307, - [SMALL_STATE(7778)] = 178330, - [SMALL_STATE(7779)] = 178353, - [SMALL_STATE(7780)] = 178376, - [SMALL_STATE(7781)] = 178407, - [SMALL_STATE(7782)] = 178438, - [SMALL_STATE(7783)] = 178461, - [SMALL_STATE(7784)] = 178484, - [SMALL_STATE(7785)] = 178507, - [SMALL_STATE(7786)] = 178530, - [SMALL_STATE(7787)] = 178553, - [SMALL_STATE(7788)] = 178576, - [SMALL_STATE(7789)] = 178599, - [SMALL_STATE(7790)] = 178622, - [SMALL_STATE(7791)] = 178653, - [SMALL_STATE(7792)] = 178676, - [SMALL_STATE(7793)] = 178699, - [SMALL_STATE(7794)] = 178722, - [SMALL_STATE(7795)] = 178745, - [SMALL_STATE(7796)] = 178768, - [SMALL_STATE(7797)] = 178791, - [SMALL_STATE(7798)] = 178814, - [SMALL_STATE(7799)] = 178837, - [SMALL_STATE(7800)] = 178860, - [SMALL_STATE(7801)] = 178883, - [SMALL_STATE(7802)] = 178906, - [SMALL_STATE(7803)] = 178937, - [SMALL_STATE(7804)] = 178960, - [SMALL_STATE(7805)] = 178983, - [SMALL_STATE(7806)] = 179006, - [SMALL_STATE(7807)] = 179029, - [SMALL_STATE(7808)] = 179052, - [SMALL_STATE(7809)] = 179075, - [SMALL_STATE(7810)] = 179098, - [SMALL_STATE(7811)] = 179121, - [SMALL_STATE(7812)] = 179144, - [SMALL_STATE(7813)] = 179167, - [SMALL_STATE(7814)] = 179198, - [SMALL_STATE(7815)] = 179221, - [SMALL_STATE(7816)] = 179244, - [SMALL_STATE(7817)] = 179267, - [SMALL_STATE(7818)] = 179290, - [SMALL_STATE(7819)] = 179321, - [SMALL_STATE(7820)] = 179344, - [SMALL_STATE(7821)] = 179367, - [SMALL_STATE(7822)] = 179398, - [SMALL_STATE(7823)] = 179421, - [SMALL_STATE(7824)] = 179444, - [SMALL_STATE(7825)] = 179467, - [SMALL_STATE(7826)] = 179490, - [SMALL_STATE(7827)] = 179513, - [SMALL_STATE(7828)] = 179536, - [SMALL_STATE(7829)] = 179559, - [SMALL_STATE(7830)] = 179582, - [SMALL_STATE(7831)] = 179603, - [SMALL_STATE(7832)] = 179626, - [SMALL_STATE(7833)] = 179649, - [SMALL_STATE(7834)] = 179672, - [SMALL_STATE(7835)] = 179695, - [SMALL_STATE(7836)] = 179718, - [SMALL_STATE(7837)] = 179741, - [SMALL_STATE(7838)] = 179764, - [SMALL_STATE(7839)] = 179787, - [SMALL_STATE(7840)] = 179810, - [SMALL_STATE(7841)] = 179833, - [SMALL_STATE(7842)] = 179856, - [SMALL_STATE(7843)] = 179879, - [SMALL_STATE(7844)] = 179902, - [SMALL_STATE(7845)] = 179925, - [SMALL_STATE(7846)] = 179956, - [SMALL_STATE(7847)] = 179979, - [SMALL_STATE(7848)] = 180002, - [SMALL_STATE(7849)] = 180025, - [SMALL_STATE(7850)] = 180048, - [SMALL_STATE(7851)] = 180071, - [SMALL_STATE(7852)] = 180094, - [SMALL_STATE(7853)] = 180117, - [SMALL_STATE(7854)] = 180140, - [SMALL_STATE(7855)] = 180163, - [SMALL_STATE(7856)] = 180186, - [SMALL_STATE(7857)] = 180209, - [SMALL_STATE(7858)] = 180232, - [SMALL_STATE(7859)] = 180263, - [SMALL_STATE(7860)] = 180286, - [SMALL_STATE(7861)] = 180317, - [SMALL_STATE(7862)] = 180348, - [SMALL_STATE(7863)] = 180371, - [SMALL_STATE(7864)] = 180394, - [SMALL_STATE(7865)] = 180417, - [SMALL_STATE(7866)] = 180440, - [SMALL_STATE(7867)] = 180463, - [SMALL_STATE(7868)] = 180486, - [SMALL_STATE(7869)] = 180509, - [SMALL_STATE(7870)] = 180532, - [SMALL_STATE(7871)] = 180555, - [SMALL_STATE(7872)] = 180585, - [SMALL_STATE(7873)] = 180615, - [SMALL_STATE(7874)] = 180645, - [SMALL_STATE(7875)] = 180663, - [SMALL_STATE(7876)] = 180693, - [SMALL_STATE(7877)] = 180723, - [SMALL_STATE(7878)] = 180752, - [SMALL_STATE(7879)] = 180781, - [SMALL_STATE(7880)] = 180808, - [SMALL_STATE(7881)] = 180833, - [SMALL_STATE(7882)] = 180862, - [SMALL_STATE(7883)] = 180889, - [SMALL_STATE(7884)] = 180914, - [SMALL_STATE(7885)] = 180943, - [SMALL_STATE(7886)] = 180970, - [SMALL_STATE(7887)] = 180997, - [SMALL_STATE(7888)] = 181022, - [SMALL_STATE(7889)] = 181043, - [SMALL_STATE(7890)] = 181068, - [SMALL_STATE(7891)] = 181093, - [SMALL_STATE(7892)] = 181122, - [SMALL_STATE(7893)] = 181149, - [SMALL_STATE(7894)] = 181174, - [SMALL_STATE(7895)] = 181190, - [SMALL_STATE(7896)] = 181206, - [SMALL_STATE(7897)] = 181222, - [SMALL_STATE(7898)] = 181238, - [SMALL_STATE(7899)] = 181254, - [SMALL_STATE(7900)] = 181280, - [SMALL_STATE(7901)] = 181296, - [SMALL_STATE(7902)] = 181322, - [SMALL_STATE(7903)] = 181348, - [SMALL_STATE(7904)] = 181364, - [SMALL_STATE(7905)] = 181386, - [SMALL_STATE(7906)] = 181410, - [SMALL_STATE(7907)] = 181426, - [SMALL_STATE(7908)] = 181442, - [SMALL_STATE(7909)] = 181468, - [SMALL_STATE(7910)] = 181484, - [SMALL_STATE(7911)] = 181508, - [SMALL_STATE(7912)] = 181524, - [SMALL_STATE(7913)] = 181548, - [SMALL_STATE(7914)] = 181572, - [SMALL_STATE(7915)] = 181596, - [SMALL_STATE(7916)] = 181612, - [SMALL_STATE(7917)] = 181636, - [SMALL_STATE(7918)] = 181652, - [SMALL_STATE(7919)] = 181672, - [SMALL_STATE(7920)] = 181688, - [SMALL_STATE(7921)] = 181710, - [SMALL_STATE(7922)] = 181726, - [SMALL_STATE(7923)] = 181742, - [SMALL_STATE(7924)] = 181758, - [SMALL_STATE(7925)] = 181784, - [SMALL_STATE(7926)] = 181808, - [SMALL_STATE(7927)] = 181824, - [SMALL_STATE(7928)] = 181844, - [SMALL_STATE(7929)] = 181860, - [SMALL_STATE(7930)] = 181876, - [SMALL_STATE(7931)] = 181892, - [SMALL_STATE(7932)] = 181908, - [SMALL_STATE(7933)] = 181928, - [SMALL_STATE(7934)] = 181944, - [SMALL_STATE(7935)] = 181968, - [SMALL_STATE(7936)] = 181984, - [SMALL_STATE(7937)] = 182006, - [SMALL_STATE(7938)] = 182023, - [SMALL_STATE(7939)] = 182046, - [SMALL_STATE(7940)] = 182069, - [SMALL_STATE(7941)] = 182090, - [SMALL_STATE(7942)] = 182111, - [SMALL_STATE(7943)] = 182128, - [SMALL_STATE(7944)] = 182149, - [SMALL_STATE(7945)] = 182172, - [SMALL_STATE(7946)] = 182193, - [SMALL_STATE(7947)] = 182216, - [SMALL_STATE(7948)] = 182237, - [SMALL_STATE(7949)] = 182250, - [SMALL_STATE(7950)] = 182265, - [SMALL_STATE(7951)] = 182286, - [SMALL_STATE(7952)] = 182303, - [SMALL_STATE(7953)] = 182324, - [SMALL_STATE(7954)] = 182345, - [SMALL_STATE(7955)] = 182368, - [SMALL_STATE(7956)] = 182389, - [SMALL_STATE(7957)] = 182412, - [SMALL_STATE(7958)] = 182433, - [SMALL_STATE(7959)] = 182450, - [SMALL_STATE(7960)] = 182473, - [SMALL_STATE(7961)] = 182494, - [SMALL_STATE(7962)] = 182515, - [SMALL_STATE(7963)] = 182536, - [SMALL_STATE(7964)] = 182557, - [SMALL_STATE(7965)] = 182578, - [SMALL_STATE(7966)] = 182601, - [SMALL_STATE(7967)] = 182622, - [SMALL_STATE(7968)] = 182643, - [SMALL_STATE(7969)] = 182664, - [SMALL_STATE(7970)] = 182685, - [SMALL_STATE(7971)] = 182706, - [SMALL_STATE(7972)] = 182723, - [SMALL_STATE(7973)] = 182736, - [SMALL_STATE(7974)] = 182757, - [SMALL_STATE(7975)] = 182778, - [SMALL_STATE(7976)] = 182799, - [SMALL_STATE(7977)] = 182820, - [SMALL_STATE(7978)] = 182833, - [SMALL_STATE(7979)] = 182846, - [SMALL_STATE(7980)] = 182867, - [SMALL_STATE(7981)] = 182888, - [SMALL_STATE(7982)] = 182909, - [SMALL_STATE(7983)] = 182922, - [SMALL_STATE(7984)] = 182943, - [SMALL_STATE(7985)] = 182964, - [SMALL_STATE(7986)] = 182983, - [SMALL_STATE(7987)] = 183004, - [SMALL_STATE(7988)] = 183021, - [SMALL_STATE(7989)] = 183042, - [SMALL_STATE(7990)] = 183063, - [SMALL_STATE(7991)] = 183081, - [SMALL_STATE(7992)] = 183101, - [SMALL_STATE(7993)] = 183121, - [SMALL_STATE(7994)] = 183141, - [SMALL_STATE(7995)] = 183161, - [SMALL_STATE(7996)] = 183179, - [SMALL_STATE(7997)] = 183193, - [SMALL_STATE(7998)] = 183213, - [SMALL_STATE(7999)] = 183233, - [SMALL_STATE(8000)] = 183253, - [SMALL_STATE(8001)] = 183273, - [SMALL_STATE(8002)] = 183293, - [SMALL_STATE(8003)] = 183313, - [SMALL_STATE(8004)] = 183333, - [SMALL_STATE(8005)] = 183345, - [SMALL_STATE(8006)] = 183365, - [SMALL_STATE(8007)] = 183377, - [SMALL_STATE(8008)] = 183397, - [SMALL_STATE(8009)] = 183413, - [SMALL_STATE(8010)] = 183433, - [SMALL_STATE(8011)] = 183453, - [SMALL_STATE(8012)] = 183473, - [SMALL_STATE(8013)] = 183485, - [SMALL_STATE(8014)] = 183497, - [SMALL_STATE(8015)] = 183517, - [SMALL_STATE(8016)] = 183537, - [SMALL_STATE(8017)] = 183549, - [SMALL_STATE(8018)] = 183569, - [SMALL_STATE(8019)] = 183581, - [SMALL_STATE(8020)] = 183601, - [SMALL_STATE(8021)] = 183621, - [SMALL_STATE(8022)] = 183633, - [SMALL_STATE(8023)] = 183653, - [SMALL_STATE(8024)] = 183673, - [SMALL_STATE(8025)] = 183685, - [SMALL_STATE(8026)] = 183697, - [SMALL_STATE(8027)] = 183717, - [SMALL_STATE(8028)] = 183737, - [SMALL_STATE(8029)] = 183757, - [SMALL_STATE(8030)] = 183777, - [SMALL_STATE(8031)] = 183797, - [SMALL_STATE(8032)] = 183817, - [SMALL_STATE(8033)] = 183833, - [SMALL_STATE(8034)] = 183853, - [SMALL_STATE(8035)] = 183873, - [SMALL_STATE(8036)] = 183893, - [SMALL_STATE(8037)] = 183913, - [SMALL_STATE(8038)] = 183925, - [SMALL_STATE(8039)] = 183945, - [SMALL_STATE(8040)] = 183963, - [SMALL_STATE(8041)] = 183975, - [SMALL_STATE(8042)] = 183995, - [SMALL_STATE(8043)] = 184015, - [SMALL_STATE(8044)] = 184031, - [SMALL_STATE(8045)] = 184051, - [SMALL_STATE(8046)] = 184063, - [SMALL_STATE(8047)] = 184079, - [SMALL_STATE(8048)] = 184099, - [SMALL_STATE(8049)] = 184119, - [SMALL_STATE(8050)] = 184139, - [SMALL_STATE(8051)] = 184159, - [SMALL_STATE(8052)] = 184179, - [SMALL_STATE(8053)] = 184199, - [SMALL_STATE(8054)] = 184211, - [SMALL_STATE(8055)] = 184233, - [SMALL_STATE(8056)] = 184249, - [SMALL_STATE(8057)] = 184261, - [SMALL_STATE(8058)] = 184273, - [SMALL_STATE(8059)] = 184293, - [SMALL_STATE(8060)] = 184309, - [SMALL_STATE(8061)] = 184329, - [SMALL_STATE(8062)] = 184349, - [SMALL_STATE(8063)] = 184369, - [SMALL_STATE(8064)] = 184389, - [SMALL_STATE(8065)] = 184409, - [SMALL_STATE(8066)] = 184429, - [SMALL_STATE(8067)] = 184449, - [SMALL_STATE(8068)] = 184469, - [SMALL_STATE(8069)] = 184489, - [SMALL_STATE(8070)] = 184511, - [SMALL_STATE(8071)] = 184531, - [SMALL_STATE(8072)] = 184551, - [SMALL_STATE(8073)] = 184571, - [SMALL_STATE(8074)] = 184591, - [SMALL_STATE(8075)] = 184611, - [SMALL_STATE(8076)] = 184631, - [SMALL_STATE(8077)] = 184647, - [SMALL_STATE(8078)] = 184665, - [SMALL_STATE(8079)] = 184685, - [SMALL_STATE(8080)] = 184705, - [SMALL_STATE(8081)] = 184727, - [SMALL_STATE(8082)] = 184743, - [SMALL_STATE(8083)] = 184755, - [SMALL_STATE(8084)] = 184767, - [SMALL_STATE(8085)] = 184787, - [SMALL_STATE(8086)] = 184807, - [SMALL_STATE(8087)] = 184827, - [SMALL_STATE(8088)] = 184847, - [SMALL_STATE(8089)] = 184867, - [SMALL_STATE(8090)] = 184887, - [SMALL_STATE(8091)] = 184903, - [SMALL_STATE(8092)] = 184915, - [SMALL_STATE(8093)] = 184935, - [SMALL_STATE(8094)] = 184955, - [SMALL_STATE(8095)] = 184975, - [SMALL_STATE(8096)] = 184995, - [SMALL_STATE(8097)] = 185015, + [SMALL_STATE(4439)] = 0, + [SMALL_STATE(4440)] = 79, + [SMALL_STATE(4441)] = 163, + [SMALL_STATE(4442)] = 247, + [SMALL_STATE(4443)] = 331, + [SMALL_STATE(4444)] = 405, + [SMALL_STATE(4445)] = 489, + [SMALL_STATE(4446)] = 573, + [SMALL_STATE(4447)] = 654, + [SMALL_STATE(4448)] = 733, + [SMALL_STATE(4449)] = 806, + [SMALL_STATE(4450)] = 885, + [SMALL_STATE(4451)] = 962, + [SMALL_STATE(4452)] = 1041, + [SMALL_STATE(4453)] = 1114, + [SMALL_STATE(4454)] = 1193, + [SMALL_STATE(4455)] = 1272, + [SMALL_STATE(4456)] = 1345, + [SMALL_STATE(4457)] = 1422, + [SMALL_STATE(4458)] = 1501, + [SMALL_STATE(4459)] = 1582, + [SMALL_STATE(4460)] = 1651, + [SMALL_STATE(4461)] = 1730, + [SMALL_STATE(4462)] = 1803, + [SMALL_STATE(4463)] = 1876, + [SMALL_STATE(4464)] = 1949, + [SMALL_STATE(4465)] = 2028, + [SMALL_STATE(4466)] = 2109, + [SMALL_STATE(4467)] = 2188, + [SMALL_STATE(4468)] = 2261, + [SMALL_STATE(4469)] = 2342, + [SMALL_STATE(4470)] = 2421, + [SMALL_STATE(4471)] = 2494, + [SMALL_STATE(4472)] = 2573, + [SMALL_STATE(4473)] = 2654, + [SMALL_STATE(4474)] = 2722, + [SMALL_STATE(4475)] = 2798, + [SMALL_STATE(4476)] = 2866, + [SMALL_STATE(4477)] = 2936, + [SMALL_STATE(4478)] = 3012, + [SMALL_STATE(4479)] = 3088, + [SMALL_STATE(4480)] = 3156, + [SMALL_STATE(4481)] = 3228, + [SMALL_STATE(4482)] = 3304, + [SMALL_STATE(4483)] = 3372, + [SMALL_STATE(4484)] = 3448, + [SMALL_STATE(4485)] = 3524, + [SMALL_STATE(4486)] = 3600, + [SMALL_STATE(4487)] = 3668, + [SMALL_STATE(4488)] = 3736, + [SMALL_STATE(4489)] = 3810, + [SMALL_STATE(4490)] = 3884, + [SMALL_STATE(4491)] = 3960, + [SMALL_STATE(4492)] = 4036, + [SMALL_STATE(4493)] = 4112, + [SMALL_STATE(4494)] = 4188, + [SMALL_STATE(4495)] = 4264, + [SMALL_STATE(4496)] = 4340, + [SMALL_STATE(4497)] = 4416, + [SMALL_STATE(4498)] = 4484, + [SMALL_STATE(4499)] = 4560, + [SMALL_STATE(4500)] = 4636, + [SMALL_STATE(4501)] = 4712, + [SMALL_STATE(4502)] = 4788, + [SMALL_STATE(4503)] = 4864, + [SMALL_STATE(4504)] = 4936, + [SMALL_STATE(4505)] = 5012, + [SMALL_STATE(4506)] = 5088, + [SMALL_STATE(4507)] = 5156, + [SMALL_STATE(4508)] = 5232, + [SMALL_STATE(4509)] = 5308, + [SMALL_STATE(4510)] = 5379, + [SMALL_STATE(4511)] = 5450, + [SMALL_STATE(4512)] = 5521, + [SMALL_STATE(4513)] = 5588, + [SMALL_STATE(4514)] = 5659, + [SMALL_STATE(4515)] = 5726, + [SMALL_STATE(4516)] = 5797, + [SMALL_STATE(4517)] = 5868, + [SMALL_STATE(4518)] = 5935, + [SMALL_STATE(4519)] = 6006, + [SMALL_STATE(4520)] = 6087, + [SMALL_STATE(4521)] = 6154, + [SMALL_STATE(4522)] = 6235, + [SMALL_STATE(4523)] = 6302, + [SMALL_STATE(4524)] = 6383, + [SMALL_STATE(4525)] = 6454, + [SMALL_STATE(4526)] = 6535, + [SMALL_STATE(4527)] = 6602, + [SMALL_STATE(4528)] = 6683, + [SMALL_STATE(4529)] = 6754, + [SMALL_STATE(4530)] = 6835, + [SMALL_STATE(4531)] = 6902, + [SMALL_STATE(4532)] = 6969, + [SMALL_STATE(4533)] = 7036, + [SMALL_STATE(4534)] = 7117, + [SMALL_STATE(4535)] = 7188, + [SMALL_STATE(4536)] = 7269, + [SMALL_STATE(4537)] = 7340, + [SMALL_STATE(4538)] = 7411, + [SMALL_STATE(4539)] = 7478, + [SMALL_STATE(4540)] = 7549, + [SMALL_STATE(4541)] = 7620, + [SMALL_STATE(4542)] = 7689, + [SMALL_STATE(4543)] = 7756, + [SMALL_STATE(4544)] = 7825, + [SMALL_STATE(4545)] = 7892, + [SMALL_STATE(4546)] = 7963, + [SMALL_STATE(4547)] = 8034, + [SMALL_STATE(4548)] = 8101, + [SMALL_STATE(4549)] = 8172, + [SMALL_STATE(4550)] = 8243, + [SMALL_STATE(4551)] = 8314, + [SMALL_STATE(4552)] = 8385, + [SMALL_STATE(4553)] = 8466, + [SMALL_STATE(4554)] = 8537, + [SMALL_STATE(4555)] = 8604, + [SMALL_STATE(4556)] = 8675, + [SMALL_STATE(4557)] = 8756, + [SMALL_STATE(4558)] = 8827, + [SMALL_STATE(4559)] = 8894, + [SMALL_STATE(4560)] = 8961, + [SMALL_STATE(4561)] = 9032, + [SMALL_STATE(4562)] = 9103, + [SMALL_STATE(4563)] = 9174, + [SMALL_STATE(4564)] = 9243, + [SMALL_STATE(4565)] = 9310, + [SMALL_STATE(4566)] = 9381, + [SMALL_STATE(4567)] = 9452, + [SMALL_STATE(4568)] = 9518, + [SMALL_STATE(4569)] = 9584, + [SMALL_STATE(4570)] = 9652, + [SMALL_STATE(4571)] = 9722, + [SMALL_STATE(4572)] = 9792, + [SMALL_STATE(4573)] = 9862, + [SMALL_STATE(4574)] = 9938, + [SMALL_STATE(4575)] = 10014, + [SMALL_STATE(4576)] = 10090, + [SMALL_STATE(4577)] = 10166, + [SMALL_STATE(4578)] = 10242, + [SMALL_STATE(4579)] = 10318, + [SMALL_STATE(4580)] = 10394, + [SMALL_STATE(4581)] = 10470, + [SMALL_STATE(4582)] = 10540, + [SMALL_STATE(4583)] = 10606, + [SMALL_STATE(4584)] = 10672, + [SMALL_STATE(4585)] = 10738, + [SMALL_STATE(4586)] = 10804, + [SMALL_STATE(4587)] = 10870, + [SMALL_STATE(4588)] = 10938, + [SMALL_STATE(4589)] = 11004, + [SMALL_STATE(4590)] = 11076, + [SMALL_STATE(4591)] = 11148, + [SMALL_STATE(4592)] = 11214, + [SMALL_STATE(4593)] = 11280, + [SMALL_STATE(4594)] = 11346, + [SMALL_STATE(4595)] = 11412, + [SMALL_STATE(4596)] = 11478, + [SMALL_STATE(4597)] = 11544, + [SMALL_STATE(4598)] = 11610, + [SMALL_STATE(4599)] = 11676, + [SMALL_STATE(4600)] = 11742, + [SMALL_STATE(4601)] = 11808, + [SMALL_STATE(4602)] = 11874, + [SMALL_STATE(4603)] = 11940, + [SMALL_STATE(4604)] = 12006, + [SMALL_STATE(4605)] = 12072, + [SMALL_STATE(4606)] = 12138, + [SMALL_STATE(4607)] = 12204, + [SMALL_STATE(4608)] = 12270, + [SMALL_STATE(4609)] = 12346, + [SMALL_STATE(4610)] = 12412, + [SMALL_STATE(4611)] = 12478, + [SMALL_STATE(4612)] = 12554, + [SMALL_STATE(4613)] = 12630, + [SMALL_STATE(4614)] = 12696, + [SMALL_STATE(4615)] = 12772, + [SMALL_STATE(4616)] = 12848, + [SMALL_STATE(4617)] = 12914, + [SMALL_STATE(4618)] = 12990, + [SMALL_STATE(4619)] = 13066, + [SMALL_STATE(4620)] = 13142, + [SMALL_STATE(4621)] = 13208, + [SMALL_STATE(4622)] = 13284, + [SMALL_STATE(4623)] = 13350, + [SMALL_STATE(4624)] = 13416, + [SMALL_STATE(4625)] = 13482, + [SMALL_STATE(4626)] = 13548, + [SMALL_STATE(4627)] = 13614, + [SMALL_STATE(4628)] = 13680, + [SMALL_STATE(4629)] = 13746, + [SMALL_STATE(4630)] = 13812, + [SMALL_STATE(4631)] = 13878, + [SMALL_STATE(4632)] = 13944, + [SMALL_STATE(4633)] = 14010, + [SMALL_STATE(4634)] = 14076, + [SMALL_STATE(4635)] = 14142, + [SMALL_STATE(4636)] = 14208, + [SMALL_STATE(4637)] = 14274, + [SMALL_STATE(4638)] = 14340, + [SMALL_STATE(4639)] = 14406, + [SMALL_STATE(4640)] = 14472, + [SMALL_STATE(4641)] = 14540, + [SMALL_STATE(4642)] = 14606, + [SMALL_STATE(4643)] = 14674, + [SMALL_STATE(4644)] = 14740, + [SMALL_STATE(4645)] = 14808, + [SMALL_STATE(4646)] = 14876, + [SMALL_STATE(4647)] = 14942, + [SMALL_STATE(4648)] = 15008, + [SMALL_STATE(4649)] = 15074, + [SMALL_STATE(4650)] = 15140, + [SMALL_STATE(4651)] = 15206, + [SMALL_STATE(4652)] = 15272, + [SMALL_STATE(4653)] = 15338, + [SMALL_STATE(4654)] = 15404, + [SMALL_STATE(4655)] = 15474, + [SMALL_STATE(4656)] = 15540, + [SMALL_STATE(4657)] = 15606, + [SMALL_STATE(4658)] = 15672, + [SMALL_STATE(4659)] = 15738, + [SMALL_STATE(4660)] = 15804, + [SMALL_STATE(4661)] = 15874, + [SMALL_STATE(4662)] = 15940, + [SMALL_STATE(4663)] = 16006, + [SMALL_STATE(4664)] = 16072, + [SMALL_STATE(4665)] = 16138, + [SMALL_STATE(4666)] = 16208, + [SMALL_STATE(4667)] = 16274, + [SMALL_STATE(4668)] = 16340, + [SMALL_STATE(4669)] = 16418, + [SMALL_STATE(4670)] = 16496, + [SMALL_STATE(4671)] = 16574, + [SMALL_STATE(4672)] = 16652, + [SMALL_STATE(4673)] = 16730, + [SMALL_STATE(4674)] = 16800, + [SMALL_STATE(4675)] = 16870, + [SMALL_STATE(4676)] = 16950, + [SMALL_STATE(4677)] = 17030, + [SMALL_STATE(4678)] = 17110, + [SMALL_STATE(4679)] = 17190, + [SMALL_STATE(4680)] = 17270, + [SMALL_STATE(4681)] = 17336, + [SMALL_STATE(4682)] = 17402, + [SMALL_STATE(4683)] = 17468, + [SMALL_STATE(4684)] = 17534, + [SMALL_STATE(4685)] = 17600, + [SMALL_STATE(4686)] = 17666, + [SMALL_STATE(4687)] = 17732, + [SMALL_STATE(4688)] = 17798, + [SMALL_STATE(4689)] = 17864, + [SMALL_STATE(4690)] = 17930, + [SMALL_STATE(4691)] = 17996, + [SMALL_STATE(4692)] = 18064, + [SMALL_STATE(4693)] = 18130, + [SMALL_STATE(4694)] = 18196, + [SMALL_STATE(4695)] = 18262, + [SMALL_STATE(4696)] = 18328, + [SMALL_STATE(4697)] = 18394, + [SMALL_STATE(4698)] = 18460, + [SMALL_STATE(4699)] = 18526, + [SMALL_STATE(4700)] = 18592, + [SMALL_STATE(4701)] = 18668, + [SMALL_STATE(4702)] = 18744, + [SMALL_STATE(4703)] = 18810, + [SMALL_STATE(4704)] = 18876, + [SMALL_STATE(4705)] = 18946, + [SMALL_STATE(4706)] = 19016, + [SMALL_STATE(4707)] = 19082, + [SMALL_STATE(4708)] = 19148, + [SMALL_STATE(4709)] = 19226, + [SMALL_STATE(4710)] = 19292, + [SMALL_STATE(4711)] = 19370, + [SMALL_STATE(4712)] = 19436, + [SMALL_STATE(4713)] = 19502, + [SMALL_STATE(4714)] = 19568, + [SMALL_STATE(4715)] = 19646, + [SMALL_STATE(4716)] = 19712, + [SMALL_STATE(4717)] = 19778, + [SMALL_STATE(4718)] = 19844, + [SMALL_STATE(4719)] = 19922, + [SMALL_STATE(4720)] = 19988, + [SMALL_STATE(4721)] = 20054, + [SMALL_STATE(4722)] = 20132, + [SMALL_STATE(4723)] = 20198, + [SMALL_STATE(4724)] = 20264, + [SMALL_STATE(4725)] = 20330, + [SMALL_STATE(4726)] = 20396, + [SMALL_STATE(4727)] = 20462, + [SMALL_STATE(4728)] = 20528, + [SMALL_STATE(4729)] = 20598, + [SMALL_STATE(4730)] = 20668, + [SMALL_STATE(4731)] = 20738, + [SMALL_STATE(4732)] = 20804, + [SMALL_STATE(4733)] = 20870, + [SMALL_STATE(4734)] = 20936, + [SMALL_STATE(4735)] = 21002, + [SMALL_STATE(4736)] = 21068, + [SMALL_STATE(4737)] = 21134, + [SMALL_STATE(4738)] = 21200, + [SMALL_STATE(4739)] = 21266, + [SMALL_STATE(4740)] = 21332, + [SMALL_STATE(4741)] = 21400, + [SMALL_STATE(4742)] = 21468, + [SMALL_STATE(4743)] = 21534, + [SMALL_STATE(4744)] = 21600, + [SMALL_STATE(4745)] = 21666, + [SMALL_STATE(4746)] = 21732, + [SMALL_STATE(4747)] = 21798, + [SMALL_STATE(4748)] = 21864, + [SMALL_STATE(4749)] = 21930, + [SMALL_STATE(4750)] = 22002, + [SMALL_STATE(4751)] = 22068, + [SMALL_STATE(4752)] = 22134, + [SMALL_STATE(4753)] = 22200, + [SMALL_STATE(4754)] = 22266, + [SMALL_STATE(4755)] = 22332, + [SMALL_STATE(4756)] = 22407, + [SMALL_STATE(4757)] = 22472, + [SMALL_STATE(4758)] = 22537, + [SMALL_STATE(4759)] = 22602, + [SMALL_STATE(4760)] = 22667, + [SMALL_STATE(4761)] = 22736, + [SMALL_STATE(4762)] = 22805, + [SMALL_STATE(4763)] = 22874, + [SMALL_STATE(4764)] = 22945, + [SMALL_STATE(4765)] = 23012, + [SMALL_STATE(4766)] = 23083, + [SMALL_STATE(4767)] = 23152, + [SMALL_STATE(4768)] = 23221, + [SMALL_STATE(4769)] = 23300, + [SMALL_STATE(4770)] = 23379, + [SMALL_STATE(4771)] = 23458, + [SMALL_STATE(4772)] = 23533, + [SMALL_STATE(4773)] = 23608, + [SMALL_STATE(4774)] = 23687, + [SMALL_STATE(4775)] = 23766, + [SMALL_STATE(4776)] = 23845, + [SMALL_STATE(4777)] = 23924, + [SMALL_STATE(4778)] = 23989, + [SMALL_STATE(4779)] = 24058, + [SMALL_STATE(4780)] = 24123, + [SMALL_STATE(4781)] = 24202, + [SMALL_STATE(4782)] = 24267, + [SMALL_STATE(4783)] = 24336, + [SMALL_STATE(4784)] = 24401, + [SMALL_STATE(4785)] = 24480, + [SMALL_STATE(4786)] = 24545, + [SMALL_STATE(4787)] = 24624, + [SMALL_STATE(4788)] = 24701, + [SMALL_STATE(4789)] = 24766, + [SMALL_STATE(4790)] = 24843, + [SMALL_STATE(4791)] = 24916, + [SMALL_STATE(4792)] = 24989, + [SMALL_STATE(4793)] = 25062, + [SMALL_STATE(4794)] = 25139, + [SMALL_STATE(4795)] = 25212, + [SMALL_STATE(4796)] = 25287, + [SMALL_STATE(4797)] = 25360, + [SMALL_STATE(4798)] = 25433, + [SMALL_STATE(4799)] = 25510, + [SMALL_STATE(4800)] = 25583, + [SMALL_STATE(4801)] = 25656, + [SMALL_STATE(4802)] = 25731, + [SMALL_STATE(4803)] = 25806, + [SMALL_STATE(4804)] = 25879, + [SMALL_STATE(4805)] = 25956, + [SMALL_STATE(4806)] = 26031, + [SMALL_STATE(4807)] = 26104, + [SMALL_STATE(4808)] = 26177, + [SMALL_STATE(4809)] = 26252, + [SMALL_STATE(4810)] = 26327, + [SMALL_STATE(4811)] = 26402, + [SMALL_STATE(4812)] = 26475, + [SMALL_STATE(4813)] = 26544, + [SMALL_STATE(4814)] = 26619, + [SMALL_STATE(4815)] = 26684, + [SMALL_STATE(4816)] = 26757, + [SMALL_STATE(4817)] = 26830, + [SMALL_STATE(4818)] = 26903, + [SMALL_STATE(4819)] = 26976, + [SMALL_STATE(4820)] = 27049, + [SMALL_STATE(4821)] = 27122, + [SMALL_STATE(4822)] = 27195, + [SMALL_STATE(4823)] = 27268, + [SMALL_STATE(4824)] = 27341, + [SMALL_STATE(4825)] = 27406, + [SMALL_STATE(4826)] = 27479, + [SMALL_STATE(4827)] = 27543, + [SMALL_STATE(4828)] = 27619, + [SMALL_STATE(4829)] = 27695, + [SMALL_STATE(4830)] = 27769, + [SMALL_STATE(4831)] = 27845, + [SMALL_STATE(4832)] = 27917, + [SMALL_STATE(4833)] = 27991, + [SMALL_STATE(4834)] = 28063, + [SMALL_STATE(4835)] = 28135, + [SMALL_STATE(4836)] = 28199, + [SMALL_STATE(4837)] = 28271, + [SMALL_STATE(4838)] = 28335, + [SMALL_STATE(4839)] = 28407, + [SMALL_STATE(4840)] = 28479, + [SMALL_STATE(4841)] = 28551, + [SMALL_STATE(4842)] = 28627, + [SMALL_STATE(4843)] = 28703, + [SMALL_STATE(4844)] = 28771, + [SMALL_STATE(4845)] = 28839, + [SMALL_STATE(4846)] = 28907, + [SMALL_STATE(4847)] = 28975, + [SMALL_STATE(4848)] = 29043, + [SMALL_STATE(4849)] = 29111, + [SMALL_STATE(4850)] = 29179, + [SMALL_STATE(4851)] = 29247, + [SMALL_STATE(4852)] = 29311, + [SMALL_STATE(4853)] = 29379, + [SMALL_STATE(4854)] = 29445, + [SMALL_STATE(4855)] = 29521, + [SMALL_STATE(4856)] = 29589, + [SMALL_STATE(4857)] = 29657, + [SMALL_STATE(4858)] = 29725, + [SMALL_STATE(4859)] = 29793, + [SMALL_STATE(4860)] = 29857, + [SMALL_STATE(4861)] = 29925, + [SMALL_STATE(4862)] = 29993, + [SMALL_STATE(4863)] = 30061, + [SMALL_STATE(4864)] = 30129, + [SMALL_STATE(4865)] = 30197, + [SMALL_STATE(4866)] = 30265, + [SMALL_STATE(4867)] = 30329, + [SMALL_STATE(4868)] = 30397, + [SMALL_STATE(4869)] = 30461, + [SMALL_STATE(4870)] = 30529, + [SMALL_STATE(4871)] = 30603, + [SMALL_STATE(4872)] = 30679, + [SMALL_STATE(4873)] = 30747, + [SMALL_STATE(4874)] = 30815, + [SMALL_STATE(4875)] = 30883, + [SMALL_STATE(4876)] = 30947, + [SMALL_STATE(4877)] = 31015, + [SMALL_STATE(4878)] = 31081, + [SMALL_STATE(4879)] = 31149, + [SMALL_STATE(4880)] = 31213, + [SMALL_STATE(4881)] = 31277, + [SMALL_STATE(4882)] = 31351, + [SMALL_STATE(4883)] = 31417, + [SMALL_STATE(4884)] = 31485, + [SMALL_STATE(4885)] = 31561, + [SMALL_STATE(4886)] = 31625, + [SMALL_STATE(4887)] = 31699, + [SMALL_STATE(4888)] = 31775, + [SMALL_STATE(4889)] = 31847, + [SMALL_STATE(4890)] = 31921, + [SMALL_STATE(4891)] = 31993, + [SMALL_STATE(4892)] = 32069, + [SMALL_STATE(4893)] = 32139, + [SMALL_STATE(4894)] = 32203, + [SMALL_STATE(4895)] = 32267, + [SMALL_STATE(4896)] = 32335, + [SMALL_STATE(4897)] = 32405, + [SMALL_STATE(4898)] = 32477, + [SMALL_STATE(4899)] = 32541, + [SMALL_STATE(4900)] = 32604, + [SMALL_STATE(4901)] = 32667, + [SMALL_STATE(4902)] = 32730, + [SMALL_STATE(4903)] = 32793, + [SMALL_STATE(4904)] = 32856, + [SMALL_STATE(4905)] = 32919, + [SMALL_STATE(4906)] = 32982, + [SMALL_STATE(4907)] = 33047, + [SMALL_STATE(4908)] = 33112, + [SMALL_STATE(4909)] = 33177, + [SMALL_STATE(4910)] = 33242, + [SMALL_STATE(4911)] = 33305, + [SMALL_STATE(4912)] = 33368, + [SMALL_STATE(4913)] = 33439, + [SMALL_STATE(4914)] = 33502, + [SMALL_STATE(4915)] = 33565, + [SMALL_STATE(4916)] = 33628, + [SMALL_STATE(4917)] = 33701, + [SMALL_STATE(4918)] = 33764, + [SMALL_STATE(4919)] = 33827, + [SMALL_STATE(4920)] = 33898, + [SMALL_STATE(4921)] = 33971, + [SMALL_STATE(4922)] = 34044, + [SMALL_STATE(4923)] = 34107, + [SMALL_STATE(4924)] = 34170, + [SMALL_STATE(4925)] = 34243, + [SMALL_STATE(4926)] = 34306, + [SMALL_STATE(4927)] = 34369, + [SMALL_STATE(4928)] = 34440, + [SMALL_STATE(4929)] = 34507, + [SMALL_STATE(4930)] = 34570, + [SMALL_STATE(4931)] = 34643, + [SMALL_STATE(4932)] = 34716, + [SMALL_STATE(4933)] = 34779, + [SMALL_STATE(4934)] = 34842, + [SMALL_STATE(4935)] = 34905, + [SMALL_STATE(4936)] = 34976, + [SMALL_STATE(4937)] = 35047, + [SMALL_STATE(4938)] = 35110, + [SMALL_STATE(4939)] = 35175, + [SMALL_STATE(4940)] = 35238, + [SMALL_STATE(4941)] = 35301, + [SMALL_STATE(4942)] = 35364, + [SMALL_STATE(4943)] = 35437, + [SMALL_STATE(4944)] = 35500, + [SMALL_STATE(4945)] = 35563, + [SMALL_STATE(4946)] = 35636, + [SMALL_STATE(4947)] = 35699, + [SMALL_STATE(4948)] = 35768, + [SMALL_STATE(4949)] = 35831, + [SMALL_STATE(4950)] = 35894, + [SMALL_STATE(4951)] = 35967, + [SMALL_STATE(4952)] = 36030, + [SMALL_STATE(4953)] = 36093, + [SMALL_STATE(4954)] = 36156, + [SMALL_STATE(4955)] = 36227, + [SMALL_STATE(4956)] = 36290, + [SMALL_STATE(4957)] = 36357, + [SMALL_STATE(4958)] = 36420, + [SMALL_STATE(4959)] = 36493, + [SMALL_STATE(4960)] = 36556, + [SMALL_STATE(4961)] = 36619, + [SMALL_STATE(4962)] = 36682, + [SMALL_STATE(4963)] = 36745, + [SMALL_STATE(4964)] = 36814, + [SMALL_STATE(4965)] = 36877, + [SMALL_STATE(4966)] = 36950, + [SMALL_STATE(4967)] = 37013, + [SMALL_STATE(4968)] = 37078, + [SMALL_STATE(4969)] = 37143, + [SMALL_STATE(4970)] = 37206, + [SMALL_STATE(4971)] = 37269, + [SMALL_STATE(4972)] = 37342, + [SMALL_STATE(4973)] = 37407, + [SMALL_STATE(4974)] = 37470, + [SMALL_STATE(4975)] = 37533, + [SMALL_STATE(4976)] = 37596, + [SMALL_STATE(4977)] = 37659, + [SMALL_STATE(4978)] = 37730, + [SMALL_STATE(4979)] = 37793, + [SMALL_STATE(4980)] = 37864, + [SMALL_STATE(4981)] = 37927, + [SMALL_STATE(4982)] = 37990, + [SMALL_STATE(4983)] = 38053, + [SMALL_STATE(4984)] = 38126, + [SMALL_STATE(4985)] = 38199, + [SMALL_STATE(4986)] = 38262, + [SMALL_STATE(4987)] = 38325, + [SMALL_STATE(4988)] = 38388, + [SMALL_STATE(4989)] = 38451, + [SMALL_STATE(4990)] = 38514, + [SMALL_STATE(4991)] = 38585, + [SMALL_STATE(4992)] = 38648, + [SMALL_STATE(4993)] = 38711, + [SMALL_STATE(4994)] = 38782, + [SMALL_STATE(4995)] = 38853, + [SMALL_STATE(4996)] = 38922, + [SMALL_STATE(4997)] = 38985, + [SMALL_STATE(4998)] = 39048, + [SMALL_STATE(4999)] = 39111, + [SMALL_STATE(5000)] = 39184, + [SMALL_STATE(5001)] = 39255, + [SMALL_STATE(5002)] = 39318, + [SMALL_STATE(5003)] = 39385, + [SMALL_STATE(5004)] = 39448, + [SMALL_STATE(5005)] = 39511, + [SMALL_STATE(5006)] = 39582, + [SMALL_STATE(5007)] = 39645, + [SMALL_STATE(5008)] = 39708, + [SMALL_STATE(5009)] = 39771, + [SMALL_STATE(5010)] = 39834, + [SMALL_STATE(5011)] = 39897, + [SMALL_STATE(5012)] = 39960, + [SMALL_STATE(5013)] = 40023, + [SMALL_STATE(5014)] = 40090, + [SMALL_STATE(5015)] = 40153, + [SMALL_STATE(5016)] = 40216, + [SMALL_STATE(5017)] = 40279, + [SMALL_STATE(5018)] = 40342, + [SMALL_STATE(5019)] = 40411, + [SMALL_STATE(5020)] = 40474, + [SMALL_STATE(5021)] = 40545, + [SMALL_STATE(5022)] = 40608, + [SMALL_STATE(5023)] = 40671, + [SMALL_STATE(5024)] = 40734, + [SMALL_STATE(5025)] = 40797, + [SMALL_STATE(5026)] = 40866, + [SMALL_STATE(5027)] = 40937, + [SMALL_STATE(5028)] = 41000, + [SMALL_STATE(5029)] = 41063, + [SMALL_STATE(5030)] = 41126, + [SMALL_STATE(5031)] = 41189, + [SMALL_STATE(5032)] = 41252, + [SMALL_STATE(5033)] = 41315, + [SMALL_STATE(5034)] = 41386, + [SMALL_STATE(5035)] = 41449, + [SMALL_STATE(5036)] = 41512, + [SMALL_STATE(5037)] = 41575, + [SMALL_STATE(5038)] = 41638, + [SMALL_STATE(5039)] = 41701, + [SMALL_STATE(5040)] = 41764, + [SMALL_STATE(5041)] = 41827, + [SMALL_STATE(5042)] = 41890, + [SMALL_STATE(5043)] = 41953, + [SMALL_STATE(5044)] = 42016, + [SMALL_STATE(5045)] = 42087, + [SMALL_STATE(5046)] = 42150, + [SMALL_STATE(5047)] = 42213, + [SMALL_STATE(5048)] = 42276, + [SMALL_STATE(5049)] = 42339, + [SMALL_STATE(5050)] = 42402, + [SMALL_STATE(5051)] = 42465, + [SMALL_STATE(5052)] = 42528, + [SMALL_STATE(5053)] = 42591, + [SMALL_STATE(5054)] = 42654, + [SMALL_STATE(5055)] = 42717, + [SMALL_STATE(5056)] = 42780, + [SMALL_STATE(5057)] = 42851, + [SMALL_STATE(5058)] = 42914, + [SMALL_STATE(5059)] = 42977, + [SMALL_STATE(5060)] = 43040, + [SMALL_STATE(5061)] = 43113, + [SMALL_STATE(5062)] = 43176, + [SMALL_STATE(5063)] = 43239, + [SMALL_STATE(5064)] = 43302, + [SMALL_STATE(5065)] = 43365, + [SMALL_STATE(5066)] = 43428, + [SMALL_STATE(5067)] = 43491, + [SMALL_STATE(5068)] = 43554, + [SMALL_STATE(5069)] = 43617, + [SMALL_STATE(5070)] = 43680, + [SMALL_STATE(5071)] = 43743, + [SMALL_STATE(5072)] = 43806, + [SMALL_STATE(5073)] = 43869, + [SMALL_STATE(5074)] = 43932, + [SMALL_STATE(5075)] = 43995, + [SMALL_STATE(5076)] = 44066, + [SMALL_STATE(5077)] = 44129, + [SMALL_STATE(5078)] = 44200, + [SMALL_STATE(5079)] = 44263, + [SMALL_STATE(5080)] = 44326, + [SMALL_STATE(5081)] = 44389, + [SMALL_STATE(5082)] = 44452, + [SMALL_STATE(5083)] = 44515, + [SMALL_STATE(5084)] = 44591, + [SMALL_STATE(5085)] = 44659, + [SMALL_STATE(5086)] = 44725, + [SMALL_STATE(5087)] = 44787, + [SMALL_STATE(5088)] = 44857, + [SMALL_STATE(5089)] = 44927, + [SMALL_STATE(5090)] = 44995, + [SMALL_STATE(5091)] = 45065, + [SMALL_STATE(5092)] = 45127, + [SMALL_STATE(5093)] = 45197, + [SMALL_STATE(5094)] = 45259, + [SMALL_STATE(5095)] = 45321, + [SMALL_STATE(5096)] = 45391, + [SMALL_STATE(5097)] = 45461, + [SMALL_STATE(5098)] = 45531, + [SMALL_STATE(5099)] = 45593, + [SMALL_STATE(5100)] = 45669, + [SMALL_STATE(5101)] = 45745, + [SMALL_STATE(5102)] = 45815, + [SMALL_STATE(5103)] = 45877, + [SMALL_STATE(5104)] = 45953, + [SMALL_STATE(5105)] = 46029, + [SMALL_STATE(5106)] = 46105, + [SMALL_STATE(5107)] = 46181, + [SMALL_STATE(5108)] = 46251, + [SMALL_STATE(5109)] = 46323, + [SMALL_STATE(5110)] = 46389, + [SMALL_STATE(5111)] = 46465, + [SMALL_STATE(5112)] = 46529, + [SMALL_STATE(5113)] = 46593, + [SMALL_STATE(5114)] = 46661, + [SMALL_STATE(5115)] = 46727, + [SMALL_STATE(5116)] = 46797, + [SMALL_STATE(5117)] = 46867, + [SMALL_STATE(5118)] = 46933, + [SMALL_STATE(5119)] = 47003, + [SMALL_STATE(5120)] = 47079, + [SMALL_STATE(5121)] = 47143, + [SMALL_STATE(5122)] = 47209, + [SMALL_STATE(5123)] = 47279, + [SMALL_STATE(5124)] = 47349, + [SMALL_STATE(5125)] = 47425, + [SMALL_STATE(5126)] = 47491, + [SMALL_STATE(5127)] = 47557, + [SMALL_STATE(5128)] = 47621, + [SMALL_STATE(5129)] = 47685, + [SMALL_STATE(5130)] = 47755, + [SMALL_STATE(5131)] = 47821, + [SMALL_STATE(5132)] = 47887, + [SMALL_STATE(5133)] = 47955, + [SMALL_STATE(5134)] = 48021, + [SMALL_STATE(5135)] = 48085, + [SMALL_STATE(5136)] = 48155, + [SMALL_STATE(5137)] = 48225, + [SMALL_STATE(5138)] = 48295, + [SMALL_STATE(5139)] = 48365, + [SMALL_STATE(5140)] = 48429, + [SMALL_STATE(5141)] = 48493, + [SMALL_STATE(5142)] = 48598, + [SMALL_STATE(5143)] = 48703, + [SMALL_STATE(5144)] = 48766, + [SMALL_STATE(5145)] = 48839, + [SMALL_STATE(5146)] = 48900, + [SMALL_STATE(5147)] = 48973, + [SMALL_STATE(5148)] = 49046, + [SMALL_STATE(5149)] = 49117, + [SMALL_STATE(5150)] = 49188, + [SMALL_STATE(5151)] = 49261, + [SMALL_STATE(5152)] = 49334, + [SMALL_STATE(5153)] = 49401, + [SMALL_STATE(5154)] = 49468, + [SMALL_STATE(5155)] = 49529, + [SMALL_STATE(5156)] = 49590, + [SMALL_STATE(5157)] = 49651, + [SMALL_STATE(5158)] = 49712, + [SMALL_STATE(5159)] = 49773, + [SMALL_STATE(5160)] = 49834, + [SMALL_STATE(5161)] = 49897, + [SMALL_STATE(5162)] = 49958, + [SMALL_STATE(5163)] = 50019, + [SMALL_STATE(5164)] = 50080, + [SMALL_STATE(5165)] = 50141, + [SMALL_STATE(5166)] = 50216, + [SMALL_STATE(5167)] = 50289, + [SMALL_STATE(5168)] = 50350, + [SMALL_STATE(5169)] = 50425, + [SMALL_STATE(5170)] = 50498, + [SMALL_STATE(5171)] = 50571, + [SMALL_STATE(5172)] = 50646, + [SMALL_STATE(5173)] = 50751, + [SMALL_STATE(5174)] = 50814, + [SMALL_STATE(5175)] = 50887, + [SMALL_STATE(5176)] = 50962, + [SMALL_STATE(5177)] = 51035, + [SMALL_STATE(5178)] = 51110, + [SMALL_STATE(5179)] = 51173, + [SMALL_STATE(5180)] = 51234, + [SMALL_STATE(5181)] = 51297, + [SMALL_STATE(5182)] = 51362, + [SMALL_STATE(5183)] = 51423, + [SMALL_STATE(5184)] = 51486, + [SMALL_STATE(5185)] = 51557, + [SMALL_STATE(5186)] = 51622, + [SMALL_STATE(5187)] = 51687, + [SMALL_STATE(5188)] = 51750, + [SMALL_STATE(5189)] = 51855, + [SMALL_STATE(5190)] = 51916, + [SMALL_STATE(5191)] = 51977, + [SMALL_STATE(5192)] = 52038, + [SMALL_STATE(5193)] = 52101, + [SMALL_STATE(5194)] = 52168, + [SMALL_STATE(5195)] = 52235, + [SMALL_STATE(5196)] = 52298, + [SMALL_STATE(5197)] = 52402, + [SMALL_STATE(5198)] = 52474, + [SMALL_STATE(5199)] = 52538, + [SMALL_STATE(5200)] = 52608, + [SMALL_STATE(5201)] = 52672, + [SMALL_STATE(5202)] = 52742, + [SMALL_STATE(5203)] = 52806, + [SMALL_STATE(5204)] = 52876, + [SMALL_STATE(5205)] = 52980, + [SMALL_STATE(5206)] = 53044, + [SMALL_STATE(5207)] = 53108, + [SMALL_STATE(5208)] = 53208, + [SMALL_STATE(5209)] = 53272, + [SMALL_STATE(5210)] = 53336, + [SMALL_STATE(5211)] = 53404, + [SMALL_STATE(5212)] = 53474, + [SMALL_STATE(5213)] = 53544, + [SMALL_STATE(5214)] = 53648, + [SMALL_STATE(5215)] = 53718, + [SMALL_STATE(5216)] = 53786, + [SMALL_STATE(5217)] = 53850, + [SMALL_STATE(5218)] = 53920, + [SMALL_STATE(5219)] = 53988, + [SMALL_STATE(5220)] = 54088, + [SMALL_STATE(5221)] = 54158, + [SMALL_STATE(5222)] = 54226, + [SMALL_STATE(5223)] = 54290, + [SMALL_STATE(5224)] = 54362, + [SMALL_STATE(5225)] = 54432, + [SMALL_STATE(5226)] = 54500, + [SMALL_STATE(5227)] = 54564, + [SMALL_STATE(5228)] = 54632, + [SMALL_STATE(5229)] = 54696, + [SMALL_STATE(5230)] = 54768, + [SMALL_STATE(5231)] = 54838, + [SMALL_STATE(5232)] = 54902, + [SMALL_STATE(5233)] = 54970, + [SMALL_STATE(5234)] = 55070, + [SMALL_STATE(5235)] = 55170, + [SMALL_STATE(5236)] = 55234, + [SMALL_STATE(5237)] = 55304, + [SMALL_STATE(5238)] = 55374, + [SMALL_STATE(5239)] = 55478, + [SMALL_STATE(5240)] = 55542, + [SMALL_STATE(5241)] = 55612, + [SMALL_STATE(5242)] = 55682, + [SMALL_STATE(5243)] = 55746, + [SMALL_STATE(5244)] = 55816, + [SMALL_STATE(5245)] = 55878, + [SMALL_STATE(5246)] = 55950, + [SMALL_STATE(5247)] = 56022, + [SMALL_STATE(5248)] = 56086, + [SMALL_STATE(5249)] = 56148, + [SMALL_STATE(5250)] = 56218, + [SMALL_STATE(5251)] = 56288, + [SMALL_STATE(5252)] = 56358, + [SMALL_STATE(5253)] = 56420, + [SMALL_STATE(5254)] = 56482, + [SMALL_STATE(5255)] = 56552, + [SMALL_STATE(5256)] = 56652, + [SMALL_STATE(5257)] = 56716, + [SMALL_STATE(5258)] = 56780, + [SMALL_STATE(5259)] = 56844, + [SMALL_STATE(5260)] = 56912, + [SMALL_STATE(5261)] = 56976, + [SMALL_STATE(5262)] = 57040, + [SMALL_STATE(5263)] = 57104, + [SMALL_STATE(5264)] = 57168, + [SMALL_STATE(5265)] = 57232, + [SMALL_STATE(5266)] = 57300, + [SMALL_STATE(5267)] = 57362, + [SMALL_STATE(5268)] = 57430, + [SMALL_STATE(5269)] = 57494, + [SMALL_STATE(5270)] = 57553, + [SMALL_STATE(5271)] = 57612, + [SMALL_STATE(5272)] = 57671, + [SMALL_STATE(5273)] = 57730, + [SMALL_STATE(5274)] = 57789, + [SMALL_STATE(5275)] = 57848, + [SMALL_STATE(5276)] = 57907, + [SMALL_STATE(5277)] = 57968, + [SMALL_STATE(5278)] = 58027, + [SMALL_STATE(5279)] = 58126, + [SMALL_STATE(5280)] = 58185, + [SMALL_STATE(5281)] = 58252, + [SMALL_STATE(5282)] = 58311, + [SMALL_STATE(5283)] = 58370, + [SMALL_STATE(5284)] = 58437, + [SMALL_STATE(5285)] = 58496, + [SMALL_STATE(5286)] = 58563, + [SMALL_STATE(5287)] = 58622, + [SMALL_STATE(5288)] = 58681, + [SMALL_STATE(5289)] = 58740, + [SMALL_STATE(5290)] = 58821, + [SMALL_STATE(5291)] = 58888, + [SMALL_STATE(5292)] = 58947, + [SMALL_STATE(5293)] = 59006, + [SMALL_STATE(5294)] = 59065, + [SMALL_STATE(5295)] = 59124, + [SMALL_STATE(5296)] = 59183, + [SMALL_STATE(5297)] = 59250, + [SMALL_STATE(5298)] = 59347, + [SMALL_STATE(5299)] = 59412, + [SMALL_STATE(5300)] = 59479, + [SMALL_STATE(5301)] = 59538, + [SMALL_STATE(5302)] = 59603, + [SMALL_STATE(5303)] = 59662, + [SMALL_STATE(5304)] = 59761, + [SMALL_STATE(5305)] = 59820, + [SMALL_STATE(5306)] = 59887, + [SMALL_STATE(5307)] = 59948, + [SMALL_STATE(5308)] = 60009, + [SMALL_STATE(5309)] = 60068, + [SMALL_STATE(5310)] = 60127, + [SMALL_STATE(5311)] = 60196, + [SMALL_STATE(5312)] = 60255, + [SMALL_STATE(5313)] = 60314, + [SMALL_STATE(5314)] = 60373, + [SMALL_STATE(5315)] = 60432, + [SMALL_STATE(5316)] = 60491, + [SMALL_STATE(5317)] = 60550, + [SMALL_STATE(5318)] = 60609, + [SMALL_STATE(5319)] = 60670, + [SMALL_STATE(5320)] = 60729, + [SMALL_STATE(5321)] = 60788, + [SMALL_STATE(5322)] = 60847, + [SMALL_STATE(5323)] = 60916, + [SMALL_STATE(5324)] = 60975, + [SMALL_STATE(5325)] = 61034, + [SMALL_STATE(5326)] = 61093, + [SMALL_STATE(5327)] = 61152, + [SMALL_STATE(5328)] = 61251, + [SMALL_STATE(5329)] = 61348, + [SMALL_STATE(5330)] = 61429, + [SMALL_STATE(5331)] = 61488, + [SMALL_STATE(5332)] = 61547, + [SMALL_STATE(5333)] = 61606, + [SMALL_STATE(5334)] = 61675, + [SMALL_STATE(5335)] = 61734, + [SMALL_STATE(5336)] = 61793, + [SMALL_STATE(5337)] = 61852, + [SMALL_STATE(5338)] = 61911, + [SMALL_STATE(5339)] = 61970, + [SMALL_STATE(5340)] = 62029, + [SMALL_STATE(5341)] = 62088, + [SMALL_STATE(5342)] = 62157, + [SMALL_STATE(5343)] = 62226, + [SMALL_STATE(5344)] = 62285, + [SMALL_STATE(5345)] = 62344, + [SMALL_STATE(5346)] = 62413, + [SMALL_STATE(5347)] = 62476, + [SMALL_STATE(5348)] = 62575, + [SMALL_STATE(5349)] = 62640, + [SMALL_STATE(5350)] = 62699, + [SMALL_STATE(5351)] = 62768, + [SMALL_STATE(5352)] = 62827, + [SMALL_STATE(5353)] = 62886, + [SMALL_STATE(5354)] = 62945, + [SMALL_STATE(5355)] = 63004, + [SMALL_STATE(5356)] = 63069, + [SMALL_STATE(5357)] = 63132, + [SMALL_STATE(5358)] = 63195, + [SMALL_STATE(5359)] = 63254, + [SMALL_STATE(5360)] = 63313, + [SMALL_STATE(5361)] = 63382, + [SMALL_STATE(5362)] = 63441, + [SMALL_STATE(5363)] = 63500, + [SMALL_STATE(5364)] = 63559, + [SMALL_STATE(5365)] = 63658, + [SMALL_STATE(5366)] = 63725, + [SMALL_STATE(5367)] = 63792, + [SMALL_STATE(5368)] = 63851, + [SMALL_STATE(5369)] = 63912, + [SMALL_STATE(5370)] = 63971, + [SMALL_STATE(5371)] = 64070, + [SMALL_STATE(5372)] = 64167, + [SMALL_STATE(5373)] = 64234, + [SMALL_STATE(5374)] = 64293, + [SMALL_STATE(5375)] = 64374, + [SMALL_STATE(5376)] = 64443, + [SMALL_STATE(5377)] = 64540, + [SMALL_STATE(5378)] = 64639, + [SMALL_STATE(5379)] = 64706, + [SMALL_STATE(5380)] = 64803, + [SMALL_STATE(5381)] = 64902, + [SMALL_STATE(5382)] = 64961, + [SMALL_STATE(5383)] = 65058, + [SMALL_STATE(5384)] = 65117, + [SMALL_STATE(5385)] = 65216, + [SMALL_STATE(5386)] = 65275, + [SMALL_STATE(5387)] = 65344, + [SMALL_STATE(5388)] = 65413, + [SMALL_STATE(5389)] = 65510, + [SMALL_STATE(5390)] = 65571, + [SMALL_STATE(5391)] = 65668, + [SMALL_STATE(5392)] = 65765, + [SMALL_STATE(5393)] = 65824, + [SMALL_STATE(5394)] = 65920, + [SMALL_STATE(5395)] = 65986, + [SMALL_STATE(5396)] = 66080, + [SMALL_STATE(5397)] = 66176, + [SMALL_STATE(5398)] = 66270, + [SMALL_STATE(5399)] = 66334, + [SMALL_STATE(5400)] = 66428, + [SMALL_STATE(5401)] = 66486, + [SMALL_STATE(5402)] = 66580, + [SMALL_STATE(5403)] = 66676, + [SMALL_STATE(5404)] = 66774, + [SMALL_STATE(5405)] = 66840, + [SMALL_STATE(5406)] = 66934, + [SMALL_STATE(5407)] = 66998, + [SMALL_STATE(5408)] = 67064, + [SMALL_STATE(5409)] = 67130, + [SMALL_STATE(5410)] = 67224, + [SMALL_STATE(5411)] = 67284, + [SMALL_STATE(5412)] = 67378, + [SMALL_STATE(5413)] = 67438, + [SMALL_STATE(5414)] = 67532, + [SMALL_STATE(5415)] = 67628, + [SMALL_STATE(5416)] = 67724, + [SMALL_STATE(5417)] = 67784, + [SMALL_STATE(5418)] = 67882, + [SMALL_STATE(5419)] = 67976, + [SMALL_STATE(5420)] = 68070, + [SMALL_STATE(5421)] = 68136, + [SMALL_STATE(5422)] = 68230, + [SMALL_STATE(5423)] = 68296, + [SMALL_STATE(5424)] = 68390, + [SMALL_STATE(5425)] = 68456, + [SMALL_STATE(5426)] = 68522, + [SMALL_STATE(5427)] = 68588, + [SMALL_STATE(5428)] = 68654, + [SMALL_STATE(5429)] = 68748, + [SMALL_STATE(5430)] = 68844, + [SMALL_STATE(5431)] = 68938, + [SMALL_STATE(5432)] = 69032, + [SMALL_STATE(5433)] = 69090, + [SMALL_STATE(5434)] = 69184, + [SMALL_STATE(5435)] = 69242, + [SMALL_STATE(5436)] = 69340, + [SMALL_STATE(5437)] = 69400, + [SMALL_STATE(5438)] = 69494, + [SMALL_STATE(5439)] = 69588, + [SMALL_STATE(5440)] = 69684, + [SMALL_STATE(5441)] = 69778, + [SMALL_STATE(5442)] = 69840, + [SMALL_STATE(5443)] = 69936, + [SMALL_STATE(5444)] = 69998, + [SMALL_STATE(5445)] = 70060, + [SMALL_STATE(5446)] = 70154, + [SMALL_STATE(5447)] = 70248, + [SMALL_STATE(5448)] = 70342, + [SMALL_STATE(5449)] = 70436, + [SMALL_STATE(5450)] = 70498, + [SMALL_STATE(5451)] = 70594, + [SMALL_STATE(5452)] = 70656, + [SMALL_STATE(5453)] = 70754, + [SMALL_STATE(5454)] = 70813, + [SMALL_STATE(5455)] = 70906, + [SMALL_STATE(5456)] = 70999, + [SMALL_STATE(5457)] = 71062, + [SMALL_STATE(5458)] = 71121, + [SMALL_STATE(5459)] = 71212, + [SMALL_STATE(5460)] = 71303, + [SMALL_STATE(5461)] = 71364, + [SMALL_STATE(5462)] = 71443, + [SMALL_STATE(5463)] = 71504, + [SMALL_STATE(5464)] = 71597, + [SMALL_STATE(5465)] = 71656, + [SMALL_STATE(5466)] = 71749, + [SMALL_STATE(5467)] = 71812, + [SMALL_STATE(5468)] = 71905, + [SMALL_STATE(5469)] = 71964, + [SMALL_STATE(5470)] = 72023, + [SMALL_STATE(5471)] = 72084, + [SMALL_STATE(5472)] = 72175, + [SMALL_STATE(5473)] = 72233, + [SMALL_STATE(5474)] = 72289, + [SMALL_STATE(5475)] = 72347, + [SMALL_STATE(5476)] = 72403, + [SMALL_STATE(5477)] = 72461, + [SMALL_STATE(5478)] = 72521, + [SMALL_STATE(5479)] = 72577, + [SMALL_STATE(5480)] = 72635, + [SMALL_STATE(5481)] = 72693, + [SMALL_STATE(5482)] = 72749, + [SMALL_STATE(5483)] = 72806, + [SMALL_STATE(5484)] = 72863, + [SMALL_STATE(5485)] = 72920, + [SMALL_STATE(5486)] = 72979, + [SMALL_STATE(5487)] = 73036, + [SMALL_STATE(5488)] = 73121, + [SMALL_STATE(5489)] = 73208, + [SMALL_STATE(5490)] = 73265, + [SMALL_STATE(5491)] = 73350, + [SMALL_STATE(5492)] = 73435, + [SMALL_STATE(5493)] = 73520, + [SMALL_STATE(5494)] = 73605, + [SMALL_STATE(5495)] = 73690, + [SMALL_STATE(5496)] = 73748, + [SMALL_STATE(5497)] = 73830, + [SMALL_STATE(5498)] = 73912, + [SMALL_STATE(5499)] = 73994, + [SMALL_STATE(5500)] = 74078, + [SMALL_STATE(5501)] = 74160, + [SMALL_STATE(5502)] = 74218, + [SMALL_STATE(5503)] = 74278, + [SMALL_STATE(5504)] = 74336, + [SMALL_STATE(5505)] = 74418, + [SMALL_STATE(5506)] = 74502, + [SMALL_STATE(5507)] = 74584, + [SMALL_STATE(5508)] = 74666, + [SMALL_STATE(5509)] = 74748, + [SMALL_STATE(5510)] = 74832, + [SMALL_STATE(5511)] = 74886, + [SMALL_STATE(5512)] = 74944, + [SMALL_STATE(5513)] = 75028, + [SMALL_STATE(5514)] = 75112, + [SMALL_STATE(5515)] = 75196, + [SMALL_STATE(5516)] = 75277, + [SMALL_STATE(5517)] = 75334, + [SMALL_STATE(5518)] = 75415, + [SMALL_STATE(5519)] = 75488, + [SMALL_STATE(5520)] = 75569, + [SMALL_STATE(5521)] = 75650, + [SMALL_STATE(5522)] = 75707, + [SMALL_STATE(5523)] = 75788, + [SMALL_STATE(5524)] = 75845, + [SMALL_STATE(5525)] = 75902, + [SMALL_STATE(5526)] = 75983, + [SMALL_STATE(5527)] = 76064, + [SMALL_STATE(5528)] = 76145, + [SMALL_STATE(5529)] = 76199, + [SMALL_STATE(5530)] = 76254, + [SMALL_STATE(5531)] = 76305, + [SMALL_STATE(5532)] = 76366, + [SMALL_STATE(5533)] = 76419, + [SMALL_STATE(5534)] = 76473, + [SMALL_STATE(5535)] = 76523, + [SMALL_STATE(5536)] = 76583, + [SMALL_STATE(5537)] = 76637, + [SMALL_STATE(5538)] = 76691, + [SMALL_STATE(5539)] = 76743, + [SMALL_STATE(5540)] = 76797, + [SMALL_STATE(5541)] = 76851, + [SMALL_STATE(5542)] = 76900, + [SMALL_STATE(5543)] = 76949, + [SMALL_STATE(5544)] = 77002, + [SMALL_STATE(5545)] = 77053, + [SMALL_STATE(5546)] = 77102, + [SMALL_STATE(5547)] = 77151, + [SMALL_STATE(5548)] = 77200, + [SMALL_STATE(5549)] = 77249, + [SMALL_STATE(5550)] = 77298, + [SMALL_STATE(5551)] = 77347, + [SMALL_STATE(5552)] = 77396, + [SMALL_STATE(5553)] = 77445, + [SMALL_STATE(5554)] = 77493, + [SMALL_STATE(5555)] = 77539, + [SMALL_STATE(5556)] = 77585, + [SMALL_STATE(5557)] = 77633, + [SMALL_STATE(5558)] = 77679, + [SMALL_STATE(5559)] = 77725, + [SMALL_STATE(5560)] = 77772, + [SMALL_STATE(5561)] = 77819, + [SMALL_STATE(5562)] = 77866, + [SMALL_STATE(5563)] = 77913, + [SMALL_STATE(5564)] = 77960, + [SMALL_STATE(5565)] = 78007, + [SMALL_STATE(5566)] = 78054, + [SMALL_STATE(5567)] = 78103, + [SMALL_STATE(5568)] = 78150, + [SMALL_STATE(5569)] = 78197, + [SMALL_STATE(5570)] = 78246, + [SMALL_STATE(5571)] = 78293, + [SMALL_STATE(5572)] = 78340, + [SMALL_STATE(5573)] = 78387, + [SMALL_STATE(5574)] = 78434, + [SMALL_STATE(5575)] = 78481, + [SMALL_STATE(5576)] = 78530, + [SMALL_STATE(5577)] = 78619, + [SMALL_STATE(5578)] = 78708, + [SMALL_STATE(5579)] = 78755, + [SMALL_STATE(5580)] = 78804, + [SMALL_STATE(5581)] = 78851, + [SMALL_STATE(5582)] = 78900, + [SMALL_STATE(5583)] = 78949, + [SMALL_STATE(5584)] = 78996, + [SMALL_STATE(5585)] = 79045, + [SMALL_STATE(5586)] = 79134, + [SMALL_STATE(5587)] = 79223, + [SMALL_STATE(5588)] = 79270, + [SMALL_STATE(5589)] = 79359, + [SMALL_STATE(5590)] = 79406, + [SMALL_STATE(5591)] = 79453, + [SMALL_STATE(5592)] = 79500, + [SMALL_STATE(5593)] = 79547, + [SMALL_STATE(5594)] = 79594, + [SMALL_STATE(5595)] = 79641, + [SMALL_STATE(5596)] = 79688, + [SMALL_STATE(5597)] = 79777, + [SMALL_STATE(5598)] = 79826, + [SMALL_STATE(5599)] = 79873, + [SMALL_STATE(5600)] = 79920, + [SMALL_STATE(5601)] = 79969, + [SMALL_STATE(5602)] = 80017, + [SMALL_STATE(5603)] = 80060, + [SMALL_STATE(5604)] = 80141, + [SMALL_STATE(5605)] = 80222, + [SMALL_STATE(5606)] = 80269, + [SMALL_STATE(5607)] = 80350, + [SMALL_STATE(5608)] = 80431, + [SMALL_STATE(5609)] = 80474, + [SMALL_STATE(5610)] = 80519, + [SMALL_STATE(5611)] = 80600, + [SMALL_STATE(5612)] = 80681, + [SMALL_STATE(5613)] = 80762, + [SMALL_STATE(5614)] = 80843, + [SMALL_STATE(5615)] = 80924, + [SMALL_STATE(5616)] = 81005, + [SMALL_STATE(5617)] = 81086, + [SMALL_STATE(5618)] = 81167, + [SMALL_STATE(5619)] = 81248, + [SMALL_STATE(5620)] = 81329, + [SMALL_STATE(5621)] = 81410, + [SMALL_STATE(5622)] = 81453, + [SMALL_STATE(5623)] = 81534, + [SMALL_STATE(5624)] = 81580, + [SMALL_STATE(5625)] = 81624, + [SMALL_STATE(5626)] = 81670, + [SMALL_STATE(5627)] = 81712, + [SMALL_STATE(5628)] = 81758, + [SMALL_STATE(5629)] = 81800, + [SMALL_STATE(5630)] = 81842, + [SMALL_STATE(5631)] = 81883, + [SMALL_STATE(5632)] = 81928, + [SMALL_STATE(5633)] = 81969, + [SMALL_STATE(5634)] = 82010, + [SMALL_STATE(5635)] = 82051, + [SMALL_STATE(5636)] = 82092, + [SMALL_STATE(5637)] = 82133, + [SMALL_STATE(5638)] = 82178, + [SMALL_STATE(5639)] = 82225, + [SMALL_STATE(5640)] = 82270, + [SMALL_STATE(5641)] = 82311, + [SMALL_STATE(5642)] = 82352, + [SMALL_STATE(5643)] = 82393, + [SMALL_STATE(5644)] = 82436, + [SMALL_STATE(5645)] = 82481, + [SMALL_STATE(5646)] = 82523, + [SMALL_STATE(5647)] = 82569, + [SMALL_STATE(5648)] = 82611, + [SMALL_STATE(5649)] = 82657, + [SMALL_STATE(5650)] = 82699, + [SMALL_STATE(5651)] = 82739, + [SMALL_STATE(5652)] = 82785, + [SMALL_STATE(5653)] = 82825, + [SMALL_STATE(5654)] = 82865, + [SMALL_STATE(5655)] = 82906, + [SMALL_STATE(5656)] = 82947, + [SMALL_STATE(5657)] = 82992, + [SMALL_STATE(5658)] = 83058, + [SMALL_STATE(5659)] = 83124, + [SMALL_STATE(5660)] = 83193, + [SMALL_STATE(5661)] = 83262, + [SMALL_STATE(5662)] = 83301, + [SMALL_STATE(5663)] = 83370, + [SMALL_STATE(5664)] = 83439, + [SMALL_STATE(5665)] = 83508, + [SMALL_STATE(5666)] = 83577, + [SMALL_STATE(5667)] = 83646, + [SMALL_STATE(5668)] = 83715, + [SMALL_STATE(5669)] = 83756, + [SMALL_STATE(5670)] = 83825, + [SMALL_STATE(5671)] = 83894, + [SMALL_STATE(5672)] = 83963, + [SMALL_STATE(5673)] = 84032, + [SMALL_STATE(5674)] = 84101, + [SMALL_STATE(5675)] = 84170, + [SMALL_STATE(5676)] = 84239, + [SMALL_STATE(5677)] = 84308, + [SMALL_STATE(5678)] = 84377, + [SMALL_STATE(5679)] = 84446, + [SMALL_STATE(5680)] = 84515, + [SMALL_STATE(5681)] = 84584, + [SMALL_STATE(5682)] = 84653, + [SMALL_STATE(5683)] = 84722, + [SMALL_STATE(5684)] = 84789, + [SMALL_STATE(5685)] = 84858, + [SMALL_STATE(5686)] = 84927, + [SMALL_STATE(5687)] = 84996, + [SMALL_STATE(5688)] = 85065, + [SMALL_STATE(5689)] = 85134, + [SMALL_STATE(5690)] = 85203, + [SMALL_STATE(5691)] = 85272, + [SMALL_STATE(5692)] = 85341, + [SMALL_STATE(5693)] = 85410, + [SMALL_STATE(5694)] = 85479, + [SMALL_STATE(5695)] = 85518, + [SMALL_STATE(5696)] = 85587, + [SMALL_STATE(5697)] = 85656, + [SMALL_STATE(5698)] = 85725, + [SMALL_STATE(5699)] = 85794, + [SMALL_STATE(5700)] = 85863, + [SMALL_STATE(5701)] = 85932, + [SMALL_STATE(5702)] = 86001, + [SMALL_STATE(5703)] = 86070, + [SMALL_STATE(5704)] = 86139, + [SMALL_STATE(5705)] = 86208, + [SMALL_STATE(5706)] = 86277, + [SMALL_STATE(5707)] = 86346, + [SMALL_STATE(5708)] = 86415, + [SMALL_STATE(5709)] = 86484, + [SMALL_STATE(5710)] = 86523, + [SMALL_STATE(5711)] = 86592, + [SMALL_STATE(5712)] = 86661, + [SMALL_STATE(5713)] = 86700, + [SMALL_STATE(5714)] = 86769, + [SMALL_STATE(5715)] = 86838, + [SMALL_STATE(5716)] = 86907, + [SMALL_STATE(5717)] = 86946, + [SMALL_STATE(5718)] = 87015, + [SMALL_STATE(5719)] = 87084, + [SMALL_STATE(5720)] = 87153, + [SMALL_STATE(5721)] = 87222, + [SMALL_STATE(5722)] = 87261, + [SMALL_STATE(5723)] = 87300, + [SMALL_STATE(5724)] = 87339, + [SMALL_STATE(5725)] = 87408, + [SMALL_STATE(5726)] = 87477, + [SMALL_STATE(5727)] = 87546, + [SMALL_STATE(5728)] = 87585, + [SMALL_STATE(5729)] = 87654, + [SMALL_STATE(5730)] = 87693, + [SMALL_STATE(5731)] = 87762, + [SMALL_STATE(5732)] = 87831, + [SMALL_STATE(5733)] = 87900, + [SMALL_STATE(5734)] = 87969, + [SMALL_STATE(5735)] = 88038, + [SMALL_STATE(5736)] = 88107, + [SMALL_STATE(5737)] = 88173, + [SMALL_STATE(5738)] = 88241, + [SMALL_STATE(5739)] = 88309, + [SMALL_STATE(5740)] = 88377, + [SMALL_STATE(5741)] = 88445, + [SMALL_STATE(5742)] = 88513, + [SMALL_STATE(5743)] = 88579, + [SMALL_STATE(5744)] = 88647, + [SMALL_STATE(5745)] = 88715, + [SMALL_STATE(5746)] = 88783, + [SMALL_STATE(5747)] = 88851, + [SMALL_STATE(5748)] = 88919, + [SMALL_STATE(5749)] = 88985, + [SMALL_STATE(5750)] = 89051, + [SMALL_STATE(5751)] = 89119, + [SMALL_STATE(5752)] = 89187, + [SMALL_STATE(5753)] = 89255, + [SMALL_STATE(5754)] = 89321, + [SMALL_STATE(5755)] = 89389, + [SMALL_STATE(5756)] = 89457, + [SMALL_STATE(5757)] = 89525, + [SMALL_STATE(5758)] = 89593, + [SMALL_STATE(5759)] = 89657, + [SMALL_STATE(5760)] = 89725, + [SMALL_STATE(5761)] = 89793, + [SMALL_STATE(5762)] = 89861, + [SMALL_STATE(5763)] = 89929, + [SMALL_STATE(5764)] = 89997, + [SMALL_STATE(5765)] = 90065, + [SMALL_STATE(5766)] = 90131, + [SMALL_STATE(5767)] = 90199, + [SMALL_STATE(5768)] = 90267, + [SMALL_STATE(5769)] = 90335, + [SMALL_STATE(5770)] = 90403, + [SMALL_STATE(5771)] = 90466, + [SMALL_STATE(5772)] = 90529, + [SMALL_STATE(5773)] = 90592, + [SMALL_STATE(5774)] = 90655, + [SMALL_STATE(5775)] = 90718, + [SMALL_STATE(5776)] = 90781, + [SMALL_STATE(5777)] = 90844, + [SMALL_STATE(5778)] = 90907, + [SMALL_STATE(5779)] = 90970, + [SMALL_STATE(5780)] = 91033, + [SMALL_STATE(5781)] = 91096, + [SMALL_STATE(5782)] = 91159, + [SMALL_STATE(5783)] = 91222, + [SMALL_STATE(5784)] = 91285, + [SMALL_STATE(5785)] = 91348, + [SMALL_STATE(5786)] = 91411, + [SMALL_STATE(5787)] = 91474, + [SMALL_STATE(5788)] = 91537, + [SMALL_STATE(5789)] = 91600, + [SMALL_STATE(5790)] = 91663, + [SMALL_STATE(5791)] = 91726, + [SMALL_STATE(5792)] = 91789, + [SMALL_STATE(5793)] = 91852, + [SMALL_STATE(5794)] = 91915, + [SMALL_STATE(5795)] = 91978, + [SMALL_STATE(5796)] = 92041, + [SMALL_STATE(5797)] = 92104, + [SMALL_STATE(5798)] = 92167, + [SMALL_STATE(5799)] = 92230, + [SMALL_STATE(5800)] = 92293, + [SMALL_STATE(5801)] = 92356, + [SMALL_STATE(5802)] = 92419, + [SMALL_STATE(5803)] = 92482, + [SMALL_STATE(5804)] = 92545, + [SMALL_STATE(5805)] = 92608, + [SMALL_STATE(5806)] = 92671, + [SMALL_STATE(5807)] = 92734, + [SMALL_STATE(5808)] = 92797, + [SMALL_STATE(5809)] = 92860, + [SMALL_STATE(5810)] = 92925, + [SMALL_STATE(5811)] = 92988, + [SMALL_STATE(5812)] = 93051, + [SMALL_STATE(5813)] = 93114, + [SMALL_STATE(5814)] = 93177, + [SMALL_STATE(5815)] = 93240, + [SMALL_STATE(5816)] = 93303, + [SMALL_STATE(5817)] = 93366, + [SMALL_STATE(5818)] = 93429, + [SMALL_STATE(5819)] = 93492, + [SMALL_STATE(5820)] = 93555, + [SMALL_STATE(5821)] = 93618, + [SMALL_STATE(5822)] = 93681, + [SMALL_STATE(5823)] = 93744, + [SMALL_STATE(5824)] = 93807, + [SMALL_STATE(5825)] = 93870, + [SMALL_STATE(5826)] = 93933, + [SMALL_STATE(5827)] = 93996, + [SMALL_STATE(5828)] = 94059, + [SMALL_STATE(5829)] = 94122, + [SMALL_STATE(5830)] = 94185, + [SMALL_STATE(5831)] = 94248, + [SMALL_STATE(5832)] = 94311, + [SMALL_STATE(5833)] = 94374, + [SMALL_STATE(5834)] = 94437, + [SMALL_STATE(5835)] = 94500, + [SMALL_STATE(5836)] = 94563, + [SMALL_STATE(5837)] = 94626, + [SMALL_STATE(5838)] = 94689, + [SMALL_STATE(5839)] = 94752, + [SMALL_STATE(5840)] = 94815, + [SMALL_STATE(5841)] = 94878, + [SMALL_STATE(5842)] = 94941, + [SMALL_STATE(5843)] = 95004, + [SMALL_STATE(5844)] = 95067, + [SMALL_STATE(5845)] = 95130, + [SMALL_STATE(5846)] = 95193, + [SMALL_STATE(5847)] = 95256, + [SMALL_STATE(5848)] = 95319, + [SMALL_STATE(5849)] = 95382, + [SMALL_STATE(5850)] = 95445, + [SMALL_STATE(5851)] = 95508, + [SMALL_STATE(5852)] = 95571, + [SMALL_STATE(5853)] = 95634, + [SMALL_STATE(5854)] = 95697, + [SMALL_STATE(5855)] = 95760, + [SMALL_STATE(5856)] = 95823, + [SMALL_STATE(5857)] = 95886, + [SMALL_STATE(5858)] = 95949, + [SMALL_STATE(5859)] = 96012, + [SMALL_STATE(5860)] = 96075, + [SMALL_STATE(5861)] = 96138, + [SMALL_STATE(5862)] = 96201, + [SMALL_STATE(5863)] = 96264, + [SMALL_STATE(5864)] = 96327, + [SMALL_STATE(5865)] = 96390, + [SMALL_STATE(5866)] = 96453, + [SMALL_STATE(5867)] = 96516, + [SMALL_STATE(5868)] = 96579, + [SMALL_STATE(5869)] = 96642, + [SMALL_STATE(5870)] = 96705, + [SMALL_STATE(5871)] = 96768, + [SMALL_STATE(5872)] = 96831, + [SMALL_STATE(5873)] = 96894, + [SMALL_STATE(5874)] = 96957, + [SMALL_STATE(5875)] = 97020, + [SMALL_STATE(5876)] = 97083, + [SMALL_STATE(5877)] = 97146, + [SMALL_STATE(5878)] = 97209, + [SMALL_STATE(5879)] = 97272, + [SMALL_STATE(5880)] = 97335, + [SMALL_STATE(5881)] = 97398, + [SMALL_STATE(5882)] = 97461, + [SMALL_STATE(5883)] = 97524, + [SMALL_STATE(5884)] = 97587, + [SMALL_STATE(5885)] = 97650, + [SMALL_STATE(5886)] = 97713, + [SMALL_STATE(5887)] = 97776, + [SMALL_STATE(5888)] = 97839, + [SMALL_STATE(5889)] = 97902, + [SMALL_STATE(5890)] = 97965, + [SMALL_STATE(5891)] = 98028, + [SMALL_STATE(5892)] = 98091, + [SMALL_STATE(5893)] = 98154, + [SMALL_STATE(5894)] = 98217, + [SMALL_STATE(5895)] = 98280, + [SMALL_STATE(5896)] = 98345, + [SMALL_STATE(5897)] = 98408, + [SMALL_STATE(5898)] = 98471, + [SMALL_STATE(5899)] = 98534, + [SMALL_STATE(5900)] = 98599, + [SMALL_STATE(5901)] = 98662, + [SMALL_STATE(5902)] = 98725, + [SMALL_STATE(5903)] = 98788, + [SMALL_STATE(5904)] = 98851, + [SMALL_STATE(5905)] = 98916, + [SMALL_STATE(5906)] = 98979, + [SMALL_STATE(5907)] = 99042, + [SMALL_STATE(5908)] = 99105, + [SMALL_STATE(5909)] = 99168, + [SMALL_STATE(5910)] = 99233, + [SMALL_STATE(5911)] = 99296, + [SMALL_STATE(5912)] = 99359, + [SMALL_STATE(5913)] = 99422, + [SMALL_STATE(5914)] = 99485, + [SMALL_STATE(5915)] = 99550, + [SMALL_STATE(5916)] = 99613, + [SMALL_STATE(5917)] = 99676, + [SMALL_STATE(5918)] = 99739, + [SMALL_STATE(5919)] = 99802, + [SMALL_STATE(5920)] = 99865, + [SMALL_STATE(5921)] = 99928, + [SMALL_STATE(5922)] = 99991, + [SMALL_STATE(5923)] = 100054, + [SMALL_STATE(5924)] = 100117, + [SMALL_STATE(5925)] = 100180, + [SMALL_STATE(5926)] = 100243, + [SMALL_STATE(5927)] = 100306, + [SMALL_STATE(5928)] = 100369, + [SMALL_STATE(5929)] = 100432, + [SMALL_STATE(5930)] = 100495, + [SMALL_STATE(5931)] = 100558, + [SMALL_STATE(5932)] = 100621, + [SMALL_STATE(5933)] = 100684, + [SMALL_STATE(5934)] = 100747, + [SMALL_STATE(5935)] = 100810, + [SMALL_STATE(5936)] = 100873, + [SMALL_STATE(5937)] = 100936, + [SMALL_STATE(5938)] = 100999, + [SMALL_STATE(5939)] = 101062, + [SMALL_STATE(5940)] = 101125, + [SMALL_STATE(5941)] = 101188, + [SMALL_STATE(5942)] = 101251, + [SMALL_STATE(5943)] = 101314, + [SMALL_STATE(5944)] = 101377, + [SMALL_STATE(5945)] = 101440, + [SMALL_STATE(5946)] = 101503, + [SMALL_STATE(5947)] = 101566, + [SMALL_STATE(5948)] = 101629, + [SMALL_STATE(5949)] = 101692, + [SMALL_STATE(5950)] = 101755, + [SMALL_STATE(5951)] = 101818, + [SMALL_STATE(5952)] = 101881, + [SMALL_STATE(5953)] = 101944, + [SMALL_STATE(5954)] = 102007, + [SMALL_STATE(5955)] = 102070, + [SMALL_STATE(5956)] = 102133, + [SMALL_STATE(5957)] = 102196, + [SMALL_STATE(5958)] = 102259, + [SMALL_STATE(5959)] = 102322, + [SMALL_STATE(5960)] = 102385, + [SMALL_STATE(5961)] = 102448, + [SMALL_STATE(5962)] = 102511, + [SMALL_STATE(5963)] = 102574, + [SMALL_STATE(5964)] = 102637, + [SMALL_STATE(5965)] = 102700, + [SMALL_STATE(5966)] = 102763, + [SMALL_STATE(5967)] = 102826, + [SMALL_STATE(5968)] = 102889, + [SMALL_STATE(5969)] = 102952, + [SMALL_STATE(5970)] = 103015, + [SMALL_STATE(5971)] = 103078, + [SMALL_STATE(5972)] = 103141, + [SMALL_STATE(5973)] = 103204, + [SMALL_STATE(5974)] = 103267, + [SMALL_STATE(5975)] = 103330, + [SMALL_STATE(5976)] = 103393, + [SMALL_STATE(5977)] = 103456, + [SMALL_STATE(5978)] = 103519, + [SMALL_STATE(5979)] = 103582, + [SMALL_STATE(5980)] = 103645, + [SMALL_STATE(5981)] = 103708, + [SMALL_STATE(5982)] = 103771, + [SMALL_STATE(5983)] = 103834, + [SMALL_STATE(5984)] = 103897, + [SMALL_STATE(5985)] = 103960, + [SMALL_STATE(5986)] = 104023, + [SMALL_STATE(5987)] = 104086, + [SMALL_STATE(5988)] = 104149, + [SMALL_STATE(5989)] = 104212, + [SMALL_STATE(5990)] = 104275, + [SMALL_STATE(5991)] = 104338, + [SMALL_STATE(5992)] = 104401, + [SMALL_STATE(5993)] = 104464, + [SMALL_STATE(5994)] = 104527, + [SMALL_STATE(5995)] = 104590, + [SMALL_STATE(5996)] = 104653, + [SMALL_STATE(5997)] = 104716, + [SMALL_STATE(5998)] = 104779, + [SMALL_STATE(5999)] = 104842, + [SMALL_STATE(6000)] = 104905, + [SMALL_STATE(6001)] = 104968, + [SMALL_STATE(6002)] = 105031, + [SMALL_STATE(6003)] = 105094, + [SMALL_STATE(6004)] = 105157, + [SMALL_STATE(6005)] = 105220, + [SMALL_STATE(6006)] = 105283, + [SMALL_STATE(6007)] = 105346, + [SMALL_STATE(6008)] = 105409, + [SMALL_STATE(6009)] = 105472, + [SMALL_STATE(6010)] = 105535, + [SMALL_STATE(6011)] = 105598, + [SMALL_STATE(6012)] = 105661, + [SMALL_STATE(6013)] = 105724, + [SMALL_STATE(6014)] = 105787, + [SMALL_STATE(6015)] = 105850, + [SMALL_STATE(6016)] = 105913, + [SMALL_STATE(6017)] = 105976, + [SMALL_STATE(6018)] = 106039, + [SMALL_STATE(6019)] = 106102, + [SMALL_STATE(6020)] = 106165, + [SMALL_STATE(6021)] = 106228, + [SMALL_STATE(6022)] = 106291, + [SMALL_STATE(6023)] = 106354, + [SMALL_STATE(6024)] = 106417, + [SMALL_STATE(6025)] = 106480, + [SMALL_STATE(6026)] = 106543, + [SMALL_STATE(6027)] = 106606, + [SMALL_STATE(6028)] = 106669, + [SMALL_STATE(6029)] = 106732, + [SMALL_STATE(6030)] = 106795, + [SMALL_STATE(6031)] = 106858, + [SMALL_STATE(6032)] = 106921, + [SMALL_STATE(6033)] = 106984, + [SMALL_STATE(6034)] = 107047, + [SMALL_STATE(6035)] = 107110, + [SMALL_STATE(6036)] = 107173, + [SMALL_STATE(6037)] = 107236, + [SMALL_STATE(6038)] = 107299, + [SMALL_STATE(6039)] = 107362, + [SMALL_STATE(6040)] = 107425, + [SMALL_STATE(6041)] = 107488, + [SMALL_STATE(6042)] = 107551, + [SMALL_STATE(6043)] = 107614, + [SMALL_STATE(6044)] = 107677, + [SMALL_STATE(6045)] = 107740, + [SMALL_STATE(6046)] = 107803, + [SMALL_STATE(6047)] = 107866, + [SMALL_STATE(6048)] = 107929, + [SMALL_STATE(6049)] = 107992, + [SMALL_STATE(6050)] = 108055, + [SMALL_STATE(6051)] = 108118, + [SMALL_STATE(6052)] = 108181, + [SMALL_STATE(6053)] = 108244, + [SMALL_STATE(6054)] = 108307, + [SMALL_STATE(6055)] = 108370, + [SMALL_STATE(6056)] = 108433, + [SMALL_STATE(6057)] = 108496, + [SMALL_STATE(6058)] = 108559, + [SMALL_STATE(6059)] = 108622, + [SMALL_STATE(6060)] = 108687, + [SMALL_STATE(6061)] = 108750, + [SMALL_STATE(6062)] = 108813, + [SMALL_STATE(6063)] = 108878, + [SMALL_STATE(6064)] = 108941, + [SMALL_STATE(6065)] = 109004, + [SMALL_STATE(6066)] = 109067, + [SMALL_STATE(6067)] = 109130, + [SMALL_STATE(6068)] = 109193, + [SMALL_STATE(6069)] = 109258, + [SMALL_STATE(6070)] = 109321, + [SMALL_STATE(6071)] = 109384, + [SMALL_STATE(6072)] = 109447, + [SMALL_STATE(6073)] = 109510, + [SMALL_STATE(6074)] = 109573, + [SMALL_STATE(6075)] = 109636, + [SMALL_STATE(6076)] = 109699, + [SMALL_STATE(6077)] = 109762, + [SMALL_STATE(6078)] = 109827, + [SMALL_STATE(6079)] = 109890, + [SMALL_STATE(6080)] = 109953, + [SMALL_STATE(6081)] = 110016, + [SMALL_STATE(6082)] = 110079, + [SMALL_STATE(6083)] = 110142, + [SMALL_STATE(6084)] = 110207, + [SMALL_STATE(6085)] = 110270, + [SMALL_STATE(6086)] = 110333, + [SMALL_STATE(6087)] = 110396, + [SMALL_STATE(6088)] = 110459, + [SMALL_STATE(6089)] = 110522, + [SMALL_STATE(6090)] = 110587, + [SMALL_STATE(6091)] = 110650, + [SMALL_STATE(6092)] = 110713, + [SMALL_STATE(6093)] = 110776, + [SMALL_STATE(6094)] = 110839, + [SMALL_STATE(6095)] = 110902, + [SMALL_STATE(6096)] = 110965, + [SMALL_STATE(6097)] = 111030, + [SMALL_STATE(6098)] = 111093, + [SMALL_STATE(6099)] = 111156, + [SMALL_STATE(6100)] = 111219, + [SMALL_STATE(6101)] = 111282, + [SMALL_STATE(6102)] = 111345, + [SMALL_STATE(6103)] = 111408, + [SMALL_STATE(6104)] = 111471, + [SMALL_STATE(6105)] = 111534, + [SMALL_STATE(6106)] = 111597, + [SMALL_STATE(6107)] = 111660, + [SMALL_STATE(6108)] = 111723, + [SMALL_STATE(6109)] = 111788, + [SMALL_STATE(6110)] = 111851, + [SMALL_STATE(6111)] = 111914, + [SMALL_STATE(6112)] = 111977, + [SMALL_STATE(6113)] = 112040, + [SMALL_STATE(6114)] = 112103, + [SMALL_STATE(6115)] = 112166, + [SMALL_STATE(6116)] = 112229, + [SMALL_STATE(6117)] = 112292, + [SMALL_STATE(6118)] = 112355, + [SMALL_STATE(6119)] = 112418, + [SMALL_STATE(6120)] = 112481, + [SMALL_STATE(6121)] = 112544, + [SMALL_STATE(6122)] = 112607, + [SMALL_STATE(6123)] = 112670, + [SMALL_STATE(6124)] = 112733, + [SMALL_STATE(6125)] = 112796, + [SMALL_STATE(6126)] = 112859, + [SMALL_STATE(6127)] = 112922, + [SMALL_STATE(6128)] = 112985, + [SMALL_STATE(6129)] = 113048, + [SMALL_STATE(6130)] = 113111, + [SMALL_STATE(6131)] = 113174, + [SMALL_STATE(6132)] = 113237, + [SMALL_STATE(6133)] = 113300, + [SMALL_STATE(6134)] = 113363, + [SMALL_STATE(6135)] = 113426, + [SMALL_STATE(6136)] = 113489, + [SMALL_STATE(6137)] = 113552, + [SMALL_STATE(6138)] = 113615, + [SMALL_STATE(6139)] = 113678, + [SMALL_STATE(6140)] = 113741, + [SMALL_STATE(6141)] = 113804, + [SMALL_STATE(6142)] = 113867, + [SMALL_STATE(6143)] = 113930, + [SMALL_STATE(6144)] = 113993, + [SMALL_STATE(6145)] = 114056, + [SMALL_STATE(6146)] = 114119, + [SMALL_STATE(6147)] = 114182, + [SMALL_STATE(6148)] = 114245, + [SMALL_STATE(6149)] = 114308, + [SMALL_STATE(6150)] = 114371, + [SMALL_STATE(6151)] = 114434, + [SMALL_STATE(6152)] = 114497, + [SMALL_STATE(6153)] = 114560, + [SMALL_STATE(6154)] = 114623, + [SMALL_STATE(6155)] = 114686, + [SMALL_STATE(6156)] = 114749, + [SMALL_STATE(6157)] = 114812, + [SMALL_STATE(6158)] = 114875, + [SMALL_STATE(6159)] = 114938, + [SMALL_STATE(6160)] = 115001, + [SMALL_STATE(6161)] = 115064, + [SMALL_STATE(6162)] = 115127, + [SMALL_STATE(6163)] = 115190, + [SMALL_STATE(6164)] = 115253, + [SMALL_STATE(6165)] = 115316, + [SMALL_STATE(6166)] = 115379, + [SMALL_STATE(6167)] = 115442, + [SMALL_STATE(6168)] = 115505, + [SMALL_STATE(6169)] = 115568, + [SMALL_STATE(6170)] = 115631, + [SMALL_STATE(6171)] = 115694, + [SMALL_STATE(6172)] = 115757, + [SMALL_STATE(6173)] = 115820, + [SMALL_STATE(6174)] = 115883, + [SMALL_STATE(6175)] = 115946, + [SMALL_STATE(6176)] = 116009, + [SMALL_STATE(6177)] = 116072, + [SMALL_STATE(6178)] = 116137, + [SMALL_STATE(6179)] = 116200, + [SMALL_STATE(6180)] = 116263, + [SMALL_STATE(6181)] = 116326, + [SMALL_STATE(6182)] = 116389, + [SMALL_STATE(6183)] = 116452, + [SMALL_STATE(6184)] = 116515, + [SMALL_STATE(6185)] = 116578, + [SMALL_STATE(6186)] = 116643, + [SMALL_STATE(6187)] = 116706, + [SMALL_STATE(6188)] = 116769, + [SMALL_STATE(6189)] = 116832, + [SMALL_STATE(6190)] = 116895, + [SMALL_STATE(6191)] = 116958, + [SMALL_STATE(6192)] = 117021, + [SMALL_STATE(6193)] = 117084, + [SMALL_STATE(6194)] = 117147, + [SMALL_STATE(6195)] = 117210, + [SMALL_STATE(6196)] = 117273, + [SMALL_STATE(6197)] = 117336, + [SMALL_STATE(6198)] = 117399, + [SMALL_STATE(6199)] = 117462, + [SMALL_STATE(6200)] = 117525, + [SMALL_STATE(6201)] = 117590, + [SMALL_STATE(6202)] = 117653, + [SMALL_STATE(6203)] = 117716, + [SMALL_STATE(6204)] = 117779, + [SMALL_STATE(6205)] = 117842, + [SMALL_STATE(6206)] = 117905, + [SMALL_STATE(6207)] = 117968, + [SMALL_STATE(6208)] = 118031, + [SMALL_STATE(6209)] = 118094, + [SMALL_STATE(6210)] = 118157, + [SMALL_STATE(6211)] = 118220, + [SMALL_STATE(6212)] = 118283, + [SMALL_STATE(6213)] = 118346, + [SMALL_STATE(6214)] = 118409, + [SMALL_STATE(6215)] = 118472, + [SMALL_STATE(6216)] = 118535, + [SMALL_STATE(6217)] = 118598, + [SMALL_STATE(6218)] = 118661, + [SMALL_STATE(6219)] = 118724, + [SMALL_STATE(6220)] = 118787, + [SMALL_STATE(6221)] = 118850, + [SMALL_STATE(6222)] = 118913, + [SMALL_STATE(6223)] = 118976, + [SMALL_STATE(6224)] = 119039, + [SMALL_STATE(6225)] = 119102, + [SMALL_STATE(6226)] = 119165, + [SMALL_STATE(6227)] = 119228, + [SMALL_STATE(6228)] = 119291, + [SMALL_STATE(6229)] = 119354, + [SMALL_STATE(6230)] = 119417, + [SMALL_STATE(6231)] = 119480, + [SMALL_STATE(6232)] = 119543, + [SMALL_STATE(6233)] = 119606, + [SMALL_STATE(6234)] = 119669, + [SMALL_STATE(6235)] = 119732, + [SMALL_STATE(6236)] = 119795, + [SMALL_STATE(6237)] = 119858, + [SMALL_STATE(6238)] = 119923, + [SMALL_STATE(6239)] = 119986, + [SMALL_STATE(6240)] = 120049, + [SMALL_STATE(6241)] = 120112, + [SMALL_STATE(6242)] = 120177, + [SMALL_STATE(6243)] = 120240, + [SMALL_STATE(6244)] = 120303, + [SMALL_STATE(6245)] = 120366, + [SMALL_STATE(6246)] = 120429, + [SMALL_STATE(6247)] = 120492, + [SMALL_STATE(6248)] = 120555, + [SMALL_STATE(6249)] = 120618, + [SMALL_STATE(6250)] = 120681, + [SMALL_STATE(6251)] = 120744, + [SMALL_STATE(6252)] = 120809, + [SMALL_STATE(6253)] = 120872, + [SMALL_STATE(6254)] = 120935, + [SMALL_STATE(6255)] = 120998, + [SMALL_STATE(6256)] = 121063, + [SMALL_STATE(6257)] = 121126, + [SMALL_STATE(6258)] = 121189, + [SMALL_STATE(6259)] = 121254, + [SMALL_STATE(6260)] = 121319, + [SMALL_STATE(6261)] = 121382, + [SMALL_STATE(6262)] = 121445, + [SMALL_STATE(6263)] = 121508, + [SMALL_STATE(6264)] = 121571, + [SMALL_STATE(6265)] = 121634, + [SMALL_STATE(6266)] = 121699, + [SMALL_STATE(6267)] = 121762, + [SMALL_STATE(6268)] = 121825, + [SMALL_STATE(6269)] = 121888, + [SMALL_STATE(6270)] = 121951, + [SMALL_STATE(6271)] = 122014, + [SMALL_STATE(6272)] = 122077, + [SMALL_STATE(6273)] = 122142, + [SMALL_STATE(6274)] = 122207, + [SMALL_STATE(6275)] = 122272, + [SMALL_STATE(6276)] = 122335, + [SMALL_STATE(6277)] = 122398, + [SMALL_STATE(6278)] = 122461, + [SMALL_STATE(6279)] = 122526, + [SMALL_STATE(6280)] = 122589, + [SMALL_STATE(6281)] = 122652, + [SMALL_STATE(6282)] = 122715, + [SMALL_STATE(6283)] = 122778, + [SMALL_STATE(6284)] = 122841, + [SMALL_STATE(6285)] = 122904, + [SMALL_STATE(6286)] = 122967, + [SMALL_STATE(6287)] = 123030, + [SMALL_STATE(6288)] = 123093, + [SMALL_STATE(6289)] = 123156, + [SMALL_STATE(6290)] = 123219, + [SMALL_STATE(6291)] = 123282, + [SMALL_STATE(6292)] = 123345, + [SMALL_STATE(6293)] = 123408, + [SMALL_STATE(6294)] = 123471, + [SMALL_STATE(6295)] = 123534, + [SMALL_STATE(6296)] = 123597, + [SMALL_STATE(6297)] = 123660, + [SMALL_STATE(6298)] = 123723, + [SMALL_STATE(6299)] = 123782, + [SMALL_STATE(6300)] = 123841, + [SMALL_STATE(6301)] = 123900, + [SMALL_STATE(6302)] = 123959, + [SMALL_STATE(6303)] = 124018, + [SMALL_STATE(6304)] = 124077, + [SMALL_STATE(6305)] = 124136, + [SMALL_STATE(6306)] = 124195, + [SMALL_STATE(6307)] = 124254, + [SMALL_STATE(6308)] = 124313, + [SMALL_STATE(6309)] = 124372, + [SMALL_STATE(6310)] = 124431, + [SMALL_STATE(6311)] = 124490, + [SMALL_STATE(6312)] = 124549, + [SMALL_STATE(6313)] = 124608, + [SMALL_STATE(6314)] = 124667, + [SMALL_STATE(6315)] = 124726, + [SMALL_STATE(6316)] = 124785, + [SMALL_STATE(6317)] = 124824, + [SMALL_STATE(6318)] = 124883, + [SMALL_STATE(6319)] = 124942, + [SMALL_STATE(6320)] = 125001, + [SMALL_STATE(6321)] = 125060, + [SMALL_STATE(6322)] = 125119, + [SMALL_STATE(6323)] = 125178, + [SMALL_STATE(6324)] = 125217, + [SMALL_STATE(6325)] = 125276, + [SMALL_STATE(6326)] = 125335, + [SMALL_STATE(6327)] = 125394, + [SMALL_STATE(6328)] = 125453, + [SMALL_STATE(6329)] = 125512, + [SMALL_STATE(6330)] = 125571, + [SMALL_STATE(6331)] = 125630, + [SMALL_STATE(6332)] = 125689, + [SMALL_STATE(6333)] = 125748, + [SMALL_STATE(6334)] = 125807, + [SMALL_STATE(6335)] = 125866, + [SMALL_STATE(6336)] = 125925, + [SMALL_STATE(6337)] = 125984, + [SMALL_STATE(6338)] = 126043, + [SMALL_STATE(6339)] = 126102, + [SMALL_STATE(6340)] = 126161, + [SMALL_STATE(6341)] = 126220, + [SMALL_STATE(6342)] = 126279, + [SMALL_STATE(6343)] = 126338, + [SMALL_STATE(6344)] = 126397, + [SMALL_STATE(6345)] = 126456, + [SMALL_STATE(6346)] = 126515, + [SMALL_STATE(6347)] = 126574, + [SMALL_STATE(6348)] = 126633, + [SMALL_STATE(6349)] = 126692, + [SMALL_STATE(6350)] = 126751, + [SMALL_STATE(6351)] = 126810, + [SMALL_STATE(6352)] = 126869, + [SMALL_STATE(6353)] = 126928, + [SMALL_STATE(6354)] = 126987, + [SMALL_STATE(6355)] = 127042, + [SMALL_STATE(6356)] = 127097, + [SMALL_STATE(6357)] = 127152, + [SMALL_STATE(6358)] = 127207, + [SMALL_STATE(6359)] = 127262, + [SMALL_STATE(6360)] = 127317, + [SMALL_STATE(6361)] = 127372, + [SMALL_STATE(6362)] = 127427, + [SMALL_STATE(6363)] = 127482, + [SMALL_STATE(6364)] = 127534, + [SMALL_STATE(6365)] = 127586, + [SMALL_STATE(6366)] = 127638, + [SMALL_STATE(6367)] = 127690, + [SMALL_STATE(6368)] = 127742, + [SMALL_STATE(6369)] = 127794, + [SMALL_STATE(6370)] = 127846, + [SMALL_STATE(6371)] = 127898, + [SMALL_STATE(6372)] = 127950, + [SMALL_STATE(6373)] = 128002, + [SMALL_STATE(6374)] = 128054, + [SMALL_STATE(6375)] = 128106, + [SMALL_STATE(6376)] = 128158, + [SMALL_STATE(6377)] = 128210, + [SMALL_STATE(6378)] = 128262, + [SMALL_STATE(6379)] = 128300, + [SMALL_STATE(6380)] = 128352, + [SMALL_STATE(6381)] = 128404, + [SMALL_STATE(6382)] = 128456, + [SMALL_STATE(6383)] = 128508, + [SMALL_STATE(6384)] = 128557, + [SMALL_STATE(6385)] = 128606, + [SMALL_STATE(6386)] = 128655, + [SMALL_STATE(6387)] = 128704, + [SMALL_STATE(6388)] = 128753, + [SMALL_STATE(6389)] = 128802, + [SMALL_STATE(6390)] = 128851, + [SMALL_STATE(6391)] = 128900, + [SMALL_STATE(6392)] = 128949, + [SMALL_STATE(6393)] = 128998, + [SMALL_STATE(6394)] = 129047, + [SMALL_STATE(6395)] = 129096, + [SMALL_STATE(6396)] = 129145, + [SMALL_STATE(6397)] = 129194, + [SMALL_STATE(6398)] = 129243, + [SMALL_STATE(6399)] = 129289, + [SMALL_STATE(6400)] = 129335, + [SMALL_STATE(6401)] = 129381, + [SMALL_STATE(6402)] = 129427, + [SMALL_STATE(6403)] = 129473, + [SMALL_STATE(6404)] = 129519, + [SMALL_STATE(6405)] = 129565, + [SMALL_STATE(6406)] = 129611, + [SMALL_STATE(6407)] = 129657, + [SMALL_STATE(6408)] = 129703, + [SMALL_STATE(6409)] = 129749, + [SMALL_STATE(6410)] = 129795, + [SMALL_STATE(6411)] = 129841, + [SMALL_STATE(6412)] = 129887, + [SMALL_STATE(6413)] = 129933, + [SMALL_STATE(6414)] = 129979, + [SMALL_STATE(6415)] = 130025, + [SMALL_STATE(6416)] = 130071, + [SMALL_STATE(6417)] = 130117, + [SMALL_STATE(6418)] = 130163, + [SMALL_STATE(6419)] = 130209, + [SMALL_STATE(6420)] = 130255, + [SMALL_STATE(6421)] = 130301, + [SMALL_STATE(6422)] = 130347, + [SMALL_STATE(6423)] = 130393, + [SMALL_STATE(6424)] = 130439, + [SMALL_STATE(6425)] = 130485, + [SMALL_STATE(6426)] = 130531, + [SMALL_STATE(6427)] = 130577, + [SMALL_STATE(6428)] = 130623, + [SMALL_STATE(6429)] = 130669, + [SMALL_STATE(6430)] = 130715, + [SMALL_STATE(6431)] = 130761, + [SMALL_STATE(6432)] = 130807, + [SMALL_STATE(6433)] = 130853, + [SMALL_STATE(6434)] = 130899, + [SMALL_STATE(6435)] = 130945, + [SMALL_STATE(6436)] = 130991, + [SMALL_STATE(6437)] = 131037, + [SMALL_STATE(6438)] = 131083, + [SMALL_STATE(6439)] = 131129, + [SMALL_STATE(6440)] = 131175, + [SMALL_STATE(6441)] = 131221, + [SMALL_STATE(6442)] = 131267, + [SMALL_STATE(6443)] = 131313, + [SMALL_STATE(6444)] = 131359, + [SMALL_STATE(6445)] = 131405, + [SMALL_STATE(6446)] = 131451, + [SMALL_STATE(6447)] = 131497, + [SMALL_STATE(6448)] = 131543, + [SMALL_STATE(6449)] = 131589, + [SMALL_STATE(6450)] = 131635, + [SMALL_STATE(6451)] = 131681, + [SMALL_STATE(6452)] = 131727, + [SMALL_STATE(6453)] = 131773, + [SMALL_STATE(6454)] = 131821, + [SMALL_STATE(6455)] = 131869, + [SMALL_STATE(6456)] = 131913, + [SMALL_STATE(6457)] = 131961, + [SMALL_STATE(6458)] = 132009, + [SMALL_STATE(6459)] = 132055, + [SMALL_STATE(6460)] = 132101, + [SMALL_STATE(6461)] = 132149, + [SMALL_STATE(6462)] = 132195, + [SMALL_STATE(6463)] = 132243, + [SMALL_STATE(6464)] = 132289, + [SMALL_STATE(6465)] = 132335, + [SMALL_STATE(6466)] = 132381, + [SMALL_STATE(6467)] = 132429, + [SMALL_STATE(6468)] = 132475, + [SMALL_STATE(6469)] = 132523, + [SMALL_STATE(6470)] = 132569, + [SMALL_STATE(6471)] = 132617, + [SMALL_STATE(6472)] = 132663, + [SMALL_STATE(6473)] = 132709, + [SMALL_STATE(6474)] = 132757, + [SMALL_STATE(6475)] = 132805, + [SMALL_STATE(6476)] = 132851, + [SMALL_STATE(6477)] = 132899, + [SMALL_STATE(6478)] = 132945, + [SMALL_STATE(6479)] = 132993, + [SMALL_STATE(6480)] = 133041, + [SMALL_STATE(6481)] = 133087, + [SMALL_STATE(6482)] = 133133, + [SMALL_STATE(6483)] = 133179, + [SMALL_STATE(6484)] = 133223, + [SMALL_STATE(6485)] = 133269, + [SMALL_STATE(6486)] = 133317, + [SMALL_STATE(6487)] = 133365, + [SMALL_STATE(6488)] = 133411, + [SMALL_STATE(6489)] = 133457, + [SMALL_STATE(6490)] = 133503, + [SMALL_STATE(6491)] = 133549, + [SMALL_STATE(6492)] = 133595, + [SMALL_STATE(6493)] = 133641, + [SMALL_STATE(6494)] = 133687, + [SMALL_STATE(6495)] = 133733, + [SMALL_STATE(6496)] = 133781, + [SMALL_STATE(6497)] = 133827, + [SMALL_STATE(6498)] = 133873, + [SMALL_STATE(6499)] = 133919, + [SMALL_STATE(6500)] = 133967, + [SMALL_STATE(6501)] = 134015, + [SMALL_STATE(6502)] = 134063, + [SMALL_STATE(6503)] = 134111, + [SMALL_STATE(6504)] = 134159, + [SMALL_STATE(6505)] = 134205, + [SMALL_STATE(6506)] = 134253, + [SMALL_STATE(6507)] = 134299, + [SMALL_STATE(6508)] = 134347, + [SMALL_STATE(6509)] = 134395, + [SMALL_STATE(6510)] = 134443, + [SMALL_STATE(6511)] = 134489, + [SMALL_STATE(6512)] = 134535, + [SMALL_STATE(6513)] = 134583, + [SMALL_STATE(6514)] = 134631, + [SMALL_STATE(6515)] = 134679, + [SMALL_STATE(6516)] = 134725, + [SMALL_STATE(6517)] = 134773, + [SMALL_STATE(6518)] = 134821, + [SMALL_STATE(6519)] = 134869, + [SMALL_STATE(6520)] = 134915, + [SMALL_STATE(6521)] = 134963, + [SMALL_STATE(6522)] = 135011, + [SMALL_STATE(6523)] = 135059, + [SMALL_STATE(6524)] = 135105, + [SMALL_STATE(6525)] = 135151, + [SMALL_STATE(6526)] = 135199, + [SMALL_STATE(6527)] = 135247, + [SMALL_STATE(6528)] = 135293, + [SMALL_STATE(6529)] = 135341, + [SMALL_STATE(6530)] = 135389, + [SMALL_STATE(6531)] = 135437, + [SMALL_STATE(6532)] = 135483, + [SMALL_STATE(6533)] = 135531, + [SMALL_STATE(6534)] = 135579, + [SMALL_STATE(6535)] = 135625, + [SMALL_STATE(6536)] = 135671, + [SMALL_STATE(6537)] = 135719, + [SMALL_STATE(6538)] = 135765, + [SMALL_STATE(6539)] = 135813, + [SMALL_STATE(6540)] = 135861, + [SMALL_STATE(6541)] = 135909, + [SMALL_STATE(6542)] = 135957, + [SMALL_STATE(6543)] = 136003, + [SMALL_STATE(6544)] = 136049, + [SMALL_STATE(6545)] = 136097, + [SMALL_STATE(6546)] = 136145, + [SMALL_STATE(6547)] = 136193, + [SMALL_STATE(6548)] = 136239, + [SMALL_STATE(6549)] = 136285, + [SMALL_STATE(6550)] = 136331, + [SMALL_STATE(6551)] = 136379, + [SMALL_STATE(6552)] = 136427, + [SMALL_STATE(6553)] = 136475, + [SMALL_STATE(6554)] = 136521, + [SMALL_STATE(6555)] = 136565, + [SMALL_STATE(6556)] = 136613, + [SMALL_STATE(6557)] = 136657, + [SMALL_STATE(6558)] = 136705, + [SMALL_STATE(6559)] = 136751, + [SMALL_STATE(6560)] = 136799, + [SMALL_STATE(6561)] = 136845, + [SMALL_STATE(6562)] = 136891, + [SMALL_STATE(6563)] = 136939, + [SMALL_STATE(6564)] = 136985, + [SMALL_STATE(6565)] = 137031, + [SMALL_STATE(6566)] = 137077, + [SMALL_STATE(6567)] = 137125, + [SMALL_STATE(6568)] = 137171, + [SMALL_STATE(6569)] = 137219, + [SMALL_STATE(6570)] = 137267, + [SMALL_STATE(6571)] = 137315, + [SMALL_STATE(6572)] = 137363, + [SMALL_STATE(6573)] = 137411, + [SMALL_STATE(6574)] = 137457, + [SMALL_STATE(6575)] = 137505, + [SMALL_STATE(6576)] = 137553, + [SMALL_STATE(6577)] = 137601, + [SMALL_STATE(6578)] = 137647, + [SMALL_STATE(6579)] = 137695, + [SMALL_STATE(6580)] = 137741, + [SMALL_STATE(6581)] = 137789, + [SMALL_STATE(6582)] = 137835, + [SMALL_STATE(6583)] = 137881, + [SMALL_STATE(6584)] = 137929, + [SMALL_STATE(6585)] = 137975, + [SMALL_STATE(6586)] = 138021, + [SMALL_STATE(6587)] = 138069, + [SMALL_STATE(6588)] = 138117, + [SMALL_STATE(6589)] = 138165, + [SMALL_STATE(6590)] = 138211, + [SMALL_STATE(6591)] = 138259, + [SMALL_STATE(6592)] = 138307, + [SMALL_STATE(6593)] = 138355, + [SMALL_STATE(6594)] = 138403, + [SMALL_STATE(6595)] = 138449, + [SMALL_STATE(6596)] = 138493, + [SMALL_STATE(6597)] = 138539, + [SMALL_STATE(6598)] = 138587, + [SMALL_STATE(6599)] = 138635, + [SMALL_STATE(6600)] = 138681, + [SMALL_STATE(6601)] = 138727, + [SMALL_STATE(6602)] = 138775, + [SMALL_STATE(6603)] = 138823, + [SMALL_STATE(6604)] = 138869, + [SMALL_STATE(6605)] = 138917, + [SMALL_STATE(6606)] = 138965, + [SMALL_STATE(6607)] = 139011, + [SMALL_STATE(6608)] = 139057, + [SMALL_STATE(6609)] = 139103, + [SMALL_STATE(6610)] = 139149, + [SMALL_STATE(6611)] = 139195, + [SMALL_STATE(6612)] = 139243, + [SMALL_STATE(6613)] = 139291, + [SMALL_STATE(6614)] = 139339, + [SMALL_STATE(6615)] = 139385, + [SMALL_STATE(6616)] = 139433, + [SMALL_STATE(6617)] = 139481, + [SMALL_STATE(6618)] = 139529, + [SMALL_STATE(6619)] = 139575, + [SMALL_STATE(6620)] = 139621, + [SMALL_STATE(6621)] = 139667, + [SMALL_STATE(6622)] = 139713, + [SMALL_STATE(6623)] = 139761, + [SMALL_STATE(6624)] = 139807, + [SMALL_STATE(6625)] = 139855, + [SMALL_STATE(6626)] = 139903, + [SMALL_STATE(6627)] = 139949, + [SMALL_STATE(6628)] = 139997, + [SMALL_STATE(6629)] = 140045, + [SMALL_STATE(6630)] = 140093, + [SMALL_STATE(6631)] = 140141, + [SMALL_STATE(6632)] = 140189, + [SMALL_STATE(6633)] = 140237, + [SMALL_STATE(6634)] = 140285, + [SMALL_STATE(6635)] = 140333, + [SMALL_STATE(6636)] = 140381, + [SMALL_STATE(6637)] = 140429, + [SMALL_STATE(6638)] = 140477, + [SMALL_STATE(6639)] = 140525, + [SMALL_STATE(6640)] = 140573, + [SMALL_STATE(6641)] = 140621, + [SMALL_STATE(6642)] = 140669, + [SMALL_STATE(6643)] = 140717, + [SMALL_STATE(6644)] = 140765, + [SMALL_STATE(6645)] = 140813, + [SMALL_STATE(6646)] = 140861, + [SMALL_STATE(6647)] = 140909, + [SMALL_STATE(6648)] = 140957, + [SMALL_STATE(6649)] = 141005, + [SMALL_STATE(6650)] = 141053, + [SMALL_STATE(6651)] = 141101, + [SMALL_STATE(6652)] = 141149, + [SMALL_STATE(6653)] = 141197, + [SMALL_STATE(6654)] = 141243, + [SMALL_STATE(6655)] = 141291, + [SMALL_STATE(6656)] = 141339, + [SMALL_STATE(6657)] = 141385, + [SMALL_STATE(6658)] = 141433, + [SMALL_STATE(6659)] = 141481, + [SMALL_STATE(6660)] = 141529, + [SMALL_STATE(6661)] = 141577, + [SMALL_STATE(6662)] = 141625, + [SMALL_STATE(6663)] = 141673, + [SMALL_STATE(6664)] = 141721, + [SMALL_STATE(6665)] = 141769, + [SMALL_STATE(6666)] = 141817, + [SMALL_STATE(6667)] = 141863, + [SMALL_STATE(6668)] = 141911, + [SMALL_STATE(6669)] = 141959, + [SMALL_STATE(6670)] = 142007, + [SMALL_STATE(6671)] = 142055, + [SMALL_STATE(6672)] = 142101, + [SMALL_STATE(6673)] = 142149, + [SMALL_STATE(6674)] = 142197, + [SMALL_STATE(6675)] = 142245, + [SMALL_STATE(6676)] = 142291, + [SMALL_STATE(6677)] = 142335, + [SMALL_STATE(6678)] = 142383, + [SMALL_STATE(6679)] = 142431, + [SMALL_STATE(6680)] = 142479, + [SMALL_STATE(6681)] = 142523, + [SMALL_STATE(6682)] = 142571, + [SMALL_STATE(6683)] = 142619, + [SMALL_STATE(6684)] = 142667, + [SMALL_STATE(6685)] = 142713, + [SMALL_STATE(6686)] = 142761, + [SMALL_STATE(6687)] = 142807, + [SMALL_STATE(6688)] = 142855, + [SMALL_STATE(6689)] = 142903, + [SMALL_STATE(6690)] = 142951, + [SMALL_STATE(6691)] = 142997, + [SMALL_STATE(6692)] = 143045, + [SMALL_STATE(6693)] = 143093, + [SMALL_STATE(6694)] = 143141, + [SMALL_STATE(6695)] = 143189, + [SMALL_STATE(6696)] = 143237, + [SMALL_STATE(6697)] = 143283, + [SMALL_STATE(6698)] = 143331, + [SMALL_STATE(6699)] = 143379, + [SMALL_STATE(6700)] = 143425, + [SMALL_STATE(6701)] = 143471, + [SMALL_STATE(6702)] = 143517, + [SMALL_STATE(6703)] = 143565, + [SMALL_STATE(6704)] = 143611, + [SMALL_STATE(6705)] = 143657, + [SMALL_STATE(6706)] = 143705, + [SMALL_STATE(6707)] = 143753, + [SMALL_STATE(6708)] = 143801, + [SMALL_STATE(6709)] = 143847, + [SMALL_STATE(6710)] = 143893, + [SMALL_STATE(6711)] = 143941, + [SMALL_STATE(6712)] = 143989, + [SMALL_STATE(6713)] = 144037, + [SMALL_STATE(6714)] = 144085, + [SMALL_STATE(6715)] = 144133, + [SMALL_STATE(6716)] = 144179, + [SMALL_STATE(6717)] = 144225, + [SMALL_STATE(6718)] = 144273, + [SMALL_STATE(6719)] = 144319, + [SMALL_STATE(6720)] = 144367, + [SMALL_STATE(6721)] = 144415, + [SMALL_STATE(6722)] = 144463, + [SMALL_STATE(6723)] = 144509, + [SMALL_STATE(6724)] = 144557, + [SMALL_STATE(6725)] = 144603, + [SMALL_STATE(6726)] = 144649, + [SMALL_STATE(6727)] = 144695, + [SMALL_STATE(6728)] = 144743, + [SMALL_STATE(6729)] = 144791, + [SMALL_STATE(6730)] = 144837, + [SMALL_STATE(6731)] = 144885, + [SMALL_STATE(6732)] = 144931, + [SMALL_STATE(6733)] = 144979, + [SMALL_STATE(6734)] = 145027, + [SMALL_STATE(6735)] = 145073, + [SMALL_STATE(6736)] = 145119, + [SMALL_STATE(6737)] = 145167, + [SMALL_STATE(6738)] = 145215, + [SMALL_STATE(6739)] = 145261, + [SMALL_STATE(6740)] = 145309, + [SMALL_STATE(6741)] = 145357, + [SMALL_STATE(6742)] = 145401, + [SMALL_STATE(6743)] = 145447, + [SMALL_STATE(6744)] = 145495, + [SMALL_STATE(6745)] = 145543, + [SMALL_STATE(6746)] = 145589, + [SMALL_STATE(6747)] = 145635, + [SMALL_STATE(6748)] = 145681, + [SMALL_STATE(6749)] = 145727, + [SMALL_STATE(6750)] = 145775, + [SMALL_STATE(6751)] = 145821, + [SMALL_STATE(6752)] = 145867, + [SMALL_STATE(6753)] = 145913, + [SMALL_STATE(6754)] = 145959, + [SMALL_STATE(6755)] = 146007, + [SMALL_STATE(6756)] = 146055, + [SMALL_STATE(6757)] = 146101, + [SMALL_STATE(6758)] = 146149, + [SMALL_STATE(6759)] = 146195, + [SMALL_STATE(6760)] = 146241, + [SMALL_STATE(6761)] = 146289, + [SMALL_STATE(6762)] = 146335, + [SMALL_STATE(6763)] = 146381, + [SMALL_STATE(6764)] = 146429, + [SMALL_STATE(6765)] = 146477, + [SMALL_STATE(6766)] = 146523, + [SMALL_STATE(6767)] = 146569, + [SMALL_STATE(6768)] = 146617, + [SMALL_STATE(6769)] = 146665, + [SMALL_STATE(6770)] = 146713, + [SMALL_STATE(6771)] = 146759, + [SMALL_STATE(6772)] = 146805, + [SMALL_STATE(6773)] = 146853, + [SMALL_STATE(6774)] = 146901, + [SMALL_STATE(6775)] = 146947, + [SMALL_STATE(6776)] = 146995, + [SMALL_STATE(6777)] = 147043, + [SMALL_STATE(6778)] = 147091, + [SMALL_STATE(6779)] = 147139, + [SMALL_STATE(6780)] = 147185, + [SMALL_STATE(6781)] = 147233, + [SMALL_STATE(6782)] = 147279, + [SMALL_STATE(6783)] = 147323, + [SMALL_STATE(6784)] = 147371, + [SMALL_STATE(6785)] = 147415, + [SMALL_STATE(6786)] = 147461, + [SMALL_STATE(6787)] = 147507, + [SMALL_STATE(6788)] = 147555, + [SMALL_STATE(6789)] = 147601, + [SMALL_STATE(6790)] = 147647, + [SMALL_STATE(6791)] = 147693, + [SMALL_STATE(6792)] = 147741, + [SMALL_STATE(6793)] = 147787, + [SMALL_STATE(6794)] = 147833, + [SMALL_STATE(6795)] = 147879, + [SMALL_STATE(6796)] = 147927, + [SMALL_STATE(6797)] = 147973, + [SMALL_STATE(6798)] = 148019, + [SMALL_STATE(6799)] = 148065, + [SMALL_STATE(6800)] = 148113, + [SMALL_STATE(6801)] = 148159, + [SMALL_STATE(6802)] = 148207, + [SMALL_STATE(6803)] = 148255, + [SMALL_STATE(6804)] = 148301, + [SMALL_STATE(6805)] = 148349, + [SMALL_STATE(6806)] = 148397, + [SMALL_STATE(6807)] = 148441, + [SMALL_STATE(6808)] = 148489, + [SMALL_STATE(6809)] = 148537, + [SMALL_STATE(6810)] = 148583, + [SMALL_STATE(6811)] = 148631, + [SMALL_STATE(6812)] = 148679, + [SMALL_STATE(6813)] = 148725, + [SMALL_STATE(6814)] = 148773, + [SMALL_STATE(6815)] = 148821, + [SMALL_STATE(6816)] = 148869, + [SMALL_STATE(6817)] = 148917, + [SMALL_STATE(6818)] = 148965, + [SMALL_STATE(6819)] = 149011, + [SMALL_STATE(6820)] = 149057, + [SMALL_STATE(6821)] = 149103, + [SMALL_STATE(6822)] = 149149, + [SMALL_STATE(6823)] = 149193, + [SMALL_STATE(6824)] = 149239, + [SMALL_STATE(6825)] = 149287, + [SMALL_STATE(6826)] = 149331, + [SMALL_STATE(6827)] = 149379, + [SMALL_STATE(6828)] = 149425, + [SMALL_STATE(6829)] = 149473, + [SMALL_STATE(6830)] = 149519, + [SMALL_STATE(6831)] = 149565, + [SMALL_STATE(6832)] = 149613, + [SMALL_STATE(6833)] = 149661, + [SMALL_STATE(6834)] = 149707, + [SMALL_STATE(6835)] = 149753, + [SMALL_STATE(6836)] = 149799, + [SMALL_STATE(6837)] = 149845, + [SMALL_STATE(6838)] = 149891, + [SMALL_STATE(6839)] = 149937, + [SMALL_STATE(6840)] = 149983, + [SMALL_STATE(6841)] = 150029, + [SMALL_STATE(6842)] = 150075, + [SMALL_STATE(6843)] = 150107, + [SMALL_STATE(6844)] = 150153, + [SMALL_STATE(6845)] = 150201, + [SMALL_STATE(6846)] = 150247, + [SMALL_STATE(6847)] = 150295, + [SMALL_STATE(6848)] = 150341, + [SMALL_STATE(6849)] = 150387, + [SMALL_STATE(6850)] = 150435, + [SMALL_STATE(6851)] = 150481, + [SMALL_STATE(6852)] = 150525, + [SMALL_STATE(6853)] = 150571, + [SMALL_STATE(6854)] = 150617, + [SMALL_STATE(6855)] = 150663, + [SMALL_STATE(6856)] = 150704, + [SMALL_STATE(6857)] = 150745, + [SMALL_STATE(6858)] = 150786, + [SMALL_STATE(6859)] = 150827, + [SMALL_STATE(6860)] = 150872, + [SMALL_STATE(6861)] = 150913, + [SMALL_STATE(6862)] = 150954, + [SMALL_STATE(6863)] = 150999, + [SMALL_STATE(6864)] = 151040, + [SMALL_STATE(6865)] = 151085, + [SMALL_STATE(6866)] = 151126, + [SMALL_STATE(6867)] = 151167, + [SMALL_STATE(6868)] = 151208, + [SMALL_STATE(6869)] = 151253, + [SMALL_STATE(6870)] = 151298, + [SMALL_STATE(6871)] = 151343, + [SMALL_STATE(6872)] = 151384, + [SMALL_STATE(6873)] = 151425, + [SMALL_STATE(6874)] = 151466, + [SMALL_STATE(6875)] = 151507, + [SMALL_STATE(6876)] = 151548, + [SMALL_STATE(6877)] = 151589, + [SMALL_STATE(6878)] = 151630, + [SMALL_STATE(6879)] = 151675, + [SMALL_STATE(6880)] = 151720, + [SMALL_STATE(6881)] = 151765, + [SMALL_STATE(6882)] = 151806, + [SMALL_STATE(6883)] = 151851, + [SMALL_STATE(6884)] = 151888, + [SMALL_STATE(6885)] = 151929, + [SMALL_STATE(6886)] = 151970, + [SMALL_STATE(6887)] = 152011, + [SMALL_STATE(6888)] = 152052, + [SMALL_STATE(6889)] = 152093, + [SMALL_STATE(6890)] = 152134, + [SMALL_STATE(6891)] = 152175, + [SMALL_STATE(6892)] = 152216, + [SMALL_STATE(6893)] = 152257, + [SMALL_STATE(6894)] = 152298, + [SMALL_STATE(6895)] = 152339, + [SMALL_STATE(6896)] = 152380, + [SMALL_STATE(6897)] = 152421, + [SMALL_STATE(6898)] = 152462, + [SMALL_STATE(6899)] = 152503, + [SMALL_STATE(6900)] = 152544, + [SMALL_STATE(6901)] = 152585, + [SMALL_STATE(6902)] = 152626, + [SMALL_STATE(6903)] = 152667, + [SMALL_STATE(6904)] = 152712, + [SMALL_STATE(6905)] = 152753, + [SMALL_STATE(6906)] = 152794, + [SMALL_STATE(6907)] = 152839, + [SMALL_STATE(6908)] = 152880, + [SMALL_STATE(6909)] = 152921, + [SMALL_STATE(6910)] = 152962, + [SMALL_STATE(6911)] = 153007, + [SMALL_STATE(6912)] = 153048, + [SMALL_STATE(6913)] = 153085, + [SMALL_STATE(6914)] = 153126, + [SMALL_STATE(6915)] = 153167, + [SMALL_STATE(6916)] = 153208, + [SMALL_STATE(6917)] = 153253, + [SMALL_STATE(6918)] = 153294, + [SMALL_STATE(6919)] = 153335, + [SMALL_STATE(6920)] = 153380, + [SMALL_STATE(6921)] = 153421, + [SMALL_STATE(6922)] = 153462, + [SMALL_STATE(6923)] = 153503, + [SMALL_STATE(6924)] = 153544, + [SMALL_STATE(6925)] = 153585, + [SMALL_STATE(6926)] = 153626, + [SMALL_STATE(6927)] = 153660, + [SMALL_STATE(6928)] = 153684, + [SMALL_STATE(6929)] = 153718, + [SMALL_STATE(6930)] = 153748, + [SMALL_STATE(6931)] = 153778, + [SMALL_STATE(6932)] = 153812, + [SMALL_STATE(6933)] = 153852, + [SMALL_STATE(6934)] = 153876, + [SMALL_STATE(6935)] = 153910, + [SMALL_STATE(6936)] = 153947, + [SMALL_STATE(6937)] = 153984, + [SMALL_STATE(6938)] = 154013, + [SMALL_STATE(6939)] = 154050, + [SMALL_STATE(6940)] = 154087, + [SMALL_STATE(6941)] = 154124, + [SMALL_STATE(6942)] = 154161, + [SMALL_STATE(6943)] = 154198, + [SMALL_STATE(6944)] = 154235, + [SMALL_STATE(6945)] = 154272, + [SMALL_STATE(6946)] = 154309, + [SMALL_STATE(6947)] = 154346, + [SMALL_STATE(6948)] = 154383, + [SMALL_STATE(6949)] = 154420, + [SMALL_STATE(6950)] = 154457, + [SMALL_STATE(6951)] = 154494, + [SMALL_STATE(6952)] = 154531, + [SMALL_STATE(6953)] = 154558, + [SMALL_STATE(6954)] = 154595, + [SMALL_STATE(6955)] = 154632, + [SMALL_STATE(6956)] = 154669, + [SMALL_STATE(6957)] = 154706, + [SMALL_STATE(6958)] = 154743, + [SMALL_STATE(6959)] = 154780, + [SMALL_STATE(6960)] = 154809, + [SMALL_STATE(6961)] = 154846, + [SMALL_STATE(6962)] = 154883, + [SMALL_STATE(6963)] = 154920, + [SMALL_STATE(6964)] = 154957, + [SMALL_STATE(6965)] = 154994, + [SMALL_STATE(6966)] = 155031, + [SMALL_STATE(6967)] = 155068, + [SMALL_STATE(6968)] = 155105, + [SMALL_STATE(6969)] = 155142, + [SMALL_STATE(6970)] = 155179, + [SMALL_STATE(6971)] = 155216, + [SMALL_STATE(6972)] = 155253, + [SMALL_STATE(6973)] = 155290, + [SMALL_STATE(6974)] = 155327, + [SMALL_STATE(6975)] = 155361, + [SMALL_STATE(6976)] = 155395, + [SMALL_STATE(6977)] = 155423, + [SMALL_STATE(6978)] = 155457, + [SMALL_STATE(6979)] = 155491, + [SMALL_STATE(6980)] = 155525, + [SMALL_STATE(6981)] = 155559, + [SMALL_STATE(6982)] = 155593, + [SMALL_STATE(6983)] = 155627, + [SMALL_STATE(6984)] = 155661, + [SMALL_STATE(6985)] = 155695, + [SMALL_STATE(6986)] = 155729, + [SMALL_STATE(6987)] = 155759, + [SMALL_STATE(6988)] = 155793, + [SMALL_STATE(6989)] = 155829, + [SMALL_STATE(6990)] = 155863, + [SMALL_STATE(6991)] = 155897, + [SMALL_STATE(6992)] = 155931, + [SMALL_STATE(6993)] = 155965, + [SMALL_STATE(6994)] = 155993, + [SMALL_STATE(6995)] = 156027, + [SMALL_STATE(6996)] = 156063, + [SMALL_STATE(6997)] = 156087, + [SMALL_STATE(6998)] = 156123, + [SMALL_STATE(6999)] = 156159, + [SMALL_STATE(7000)] = 156193, + [SMALL_STATE(7001)] = 156229, + [SMALL_STATE(7002)] = 156253, + [SMALL_STATE(7003)] = 156289, + [SMALL_STATE(7004)] = 156323, + [SMALL_STATE(7005)] = 156357, + [SMALL_STATE(7006)] = 156391, + [SMALL_STATE(7007)] = 156425, + [SMALL_STATE(7008)] = 156459, + [SMALL_STATE(7009)] = 156493, + [SMALL_STATE(7010)] = 156527, + [SMALL_STATE(7011)] = 156561, + [SMALL_STATE(7012)] = 156595, + [SMALL_STATE(7013)] = 156629, + [SMALL_STATE(7014)] = 156663, + [SMALL_STATE(7015)] = 156697, + [SMALL_STATE(7016)] = 156733, + [SMALL_STATE(7017)] = 156769, + [SMALL_STATE(7018)] = 156803, + [SMALL_STATE(7019)] = 156837, + [SMALL_STATE(7020)] = 156865, + [SMALL_STATE(7021)] = 156899, + [SMALL_STATE(7022)] = 156933, + [SMALL_STATE(7023)] = 156967, + [SMALL_STATE(7024)] = 157000, + [SMALL_STATE(7025)] = 157033, + [SMALL_STATE(7026)] = 157064, + [SMALL_STATE(7027)] = 157097, + [SMALL_STATE(7028)] = 157128, + [SMALL_STATE(7029)] = 157159, + [SMALL_STATE(7030)] = 157190, + [SMALL_STATE(7031)] = 157223, + [SMALL_STATE(7032)] = 157254, + [SMALL_STATE(7033)] = 157285, + [SMALL_STATE(7034)] = 157316, + [SMALL_STATE(7035)] = 157347, + [SMALL_STATE(7036)] = 157380, + [SMALL_STATE(7037)] = 157411, + [SMALL_STATE(7038)] = 157444, + [SMALL_STATE(7039)] = 157475, + [SMALL_STATE(7040)] = 157508, + [SMALL_STATE(7041)] = 157539, + [SMALL_STATE(7042)] = 157570, + [SMALL_STATE(7043)] = 157603, + [SMALL_STATE(7044)] = 157636, + [SMALL_STATE(7045)] = 157667, + [SMALL_STATE(7046)] = 157700, + [SMALL_STATE(7047)] = 157731, + [SMALL_STATE(7048)] = 157762, + [SMALL_STATE(7049)] = 157793, + [SMALL_STATE(7050)] = 157826, + [SMALL_STATE(7051)] = 157859, + [SMALL_STATE(7052)] = 157892, + [SMALL_STATE(7053)] = 157925, + [SMALL_STATE(7054)] = 157958, + [SMALL_STATE(7055)] = 157989, + [SMALL_STATE(7056)] = 158022, + [SMALL_STATE(7057)] = 158057, + [SMALL_STATE(7058)] = 158088, + [SMALL_STATE(7059)] = 158119, + [SMALL_STATE(7060)] = 158150, + [SMALL_STATE(7061)] = 158183, + [SMALL_STATE(7062)] = 158216, + [SMALL_STATE(7063)] = 158247, + [SMALL_STATE(7064)] = 158278, + [SMALL_STATE(7065)] = 158311, + [SMALL_STATE(7066)] = 158344, + [SMALL_STATE(7067)] = 158375, + [SMALL_STATE(7068)] = 158406, + [SMALL_STATE(7069)] = 158439, + [SMALL_STATE(7070)] = 158470, + [SMALL_STATE(7071)] = 158503, + [SMALL_STATE(7072)] = 158534, + [SMALL_STATE(7073)] = 158565, + [SMALL_STATE(7074)] = 158596, + [SMALL_STATE(7075)] = 158629, + [SMALL_STATE(7076)] = 158660, + [SMALL_STATE(7077)] = 158693, + [SMALL_STATE(7078)] = 158724, + [SMALL_STATE(7079)] = 158757, + [SMALL_STATE(7080)] = 158790, + [SMALL_STATE(7081)] = 158821, + [SMALL_STATE(7082)] = 158854, + [SMALL_STATE(7083)] = 158887, + [SMALL_STATE(7084)] = 158920, + [SMALL_STATE(7085)] = 158951, + [SMALL_STATE(7086)] = 158982, + [SMALL_STATE(7087)] = 159015, + [SMALL_STATE(7088)] = 159048, + [SMALL_STATE(7089)] = 159077, + [SMALL_STATE(7090)] = 159108, + [SMALL_STATE(7091)] = 159139, + [SMALL_STATE(7092)] = 159170, + [SMALL_STATE(7093)] = 159203, + [SMALL_STATE(7094)] = 159236, + [SMALL_STATE(7095)] = 159267, + [SMALL_STATE(7096)] = 159298, + [SMALL_STATE(7097)] = 159331, + [SMALL_STATE(7098)] = 159362, + [SMALL_STATE(7099)] = 159395, + [SMALL_STATE(7100)] = 159426, + [SMALL_STATE(7101)] = 159459, + [SMALL_STATE(7102)] = 159492, + [SMALL_STATE(7103)] = 159525, + [SMALL_STATE(7104)] = 159558, + [SMALL_STATE(7105)] = 159591, + [SMALL_STATE(7106)] = 159626, + [SMALL_STATE(7107)] = 159657, + [SMALL_STATE(7108)] = 159690, + [SMALL_STATE(7109)] = 159723, + [SMALL_STATE(7110)] = 159754, + [SMALL_STATE(7111)] = 159785, + [SMALL_STATE(7112)] = 159818, + [SMALL_STATE(7113)] = 159849, + [SMALL_STATE(7114)] = 159880, + [SMALL_STATE(7115)] = 159913, + [SMALL_STATE(7116)] = 159944, + [SMALL_STATE(7117)] = 159975, + [SMALL_STATE(7118)] = 160008, + [SMALL_STATE(7119)] = 160039, + [SMALL_STATE(7120)] = 160070, + [SMALL_STATE(7121)] = 160093, + [SMALL_STATE(7122)] = 160126, + [SMALL_STATE(7123)] = 160159, + [SMALL_STATE(7124)] = 160192, + [SMALL_STATE(7125)] = 160223, + [SMALL_STATE(7126)] = 160256, + [SMALL_STATE(7127)] = 160289, + [SMALL_STATE(7128)] = 160320, + [SMALL_STATE(7129)] = 160353, + [SMALL_STATE(7130)] = 160384, + [SMALL_STATE(7131)] = 160417, + [SMALL_STATE(7132)] = 160448, + [SMALL_STATE(7133)] = 160481, + [SMALL_STATE(7134)] = 160512, + [SMALL_STATE(7135)] = 160545, + [SMALL_STATE(7136)] = 160576, + [SMALL_STATE(7137)] = 160607, + [SMALL_STATE(7138)] = 160630, + [SMALL_STATE(7139)] = 160661, + [SMALL_STATE(7140)] = 160692, + [SMALL_STATE(7141)] = 160723, + [SMALL_STATE(7142)] = 160756, + [SMALL_STATE(7143)] = 160789, + [SMALL_STATE(7144)] = 160820, + [SMALL_STATE(7145)] = 160853, + [SMALL_STATE(7146)] = 160876, + [SMALL_STATE(7147)] = 160909, + [SMALL_STATE(7148)] = 160942, + [SMALL_STATE(7149)] = 160973, + [SMALL_STATE(7150)] = 161004, + [SMALL_STATE(7151)] = 161037, + [SMALL_STATE(7152)] = 161068, + [SMALL_STATE(7153)] = 161097, + [SMALL_STATE(7154)] = 161130, + [SMALL_STATE(7155)] = 161163, + [SMALL_STATE(7156)] = 161194, + [SMALL_STATE(7157)] = 161227, + [SMALL_STATE(7158)] = 161260, + [SMALL_STATE(7159)] = 161291, + [SMALL_STATE(7160)] = 161322, + [SMALL_STATE(7161)] = 161345, + [SMALL_STATE(7162)] = 161378, + [SMALL_STATE(7163)] = 161411, + [SMALL_STATE(7164)] = 161442, + [SMALL_STATE(7165)] = 161475, + [SMALL_STATE(7166)] = 161506, + [SMALL_STATE(7167)] = 161537, + [SMALL_STATE(7168)] = 161570, + [SMALL_STATE(7169)] = 161603, + [SMALL_STATE(7170)] = 161634, + [SMALL_STATE(7171)] = 161667, + [SMALL_STATE(7172)] = 161698, + [SMALL_STATE(7173)] = 161731, + [SMALL_STATE(7174)] = 161762, + [SMALL_STATE(7175)] = 161795, + [SMALL_STATE(7176)] = 161826, + [SMALL_STATE(7177)] = 161859, + [SMALL_STATE(7178)] = 161890, + [SMALL_STATE(7179)] = 161923, + [SMALL_STATE(7180)] = 161954, + [SMALL_STATE(7181)] = 161985, + [SMALL_STATE(7182)] = 162016, + [SMALL_STATE(7183)] = 162047, + [SMALL_STATE(7184)] = 162080, + [SMALL_STATE(7185)] = 162113, + [SMALL_STATE(7186)] = 162144, + [SMALL_STATE(7187)] = 162175, + [SMALL_STATE(7188)] = 162208, + [SMALL_STATE(7189)] = 162239, + [SMALL_STATE(7190)] = 162272, + [SMALL_STATE(7191)] = 162303, + [SMALL_STATE(7192)] = 162336, + [SMALL_STATE(7193)] = 162369, + [SMALL_STATE(7194)] = 162396, + [SMALL_STATE(7195)] = 162429, + [SMALL_STATE(7196)] = 162461, + [SMALL_STATE(7197)] = 162493, + [SMALL_STATE(7198)] = 162525, + [SMALL_STATE(7199)] = 162557, + [SMALL_STATE(7200)] = 162587, + [SMALL_STATE(7201)] = 162619, + [SMALL_STATE(7202)] = 162651, + [SMALL_STATE(7203)] = 162681, + [SMALL_STATE(7204)] = 162711, + [SMALL_STATE(7205)] = 162743, + [SMALL_STATE(7206)] = 162775, + [SMALL_STATE(7207)] = 162805, + [SMALL_STATE(7208)] = 162837, + [SMALL_STATE(7209)] = 162867, + [SMALL_STATE(7210)] = 162899, + [SMALL_STATE(7211)] = 162931, + [SMALL_STATE(7212)] = 162961, + [SMALL_STATE(7213)] = 162991, + [SMALL_STATE(7214)] = 163023, + [SMALL_STATE(7215)] = 163055, + [SMALL_STATE(7216)] = 163085, + [SMALL_STATE(7217)] = 163117, + [SMALL_STATE(7218)] = 163149, + [SMALL_STATE(7219)] = 163181, + [SMALL_STATE(7220)] = 163211, + [SMALL_STATE(7221)] = 163243, + [SMALL_STATE(7222)] = 163275, + [SMALL_STATE(7223)] = 163307, + [SMALL_STATE(7224)] = 163339, + [SMALL_STATE(7225)] = 163371, + [SMALL_STATE(7226)] = 163403, + [SMALL_STATE(7227)] = 163433, + [SMALL_STATE(7228)] = 163463, + [SMALL_STATE(7229)] = 163495, + [SMALL_STATE(7230)] = 163525, + [SMALL_STATE(7231)] = 163555, + [SMALL_STATE(7232)] = 163587, + [SMALL_STATE(7233)] = 163619, + [SMALL_STATE(7234)] = 163651, + [SMALL_STATE(7235)] = 163683, + [SMALL_STATE(7236)] = 163713, + [SMALL_STATE(7237)] = 163743, + [SMALL_STATE(7238)] = 163773, + [SMALL_STATE(7239)] = 163805, + [SMALL_STATE(7240)] = 163835, + [SMALL_STATE(7241)] = 163865, + [SMALL_STATE(7242)] = 163897, + [SMALL_STATE(7243)] = 163929, + [SMALL_STATE(7244)] = 163961, + [SMALL_STATE(7245)] = 163991, + [SMALL_STATE(7246)] = 164021, + [SMALL_STATE(7247)] = 164053, + [SMALL_STATE(7248)] = 164085, + [SMALL_STATE(7249)] = 164115, + [SMALL_STATE(7250)] = 164145, + [SMALL_STATE(7251)] = 164177, + [SMALL_STATE(7252)] = 164207, + [SMALL_STATE(7253)] = 164239, + [SMALL_STATE(7254)] = 164271, + [SMALL_STATE(7255)] = 164303, + [SMALL_STATE(7256)] = 164333, + [SMALL_STATE(7257)] = 164365, + [SMALL_STATE(7258)] = 164395, + [SMALL_STATE(7259)] = 164427, + [SMALL_STATE(7260)] = 164457, + [SMALL_STATE(7261)] = 164489, + [SMALL_STATE(7262)] = 164519, + [SMALL_STATE(7263)] = 164551, + [SMALL_STATE(7264)] = 164583, + [SMALL_STATE(7265)] = 164615, + [SMALL_STATE(7266)] = 164645, + [SMALL_STATE(7267)] = 164677, + [SMALL_STATE(7268)] = 164707, + [SMALL_STATE(7269)] = 164739, + [SMALL_STATE(7270)] = 164771, + [SMALL_STATE(7271)] = 164801, + [SMALL_STATE(7272)] = 164831, + [SMALL_STATE(7273)] = 164861, + [SMALL_STATE(7274)] = 164893, + [SMALL_STATE(7275)] = 164923, + [SMALL_STATE(7276)] = 164953, + [SMALL_STATE(7277)] = 164983, + [SMALL_STATE(7278)] = 165015, + [SMALL_STATE(7279)] = 165045, + [SMALL_STATE(7280)] = 165077, + [SMALL_STATE(7281)] = 165107, + [SMALL_STATE(7282)] = 165139, + [SMALL_STATE(7283)] = 165169, + [SMALL_STATE(7284)] = 165199, + [SMALL_STATE(7285)] = 165229, + [SMALL_STATE(7286)] = 165259, + [SMALL_STATE(7287)] = 165291, + [SMALL_STATE(7288)] = 165323, + [SMALL_STATE(7289)] = 165355, + [SMALL_STATE(7290)] = 165387, + [SMALL_STATE(7291)] = 165419, + [SMALL_STATE(7292)] = 165451, + [SMALL_STATE(7293)] = 165481, + [SMALL_STATE(7294)] = 165513, + [SMALL_STATE(7295)] = 165545, + [SMALL_STATE(7296)] = 165577, + [SMALL_STATE(7297)] = 165609, + [SMALL_STATE(7298)] = 165639, + [SMALL_STATE(7299)] = 165669, + [SMALL_STATE(7300)] = 165699, + [SMALL_STATE(7301)] = 165729, + [SMALL_STATE(7302)] = 165759, + [SMALL_STATE(7303)] = 165791, + [SMALL_STATE(7304)] = 165821, + [SMALL_STATE(7305)] = 165851, + [SMALL_STATE(7306)] = 165883, + [SMALL_STATE(7307)] = 165915, + [SMALL_STATE(7308)] = 165945, + [SMALL_STATE(7309)] = 165977, + [SMALL_STATE(7310)] = 166009, + [SMALL_STATE(7311)] = 166041, + [SMALL_STATE(7312)] = 166073, + [SMALL_STATE(7313)] = 166105, + [SMALL_STATE(7314)] = 166137, + [SMALL_STATE(7315)] = 166167, + [SMALL_STATE(7316)] = 166199, + [SMALL_STATE(7317)] = 166231, + [SMALL_STATE(7318)] = 166263, + [SMALL_STATE(7319)] = 166295, + [SMALL_STATE(7320)] = 166327, + [SMALL_STATE(7321)] = 166359, + [SMALL_STATE(7322)] = 166391, + [SMALL_STATE(7323)] = 166423, + [SMALL_STATE(7324)] = 166455, + [SMALL_STATE(7325)] = 166487, + [SMALL_STATE(7326)] = 166519, + [SMALL_STATE(7327)] = 166551, + [SMALL_STATE(7328)] = 166583, + [SMALL_STATE(7329)] = 166615, + [SMALL_STATE(7330)] = 166647, + [SMALL_STATE(7331)] = 166679, + [SMALL_STATE(7332)] = 166709, + [SMALL_STATE(7333)] = 166739, + [SMALL_STATE(7334)] = 166771, + [SMALL_STATE(7335)] = 166803, + [SMALL_STATE(7336)] = 166833, + [SMALL_STATE(7337)] = 166865, + [SMALL_STATE(7338)] = 166897, + [SMALL_STATE(7339)] = 166929, + [SMALL_STATE(7340)] = 166959, + [SMALL_STATE(7341)] = 166991, + [SMALL_STATE(7342)] = 167023, + [SMALL_STATE(7343)] = 167053, + [SMALL_STATE(7344)] = 167085, + [SMALL_STATE(7345)] = 167115, + [SMALL_STATE(7346)] = 167147, + [SMALL_STATE(7347)] = 167177, + [SMALL_STATE(7348)] = 167207, + [SMALL_STATE(7349)] = 167239, + [SMALL_STATE(7350)] = 167271, + [SMALL_STATE(7351)] = 167303, + [SMALL_STATE(7352)] = 167333, + [SMALL_STATE(7353)] = 167365, + [SMALL_STATE(7354)] = 167397, + [SMALL_STATE(7355)] = 167429, + [SMALL_STATE(7356)] = 167461, + [SMALL_STATE(7357)] = 167491, + [SMALL_STATE(7358)] = 167523, + [SMALL_STATE(7359)] = 167553, + [SMALL_STATE(7360)] = 167585, + [SMALL_STATE(7361)] = 167617, + [SMALL_STATE(7362)] = 167647, + [SMALL_STATE(7363)] = 167679, + [SMALL_STATE(7364)] = 167711, + [SMALL_STATE(7365)] = 167741, + [SMALL_STATE(7366)] = 167773, + [SMALL_STATE(7367)] = 167803, + [SMALL_STATE(7368)] = 167835, + [SMALL_STATE(7369)] = 167865, + [SMALL_STATE(7370)] = 167897, + [SMALL_STATE(7371)] = 167929, + [SMALL_STATE(7372)] = 167961, + [SMALL_STATE(7373)] = 167991, + [SMALL_STATE(7374)] = 168023, + [SMALL_STATE(7375)] = 168053, + [SMALL_STATE(7376)] = 168083, + [SMALL_STATE(7377)] = 168115, + [SMALL_STATE(7378)] = 168147, + [SMALL_STATE(7379)] = 168179, + [SMALL_STATE(7380)] = 168211, + [SMALL_STATE(7381)] = 168243, + [SMALL_STATE(7382)] = 168273, + [SMALL_STATE(7383)] = 168305, + [SMALL_STATE(7384)] = 168337, + [SMALL_STATE(7385)] = 168369, + [SMALL_STATE(7386)] = 168399, + [SMALL_STATE(7387)] = 168431, + [SMALL_STATE(7388)] = 168461, + [SMALL_STATE(7389)] = 168493, + [SMALL_STATE(7390)] = 168523, + [SMALL_STATE(7391)] = 168555, + [SMALL_STATE(7392)] = 168587, + [SMALL_STATE(7393)] = 168617, + [SMALL_STATE(7394)] = 168649, + [SMALL_STATE(7395)] = 168681, + [SMALL_STATE(7396)] = 168711, + [SMALL_STATE(7397)] = 168743, + [SMALL_STATE(7398)] = 168775, + [SMALL_STATE(7399)] = 168807, + [SMALL_STATE(7400)] = 168837, + [SMALL_STATE(7401)] = 168869, + [SMALL_STATE(7402)] = 168899, + [SMALL_STATE(7403)] = 168929, + [SMALL_STATE(7404)] = 168959, + [SMALL_STATE(7405)] = 168989, + [SMALL_STATE(7406)] = 169019, + [SMALL_STATE(7407)] = 169051, + [SMALL_STATE(7408)] = 169081, + [SMALL_STATE(7409)] = 169113, + [SMALL_STATE(7410)] = 169145, + [SMALL_STATE(7411)] = 169175, + [SMALL_STATE(7412)] = 169207, + [SMALL_STATE(7413)] = 169239, + [SMALL_STATE(7414)] = 169269, + [SMALL_STATE(7415)] = 169299, + [SMALL_STATE(7416)] = 169329, + [SMALL_STATE(7417)] = 169359, + [SMALL_STATE(7418)] = 169391, + [SMALL_STATE(7419)] = 169423, + [SMALL_STATE(7420)] = 169448, + [SMALL_STATE(7421)] = 169485, + [SMALL_STATE(7422)] = 169506, + [SMALL_STATE(7423)] = 169527, + [SMALL_STATE(7424)] = 169548, + [SMALL_STATE(7425)] = 169569, + [SMALL_STATE(7426)] = 169590, + [SMALL_STATE(7427)] = 169611, + [SMALL_STATE(7428)] = 169632, + [SMALL_STATE(7429)] = 169657, + [SMALL_STATE(7430)] = 169678, + [SMALL_STATE(7431)] = 169699, + [SMALL_STATE(7432)] = 169720, + [SMALL_STATE(7433)] = 169747, + [SMALL_STATE(7434)] = 169772, + [SMALL_STATE(7435)] = 169797, + [SMALL_STATE(7436)] = 169823, + [SMALL_STATE(7437)] = 169849, + [SMALL_STATE(7438)] = 169875, + [SMALL_STATE(7439)] = 169901, + [SMALL_STATE(7440)] = 169927, + [SMALL_STATE(7441)] = 169953, + [SMALL_STATE(7442)] = 169977, + [SMALL_STATE(7443)] = 170003, + [SMALL_STATE(7444)] = 170029, + [SMALL_STATE(7445)] = 170055, + [SMALL_STATE(7446)] = 170081, + [SMALL_STATE(7447)] = 170107, + [SMALL_STATE(7448)] = 170133, + [SMALL_STATE(7449)] = 170159, + [SMALL_STATE(7450)] = 170185, + [SMALL_STATE(7451)] = 170211, + [SMALL_STATE(7452)] = 170237, + [SMALL_STATE(7453)] = 170263, + [SMALL_STATE(7454)] = 170289, + [SMALL_STATE(7455)] = 170315, + [SMALL_STATE(7456)] = 170339, + [SMALL_STATE(7457)] = 170365, + [SMALL_STATE(7458)] = 170391, + [SMALL_STATE(7459)] = 170415, + [SMALL_STATE(7460)] = 170441, + [SMALL_STATE(7461)] = 170467, + [SMALL_STATE(7462)] = 170493, + [SMALL_STATE(7463)] = 170519, + [SMALL_STATE(7464)] = 170545, + [SMALL_STATE(7465)] = 170571, + [SMALL_STATE(7466)] = 170605, + [SMALL_STATE(7467)] = 170631, + [SMALL_STATE(7468)] = 170657, + [SMALL_STATE(7469)] = 170683, + [SMALL_STATE(7470)] = 170709, + [SMALL_STATE(7471)] = 170735, + [SMALL_STATE(7472)] = 170759, + [SMALL_STATE(7473)] = 170785, + [SMALL_STATE(7474)] = 170811, + [SMALL_STATE(7475)] = 170837, + [SMALL_STATE(7476)] = 170863, + [SMALL_STATE(7477)] = 170889, + [SMALL_STATE(7478)] = 170915, + [SMALL_STATE(7479)] = 170941, + [SMALL_STATE(7480)] = 170967, + [SMALL_STATE(7481)] = 170993, + [SMALL_STATE(7482)] = 171019, + [SMALL_STATE(7483)] = 171045, + [SMALL_STATE(7484)] = 171071, + [SMALL_STATE(7485)] = 171097, + [SMALL_STATE(7486)] = 171123, + [SMALL_STATE(7487)] = 171149, + [SMALL_STATE(7488)] = 171175, + [SMALL_STATE(7489)] = 171201, + [SMALL_STATE(7490)] = 171225, + [SMALL_STATE(7491)] = 171251, + [SMALL_STATE(7492)] = 171277, + [SMALL_STATE(7493)] = 171303, + [SMALL_STATE(7494)] = 171329, + [SMALL_STATE(7495)] = 171355, + [SMALL_STATE(7496)] = 171381, + [SMALL_STATE(7497)] = 171407, + [SMALL_STATE(7498)] = 171433, + [SMALL_STATE(7499)] = 171459, + [SMALL_STATE(7500)] = 171485, + [SMALL_STATE(7501)] = 171511, + [SMALL_STATE(7502)] = 171537, + [SMALL_STATE(7503)] = 171571, + [SMALL_STATE(7504)] = 171597, + [SMALL_STATE(7505)] = 171623, + [SMALL_STATE(7506)] = 171649, + [SMALL_STATE(7507)] = 171675, + [SMALL_STATE(7508)] = 171699, + [SMALL_STATE(7509)] = 171723, + [SMALL_STATE(7510)] = 171749, + [SMALL_STATE(7511)] = 171775, + [SMALL_STATE(7512)] = 171801, + [SMALL_STATE(7513)] = 171827, + [SMALL_STATE(7514)] = 171851, + [SMALL_STATE(7515)] = 171877, + [SMALL_STATE(7516)] = 171903, + [SMALL_STATE(7517)] = 171929, + [SMALL_STATE(7518)] = 171955, + [SMALL_STATE(7519)] = 171977, + [SMALL_STATE(7520)] = 172003, + [SMALL_STATE(7521)] = 172029, + [SMALL_STATE(7522)] = 172055, + [SMALL_STATE(7523)] = 172081, + [SMALL_STATE(7524)] = 172103, + [SMALL_STATE(7525)] = 172129, + [SMALL_STATE(7526)] = 172155, + [SMALL_STATE(7527)] = 172179, + [SMALL_STATE(7528)] = 172205, + [SMALL_STATE(7529)] = 172231, + [SMALL_STATE(7530)] = 172257, + [SMALL_STATE(7531)] = 172283, + [SMALL_STATE(7532)] = 172307, + [SMALL_STATE(7533)] = 172333, + [SMALL_STATE(7534)] = 172359, + [SMALL_STATE(7535)] = 172385, + [SMALL_STATE(7536)] = 172409, + [SMALL_STATE(7537)] = 172433, + [SMALL_STATE(7538)] = 172457, + [SMALL_STATE(7539)] = 172483, + [SMALL_STATE(7540)] = 172507, + [SMALL_STATE(7541)] = 172531, + [SMALL_STATE(7542)] = 172557, + [SMALL_STATE(7543)] = 172583, + [SMALL_STATE(7544)] = 172607, + [SMALL_STATE(7545)] = 172631, + [SMALL_STATE(7546)] = 172657, + [SMALL_STATE(7547)] = 172681, + [SMALL_STATE(7548)] = 172707, + [SMALL_STATE(7549)] = 172733, + [SMALL_STATE(7550)] = 172753, + [SMALL_STATE(7551)] = 172779, + [SMALL_STATE(7552)] = 172805, + [SMALL_STATE(7553)] = 172839, + [SMALL_STATE(7554)] = 172865, + [SMALL_STATE(7555)] = 172891, + [SMALL_STATE(7556)] = 172911, + [SMALL_STATE(7557)] = 172935, + [SMALL_STATE(7558)] = 172961, + [SMALL_STATE(7559)] = 172987, + [SMALL_STATE(7560)] = 173011, + [SMALL_STATE(7561)] = 173037, + [SMALL_STATE(7562)] = 173063, + [SMALL_STATE(7563)] = 173097, + [SMALL_STATE(7564)] = 173123, + [SMALL_STATE(7565)] = 173157, + [SMALL_STATE(7566)] = 173179, + [SMALL_STATE(7567)] = 173205, + [SMALL_STATE(7568)] = 173231, + [SMALL_STATE(7569)] = 173257, + [SMALL_STATE(7570)] = 173283, + [SMALL_STATE(7571)] = 173309, + [SMALL_STATE(7572)] = 173335, + [SMALL_STATE(7573)] = 173361, + [SMALL_STATE(7574)] = 173385, + [SMALL_STATE(7575)] = 173407, + [SMALL_STATE(7576)] = 173433, + [SMALL_STATE(7577)] = 173457, + [SMALL_STATE(7578)] = 173483, + [SMALL_STATE(7579)] = 173509, + [SMALL_STATE(7580)] = 173535, + [SMALL_STATE(7581)] = 173557, + [SMALL_STATE(7582)] = 173581, + [SMALL_STATE(7583)] = 173607, + [SMALL_STATE(7584)] = 173633, + [SMALL_STATE(7585)] = 173659, + [SMALL_STATE(7586)] = 173685, + [SMALL_STATE(7587)] = 173711, + [SMALL_STATE(7588)] = 173737, + [SMALL_STATE(7589)] = 173771, + [SMALL_STATE(7590)] = 173797, + [SMALL_STATE(7591)] = 173823, + [SMALL_STATE(7592)] = 173849, + [SMALL_STATE(7593)] = 173875, + [SMALL_STATE(7594)] = 173901, + [SMALL_STATE(7595)] = 173927, + [SMALL_STATE(7596)] = 173951, + [SMALL_STATE(7597)] = 173982, + [SMALL_STATE(7598)] = 174005, + [SMALL_STATE(7599)] = 174028, + [SMALL_STATE(7600)] = 174051, + [SMALL_STATE(7601)] = 174074, + [SMALL_STATE(7602)] = 174097, + [SMALL_STATE(7603)] = 174120, + [SMALL_STATE(7604)] = 174143, + [SMALL_STATE(7605)] = 174166, + [SMALL_STATE(7606)] = 174197, + [SMALL_STATE(7607)] = 174220, + [SMALL_STATE(7608)] = 174243, + [SMALL_STATE(7609)] = 174266, + [SMALL_STATE(7610)] = 174289, + [SMALL_STATE(7611)] = 174312, + [SMALL_STATE(7612)] = 174333, + [SMALL_STATE(7613)] = 174356, + [SMALL_STATE(7614)] = 174379, + [SMALL_STATE(7615)] = 174402, + [SMALL_STATE(7616)] = 174425, + [SMALL_STATE(7617)] = 174448, + [SMALL_STATE(7618)] = 174471, + [SMALL_STATE(7619)] = 174494, + [SMALL_STATE(7620)] = 174517, + [SMALL_STATE(7621)] = 174540, + [SMALL_STATE(7622)] = 174563, + [SMALL_STATE(7623)] = 174586, + [SMALL_STATE(7624)] = 174609, + [SMALL_STATE(7625)] = 174632, + [SMALL_STATE(7626)] = 174655, + [SMALL_STATE(7627)] = 174686, + [SMALL_STATE(7628)] = 174709, + [SMALL_STATE(7629)] = 174732, + [SMALL_STATE(7630)] = 174753, + [SMALL_STATE(7631)] = 174776, + [SMALL_STATE(7632)] = 174799, + [SMALL_STATE(7633)] = 174822, + [SMALL_STATE(7634)] = 174839, + [SMALL_STATE(7635)] = 174862, + [SMALL_STATE(7636)] = 174885, + [SMALL_STATE(7637)] = 174908, + [SMALL_STATE(7638)] = 174931, + [SMALL_STATE(7639)] = 174954, + [SMALL_STATE(7640)] = 174977, + [SMALL_STATE(7641)] = 175000, + [SMALL_STATE(7642)] = 175023, + [SMALL_STATE(7643)] = 175046, + [SMALL_STATE(7644)] = 175069, + [SMALL_STATE(7645)] = 175092, + [SMALL_STATE(7646)] = 175115, + [SMALL_STATE(7647)] = 175138, + [SMALL_STATE(7648)] = 175161, + [SMALL_STATE(7649)] = 175184, + [SMALL_STATE(7650)] = 175207, + [SMALL_STATE(7651)] = 175238, + [SMALL_STATE(7652)] = 175261, + [SMALL_STATE(7653)] = 175284, + [SMALL_STATE(7654)] = 175307, + [SMALL_STATE(7655)] = 175330, + [SMALL_STATE(7656)] = 175361, + [SMALL_STATE(7657)] = 175384, + [SMALL_STATE(7658)] = 175407, + [SMALL_STATE(7659)] = 175424, + [SMALL_STATE(7660)] = 175455, + [SMALL_STATE(7661)] = 175486, + [SMALL_STATE(7662)] = 175509, + [SMALL_STATE(7663)] = 175532, + [SMALL_STATE(7664)] = 175555, + [SMALL_STATE(7665)] = 175578, + [SMALL_STATE(7666)] = 175601, + [SMALL_STATE(7667)] = 175624, + [SMALL_STATE(7668)] = 175647, + [SMALL_STATE(7669)] = 175670, + [SMALL_STATE(7670)] = 175693, + [SMALL_STATE(7671)] = 175716, + [SMALL_STATE(7672)] = 175739, + [SMALL_STATE(7673)] = 175762, + [SMALL_STATE(7674)] = 175785, + [SMALL_STATE(7675)] = 175816, + [SMALL_STATE(7676)] = 175839, + [SMALL_STATE(7677)] = 175862, + [SMALL_STATE(7678)] = 175885, + [SMALL_STATE(7679)] = 175908, + [SMALL_STATE(7680)] = 175931, + [SMALL_STATE(7681)] = 175954, + [SMALL_STATE(7682)] = 175977, + [SMALL_STATE(7683)] = 176000, + [SMALL_STATE(7684)] = 176023, + [SMALL_STATE(7685)] = 176046, + [SMALL_STATE(7686)] = 176069, + [SMALL_STATE(7687)] = 176092, + [SMALL_STATE(7688)] = 176115, + [SMALL_STATE(7689)] = 176138, + [SMALL_STATE(7690)] = 176161, + [SMALL_STATE(7691)] = 176184, + [SMALL_STATE(7692)] = 176207, + [SMALL_STATE(7693)] = 176230, + [SMALL_STATE(7694)] = 176253, + [SMALL_STATE(7695)] = 176276, + [SMALL_STATE(7696)] = 176299, + [SMALL_STATE(7697)] = 176322, + [SMALL_STATE(7698)] = 176345, + [SMALL_STATE(7699)] = 176368, + [SMALL_STATE(7700)] = 176391, + [SMALL_STATE(7701)] = 176414, + [SMALL_STATE(7702)] = 176437, + [SMALL_STATE(7703)] = 176460, + [SMALL_STATE(7704)] = 176483, + [SMALL_STATE(7705)] = 176506, + [SMALL_STATE(7706)] = 176529, + [SMALL_STATE(7707)] = 176552, + [SMALL_STATE(7708)] = 176575, + [SMALL_STATE(7709)] = 176606, + [SMALL_STATE(7710)] = 176629, + [SMALL_STATE(7711)] = 176652, + [SMALL_STATE(7712)] = 176675, + [SMALL_STATE(7713)] = 176698, + [SMALL_STATE(7714)] = 176721, + [SMALL_STATE(7715)] = 176744, + [SMALL_STATE(7716)] = 176761, + [SMALL_STATE(7717)] = 176784, + [SMALL_STATE(7718)] = 176807, + [SMALL_STATE(7719)] = 176830, + [SMALL_STATE(7720)] = 176853, + [SMALL_STATE(7721)] = 176876, + [SMALL_STATE(7722)] = 176897, + [SMALL_STATE(7723)] = 176928, + [SMALL_STATE(7724)] = 176951, + [SMALL_STATE(7725)] = 176974, + [SMALL_STATE(7726)] = 176997, + [SMALL_STATE(7727)] = 177020, + [SMALL_STATE(7728)] = 177043, + [SMALL_STATE(7729)] = 177066, + [SMALL_STATE(7730)] = 177089, + [SMALL_STATE(7731)] = 177112, + [SMALL_STATE(7732)] = 177135, + [SMALL_STATE(7733)] = 177158, + [SMALL_STATE(7734)] = 177181, + [SMALL_STATE(7735)] = 177204, + [SMALL_STATE(7736)] = 177227, + [SMALL_STATE(7737)] = 177250, + [SMALL_STATE(7738)] = 177271, + [SMALL_STATE(7739)] = 177294, + [SMALL_STATE(7740)] = 177317, + [SMALL_STATE(7741)] = 177340, + [SMALL_STATE(7742)] = 177363, + [SMALL_STATE(7743)] = 177386, + [SMALL_STATE(7744)] = 177409, + [SMALL_STATE(7745)] = 177432, + [SMALL_STATE(7746)] = 177463, + [SMALL_STATE(7747)] = 177486, + [SMALL_STATE(7748)] = 177509, + [SMALL_STATE(7749)] = 177532, + [SMALL_STATE(7750)] = 177563, + [SMALL_STATE(7751)] = 177586, + [SMALL_STATE(7752)] = 177609, + [SMALL_STATE(7753)] = 177632, + [SMALL_STATE(7754)] = 177655, + [SMALL_STATE(7755)] = 177678, + [SMALL_STATE(7756)] = 177701, + [SMALL_STATE(7757)] = 177724, + [SMALL_STATE(7758)] = 177747, + [SMALL_STATE(7759)] = 177770, + [SMALL_STATE(7760)] = 177793, + [SMALL_STATE(7761)] = 177816, + [SMALL_STATE(7762)] = 177839, + [SMALL_STATE(7763)] = 177862, + [SMALL_STATE(7764)] = 177885, + [SMALL_STATE(7765)] = 177908, + [SMALL_STATE(7766)] = 177931, + [SMALL_STATE(7767)] = 177962, + [SMALL_STATE(7768)] = 177985, + [SMALL_STATE(7769)] = 178008, + [SMALL_STATE(7770)] = 178031, + [SMALL_STATE(7771)] = 178054, + [SMALL_STATE(7772)] = 178077, + [SMALL_STATE(7773)] = 178100, + [SMALL_STATE(7774)] = 178123, + [SMALL_STATE(7775)] = 178146, + [SMALL_STATE(7776)] = 178169, + [SMALL_STATE(7777)] = 178192, + [SMALL_STATE(7778)] = 178215, + [SMALL_STATE(7779)] = 178246, + [SMALL_STATE(7780)] = 178269, + [SMALL_STATE(7781)] = 178292, + [SMALL_STATE(7782)] = 178315, + [SMALL_STATE(7783)] = 178338, + [SMALL_STATE(7784)] = 178361, + [SMALL_STATE(7785)] = 178384, + [SMALL_STATE(7786)] = 178407, + [SMALL_STATE(7787)] = 178430, + [SMALL_STATE(7788)] = 178453, + [SMALL_STATE(7789)] = 178476, + [SMALL_STATE(7790)] = 178499, + [SMALL_STATE(7791)] = 178522, + [SMALL_STATE(7792)] = 178545, + [SMALL_STATE(7793)] = 178576, + [SMALL_STATE(7794)] = 178599, + [SMALL_STATE(7795)] = 178630, + [SMALL_STATE(7796)] = 178653, + [SMALL_STATE(7797)] = 178684, + [SMALL_STATE(7798)] = 178707, + [SMALL_STATE(7799)] = 178730, + [SMALL_STATE(7800)] = 178753, + [SMALL_STATE(7801)] = 178776, + [SMALL_STATE(7802)] = 178799, + [SMALL_STATE(7803)] = 178822, + [SMALL_STATE(7804)] = 178845, + [SMALL_STATE(7805)] = 178876, + [SMALL_STATE(7806)] = 178899, + [SMALL_STATE(7807)] = 178922, + [SMALL_STATE(7808)] = 178945, + [SMALL_STATE(7809)] = 178968, + [SMALL_STATE(7810)] = 178999, + [SMALL_STATE(7811)] = 179022, + [SMALL_STATE(7812)] = 179045, + [SMALL_STATE(7813)] = 179076, + [SMALL_STATE(7814)] = 179099, + [SMALL_STATE(7815)] = 179122, + [SMALL_STATE(7816)] = 179145, + [SMALL_STATE(7817)] = 179164, + [SMALL_STATE(7818)] = 179187, + [SMALL_STATE(7819)] = 179210, + [SMALL_STATE(7820)] = 179233, + [SMALL_STATE(7821)] = 179256, + [SMALL_STATE(7822)] = 179279, + [SMALL_STATE(7823)] = 179302, + [SMALL_STATE(7824)] = 179325, + [SMALL_STATE(7825)] = 179348, + [SMALL_STATE(7826)] = 179371, + [SMALL_STATE(7827)] = 179394, + [SMALL_STATE(7828)] = 179417, + [SMALL_STATE(7829)] = 179440, + [SMALL_STATE(7830)] = 179471, + [SMALL_STATE(7831)] = 179494, + [SMALL_STATE(7832)] = 179517, + [SMALL_STATE(7833)] = 179540, + [SMALL_STATE(7834)] = 179563, + [SMALL_STATE(7835)] = 179586, + [SMALL_STATE(7836)] = 179609, + [SMALL_STATE(7837)] = 179632, + [SMALL_STATE(7838)] = 179655, + [SMALL_STATE(7839)] = 179678, + [SMALL_STATE(7840)] = 179701, + [SMALL_STATE(7841)] = 179724, + [SMALL_STATE(7842)] = 179755, + [SMALL_STATE(7843)] = 179778, + [SMALL_STATE(7844)] = 179801, + [SMALL_STATE(7845)] = 179824, + [SMALL_STATE(7846)] = 179855, + [SMALL_STATE(7847)] = 179878, + [SMALL_STATE(7848)] = 179901, + [SMALL_STATE(7849)] = 179932, + [SMALL_STATE(7850)] = 179955, + [SMALL_STATE(7851)] = 179978, + [SMALL_STATE(7852)] = 180009, + [SMALL_STATE(7853)] = 180032, + [SMALL_STATE(7854)] = 180055, + [SMALL_STATE(7855)] = 180078, + [SMALL_STATE(7856)] = 180101, + [SMALL_STATE(7857)] = 180124, + [SMALL_STATE(7858)] = 180147, + [SMALL_STATE(7859)] = 180170, + [SMALL_STATE(7860)] = 180193, + [SMALL_STATE(7861)] = 180216, + [SMALL_STATE(7862)] = 180239, + [SMALL_STATE(7863)] = 180262, + [SMALL_STATE(7864)] = 180285, + [SMALL_STATE(7865)] = 180308, + [SMALL_STATE(7866)] = 180331, + [SMALL_STATE(7867)] = 180354, + [SMALL_STATE(7868)] = 180377, + [SMALL_STATE(7869)] = 180400, + [SMALL_STATE(7870)] = 180431, + [SMALL_STATE(7871)] = 180454, + [SMALL_STATE(7872)] = 180477, + [SMALL_STATE(7873)] = 180500, + [SMALL_STATE(7874)] = 180531, + [SMALL_STATE(7875)] = 180561, + [SMALL_STATE(7876)] = 180591, + [SMALL_STATE(7877)] = 180621, + [SMALL_STATE(7878)] = 180639, + [SMALL_STATE(7879)] = 180669, + [SMALL_STATE(7880)] = 180699, + [SMALL_STATE(7881)] = 180720, + [SMALL_STATE(7882)] = 180749, + [SMALL_STATE(7883)] = 180776, + [SMALL_STATE(7884)] = 180801, + [SMALL_STATE(7885)] = 180826, + [SMALL_STATE(7886)] = 180855, + [SMALL_STATE(7887)] = 180882, + [SMALL_STATE(7888)] = 180909, + [SMALL_STATE(7889)] = 180938, + [SMALL_STATE(7890)] = 180963, + [SMALL_STATE(7891)] = 180992, + [SMALL_STATE(7892)] = 181019, + [SMALL_STATE(7893)] = 181046, + [SMALL_STATE(7894)] = 181071, + [SMALL_STATE(7895)] = 181096, + [SMALL_STATE(7896)] = 181125, + [SMALL_STATE(7897)] = 181150, + [SMALL_STATE(7898)] = 181174, + [SMALL_STATE(7899)] = 181190, + [SMALL_STATE(7900)] = 181206, + [SMALL_STATE(7901)] = 181232, + [SMALL_STATE(7902)] = 181258, + [SMALL_STATE(7903)] = 181280, + [SMALL_STATE(7904)] = 181296, + [SMALL_STATE(7905)] = 181320, + [SMALL_STATE(7906)] = 181336, + [SMALL_STATE(7907)] = 181362, + [SMALL_STATE(7908)] = 181382, + [SMALL_STATE(7909)] = 181406, + [SMALL_STATE(7910)] = 181422, + [SMALL_STATE(7911)] = 181438, + [SMALL_STATE(7912)] = 181454, + [SMALL_STATE(7913)] = 181474, + [SMALL_STATE(7914)] = 181496, + [SMALL_STATE(7915)] = 181512, + [SMALL_STATE(7916)] = 181536, + [SMALL_STATE(7917)] = 181552, + [SMALL_STATE(7918)] = 181568, + [SMALL_STATE(7919)] = 181584, + [SMALL_STATE(7920)] = 181608, + [SMALL_STATE(7921)] = 181624, + [SMALL_STATE(7922)] = 181640, + [SMALL_STATE(7923)] = 181656, + [SMALL_STATE(7924)] = 181678, + [SMALL_STATE(7925)] = 181694, + [SMALL_STATE(7926)] = 181710, + [SMALL_STATE(7927)] = 181726, + [SMALL_STATE(7928)] = 181742, + [SMALL_STATE(7929)] = 181758, + [SMALL_STATE(7930)] = 181774, + [SMALL_STATE(7931)] = 181790, + [SMALL_STATE(7932)] = 181816, + [SMALL_STATE(7933)] = 181840, + [SMALL_STATE(7934)] = 181856, + [SMALL_STATE(7935)] = 181882, + [SMALL_STATE(7936)] = 181898, + [SMALL_STATE(7937)] = 181918, + [SMALL_STATE(7938)] = 181942, + [SMALL_STATE(7939)] = 181958, + [SMALL_STATE(7940)] = 181982, + [SMALL_STATE(7941)] = 182005, + [SMALL_STATE(7942)] = 182026, + [SMALL_STATE(7943)] = 182039, + [SMALL_STATE(7944)] = 182060, + [SMALL_STATE(7945)] = 182081, + [SMALL_STATE(7946)] = 182098, + [SMALL_STATE(7947)] = 182115, + [SMALL_STATE(7948)] = 182136, + [SMALL_STATE(7949)] = 182159, + [SMALL_STATE(7950)] = 182180, + [SMALL_STATE(7951)] = 182195, + [SMALL_STATE(7952)] = 182214, + [SMALL_STATE(7953)] = 182237, + [SMALL_STATE(7954)] = 182254, + [SMALL_STATE(7955)] = 182275, + [SMALL_STATE(7956)] = 182296, + [SMALL_STATE(7957)] = 182317, + [SMALL_STATE(7958)] = 182338, + [SMALL_STATE(7959)] = 182359, + [SMALL_STATE(7960)] = 182372, + [SMALL_STATE(7961)] = 182393, + [SMALL_STATE(7962)] = 182406, + [SMALL_STATE(7963)] = 182429, + [SMALL_STATE(7964)] = 182450, + [SMALL_STATE(7965)] = 182467, + [SMALL_STATE(7966)] = 182490, + [SMALL_STATE(7967)] = 182511, + [SMALL_STATE(7968)] = 182532, + [SMALL_STATE(7969)] = 182553, + [SMALL_STATE(7970)] = 182574, + [SMALL_STATE(7971)] = 182595, + [SMALL_STATE(7972)] = 182616, + [SMALL_STATE(7973)] = 182639, + [SMALL_STATE(7974)] = 182660, + [SMALL_STATE(7975)] = 182681, + [SMALL_STATE(7976)] = 182704, + [SMALL_STATE(7977)] = 182725, + [SMALL_STATE(7978)] = 182746, + [SMALL_STATE(7979)] = 182767, + [SMALL_STATE(7980)] = 182788, + [SMALL_STATE(7981)] = 182809, + [SMALL_STATE(7982)] = 182830, + [SMALL_STATE(7983)] = 182851, + [SMALL_STATE(7984)] = 182864, + [SMALL_STATE(7985)] = 182885, + [SMALL_STATE(7986)] = 182906, + [SMALL_STATE(7987)] = 182927, + [SMALL_STATE(7988)] = 182950, + [SMALL_STATE(7989)] = 182971, + [SMALL_STATE(7990)] = 182988, + [SMALL_STATE(7991)] = 183005, + [SMALL_STATE(7992)] = 183026, + [SMALL_STATE(7993)] = 183039, + [SMALL_STATE(7994)] = 183059, + [SMALL_STATE(7995)] = 183079, + [SMALL_STATE(7996)] = 183099, + [SMALL_STATE(7997)] = 183119, + [SMALL_STATE(7998)] = 183135, + [SMALL_STATE(7999)] = 183155, + [SMALL_STATE(8000)] = 183175, + [SMALL_STATE(8001)] = 183187, + [SMALL_STATE(8002)] = 183203, + [SMALL_STATE(8003)] = 183219, + [SMALL_STATE(8004)] = 183239, + [SMALL_STATE(8005)] = 183259, + [SMALL_STATE(8006)] = 183281, + [SMALL_STATE(8007)] = 183301, + [SMALL_STATE(8008)] = 183321, + [SMALL_STATE(8009)] = 183341, + [SMALL_STATE(8010)] = 183359, + [SMALL_STATE(8011)] = 183379, + [SMALL_STATE(8012)] = 183399, + [SMALL_STATE(8013)] = 183419, + [SMALL_STATE(8014)] = 183431, + [SMALL_STATE(8015)] = 183451, + [SMALL_STATE(8016)] = 183469, + [SMALL_STATE(8017)] = 183489, + [SMALL_STATE(8018)] = 183501, + [SMALL_STATE(8019)] = 183521, + [SMALL_STATE(8020)] = 183541, + [SMALL_STATE(8021)] = 183561, + [SMALL_STATE(8022)] = 183581, + [SMALL_STATE(8023)] = 183601, + [SMALL_STATE(8024)] = 183621, + [SMALL_STATE(8025)] = 183641, + [SMALL_STATE(8026)] = 183661, + [SMALL_STATE(8027)] = 183681, + [SMALL_STATE(8028)] = 183699, + [SMALL_STATE(8029)] = 183711, + [SMALL_STATE(8030)] = 183723, + [SMALL_STATE(8031)] = 183743, + [SMALL_STATE(8032)] = 183763, + [SMALL_STATE(8033)] = 183783, + [SMALL_STATE(8034)] = 183803, + [SMALL_STATE(8035)] = 183823, + [SMALL_STATE(8036)] = 183843, + [SMALL_STATE(8037)] = 183855, + [SMALL_STATE(8038)] = 183875, + [SMALL_STATE(8039)] = 183895, + [SMALL_STATE(8040)] = 183915, + [SMALL_STATE(8041)] = 183935, + [SMALL_STATE(8042)] = 183955, + [SMALL_STATE(8043)] = 183975, + [SMALL_STATE(8044)] = 183987, + [SMALL_STATE(8045)] = 184007, + [SMALL_STATE(8046)] = 184027, + [SMALL_STATE(8047)] = 184047, + [SMALL_STATE(8048)] = 184067, + [SMALL_STATE(8049)] = 184087, + [SMALL_STATE(8050)] = 184107, + [SMALL_STATE(8051)] = 184127, + [SMALL_STATE(8052)] = 184143, + [SMALL_STATE(8053)] = 184163, + [SMALL_STATE(8054)] = 184183, + [SMALL_STATE(8055)] = 184205, + [SMALL_STATE(8056)] = 184225, + [SMALL_STATE(8057)] = 184241, + [SMALL_STATE(8058)] = 184257, + [SMALL_STATE(8059)] = 184269, + [SMALL_STATE(8060)] = 184287, + [SMALL_STATE(8061)] = 184307, + [SMALL_STATE(8062)] = 184327, + [SMALL_STATE(8063)] = 184347, + [SMALL_STATE(8064)] = 184367, + [SMALL_STATE(8065)] = 184387, + [SMALL_STATE(8066)] = 184405, + [SMALL_STATE(8067)] = 184425, + [SMALL_STATE(8068)] = 184445, + [SMALL_STATE(8069)] = 184461, + [SMALL_STATE(8070)] = 184477, + [SMALL_STATE(8071)] = 184497, + [SMALL_STATE(8072)] = 184517, + [SMALL_STATE(8073)] = 184529, + [SMALL_STATE(8074)] = 184549, + [SMALL_STATE(8075)] = 184569, + [SMALL_STATE(8076)] = 184589, + [SMALL_STATE(8077)] = 184607, + [SMALL_STATE(8078)] = 184627, + [SMALL_STATE(8079)] = 184647, + [SMALL_STATE(8080)] = 184667, + [SMALL_STATE(8081)] = 184687, + [SMALL_STATE(8082)] = 184707, + [SMALL_STATE(8083)] = 184727, + [SMALL_STATE(8084)] = 184747, + [SMALL_STATE(8085)] = 184767, + [SMALL_STATE(8086)] = 184787, + [SMALL_STATE(8087)] = 184807, + [SMALL_STATE(8088)] = 184829, + [SMALL_STATE(8089)] = 184849, + [SMALL_STATE(8090)] = 184869, + [SMALL_STATE(8091)] = 184889, + [SMALL_STATE(8092)] = 184909, + [SMALL_STATE(8093)] = 184929, + [SMALL_STATE(8094)] = 184949, + [SMALL_STATE(8095)] = 184969, + [SMALL_STATE(8096)] = 184989, + [SMALL_STATE(8097)] = 185009, [SMALL_STATE(8098)] = 185029, [SMALL_STATE(8099)] = 185049, - [SMALL_STATE(8100)] = 185067, - [SMALL_STATE(8101)] = 185087, - [SMALL_STATE(8102)] = 185107, - [SMALL_STATE(8103)] = 185127, - [SMALL_STATE(8104)] = 185147, - [SMALL_STATE(8105)] = 185167, - [SMALL_STATE(8106)] = 185187, + [SMALL_STATE(8100)] = 185069, + [SMALL_STATE(8101)] = 185089, + [SMALL_STATE(8102)] = 185109, + [SMALL_STATE(8103)] = 185129, + [SMALL_STATE(8104)] = 185149, + [SMALL_STATE(8105)] = 185161, + [SMALL_STATE(8106)] = 185183, [SMALL_STATE(8107)] = 185203, - [SMALL_STATE(8108)] = 185223, - [SMALL_STATE(8109)] = 185243, - [SMALL_STATE(8110)] = 185263, - [SMALL_STATE(8111)] = 185283, - [SMALL_STATE(8112)] = 185303, + [SMALL_STATE(8108)] = 185215, + [SMALL_STATE(8109)] = 185235, + [SMALL_STATE(8110)] = 185255, + [SMALL_STATE(8111)] = 185275, + [SMALL_STATE(8112)] = 185295, [SMALL_STATE(8113)] = 185315, [SMALL_STATE(8114)] = 185335, [SMALL_STATE(8115)] = 185347, - [SMALL_STATE(8116)] = 185363, - [SMALL_STATE(8117)] = 185383, + [SMALL_STATE(8116)] = 185365, + [SMALL_STATE(8117)] = 185385, [SMALL_STATE(8118)] = 185401, - [SMALL_STATE(8119)] = 185423, - [SMALL_STATE(8120)] = 185443, - [SMALL_STATE(8121)] = 185463, - [SMALL_STATE(8122)] = 185483, - [SMALL_STATE(8123)] = 185501, - [SMALL_STATE(8124)] = 185521, - [SMALL_STATE(8125)] = 185541, - [SMALL_STATE(8126)] = 185561, - [SMALL_STATE(8127)] = 185581, - [SMALL_STATE(8128)] = 185601, - [SMALL_STATE(8129)] = 185621, - [SMALL_STATE(8130)] = 185641, - [SMALL_STATE(8131)] = 185661, - [SMALL_STATE(8132)] = 185681, - [SMALL_STATE(8133)] = 185701, - [SMALL_STATE(8134)] = 185721, - [SMALL_STATE(8135)] = 185741, - [SMALL_STATE(8136)] = 185761, - [SMALL_STATE(8137)] = 185781, - [SMALL_STATE(8138)] = 185801, - [SMALL_STATE(8139)] = 185821, - [SMALL_STATE(8140)] = 185841, - [SMALL_STATE(8141)] = 185861, - [SMALL_STATE(8142)] = 185881, - [SMALL_STATE(8143)] = 185899, - [SMALL_STATE(8144)] = 185921, - [SMALL_STATE(8145)] = 185941, - [SMALL_STATE(8146)] = 185961, - [SMALL_STATE(8147)] = 185981, - [SMALL_STATE(8148)] = 186001, - [SMALL_STATE(8149)] = 186021, - [SMALL_STATE(8150)] = 186041, - [SMALL_STATE(8151)] = 186061, - [SMALL_STATE(8152)] = 186081, - [SMALL_STATE(8153)] = 186101, - [SMALL_STATE(8154)] = 186123, - [SMALL_STATE(8155)] = 186143, - [SMALL_STATE(8156)] = 186163, - [SMALL_STATE(8157)] = 186183, - [SMALL_STATE(8158)] = 186203, - [SMALL_STATE(8159)] = 186219, - [SMALL_STATE(8160)] = 186239, - [SMALL_STATE(8161)] = 186259, - [SMALL_STATE(8162)] = 186279, - [SMALL_STATE(8163)] = 186299, - [SMALL_STATE(8164)] = 186319, - [SMALL_STATE(8165)] = 186339, - [SMALL_STATE(8166)] = 186359, - [SMALL_STATE(8167)] = 186376, - [SMALL_STATE(8168)] = 186393, - [SMALL_STATE(8169)] = 186410, - [SMALL_STATE(8170)] = 186427, - [SMALL_STATE(8171)] = 186444, - [SMALL_STATE(8172)] = 186461, - [SMALL_STATE(8173)] = 186478, - [SMALL_STATE(8174)] = 186495, - [SMALL_STATE(8175)] = 186512, - [SMALL_STATE(8176)] = 186529, - [SMALL_STATE(8177)] = 186546, - [SMALL_STATE(8178)] = 186563, - [SMALL_STATE(8179)] = 186580, - [SMALL_STATE(8180)] = 186597, - [SMALL_STATE(8181)] = 186614, - [SMALL_STATE(8182)] = 186631, - [SMALL_STATE(8183)] = 186648, - [SMALL_STATE(8184)] = 186665, - [SMALL_STATE(8185)] = 186682, - [SMALL_STATE(8186)] = 186699, - [SMALL_STATE(8187)] = 186714, - [SMALL_STATE(8188)] = 186729, - [SMALL_STATE(8189)] = 186746, - [SMALL_STATE(8190)] = 186763, - [SMALL_STATE(8191)] = 186780, - [SMALL_STATE(8192)] = 186797, - [SMALL_STATE(8193)] = 186812, - [SMALL_STATE(8194)] = 186829, - [SMALL_STATE(8195)] = 186846, - [SMALL_STATE(8196)] = 186863, - [SMALL_STATE(8197)] = 186880, - [SMALL_STATE(8198)] = 186897, - [SMALL_STATE(8199)] = 186914, - [SMALL_STATE(8200)] = 186931, - [SMALL_STATE(8201)] = 186948, - [SMALL_STATE(8202)] = 186965, - [SMALL_STATE(8203)] = 186982, - [SMALL_STATE(8204)] = 186999, - [SMALL_STATE(8205)] = 187012, - [SMALL_STATE(8206)] = 187029, - [SMALL_STATE(8207)] = 187046, - [SMALL_STATE(8208)] = 187063, - [SMALL_STATE(8209)] = 187080, - [SMALL_STATE(8210)] = 187097, - [SMALL_STATE(8211)] = 187114, - [SMALL_STATE(8212)] = 187131, - [SMALL_STATE(8213)] = 187146, - [SMALL_STATE(8214)] = 187163, - [SMALL_STATE(8215)] = 187180, - [SMALL_STATE(8216)] = 187195, - [SMALL_STATE(8217)] = 187212, - [SMALL_STATE(8218)] = 187229, - [SMALL_STATE(8219)] = 187246, - [SMALL_STATE(8220)] = 187263, - [SMALL_STATE(8221)] = 187280, - [SMALL_STATE(8222)] = 187291, - [SMALL_STATE(8223)] = 187308, - [SMALL_STATE(8224)] = 187325, - [SMALL_STATE(8225)] = 187342, - [SMALL_STATE(8226)] = 187359, - [SMALL_STATE(8227)] = 187370, - [SMALL_STATE(8228)] = 187385, - [SMALL_STATE(8229)] = 187398, - [SMALL_STATE(8230)] = 187415, - [SMALL_STATE(8231)] = 187426, - [SMALL_STATE(8232)] = 187437, - [SMALL_STATE(8233)] = 187454, - [SMALL_STATE(8234)] = 187471, - [SMALL_STATE(8235)] = 187488, - [SMALL_STATE(8236)] = 187505, - [SMALL_STATE(8237)] = 187522, - [SMALL_STATE(8238)] = 187539, - [SMALL_STATE(8239)] = 187550, - [SMALL_STATE(8240)] = 187561, - [SMALL_STATE(8241)] = 187578, - [SMALL_STATE(8242)] = 187589, - [SMALL_STATE(8243)] = 187606, - [SMALL_STATE(8244)] = 187623, - [SMALL_STATE(8245)] = 187640, - [SMALL_STATE(8246)] = 187657, - [SMALL_STATE(8247)] = 187674, - [SMALL_STATE(8248)] = 187687, - [SMALL_STATE(8249)] = 187704, - [SMALL_STATE(8250)] = 187719, - [SMALL_STATE(8251)] = 187736, - [SMALL_STATE(8252)] = 187753, - [SMALL_STATE(8253)] = 187770, - [SMALL_STATE(8254)] = 187787, - [SMALL_STATE(8255)] = 187804, - [SMALL_STATE(8256)] = 187821, - [SMALL_STATE(8257)] = 187838, - [SMALL_STATE(8258)] = 187855, - [SMALL_STATE(8259)] = 187870, - [SMALL_STATE(8260)] = 187887, - [SMALL_STATE(8261)] = 187904, - [SMALL_STATE(8262)] = 187919, - [SMALL_STATE(8263)] = 187936, - [SMALL_STATE(8264)] = 187953, - [SMALL_STATE(8265)] = 187970, - [SMALL_STATE(8266)] = 187985, - [SMALL_STATE(8267)] = 188000, - [SMALL_STATE(8268)] = 188017, - [SMALL_STATE(8269)] = 188028, - [SMALL_STATE(8270)] = 188045, - [SMALL_STATE(8271)] = 188062, - [SMALL_STATE(8272)] = 188079, - [SMALL_STATE(8273)] = 188096, - [SMALL_STATE(8274)] = 188113, - [SMALL_STATE(8275)] = 188130, - [SMALL_STATE(8276)] = 188143, - [SMALL_STATE(8277)] = 188158, - [SMALL_STATE(8278)] = 188173, - [SMALL_STATE(8279)] = 188188, - [SMALL_STATE(8280)] = 188203, - [SMALL_STATE(8281)] = 188220, - [SMALL_STATE(8282)] = 188231, - [SMALL_STATE(8283)] = 188246, - [SMALL_STATE(8284)] = 188263, - [SMALL_STATE(8285)] = 188278, - [SMALL_STATE(8286)] = 188293, - [SMALL_STATE(8287)] = 188310, - [SMALL_STATE(8288)] = 188327, - [SMALL_STATE(8289)] = 188342, - [SMALL_STATE(8290)] = 188357, - [SMALL_STATE(8291)] = 188374, - [SMALL_STATE(8292)] = 188391, - [SMALL_STATE(8293)] = 188408, - [SMALL_STATE(8294)] = 188425, - [SMALL_STATE(8295)] = 188442, - [SMALL_STATE(8296)] = 188459, - [SMALL_STATE(8297)] = 188476, - [SMALL_STATE(8298)] = 188493, - [SMALL_STATE(8299)] = 188510, - [SMALL_STATE(8300)] = 188525, - [SMALL_STATE(8301)] = 188536, - [SMALL_STATE(8302)] = 188551, - [SMALL_STATE(8303)] = 188566, - [SMALL_STATE(8304)] = 188583, - [SMALL_STATE(8305)] = 188598, - [SMALL_STATE(8306)] = 188615, - [SMALL_STATE(8307)] = 188626, - [SMALL_STATE(8308)] = 188643, - [SMALL_STATE(8309)] = 188660, - [SMALL_STATE(8310)] = 188677, - [SMALL_STATE(8311)] = 188694, - [SMALL_STATE(8312)] = 188711, - [SMALL_STATE(8313)] = 188728, - [SMALL_STATE(8314)] = 188745, - [SMALL_STATE(8315)] = 188760, - [SMALL_STATE(8316)] = 188775, - [SMALL_STATE(8317)] = 188790, - [SMALL_STATE(8318)] = 188805, - [SMALL_STATE(8319)] = 188820, - [SMALL_STATE(8320)] = 188837, - [SMALL_STATE(8321)] = 188854, - [SMALL_STATE(8322)] = 188871, - [SMALL_STATE(8323)] = 188888, - [SMALL_STATE(8324)] = 188905, - [SMALL_STATE(8325)] = 188920, - [SMALL_STATE(8326)] = 188935, - [SMALL_STATE(8327)] = 188952, - [SMALL_STATE(8328)] = 188969, - [SMALL_STATE(8329)] = 188986, - [SMALL_STATE(8330)] = 189000, - [SMALL_STATE(8331)] = 189014, - [SMALL_STATE(8332)] = 189028, - [SMALL_STATE(8333)] = 189040, - [SMALL_STATE(8334)] = 189054, - [SMALL_STATE(8335)] = 189068, - [SMALL_STATE(8336)] = 189082, - [SMALL_STATE(8337)] = 189096, - [SMALL_STATE(8338)] = 189110, - [SMALL_STATE(8339)] = 189122, - [SMALL_STATE(8340)] = 189132, - [SMALL_STATE(8341)] = 189142, - [SMALL_STATE(8342)] = 189156, - [SMALL_STATE(8343)] = 189170, - [SMALL_STATE(8344)] = 189184, - [SMALL_STATE(8345)] = 189198, - [SMALL_STATE(8346)] = 189212, - [SMALL_STATE(8347)] = 189226, - [SMALL_STATE(8348)] = 189236, - [SMALL_STATE(8349)] = 189250, - [SMALL_STATE(8350)] = 189264, - [SMALL_STATE(8351)] = 189278, - [SMALL_STATE(8352)] = 189292, - [SMALL_STATE(8353)] = 189306, - [SMALL_STATE(8354)] = 189320, - [SMALL_STATE(8355)] = 189334, - [SMALL_STATE(8356)] = 189346, - [SMALL_STATE(8357)] = 189356, - [SMALL_STATE(8358)] = 189370, - [SMALL_STATE(8359)] = 189384, - [SMALL_STATE(8360)] = 189398, - [SMALL_STATE(8361)] = 189412, - [SMALL_STATE(8362)] = 189426, - [SMALL_STATE(8363)] = 189440, - [SMALL_STATE(8364)] = 189450, - [SMALL_STATE(8365)] = 189464, - [SMALL_STATE(8366)] = 189476, - [SMALL_STATE(8367)] = 189490, - [SMALL_STATE(8368)] = 189504, - [SMALL_STATE(8369)] = 189518, - [SMALL_STATE(8370)] = 189532, - [SMALL_STATE(8371)] = 189546, - [SMALL_STATE(8372)] = 189560, - [SMALL_STATE(8373)] = 189574, - [SMALL_STATE(8374)] = 189588, - [SMALL_STATE(8375)] = 189602, - [SMALL_STATE(8376)] = 189616, - [SMALL_STATE(8377)] = 189630, - [SMALL_STATE(8378)] = 189642, - [SMALL_STATE(8379)] = 189654, - [SMALL_STATE(8380)] = 189668, - [SMALL_STATE(8381)] = 189682, - [SMALL_STATE(8382)] = 189696, - [SMALL_STATE(8383)] = 189710, - [SMALL_STATE(8384)] = 189722, - [SMALL_STATE(8385)] = 189736, - [SMALL_STATE(8386)] = 189750, - [SMALL_STATE(8387)] = 189764, - [SMALL_STATE(8388)] = 189778, - [SMALL_STATE(8389)] = 189792, - [SMALL_STATE(8390)] = 189806, - [SMALL_STATE(8391)] = 189820, - [SMALL_STATE(8392)] = 189834, - [SMALL_STATE(8393)] = 189848, - [SMALL_STATE(8394)] = 189862, - [SMALL_STATE(8395)] = 189876, - [SMALL_STATE(8396)] = 189890, - [SMALL_STATE(8397)] = 189904, - [SMALL_STATE(8398)] = 189918, - [SMALL_STATE(8399)] = 189932, - [SMALL_STATE(8400)] = 189946, - [SMALL_STATE(8401)] = 189960, - [SMALL_STATE(8402)] = 189974, - [SMALL_STATE(8403)] = 189988, - [SMALL_STATE(8404)] = 190002, - [SMALL_STATE(8405)] = 190016, - [SMALL_STATE(8406)] = 190030, - [SMALL_STATE(8407)] = 190044, - [SMALL_STATE(8408)] = 190058, - [SMALL_STATE(8409)] = 190072, - [SMALL_STATE(8410)] = 190086, - [SMALL_STATE(8411)] = 190096, - [SMALL_STATE(8412)] = 190110, - [SMALL_STATE(8413)] = 190124, - [SMALL_STATE(8414)] = 190138, - [SMALL_STATE(8415)] = 190152, - [SMALL_STATE(8416)] = 190166, - [SMALL_STATE(8417)] = 190180, - [SMALL_STATE(8418)] = 190194, - [SMALL_STATE(8419)] = 190208, - [SMALL_STATE(8420)] = 190222, - [SMALL_STATE(8421)] = 190236, - [SMALL_STATE(8422)] = 190250, - [SMALL_STATE(8423)] = 190264, - [SMALL_STATE(8424)] = 190278, - [SMALL_STATE(8425)] = 190292, - [SMALL_STATE(8426)] = 190306, - [SMALL_STATE(8427)] = 190320, - [SMALL_STATE(8428)] = 190334, - [SMALL_STATE(8429)] = 190344, - [SMALL_STATE(8430)] = 190358, - [SMALL_STATE(8431)] = 190372, - [SMALL_STATE(8432)] = 190382, - [SMALL_STATE(8433)] = 190396, - [SMALL_STATE(8434)] = 190408, - [SMALL_STATE(8435)] = 190418, - [SMALL_STATE(8436)] = 190432, - [SMALL_STATE(8437)] = 190442, - [SMALL_STATE(8438)] = 190454, - [SMALL_STATE(8439)] = 190468, - [SMALL_STATE(8440)] = 190478, - [SMALL_STATE(8441)] = 190492, - [SMALL_STATE(8442)] = 190506, - [SMALL_STATE(8443)] = 190520, - [SMALL_STATE(8444)] = 190534, - [SMALL_STATE(8445)] = 190548, - [SMALL_STATE(8446)] = 190562, - [SMALL_STATE(8447)] = 190576, - [SMALL_STATE(8448)] = 190590, - [SMALL_STATE(8449)] = 190604, - [SMALL_STATE(8450)] = 190618, - [SMALL_STATE(8451)] = 190630, - [SMALL_STATE(8452)] = 190642, - [SMALL_STATE(8453)] = 190656, - [SMALL_STATE(8454)] = 190670, - [SMALL_STATE(8455)] = 190684, - [SMALL_STATE(8456)] = 190698, - [SMALL_STATE(8457)] = 190712, - [SMALL_STATE(8458)] = 190726, - [SMALL_STATE(8459)] = 190740, - [SMALL_STATE(8460)] = 190754, - [SMALL_STATE(8461)] = 190768, - [SMALL_STATE(8462)] = 190782, - [SMALL_STATE(8463)] = 190796, - [SMALL_STATE(8464)] = 190810, - [SMALL_STATE(8465)] = 190824, - [SMALL_STATE(8466)] = 190838, - [SMALL_STATE(8467)] = 190852, - [SMALL_STATE(8468)] = 190866, - [SMALL_STATE(8469)] = 190880, - [SMALL_STATE(8470)] = 190894, - [SMALL_STATE(8471)] = 190908, - [SMALL_STATE(8472)] = 190922, - [SMALL_STATE(8473)] = 190936, - [SMALL_STATE(8474)] = 190950, - [SMALL_STATE(8475)] = 190964, - [SMALL_STATE(8476)] = 190978, - [SMALL_STATE(8477)] = 190992, - [SMALL_STATE(8478)] = 191006, - [SMALL_STATE(8479)] = 191020, - [SMALL_STATE(8480)] = 191034, - [SMALL_STATE(8481)] = 191048, - [SMALL_STATE(8482)] = 191062, - [SMALL_STATE(8483)] = 191076, - [SMALL_STATE(8484)] = 191090, - [SMALL_STATE(8485)] = 191102, - [SMALL_STATE(8486)] = 191116, - [SMALL_STATE(8487)] = 191128, - [SMALL_STATE(8488)] = 191142, - [SMALL_STATE(8489)] = 191156, - [SMALL_STATE(8490)] = 191168, - [SMALL_STATE(8491)] = 191178, - [SMALL_STATE(8492)] = 191192, - [SMALL_STATE(8493)] = 191204, - [SMALL_STATE(8494)] = 191218, - [SMALL_STATE(8495)] = 191232, - [SMALL_STATE(8496)] = 191246, - [SMALL_STATE(8497)] = 191260, - [SMALL_STATE(8498)] = 191274, - [SMALL_STATE(8499)] = 191288, - [SMALL_STATE(8500)] = 191302, - [SMALL_STATE(8501)] = 191316, - [SMALL_STATE(8502)] = 191330, - [SMALL_STATE(8503)] = 191344, - [SMALL_STATE(8504)] = 191358, - [SMALL_STATE(8505)] = 191372, - [SMALL_STATE(8506)] = 191386, - [SMALL_STATE(8507)] = 191400, - [SMALL_STATE(8508)] = 191414, - [SMALL_STATE(8509)] = 191428, - [SMALL_STATE(8510)] = 191440, - [SMALL_STATE(8511)] = 191454, - [SMALL_STATE(8512)] = 191466, - [SMALL_STATE(8513)] = 191480, - [SMALL_STATE(8514)] = 191494, - [SMALL_STATE(8515)] = 191508, - [SMALL_STATE(8516)] = 191520, - [SMALL_STATE(8517)] = 191534, - [SMALL_STATE(8518)] = 191548, - [SMALL_STATE(8519)] = 191560, - [SMALL_STATE(8520)] = 191574, - [SMALL_STATE(8521)] = 191588, - [SMALL_STATE(8522)] = 191602, - [SMALL_STATE(8523)] = 191614, - [SMALL_STATE(8524)] = 191628, - [SMALL_STATE(8525)] = 191642, - [SMALL_STATE(8526)] = 191654, - [SMALL_STATE(8527)] = 191668, - [SMALL_STATE(8528)] = 191682, - [SMALL_STATE(8529)] = 191696, - [SMALL_STATE(8530)] = 191708, - [SMALL_STATE(8531)] = 191720, - [SMALL_STATE(8532)] = 191734, - [SMALL_STATE(8533)] = 191746, - [SMALL_STATE(8534)] = 191760, - [SMALL_STATE(8535)] = 191774, - [SMALL_STATE(8536)] = 191788, - [SMALL_STATE(8537)] = 191802, - [SMALL_STATE(8538)] = 191816, - [SMALL_STATE(8539)] = 191830, - [SMALL_STATE(8540)] = 191844, - [SMALL_STATE(8541)] = 191858, - [SMALL_STATE(8542)] = 191872, - [SMALL_STATE(8543)] = 191886, - [SMALL_STATE(8544)] = 191900, - [SMALL_STATE(8545)] = 191914, - [SMALL_STATE(8546)] = 191928, - [SMALL_STATE(8547)] = 191942, - [SMALL_STATE(8548)] = 191954, - [SMALL_STATE(8549)] = 191968, - [SMALL_STATE(8550)] = 191982, - [SMALL_STATE(8551)] = 191996, - [SMALL_STATE(8552)] = 192010, - [SMALL_STATE(8553)] = 192024, - [SMALL_STATE(8554)] = 192038, - [SMALL_STATE(8555)] = 192052, - [SMALL_STATE(8556)] = 192066, - [SMALL_STATE(8557)] = 192080, - [SMALL_STATE(8558)] = 192094, - [SMALL_STATE(8559)] = 192108, - [SMALL_STATE(8560)] = 192122, - [SMALL_STATE(8561)] = 192136, - [SMALL_STATE(8562)] = 192150, - [SMALL_STATE(8563)] = 192164, - [SMALL_STATE(8564)] = 192178, - [SMALL_STATE(8565)] = 192192, - [SMALL_STATE(8566)] = 192206, - [SMALL_STATE(8567)] = 192218, - [SMALL_STATE(8568)] = 192232, - [SMALL_STATE(8569)] = 192246, - [SMALL_STATE(8570)] = 192260, - [SMALL_STATE(8571)] = 192274, - [SMALL_STATE(8572)] = 192284, - [SMALL_STATE(8573)] = 192298, - [SMALL_STATE(8574)] = 192312, - [SMALL_STATE(8575)] = 192326, - [SMALL_STATE(8576)] = 192340, - [SMALL_STATE(8577)] = 192354, - [SMALL_STATE(8578)] = 192366, - [SMALL_STATE(8579)] = 192380, - [SMALL_STATE(8580)] = 192394, - [SMALL_STATE(8581)] = 192408, - [SMALL_STATE(8582)] = 192422, - [SMALL_STATE(8583)] = 192436, - [SMALL_STATE(8584)] = 192448, - [SMALL_STATE(8585)] = 192462, - [SMALL_STATE(8586)] = 192476, - [SMALL_STATE(8587)] = 192488, - [SMALL_STATE(8588)] = 192502, - [SMALL_STATE(8589)] = 192516, - [SMALL_STATE(8590)] = 192530, - [SMALL_STATE(8591)] = 192544, - [SMALL_STATE(8592)] = 192555, - [SMALL_STATE(8593)] = 192566, - [SMALL_STATE(8594)] = 192577, - [SMALL_STATE(8595)] = 192588, - [SMALL_STATE(8596)] = 192597, - [SMALL_STATE(8597)] = 192608, - [SMALL_STATE(8598)] = 192619, - [SMALL_STATE(8599)] = 192630, - [SMALL_STATE(8600)] = 192641, - [SMALL_STATE(8601)] = 192652, - [SMALL_STATE(8602)] = 192663, - [SMALL_STATE(8603)] = 192674, - [SMALL_STATE(8604)] = 192685, - [SMALL_STATE(8605)] = 192696, - [SMALL_STATE(8606)] = 192705, - [SMALL_STATE(8607)] = 192716, - [SMALL_STATE(8608)] = 192727, - [SMALL_STATE(8609)] = 192738, - [SMALL_STATE(8610)] = 192749, - [SMALL_STATE(8611)] = 192760, - [SMALL_STATE(8612)] = 192771, - [SMALL_STATE(8613)] = 192782, - [SMALL_STATE(8614)] = 192793, - [SMALL_STATE(8615)] = 192804, - [SMALL_STATE(8616)] = 192815, - [SMALL_STATE(8617)] = 192826, - [SMALL_STATE(8618)] = 192837, - [SMALL_STATE(8619)] = 192848, - [SMALL_STATE(8620)] = 192859, - [SMALL_STATE(8621)] = 192870, - [SMALL_STATE(8622)] = 192881, - [SMALL_STATE(8623)] = 192892, - [SMALL_STATE(8624)] = 192903, - [SMALL_STATE(8625)] = 192914, - [SMALL_STATE(8626)] = 192925, - [SMALL_STATE(8627)] = 192936, - [SMALL_STATE(8628)] = 192947, - [SMALL_STATE(8629)] = 192958, - [SMALL_STATE(8630)] = 192969, - [SMALL_STATE(8631)] = 192980, - [SMALL_STATE(8632)] = 192991, - [SMALL_STATE(8633)] = 193002, - [SMALL_STATE(8634)] = 193013, - [SMALL_STATE(8635)] = 193024, - [SMALL_STATE(8636)] = 193033, - [SMALL_STATE(8637)] = 193044, - [SMALL_STATE(8638)] = 193055, - [SMALL_STATE(8639)] = 193066, - [SMALL_STATE(8640)] = 193077, - [SMALL_STATE(8641)] = 193088, - [SMALL_STATE(8642)] = 193099, - [SMALL_STATE(8643)] = 193110, - [SMALL_STATE(8644)] = 193121, - [SMALL_STATE(8645)] = 193132, - [SMALL_STATE(8646)] = 193143, - [SMALL_STATE(8647)] = 193152, - [SMALL_STATE(8648)] = 193163, - [SMALL_STATE(8649)] = 193174, - [SMALL_STATE(8650)] = 193185, - [SMALL_STATE(8651)] = 193196, - [SMALL_STATE(8652)] = 193207, - [SMALL_STATE(8653)] = 193218, - [SMALL_STATE(8654)] = 193229, - [SMALL_STATE(8655)] = 193240, - [SMALL_STATE(8656)] = 193249, - [SMALL_STATE(8657)] = 193260, - [SMALL_STATE(8658)] = 193271, - [SMALL_STATE(8659)] = 193280, - [SMALL_STATE(8660)] = 193289, - [SMALL_STATE(8661)] = 193300, - [SMALL_STATE(8662)] = 193311, - [SMALL_STATE(8663)] = 193322, - [SMALL_STATE(8664)] = 193333, - [SMALL_STATE(8665)] = 193344, - [SMALL_STATE(8666)] = 193355, - [SMALL_STATE(8667)] = 193366, - [SMALL_STATE(8668)] = 193377, - [SMALL_STATE(8669)] = 193388, - [SMALL_STATE(8670)] = 193399, - [SMALL_STATE(8671)] = 193410, - [SMALL_STATE(8672)] = 193421, - [SMALL_STATE(8673)] = 193432, - [SMALL_STATE(8674)] = 193443, - [SMALL_STATE(8675)] = 193454, - [SMALL_STATE(8676)] = 193465, - [SMALL_STATE(8677)] = 193476, - [SMALL_STATE(8678)] = 193485, - [SMALL_STATE(8679)] = 193494, - [SMALL_STATE(8680)] = 193505, - [SMALL_STATE(8681)] = 193516, - [SMALL_STATE(8682)] = 193525, - [SMALL_STATE(8683)] = 193536, - [SMALL_STATE(8684)] = 193547, - [SMALL_STATE(8685)] = 193558, - [SMALL_STATE(8686)] = 193569, - [SMALL_STATE(8687)] = 193580, - [SMALL_STATE(8688)] = 193591, - [SMALL_STATE(8689)] = 193602, - [SMALL_STATE(8690)] = 193613, - [SMALL_STATE(8691)] = 193624, - [SMALL_STATE(8692)] = 193635, - [SMALL_STATE(8693)] = 193646, - [SMALL_STATE(8694)] = 193657, - [SMALL_STATE(8695)] = 193668, - [SMALL_STATE(8696)] = 193679, - [SMALL_STATE(8697)] = 193690, - [SMALL_STATE(8698)] = 193699, - [SMALL_STATE(8699)] = 193710, - [SMALL_STATE(8700)] = 193721, - [SMALL_STATE(8701)] = 193730, - [SMALL_STATE(8702)] = 193741, - [SMALL_STATE(8703)] = 193752, - [SMALL_STATE(8704)] = 193763, - [SMALL_STATE(8705)] = 193774, - [SMALL_STATE(8706)] = 193785, - [SMALL_STATE(8707)] = 193796, - [SMALL_STATE(8708)] = 193807, - [SMALL_STATE(8709)] = 193818, - [SMALL_STATE(8710)] = 193829, - [SMALL_STATE(8711)] = 193840, - [SMALL_STATE(8712)] = 193851, - [SMALL_STATE(8713)] = 193862, - [SMALL_STATE(8714)] = 193873, - [SMALL_STATE(8715)] = 193884, - [SMALL_STATE(8716)] = 193895, - [SMALL_STATE(8717)] = 193904, - [SMALL_STATE(8718)] = 193915, - [SMALL_STATE(8719)] = 193926, - [SMALL_STATE(8720)] = 193937, - [SMALL_STATE(8721)] = 193948, - [SMALL_STATE(8722)] = 193959, - [SMALL_STATE(8723)] = 193968, - [SMALL_STATE(8724)] = 193979, - [SMALL_STATE(8725)] = 193990, - [SMALL_STATE(8726)] = 194001, - [SMALL_STATE(8727)] = 194010, - [SMALL_STATE(8728)] = 194021, - [SMALL_STATE(8729)] = 194032, - [SMALL_STATE(8730)] = 194041, - [SMALL_STATE(8731)] = 194052, - [SMALL_STATE(8732)] = 194063, - [SMALL_STATE(8733)] = 194074, - [SMALL_STATE(8734)] = 194085, - [SMALL_STATE(8735)] = 194094, - [SMALL_STATE(8736)] = 194105, - [SMALL_STATE(8737)] = 194114, - [SMALL_STATE(8738)] = 194125, - [SMALL_STATE(8739)] = 194136, - [SMALL_STATE(8740)] = 194147, - [SMALL_STATE(8741)] = 194158, - [SMALL_STATE(8742)] = 194169, - [SMALL_STATE(8743)] = 194180, - [SMALL_STATE(8744)] = 194191, - [SMALL_STATE(8745)] = 194202, - [SMALL_STATE(8746)] = 194213, - [SMALL_STATE(8747)] = 194224, - [SMALL_STATE(8748)] = 194235, - [SMALL_STATE(8749)] = 194246, - [SMALL_STATE(8750)] = 194255, - [SMALL_STATE(8751)] = 194266, - [SMALL_STATE(8752)] = 194277, - [SMALL_STATE(8753)] = 194288, - [SMALL_STATE(8754)] = 194299, - [SMALL_STATE(8755)] = 194310, - [SMALL_STATE(8756)] = 194321, - [SMALL_STATE(8757)] = 194332, - [SMALL_STATE(8758)] = 194343, - [SMALL_STATE(8759)] = 194354, - [SMALL_STATE(8760)] = 194365, - [SMALL_STATE(8761)] = 194376, - [SMALL_STATE(8762)] = 194385, - [SMALL_STATE(8763)] = 194396, - [SMALL_STATE(8764)] = 194407, - [SMALL_STATE(8765)] = 194416, - [SMALL_STATE(8766)] = 194427, - [SMALL_STATE(8767)] = 194438, - [SMALL_STATE(8768)] = 194447, - [SMALL_STATE(8769)] = 194458, - [SMALL_STATE(8770)] = 194469, - [SMALL_STATE(8771)] = 194480, - [SMALL_STATE(8772)] = 194491, - [SMALL_STATE(8773)] = 194502, - [SMALL_STATE(8774)] = 194513, - [SMALL_STATE(8775)] = 194522, - [SMALL_STATE(8776)] = 194533, - [SMALL_STATE(8777)] = 194544, - [SMALL_STATE(8778)] = 194555, - [SMALL_STATE(8779)] = 194566, - [SMALL_STATE(8780)] = 194577, - [SMALL_STATE(8781)] = 194586, - [SMALL_STATE(8782)] = 194597, - [SMALL_STATE(8783)] = 194608, - [SMALL_STATE(8784)] = 194617, - [SMALL_STATE(8785)] = 194626, - [SMALL_STATE(8786)] = 194637, - [SMALL_STATE(8787)] = 194648, - [SMALL_STATE(8788)] = 194659, - [SMALL_STATE(8789)] = 194670, - [SMALL_STATE(8790)] = 194681, - [SMALL_STATE(8791)] = 194692, - [SMALL_STATE(8792)] = 194703, - [SMALL_STATE(8793)] = 194714, - [SMALL_STATE(8794)] = 194723, - [SMALL_STATE(8795)] = 194734, - [SMALL_STATE(8796)] = 194745, - [SMALL_STATE(8797)] = 194756, - [SMALL_STATE(8798)] = 194767, - [SMALL_STATE(8799)] = 194776, - [SMALL_STATE(8800)] = 194787, - [SMALL_STATE(8801)] = 194798, - [SMALL_STATE(8802)] = 194809, - [SMALL_STATE(8803)] = 194820, - [SMALL_STATE(8804)] = 194829, - [SMALL_STATE(8805)] = 194840, - [SMALL_STATE(8806)] = 194851, - [SMALL_STATE(8807)] = 194860, - [SMALL_STATE(8808)] = 194871, - [SMALL_STATE(8809)] = 194882, - [SMALL_STATE(8810)] = 194893, - [SMALL_STATE(8811)] = 194904, - [SMALL_STATE(8812)] = 194915, - [SMALL_STATE(8813)] = 194926, - [SMALL_STATE(8814)] = 194937, - [SMALL_STATE(8815)] = 194948, - [SMALL_STATE(8816)] = 194957, - [SMALL_STATE(8817)] = 194966, - [SMALL_STATE(8818)] = 194977, - [SMALL_STATE(8819)] = 194986, - [SMALL_STATE(8820)] = 194995, - [SMALL_STATE(8821)] = 195004, - [SMALL_STATE(8822)] = 195013, - [SMALL_STATE(8823)] = 195022, - [SMALL_STATE(8824)] = 195031, - [SMALL_STATE(8825)] = 195040, - [SMALL_STATE(8826)] = 195051, - [SMALL_STATE(8827)] = 195060, - [SMALL_STATE(8828)] = 195071, - [SMALL_STATE(8829)] = 195082, - [SMALL_STATE(8830)] = 195093, - [SMALL_STATE(8831)] = 195104, - [SMALL_STATE(8832)] = 195113, - [SMALL_STATE(8833)] = 195122, - [SMALL_STATE(8834)] = 195133, - [SMALL_STATE(8835)] = 195144, - [SMALL_STATE(8836)] = 195153, - [SMALL_STATE(8837)] = 195164, - [SMALL_STATE(8838)] = 195173, - [SMALL_STATE(8839)] = 195182, - [SMALL_STATE(8840)] = 195193, - [SMALL_STATE(8841)] = 195204, - [SMALL_STATE(8842)] = 195215, - [SMALL_STATE(8843)] = 195224, - [SMALL_STATE(8844)] = 195235, - [SMALL_STATE(8845)] = 195244, - [SMALL_STATE(8846)] = 195255, - [SMALL_STATE(8847)] = 195266, - [SMALL_STATE(8848)] = 195275, - [SMALL_STATE(8849)] = 195286, - [SMALL_STATE(8850)] = 195297, - [SMALL_STATE(8851)] = 195306, - [SMALL_STATE(8852)] = 195315, - [SMALL_STATE(8853)] = 195326, - [SMALL_STATE(8854)] = 195337, - [SMALL_STATE(8855)] = 195348, - [SMALL_STATE(8856)] = 195359, - [SMALL_STATE(8857)] = 195368, - [SMALL_STATE(8858)] = 195377, - [SMALL_STATE(8859)] = 195386, - [SMALL_STATE(8860)] = 195395, - [SMALL_STATE(8861)] = 195404, - [SMALL_STATE(8862)] = 195413, - [SMALL_STATE(8863)] = 195424, - [SMALL_STATE(8864)] = 195435, - [SMALL_STATE(8865)] = 195446, - [SMALL_STATE(8866)] = 195457, - [SMALL_STATE(8867)] = 195468, - [SMALL_STATE(8868)] = 195477, - [SMALL_STATE(8869)] = 195488, - [SMALL_STATE(8870)] = 195497, - [SMALL_STATE(8871)] = 195508, - [SMALL_STATE(8872)] = 195517, - [SMALL_STATE(8873)] = 195528, - [SMALL_STATE(8874)] = 195537, - [SMALL_STATE(8875)] = 195548, - [SMALL_STATE(8876)] = 195559, - [SMALL_STATE(8877)] = 195568, - [SMALL_STATE(8878)] = 195579, - [SMALL_STATE(8879)] = 195590, - [SMALL_STATE(8880)] = 195601, - [SMALL_STATE(8881)] = 195612, - [SMALL_STATE(8882)] = 195621, - [SMALL_STATE(8883)] = 195630, - [SMALL_STATE(8884)] = 195641, - [SMALL_STATE(8885)] = 195652, - [SMALL_STATE(8886)] = 195663, - [SMALL_STATE(8887)] = 195672, - [SMALL_STATE(8888)] = 195683, - [SMALL_STATE(8889)] = 195692, - [SMALL_STATE(8890)] = 195703, - [SMALL_STATE(8891)] = 195712, - [SMALL_STATE(8892)] = 195721, - [SMALL_STATE(8893)] = 195732, - [SMALL_STATE(8894)] = 195743, - [SMALL_STATE(8895)] = 195752, - [SMALL_STATE(8896)] = 195763, - [SMALL_STATE(8897)] = 195772, - [SMALL_STATE(8898)] = 195781, - [SMALL_STATE(8899)] = 195792, - [SMALL_STATE(8900)] = 195801, - [SMALL_STATE(8901)] = 195812, - [SMALL_STATE(8902)] = 195823, - [SMALL_STATE(8903)] = 195832, - [SMALL_STATE(8904)] = 195841, - [SMALL_STATE(8905)] = 195852, - [SMALL_STATE(8906)] = 195861, - [SMALL_STATE(8907)] = 195870, - [SMALL_STATE(8908)] = 195881, - [SMALL_STATE(8909)] = 195892, - [SMALL_STATE(8910)] = 195903, - [SMALL_STATE(8911)] = 195914, - [SMALL_STATE(8912)] = 195925, - [SMALL_STATE(8913)] = 195934, - [SMALL_STATE(8914)] = 195945, - [SMALL_STATE(8915)] = 195954, - [SMALL_STATE(8916)] = 195965, - [SMALL_STATE(8917)] = 195974, - [SMALL_STATE(8918)] = 195985, - [SMALL_STATE(8919)] = 195994, - [SMALL_STATE(8920)] = 196005, - [SMALL_STATE(8921)] = 196016, - [SMALL_STATE(8922)] = 196027, - [SMALL_STATE(8923)] = 196036, - [SMALL_STATE(8924)] = 196047, - [SMALL_STATE(8925)] = 196058, - [SMALL_STATE(8926)] = 196069, - [SMALL_STATE(8927)] = 196078, - [SMALL_STATE(8928)] = 196089, - [SMALL_STATE(8929)] = 196098, - [SMALL_STATE(8930)] = 196109, - [SMALL_STATE(8931)] = 196120, - [SMALL_STATE(8932)] = 196131, - [SMALL_STATE(8933)] = 196142, - [SMALL_STATE(8934)] = 196153, - [SMALL_STATE(8935)] = 196164, - [SMALL_STATE(8936)] = 196175, - [SMALL_STATE(8937)] = 196186, - [SMALL_STATE(8938)] = 196195, - [SMALL_STATE(8939)] = 196206, - [SMALL_STATE(8940)] = 196215, - [SMALL_STATE(8941)] = 196226, - [SMALL_STATE(8942)] = 196235, - [SMALL_STATE(8943)] = 196246, - [SMALL_STATE(8944)] = 196257, - [SMALL_STATE(8945)] = 196268, - [SMALL_STATE(8946)] = 196276, - [SMALL_STATE(8947)] = 196284, - [SMALL_STATE(8948)] = 196292, - [SMALL_STATE(8949)] = 196300, - [SMALL_STATE(8950)] = 196308, - [SMALL_STATE(8951)] = 196316, - [SMALL_STATE(8952)] = 196324, - [SMALL_STATE(8953)] = 196332, - [SMALL_STATE(8954)] = 196340, - [SMALL_STATE(8955)] = 196348, - [SMALL_STATE(8956)] = 196356, - [SMALL_STATE(8957)] = 196364, - [SMALL_STATE(8958)] = 196372, - [SMALL_STATE(8959)] = 196380, - [SMALL_STATE(8960)] = 196388, - [SMALL_STATE(8961)] = 196396, - [SMALL_STATE(8962)] = 196404, - [SMALL_STATE(8963)] = 196412, - [SMALL_STATE(8964)] = 196420, - [SMALL_STATE(8965)] = 196428, - [SMALL_STATE(8966)] = 196436, - [SMALL_STATE(8967)] = 196444, - [SMALL_STATE(8968)] = 196452, - [SMALL_STATE(8969)] = 196460, - [SMALL_STATE(8970)] = 196468, - [SMALL_STATE(8971)] = 196476, - [SMALL_STATE(8972)] = 196484, - [SMALL_STATE(8973)] = 196492, - [SMALL_STATE(8974)] = 196500, - [SMALL_STATE(8975)] = 196508, - [SMALL_STATE(8976)] = 196516, - [SMALL_STATE(8977)] = 196524, - [SMALL_STATE(8978)] = 196532, - [SMALL_STATE(8979)] = 196540, - [SMALL_STATE(8980)] = 196548, - [SMALL_STATE(8981)] = 196556, - [SMALL_STATE(8982)] = 196564, - [SMALL_STATE(8983)] = 196572, - [SMALL_STATE(8984)] = 196580, - [SMALL_STATE(8985)] = 196588, - [SMALL_STATE(8986)] = 196596, - [SMALL_STATE(8987)] = 196604, - [SMALL_STATE(8988)] = 196612, - [SMALL_STATE(8989)] = 196620, - [SMALL_STATE(8990)] = 196628, - [SMALL_STATE(8991)] = 196636, - [SMALL_STATE(8992)] = 196644, - [SMALL_STATE(8993)] = 196652, - [SMALL_STATE(8994)] = 196660, - [SMALL_STATE(8995)] = 196668, - [SMALL_STATE(8996)] = 196676, - [SMALL_STATE(8997)] = 196684, - [SMALL_STATE(8998)] = 196692, - [SMALL_STATE(8999)] = 196700, - [SMALL_STATE(9000)] = 196708, - [SMALL_STATE(9001)] = 196716, - [SMALL_STATE(9002)] = 196724, - [SMALL_STATE(9003)] = 196732, - [SMALL_STATE(9004)] = 196740, - [SMALL_STATE(9005)] = 196748, - [SMALL_STATE(9006)] = 196756, - [SMALL_STATE(9007)] = 196764, - [SMALL_STATE(9008)] = 196772, - [SMALL_STATE(9009)] = 196780, - [SMALL_STATE(9010)] = 196788, - [SMALL_STATE(9011)] = 196796, - [SMALL_STATE(9012)] = 196804, - [SMALL_STATE(9013)] = 196812, - [SMALL_STATE(9014)] = 196820, - [SMALL_STATE(9015)] = 196828, - [SMALL_STATE(9016)] = 196836, - [SMALL_STATE(9017)] = 196844, - [SMALL_STATE(9018)] = 196852, - [SMALL_STATE(9019)] = 196860, - [SMALL_STATE(9020)] = 196868, - [SMALL_STATE(9021)] = 196876, - [SMALL_STATE(9022)] = 196884, - [SMALL_STATE(9023)] = 196892, - [SMALL_STATE(9024)] = 196900, - [SMALL_STATE(9025)] = 196908, - [SMALL_STATE(9026)] = 196916, - [SMALL_STATE(9027)] = 196924, - [SMALL_STATE(9028)] = 196932, - [SMALL_STATE(9029)] = 196940, - [SMALL_STATE(9030)] = 196948, - [SMALL_STATE(9031)] = 196956, - [SMALL_STATE(9032)] = 196964, - [SMALL_STATE(9033)] = 196972, - [SMALL_STATE(9034)] = 196980, - [SMALL_STATE(9035)] = 196988, - [SMALL_STATE(9036)] = 196996, - [SMALL_STATE(9037)] = 197004, - [SMALL_STATE(9038)] = 197012, - [SMALL_STATE(9039)] = 197020, - [SMALL_STATE(9040)] = 197028, - [SMALL_STATE(9041)] = 197036, - [SMALL_STATE(9042)] = 197044, - [SMALL_STATE(9043)] = 197052, - [SMALL_STATE(9044)] = 197060, - [SMALL_STATE(9045)] = 197068, - [SMALL_STATE(9046)] = 197076, - [SMALL_STATE(9047)] = 197084, - [SMALL_STATE(9048)] = 197092, - [SMALL_STATE(9049)] = 197100, - [SMALL_STATE(9050)] = 197108, - [SMALL_STATE(9051)] = 197116, - [SMALL_STATE(9052)] = 197124, - [SMALL_STATE(9053)] = 197132, - [SMALL_STATE(9054)] = 197140, - [SMALL_STATE(9055)] = 197148, - [SMALL_STATE(9056)] = 197156, - [SMALL_STATE(9057)] = 197164, - [SMALL_STATE(9058)] = 197172, - [SMALL_STATE(9059)] = 197180, - [SMALL_STATE(9060)] = 197188, - [SMALL_STATE(9061)] = 197196, - [SMALL_STATE(9062)] = 197204, - [SMALL_STATE(9063)] = 197212, - [SMALL_STATE(9064)] = 197220, - [SMALL_STATE(9065)] = 197228, - [SMALL_STATE(9066)] = 197236, - [SMALL_STATE(9067)] = 197244, - [SMALL_STATE(9068)] = 197252, - [SMALL_STATE(9069)] = 197260, - [SMALL_STATE(9070)] = 197268, - [SMALL_STATE(9071)] = 197276, - [SMALL_STATE(9072)] = 197284, - [SMALL_STATE(9073)] = 197292, - [SMALL_STATE(9074)] = 197300, - [SMALL_STATE(9075)] = 197308, - [SMALL_STATE(9076)] = 197316, - [SMALL_STATE(9077)] = 197324, - [SMALL_STATE(9078)] = 197332, - [SMALL_STATE(9079)] = 197340, - [SMALL_STATE(9080)] = 197348, - [SMALL_STATE(9081)] = 197356, - [SMALL_STATE(9082)] = 197364, - [SMALL_STATE(9083)] = 197372, - [SMALL_STATE(9084)] = 197380, - [SMALL_STATE(9085)] = 197388, - [SMALL_STATE(9086)] = 197396, - [SMALL_STATE(9087)] = 197404, - [SMALL_STATE(9088)] = 197412, - [SMALL_STATE(9089)] = 197420, - [SMALL_STATE(9090)] = 197428, - [SMALL_STATE(9091)] = 197436, - [SMALL_STATE(9092)] = 197444, - [SMALL_STATE(9093)] = 197452, - [SMALL_STATE(9094)] = 197460, - [SMALL_STATE(9095)] = 197468, - [SMALL_STATE(9096)] = 197476, - [SMALL_STATE(9097)] = 197484, - [SMALL_STATE(9098)] = 197492, - [SMALL_STATE(9099)] = 197500, - [SMALL_STATE(9100)] = 197508, - [SMALL_STATE(9101)] = 197516, - [SMALL_STATE(9102)] = 197524, - [SMALL_STATE(9103)] = 197532, - [SMALL_STATE(9104)] = 197540, - [SMALL_STATE(9105)] = 197548, - [SMALL_STATE(9106)] = 197556, - [SMALL_STATE(9107)] = 197564, - [SMALL_STATE(9108)] = 197572, - [SMALL_STATE(9109)] = 197580, - [SMALL_STATE(9110)] = 197588, - [SMALL_STATE(9111)] = 197596, - [SMALL_STATE(9112)] = 197604, - [SMALL_STATE(9113)] = 197612, - [SMALL_STATE(9114)] = 197620, - [SMALL_STATE(9115)] = 197628, - [SMALL_STATE(9116)] = 197636, - [SMALL_STATE(9117)] = 197644, - [SMALL_STATE(9118)] = 197652, - [SMALL_STATE(9119)] = 197660, - [SMALL_STATE(9120)] = 197668, - [SMALL_STATE(9121)] = 197676, - [SMALL_STATE(9122)] = 197684, - [SMALL_STATE(9123)] = 197692, - [SMALL_STATE(9124)] = 197700, - [SMALL_STATE(9125)] = 197708, - [SMALL_STATE(9126)] = 197716, - [SMALL_STATE(9127)] = 197724, - [SMALL_STATE(9128)] = 197732, - [SMALL_STATE(9129)] = 197740, - [SMALL_STATE(9130)] = 197748, - [SMALL_STATE(9131)] = 197756, - [SMALL_STATE(9132)] = 197764, - [SMALL_STATE(9133)] = 197772, - [SMALL_STATE(9134)] = 197780, - [SMALL_STATE(9135)] = 197788, - [SMALL_STATE(9136)] = 197796, - [SMALL_STATE(9137)] = 197804, - [SMALL_STATE(9138)] = 197812, - [SMALL_STATE(9139)] = 197820, - [SMALL_STATE(9140)] = 197828, - [SMALL_STATE(9141)] = 197836, - [SMALL_STATE(9142)] = 197844, - [SMALL_STATE(9143)] = 197852, - [SMALL_STATE(9144)] = 197860, - [SMALL_STATE(9145)] = 197868, - [SMALL_STATE(9146)] = 197876, - [SMALL_STATE(9147)] = 197884, - [SMALL_STATE(9148)] = 197892, - [SMALL_STATE(9149)] = 197900, - [SMALL_STATE(9150)] = 197908, - [SMALL_STATE(9151)] = 197916, - [SMALL_STATE(9152)] = 197924, - [SMALL_STATE(9153)] = 197932, - [SMALL_STATE(9154)] = 197940, - [SMALL_STATE(9155)] = 197948, - [SMALL_STATE(9156)] = 197956, - [SMALL_STATE(9157)] = 197964, - [SMALL_STATE(9158)] = 197972, - [SMALL_STATE(9159)] = 197980, - [SMALL_STATE(9160)] = 197988, - [SMALL_STATE(9161)] = 197996, - [SMALL_STATE(9162)] = 198004, - [SMALL_STATE(9163)] = 198012, - [SMALL_STATE(9164)] = 198020, - [SMALL_STATE(9165)] = 198028, - [SMALL_STATE(9166)] = 198036, - [SMALL_STATE(9167)] = 198044, - [SMALL_STATE(9168)] = 198052, - [SMALL_STATE(9169)] = 198060, - [SMALL_STATE(9170)] = 198068, - [SMALL_STATE(9171)] = 198076, - [SMALL_STATE(9172)] = 198084, - [SMALL_STATE(9173)] = 198092, - [SMALL_STATE(9174)] = 198100, - [SMALL_STATE(9175)] = 198108, - [SMALL_STATE(9176)] = 198116, - [SMALL_STATE(9177)] = 198124, - [SMALL_STATE(9178)] = 198132, - [SMALL_STATE(9179)] = 198140, - [SMALL_STATE(9180)] = 198148, - [SMALL_STATE(9181)] = 198156, - [SMALL_STATE(9182)] = 198164, - [SMALL_STATE(9183)] = 198172, - [SMALL_STATE(9184)] = 198180, - [SMALL_STATE(9185)] = 198188, - [SMALL_STATE(9186)] = 198196, - [SMALL_STATE(9187)] = 198204, - [SMALL_STATE(9188)] = 198212, - [SMALL_STATE(9189)] = 198220, - [SMALL_STATE(9190)] = 198228, - [SMALL_STATE(9191)] = 198236, - [SMALL_STATE(9192)] = 198244, - [SMALL_STATE(9193)] = 198252, - [SMALL_STATE(9194)] = 198260, - [SMALL_STATE(9195)] = 198268, - [SMALL_STATE(9196)] = 198276, - [SMALL_STATE(9197)] = 198284, - [SMALL_STATE(9198)] = 198292, - [SMALL_STATE(9199)] = 198300, - [SMALL_STATE(9200)] = 198308, - [SMALL_STATE(9201)] = 198316, - [SMALL_STATE(9202)] = 198324, - [SMALL_STATE(9203)] = 198332, - [SMALL_STATE(9204)] = 198340, - [SMALL_STATE(9205)] = 198348, - [SMALL_STATE(9206)] = 198356, - [SMALL_STATE(9207)] = 198364, - [SMALL_STATE(9208)] = 198372, - [SMALL_STATE(9209)] = 198380, - [SMALL_STATE(9210)] = 198388, - [SMALL_STATE(9211)] = 198396, - [SMALL_STATE(9212)] = 198404, - [SMALL_STATE(9213)] = 198412, - [SMALL_STATE(9214)] = 198420, - [SMALL_STATE(9215)] = 198428, - [SMALL_STATE(9216)] = 198436, - [SMALL_STATE(9217)] = 198444, - [SMALL_STATE(9218)] = 198452, - [SMALL_STATE(9219)] = 198460, - [SMALL_STATE(9220)] = 198468, - [SMALL_STATE(9221)] = 198476, - [SMALL_STATE(9222)] = 198484, - [SMALL_STATE(9223)] = 198492, - [SMALL_STATE(9224)] = 198500, - [SMALL_STATE(9225)] = 198508, - [SMALL_STATE(9226)] = 198516, - [SMALL_STATE(9227)] = 198524, - [SMALL_STATE(9228)] = 198532, - [SMALL_STATE(9229)] = 198540, - [SMALL_STATE(9230)] = 198548, - [SMALL_STATE(9231)] = 198556, - [SMALL_STATE(9232)] = 198564, - [SMALL_STATE(9233)] = 198572, - [SMALL_STATE(9234)] = 198580, - [SMALL_STATE(9235)] = 198588, - [SMALL_STATE(9236)] = 198596, - [SMALL_STATE(9237)] = 198604, - [SMALL_STATE(9238)] = 198612, - [SMALL_STATE(9239)] = 198620, - [SMALL_STATE(9240)] = 198628, - [SMALL_STATE(9241)] = 198636, - [SMALL_STATE(9242)] = 198644, - [SMALL_STATE(9243)] = 198652, - [SMALL_STATE(9244)] = 198660, - [SMALL_STATE(9245)] = 198668, - [SMALL_STATE(9246)] = 198676, - [SMALL_STATE(9247)] = 198684, - [SMALL_STATE(9248)] = 198692, - [SMALL_STATE(9249)] = 198700, - [SMALL_STATE(9250)] = 198708, - [SMALL_STATE(9251)] = 198716, - [SMALL_STATE(9252)] = 198724, - [SMALL_STATE(9253)] = 198732, - [SMALL_STATE(9254)] = 198740, - [SMALL_STATE(9255)] = 198748, - [SMALL_STATE(9256)] = 198756, - [SMALL_STATE(9257)] = 198764, - [SMALL_STATE(9258)] = 198772, - [SMALL_STATE(9259)] = 198780, - [SMALL_STATE(9260)] = 198788, - [SMALL_STATE(9261)] = 198796, - [SMALL_STATE(9262)] = 198804, - [SMALL_STATE(9263)] = 198812, - [SMALL_STATE(9264)] = 198820, - [SMALL_STATE(9265)] = 198828, - [SMALL_STATE(9266)] = 198836, - [SMALL_STATE(9267)] = 198844, - [SMALL_STATE(9268)] = 198852, - [SMALL_STATE(9269)] = 198860, - [SMALL_STATE(9270)] = 198868, - [SMALL_STATE(9271)] = 198876, - [SMALL_STATE(9272)] = 198884, - [SMALL_STATE(9273)] = 198892, - [SMALL_STATE(9274)] = 198900, - [SMALL_STATE(9275)] = 198908, - [SMALL_STATE(9276)] = 198916, - [SMALL_STATE(9277)] = 198924, - [SMALL_STATE(9278)] = 198932, - [SMALL_STATE(9279)] = 198940, - [SMALL_STATE(9280)] = 198948, - [SMALL_STATE(9281)] = 198956, - [SMALL_STATE(9282)] = 198964, - [SMALL_STATE(9283)] = 198972, - [SMALL_STATE(9284)] = 198980, - [SMALL_STATE(9285)] = 198988, - [SMALL_STATE(9286)] = 198996, - [SMALL_STATE(9287)] = 199004, - [SMALL_STATE(9288)] = 199012, - [SMALL_STATE(9289)] = 199020, - [SMALL_STATE(9290)] = 199028, - [SMALL_STATE(9291)] = 199036, - [SMALL_STATE(9292)] = 199044, - [SMALL_STATE(9293)] = 199052, - [SMALL_STATE(9294)] = 199060, - [SMALL_STATE(9295)] = 199068, - [SMALL_STATE(9296)] = 199076, - [SMALL_STATE(9297)] = 199084, - [SMALL_STATE(9298)] = 199092, - [SMALL_STATE(9299)] = 199100, - [SMALL_STATE(9300)] = 199108, - [SMALL_STATE(9301)] = 199116, - [SMALL_STATE(9302)] = 199124, - [SMALL_STATE(9303)] = 199132, - [SMALL_STATE(9304)] = 199140, - [SMALL_STATE(9305)] = 199148, - [SMALL_STATE(9306)] = 199156, - [SMALL_STATE(9307)] = 199164, - [SMALL_STATE(9308)] = 199172, - [SMALL_STATE(9309)] = 199180, - [SMALL_STATE(9310)] = 199188, - [SMALL_STATE(9311)] = 199196, - [SMALL_STATE(9312)] = 199204, - [SMALL_STATE(9313)] = 199212, - [SMALL_STATE(9314)] = 199220, - [SMALL_STATE(9315)] = 199228, - [SMALL_STATE(9316)] = 199236, - [SMALL_STATE(9317)] = 199244, - [SMALL_STATE(9318)] = 199252, - [SMALL_STATE(9319)] = 199260, - [SMALL_STATE(9320)] = 199268, - [SMALL_STATE(9321)] = 199276, - [SMALL_STATE(9322)] = 199284, - [SMALL_STATE(9323)] = 199292, - [SMALL_STATE(9324)] = 199300, - [SMALL_STATE(9325)] = 199308, - [SMALL_STATE(9326)] = 199316, - [SMALL_STATE(9327)] = 199324, - [SMALL_STATE(9328)] = 199332, - [SMALL_STATE(9329)] = 199340, - [SMALL_STATE(9330)] = 199348, - [SMALL_STATE(9331)] = 199356, - [SMALL_STATE(9332)] = 199364, - [SMALL_STATE(9333)] = 199372, - [SMALL_STATE(9334)] = 199380, - [SMALL_STATE(9335)] = 199388, - [SMALL_STATE(9336)] = 199396, - [SMALL_STATE(9337)] = 199404, - [SMALL_STATE(9338)] = 199412, - [SMALL_STATE(9339)] = 199420, - [SMALL_STATE(9340)] = 199428, - [SMALL_STATE(9341)] = 199436, - [SMALL_STATE(9342)] = 199444, - [SMALL_STATE(9343)] = 199452, - [SMALL_STATE(9344)] = 199460, - [SMALL_STATE(9345)] = 199468, - [SMALL_STATE(9346)] = 199476, - [SMALL_STATE(9347)] = 199484, - [SMALL_STATE(9348)] = 199492, - [SMALL_STATE(9349)] = 199500, - [SMALL_STATE(9350)] = 199508, - [SMALL_STATE(9351)] = 199516, - [SMALL_STATE(9352)] = 199524, - [SMALL_STATE(9353)] = 199532, - [SMALL_STATE(9354)] = 199540, - [SMALL_STATE(9355)] = 199548, - [SMALL_STATE(9356)] = 199556, - [SMALL_STATE(9357)] = 199564, - [SMALL_STATE(9358)] = 199572, - [SMALL_STATE(9359)] = 199580, - [SMALL_STATE(9360)] = 199588, - [SMALL_STATE(9361)] = 199596, - [SMALL_STATE(9362)] = 199604, - [SMALL_STATE(9363)] = 199612, - [SMALL_STATE(9364)] = 199620, - [SMALL_STATE(9365)] = 199628, - [SMALL_STATE(9366)] = 199636, - [SMALL_STATE(9367)] = 199644, - [SMALL_STATE(9368)] = 199652, - [SMALL_STATE(9369)] = 199660, - [SMALL_STATE(9370)] = 199668, - [SMALL_STATE(9371)] = 199676, - [SMALL_STATE(9372)] = 199684, - [SMALL_STATE(9373)] = 199692, - [SMALL_STATE(9374)] = 199700, - [SMALL_STATE(9375)] = 199708, - [SMALL_STATE(9376)] = 199716, - [SMALL_STATE(9377)] = 199724, - [SMALL_STATE(9378)] = 199732, - [SMALL_STATE(9379)] = 199740, - [SMALL_STATE(9380)] = 199748, - [SMALL_STATE(9381)] = 199756, - [SMALL_STATE(9382)] = 199764, - [SMALL_STATE(9383)] = 199772, - [SMALL_STATE(9384)] = 199780, - [SMALL_STATE(9385)] = 199788, - [SMALL_STATE(9386)] = 199796, - [SMALL_STATE(9387)] = 199804, - [SMALL_STATE(9388)] = 199812, - [SMALL_STATE(9389)] = 199820, - [SMALL_STATE(9390)] = 199828, - [SMALL_STATE(9391)] = 199836, - [SMALL_STATE(9392)] = 199844, - [SMALL_STATE(9393)] = 199852, - [SMALL_STATE(9394)] = 199860, - [SMALL_STATE(9395)] = 199868, - [SMALL_STATE(9396)] = 199876, - [SMALL_STATE(9397)] = 199884, - [SMALL_STATE(9398)] = 199892, - [SMALL_STATE(9399)] = 199900, - [SMALL_STATE(9400)] = 199908, - [SMALL_STATE(9401)] = 199916, - [SMALL_STATE(9402)] = 199924, - [SMALL_STATE(9403)] = 199932, - [SMALL_STATE(9404)] = 199940, - [SMALL_STATE(9405)] = 199948, - [SMALL_STATE(9406)] = 199956, - [SMALL_STATE(9407)] = 199964, - [SMALL_STATE(9408)] = 199972, - [SMALL_STATE(9409)] = 199980, - [SMALL_STATE(9410)] = 199988, - [SMALL_STATE(9411)] = 199996, - [SMALL_STATE(9412)] = 200004, - [SMALL_STATE(9413)] = 200012, - [SMALL_STATE(9414)] = 200020, - [SMALL_STATE(9415)] = 200028, - [SMALL_STATE(9416)] = 200036, - [SMALL_STATE(9417)] = 200044, - [SMALL_STATE(9418)] = 200052, - [SMALL_STATE(9419)] = 200060, - [SMALL_STATE(9420)] = 200068, - [SMALL_STATE(9421)] = 200076, - [SMALL_STATE(9422)] = 200084, - [SMALL_STATE(9423)] = 200092, - [SMALL_STATE(9424)] = 200100, - [SMALL_STATE(9425)] = 200108, - [SMALL_STATE(9426)] = 200116, - [SMALL_STATE(9427)] = 200124, - [SMALL_STATE(9428)] = 200132, - [SMALL_STATE(9429)] = 200140, - [SMALL_STATE(9430)] = 200148, - [SMALL_STATE(9431)] = 200156, - [SMALL_STATE(9432)] = 200164, - [SMALL_STATE(9433)] = 200172, - [SMALL_STATE(9434)] = 200180, - [SMALL_STATE(9435)] = 200188, - [SMALL_STATE(9436)] = 200196, - [SMALL_STATE(9437)] = 200204, - [SMALL_STATE(9438)] = 200212, - [SMALL_STATE(9439)] = 200220, - [SMALL_STATE(9440)] = 200228, - [SMALL_STATE(9441)] = 200236, - [SMALL_STATE(9442)] = 200244, - [SMALL_STATE(9443)] = 200252, - [SMALL_STATE(9444)] = 200260, - [SMALL_STATE(9445)] = 200268, - [SMALL_STATE(9446)] = 200276, - [SMALL_STATE(9447)] = 200284, - [SMALL_STATE(9448)] = 200292, - [SMALL_STATE(9449)] = 200300, - [SMALL_STATE(9450)] = 200308, - [SMALL_STATE(9451)] = 200316, - [SMALL_STATE(9452)] = 200324, - [SMALL_STATE(9453)] = 200332, - [SMALL_STATE(9454)] = 200340, - [SMALL_STATE(9455)] = 200348, - [SMALL_STATE(9456)] = 200356, - [SMALL_STATE(9457)] = 200364, - [SMALL_STATE(9458)] = 200372, - [SMALL_STATE(9459)] = 200380, - [SMALL_STATE(9460)] = 200388, - [SMALL_STATE(9461)] = 200396, - [SMALL_STATE(9462)] = 200404, - [SMALL_STATE(9463)] = 200412, - [SMALL_STATE(9464)] = 200420, - [SMALL_STATE(9465)] = 200428, - [SMALL_STATE(9466)] = 200436, - [SMALL_STATE(9467)] = 200444, - [SMALL_STATE(9468)] = 200452, - [SMALL_STATE(9469)] = 200460, - [SMALL_STATE(9470)] = 200468, - [SMALL_STATE(9471)] = 200476, - [SMALL_STATE(9472)] = 200484, - [SMALL_STATE(9473)] = 200492, - [SMALL_STATE(9474)] = 200500, - [SMALL_STATE(9475)] = 200508, - [SMALL_STATE(9476)] = 200516, - [SMALL_STATE(9477)] = 200524, - [SMALL_STATE(9478)] = 200532, - [SMALL_STATE(9479)] = 200540, - [SMALL_STATE(9480)] = 200548, - [SMALL_STATE(9481)] = 200556, - [SMALL_STATE(9482)] = 200564, - [SMALL_STATE(9483)] = 200572, - [SMALL_STATE(9484)] = 200580, - [SMALL_STATE(9485)] = 200588, - [SMALL_STATE(9486)] = 200596, - [SMALL_STATE(9487)] = 200604, - [SMALL_STATE(9488)] = 200612, - [SMALL_STATE(9489)] = 200620, - [SMALL_STATE(9490)] = 200628, - [SMALL_STATE(9491)] = 200636, - [SMALL_STATE(9492)] = 200644, - [SMALL_STATE(9493)] = 200652, - [SMALL_STATE(9494)] = 200660, - [SMALL_STATE(9495)] = 200668, - [SMALL_STATE(9496)] = 200676, - [SMALL_STATE(9497)] = 200684, - [SMALL_STATE(9498)] = 200692, - [SMALL_STATE(9499)] = 200700, - [SMALL_STATE(9500)] = 200708, - [SMALL_STATE(9501)] = 200716, - [SMALL_STATE(9502)] = 200724, - [SMALL_STATE(9503)] = 200732, - [SMALL_STATE(9504)] = 200740, - [SMALL_STATE(9505)] = 200748, - [SMALL_STATE(9506)] = 200756, - [SMALL_STATE(9507)] = 200764, - [SMALL_STATE(9508)] = 200772, - [SMALL_STATE(9509)] = 200780, - [SMALL_STATE(9510)] = 200788, - [SMALL_STATE(9511)] = 200796, - [SMALL_STATE(9512)] = 200804, - [SMALL_STATE(9513)] = 200812, - [SMALL_STATE(9514)] = 200820, - [SMALL_STATE(9515)] = 200828, - [SMALL_STATE(9516)] = 200836, - [SMALL_STATE(9517)] = 200844, - [SMALL_STATE(9518)] = 200852, - [SMALL_STATE(9519)] = 200860, - [SMALL_STATE(9520)] = 200868, - [SMALL_STATE(9521)] = 200876, - [SMALL_STATE(9522)] = 200884, - [SMALL_STATE(9523)] = 200892, - [SMALL_STATE(9524)] = 200900, - [SMALL_STATE(9525)] = 200908, - [SMALL_STATE(9526)] = 200916, - [SMALL_STATE(9527)] = 200924, - [SMALL_STATE(9528)] = 200932, - [SMALL_STATE(9529)] = 200940, - [SMALL_STATE(9530)] = 200948, - [SMALL_STATE(9531)] = 200956, - [SMALL_STATE(9532)] = 200964, - [SMALL_STATE(9533)] = 200972, - [SMALL_STATE(9534)] = 200980, - [SMALL_STATE(9535)] = 200988, - [SMALL_STATE(9536)] = 200996, - [SMALL_STATE(9537)] = 201004, - [SMALL_STATE(9538)] = 201012, - [SMALL_STATE(9539)] = 201020, - [SMALL_STATE(9540)] = 201028, - [SMALL_STATE(9541)] = 201036, - [SMALL_STATE(9542)] = 201044, - [SMALL_STATE(9543)] = 201052, - [SMALL_STATE(9544)] = 201060, - [SMALL_STATE(9545)] = 201068, - [SMALL_STATE(9546)] = 201076, - [SMALL_STATE(9547)] = 201084, - [SMALL_STATE(9548)] = 201092, - [SMALL_STATE(9549)] = 201100, - [SMALL_STATE(9550)] = 201108, - [SMALL_STATE(9551)] = 201116, - [SMALL_STATE(9552)] = 201124, - [SMALL_STATE(9553)] = 201132, - [SMALL_STATE(9554)] = 201140, - [SMALL_STATE(9555)] = 201148, - [SMALL_STATE(9556)] = 201156, - [SMALL_STATE(9557)] = 201164, - [SMALL_STATE(9558)] = 201172, - [SMALL_STATE(9559)] = 201180, - [SMALL_STATE(9560)] = 201188, - [SMALL_STATE(9561)] = 201196, - [SMALL_STATE(9562)] = 201204, - [SMALL_STATE(9563)] = 201212, - [SMALL_STATE(9564)] = 201220, - [SMALL_STATE(9565)] = 201228, - [SMALL_STATE(9566)] = 201236, - [SMALL_STATE(9567)] = 201244, - [SMALL_STATE(9568)] = 201252, - [SMALL_STATE(9569)] = 201260, - [SMALL_STATE(9570)] = 201268, - [SMALL_STATE(9571)] = 201276, - [SMALL_STATE(9572)] = 201284, - [SMALL_STATE(9573)] = 201292, - [SMALL_STATE(9574)] = 201300, - [SMALL_STATE(9575)] = 201308, - [SMALL_STATE(9576)] = 201316, - [SMALL_STATE(9577)] = 201324, + [SMALL_STATE(8119)] = 185413, + [SMALL_STATE(8120)] = 185433, + [SMALL_STATE(8121)] = 185455, + [SMALL_STATE(8122)] = 185475, + [SMALL_STATE(8123)] = 185495, + [SMALL_STATE(8124)] = 185509, + [SMALL_STATE(8125)] = 185529, + [SMALL_STATE(8126)] = 185543, + [SMALL_STATE(8127)] = 185563, + [SMALL_STATE(8128)] = 185583, + [SMALL_STATE(8129)] = 185603, + [SMALL_STATE(8130)] = 185623, + [SMALL_STATE(8131)] = 185643, + [SMALL_STATE(8132)] = 185663, + [SMALL_STATE(8133)] = 185683, + [SMALL_STATE(8134)] = 185703, + [SMALL_STATE(8135)] = 185715, + [SMALL_STATE(8136)] = 185733, + [SMALL_STATE(8137)] = 185745, + [SMALL_STATE(8138)] = 185765, + [SMALL_STATE(8139)] = 185785, + [SMALL_STATE(8140)] = 185805, + [SMALL_STATE(8141)] = 185825, + [SMALL_STATE(8142)] = 185837, + [SMALL_STATE(8143)] = 185849, + [SMALL_STATE(8144)] = 185869, + [SMALL_STATE(8145)] = 185889, + [SMALL_STATE(8146)] = 185901, + [SMALL_STATE(8147)] = 185913, + [SMALL_STATE(8148)] = 185933, + [SMALL_STATE(8149)] = 185953, + [SMALL_STATE(8150)] = 185973, + [SMALL_STATE(8151)] = 185985, + [SMALL_STATE(8152)] = 186005, + [SMALL_STATE(8153)] = 186025, + [SMALL_STATE(8154)] = 186045, + [SMALL_STATE(8155)] = 186065, + [SMALL_STATE(8156)] = 186085, + [SMALL_STATE(8157)] = 186105, + [SMALL_STATE(8158)] = 186125, + [SMALL_STATE(8159)] = 186145, + [SMALL_STATE(8160)] = 186165, + [SMALL_STATE(8161)] = 186185, + [SMALL_STATE(8162)] = 186205, + [SMALL_STATE(8163)] = 186225, + [SMALL_STATE(8164)] = 186241, + [SMALL_STATE(8165)] = 186261, + [SMALL_STATE(8166)] = 186281, + [SMALL_STATE(8167)] = 186297, + [SMALL_STATE(8168)] = 186319, + [SMALL_STATE(8169)] = 186335, + [SMALL_STATE(8170)] = 186352, + [SMALL_STATE(8171)] = 186367, + [SMALL_STATE(8172)] = 186382, + [SMALL_STATE(8173)] = 186399, + [SMALL_STATE(8174)] = 186416, + [SMALL_STATE(8175)] = 186433, + [SMALL_STATE(8176)] = 186450, + [SMALL_STATE(8177)] = 186465, + [SMALL_STATE(8178)] = 186482, + [SMALL_STATE(8179)] = 186499, + [SMALL_STATE(8180)] = 186516, + [SMALL_STATE(8181)] = 186533, + [SMALL_STATE(8182)] = 186544, + [SMALL_STATE(8183)] = 186555, + [SMALL_STATE(8184)] = 186572, + [SMALL_STATE(8185)] = 186587, + [SMALL_STATE(8186)] = 186602, + [SMALL_STATE(8187)] = 186615, + [SMALL_STATE(8188)] = 186630, + [SMALL_STATE(8189)] = 186643, + [SMALL_STATE(8190)] = 186658, + [SMALL_STATE(8191)] = 186675, + [SMALL_STATE(8192)] = 186686, + [SMALL_STATE(8193)] = 186703, + [SMALL_STATE(8194)] = 186720, + [SMALL_STATE(8195)] = 186737, + [SMALL_STATE(8196)] = 186754, + [SMALL_STATE(8197)] = 186771, + [SMALL_STATE(8198)] = 186788, + [SMALL_STATE(8199)] = 186805, + [SMALL_STATE(8200)] = 186822, + [SMALL_STATE(8201)] = 186839, + [SMALL_STATE(8202)] = 186856, + [SMALL_STATE(8203)] = 186873, + [SMALL_STATE(8204)] = 186884, + [SMALL_STATE(8205)] = 186901, + [SMALL_STATE(8206)] = 186918, + [SMALL_STATE(8207)] = 186929, + [SMALL_STATE(8208)] = 186944, + [SMALL_STATE(8209)] = 186961, + [SMALL_STATE(8210)] = 186978, + [SMALL_STATE(8211)] = 186993, + [SMALL_STATE(8212)] = 187010, + [SMALL_STATE(8213)] = 187027, + [SMALL_STATE(8214)] = 187044, + [SMALL_STATE(8215)] = 187057, + [SMALL_STATE(8216)] = 187074, + [SMALL_STATE(8217)] = 187091, + [SMALL_STATE(8218)] = 187108, + [SMALL_STATE(8219)] = 187125, + [SMALL_STATE(8220)] = 187142, + [SMALL_STATE(8221)] = 187159, + [SMALL_STATE(8222)] = 187176, + [SMALL_STATE(8223)] = 187193, + [SMALL_STATE(8224)] = 187210, + [SMALL_STATE(8225)] = 187225, + [SMALL_STATE(8226)] = 187242, + [SMALL_STATE(8227)] = 187259, + [SMALL_STATE(8228)] = 187274, + [SMALL_STATE(8229)] = 187291, + [SMALL_STATE(8230)] = 187306, + [SMALL_STATE(8231)] = 187321, + [SMALL_STATE(8232)] = 187336, + [SMALL_STATE(8233)] = 187353, + [SMALL_STATE(8234)] = 187370, + [SMALL_STATE(8235)] = 187385, + [SMALL_STATE(8236)] = 187402, + [SMALL_STATE(8237)] = 187419, + [SMALL_STATE(8238)] = 187430, + [SMALL_STATE(8239)] = 187447, + [SMALL_STATE(8240)] = 187464, + [SMALL_STATE(8241)] = 187481, + [SMALL_STATE(8242)] = 187498, + [SMALL_STATE(8243)] = 187515, + [SMALL_STATE(8244)] = 187532, + [SMALL_STATE(8245)] = 187549, + [SMALL_STATE(8246)] = 187560, + [SMALL_STATE(8247)] = 187577, + [SMALL_STATE(8248)] = 187594, + [SMALL_STATE(8249)] = 187611, + [SMALL_STATE(8250)] = 187628, + [SMALL_STATE(8251)] = 187643, + [SMALL_STATE(8252)] = 187660, + [SMALL_STATE(8253)] = 187677, + [SMALL_STATE(8254)] = 187694, + [SMALL_STATE(8255)] = 187711, + [SMALL_STATE(8256)] = 187728, + [SMALL_STATE(8257)] = 187745, + [SMALL_STATE(8258)] = 187762, + [SMALL_STATE(8259)] = 187779, + [SMALL_STATE(8260)] = 187796, + [SMALL_STATE(8261)] = 187813, + [SMALL_STATE(8262)] = 187830, + [SMALL_STATE(8263)] = 187841, + [SMALL_STATE(8264)] = 187858, + [SMALL_STATE(8265)] = 187875, + [SMALL_STATE(8266)] = 187892, + [SMALL_STATE(8267)] = 187909, + [SMALL_STATE(8268)] = 187926, + [SMALL_STATE(8269)] = 187943, + [SMALL_STATE(8270)] = 187960, + [SMALL_STATE(8271)] = 187977, + [SMALL_STATE(8272)] = 187994, + [SMALL_STATE(8273)] = 188011, + [SMALL_STATE(8274)] = 188028, + [SMALL_STATE(8275)] = 188045, + [SMALL_STATE(8276)] = 188062, + [SMALL_STATE(8277)] = 188079, + [SMALL_STATE(8278)] = 188096, + [SMALL_STATE(8279)] = 188113, + [SMALL_STATE(8280)] = 188130, + [SMALL_STATE(8281)] = 188147, + [SMALL_STATE(8282)] = 188162, + [SMALL_STATE(8283)] = 188175, + [SMALL_STATE(8284)] = 188192, + [SMALL_STATE(8285)] = 188209, + [SMALL_STATE(8286)] = 188224, + [SMALL_STATE(8287)] = 188239, + [SMALL_STATE(8288)] = 188250, + [SMALL_STATE(8289)] = 188265, + [SMALL_STATE(8290)] = 188282, + [SMALL_STATE(8291)] = 188299, + [SMALL_STATE(8292)] = 188316, + [SMALL_STATE(8293)] = 188333, + [SMALL_STATE(8294)] = 188350, + [SMALL_STATE(8295)] = 188367, + [SMALL_STATE(8296)] = 188382, + [SMALL_STATE(8297)] = 188399, + [SMALL_STATE(8298)] = 188416, + [SMALL_STATE(8299)] = 188433, + [SMALL_STATE(8300)] = 188448, + [SMALL_STATE(8301)] = 188465, + [SMALL_STATE(8302)] = 188482, + [SMALL_STATE(8303)] = 188497, + [SMALL_STATE(8304)] = 188514, + [SMALL_STATE(8305)] = 188531, + [SMALL_STATE(8306)] = 188548, + [SMALL_STATE(8307)] = 188565, + [SMALL_STATE(8308)] = 188582, + [SMALL_STATE(8309)] = 188599, + [SMALL_STATE(8310)] = 188616, + [SMALL_STATE(8311)] = 188633, + [SMALL_STATE(8312)] = 188650, + [SMALL_STATE(8313)] = 188661, + [SMALL_STATE(8314)] = 188678, + [SMALL_STATE(8315)] = 188693, + [SMALL_STATE(8316)] = 188708, + [SMALL_STATE(8317)] = 188719, + [SMALL_STATE(8318)] = 188736, + [SMALL_STATE(8319)] = 188751, + [SMALL_STATE(8320)] = 188766, + [SMALL_STATE(8321)] = 188783, + [SMALL_STATE(8322)] = 188800, + [SMALL_STATE(8323)] = 188817, + [SMALL_STATE(8324)] = 188832, + [SMALL_STATE(8325)] = 188847, + [SMALL_STATE(8326)] = 188864, + [SMALL_STATE(8327)] = 188879, + [SMALL_STATE(8328)] = 188896, + [SMALL_STATE(8329)] = 188913, + [SMALL_STATE(8330)] = 188930, + [SMALL_STATE(8331)] = 188947, + [SMALL_STATE(8332)] = 188962, + [SMALL_STATE(8333)] = 188976, + [SMALL_STATE(8334)] = 188986, + [SMALL_STATE(8335)] = 189000, + [SMALL_STATE(8336)] = 189014, + [SMALL_STATE(8337)] = 189028, + [SMALL_STATE(8338)] = 189042, + [SMALL_STATE(8339)] = 189056, + [SMALL_STATE(8340)] = 189070, + [SMALL_STATE(8341)] = 189084, + [SMALL_STATE(8342)] = 189098, + [SMALL_STATE(8343)] = 189112, + [SMALL_STATE(8344)] = 189126, + [SMALL_STATE(8345)] = 189136, + [SMALL_STATE(8346)] = 189150, + [SMALL_STATE(8347)] = 189162, + [SMALL_STATE(8348)] = 189172, + [SMALL_STATE(8349)] = 189184, + [SMALL_STATE(8350)] = 189198, + [SMALL_STATE(8351)] = 189212, + [SMALL_STATE(8352)] = 189226, + [SMALL_STATE(8353)] = 189240, + [SMALL_STATE(8354)] = 189250, + [SMALL_STATE(8355)] = 189264, + [SMALL_STATE(8356)] = 189278, + [SMALL_STATE(8357)] = 189292, + [SMALL_STATE(8358)] = 189306, + [SMALL_STATE(8359)] = 189320, + [SMALL_STATE(8360)] = 189334, + [SMALL_STATE(8361)] = 189348, + [SMALL_STATE(8362)] = 189362, + [SMALL_STATE(8363)] = 189376, + [SMALL_STATE(8364)] = 189390, + [SMALL_STATE(8365)] = 189404, + [SMALL_STATE(8366)] = 189418, + [SMALL_STATE(8367)] = 189432, + [SMALL_STATE(8368)] = 189446, + [SMALL_STATE(8369)] = 189460, + [SMALL_STATE(8370)] = 189472, + [SMALL_STATE(8371)] = 189486, + [SMALL_STATE(8372)] = 189500, + [SMALL_STATE(8373)] = 189514, + [SMALL_STATE(8374)] = 189528, + [SMALL_STATE(8375)] = 189542, + [SMALL_STATE(8376)] = 189556, + [SMALL_STATE(8377)] = 189570, + [SMALL_STATE(8378)] = 189584, + [SMALL_STATE(8379)] = 189598, + [SMALL_STATE(8380)] = 189612, + [SMALL_STATE(8381)] = 189626, + [SMALL_STATE(8382)] = 189636, + [SMALL_STATE(8383)] = 189650, + [SMALL_STATE(8384)] = 189664, + [SMALL_STATE(8385)] = 189678, + [SMALL_STATE(8386)] = 189690, + [SMALL_STATE(8387)] = 189704, + [SMALL_STATE(8388)] = 189714, + [SMALL_STATE(8389)] = 189728, + [SMALL_STATE(8390)] = 189742, + [SMALL_STATE(8391)] = 189754, + [SMALL_STATE(8392)] = 189768, + [SMALL_STATE(8393)] = 189782, + [SMALL_STATE(8394)] = 189796, + [SMALL_STATE(8395)] = 189808, + [SMALL_STATE(8396)] = 189822, + [SMALL_STATE(8397)] = 189836, + [SMALL_STATE(8398)] = 189850, + [SMALL_STATE(8399)] = 189864, + [SMALL_STATE(8400)] = 189874, + [SMALL_STATE(8401)] = 189888, + [SMALL_STATE(8402)] = 189902, + [SMALL_STATE(8403)] = 189916, + [SMALL_STATE(8404)] = 189930, + [SMALL_STATE(8405)] = 189944, + [SMALL_STATE(8406)] = 189958, + [SMALL_STATE(8407)] = 189972, + [SMALL_STATE(8408)] = 189986, + [SMALL_STATE(8409)] = 190000, + [SMALL_STATE(8410)] = 190010, + [SMALL_STATE(8411)] = 190024, + [SMALL_STATE(8412)] = 190038, + [SMALL_STATE(8413)] = 190052, + [SMALL_STATE(8414)] = 190066, + [SMALL_STATE(8415)] = 190080, + [SMALL_STATE(8416)] = 190094, + [SMALL_STATE(8417)] = 190108, + [SMALL_STATE(8418)] = 190122, + [SMALL_STATE(8419)] = 190136, + [SMALL_STATE(8420)] = 190150, + [SMALL_STATE(8421)] = 190164, + [SMALL_STATE(8422)] = 190178, + [SMALL_STATE(8423)] = 190192, + [SMALL_STATE(8424)] = 190206, + [SMALL_STATE(8425)] = 190220, + [SMALL_STATE(8426)] = 190230, + [SMALL_STATE(8427)] = 190244, + [SMALL_STATE(8428)] = 190258, + [SMALL_STATE(8429)] = 190268, + [SMALL_STATE(8430)] = 190282, + [SMALL_STATE(8431)] = 190296, + [SMALL_STATE(8432)] = 190310, + [SMALL_STATE(8433)] = 190324, + [SMALL_STATE(8434)] = 190338, + [SMALL_STATE(8435)] = 190352, + [SMALL_STATE(8436)] = 190366, + [SMALL_STATE(8437)] = 190380, + [SMALL_STATE(8438)] = 190394, + [SMALL_STATE(8439)] = 190406, + [SMALL_STATE(8440)] = 190418, + [SMALL_STATE(8441)] = 190430, + [SMALL_STATE(8442)] = 190444, + [SMALL_STATE(8443)] = 190458, + [SMALL_STATE(8444)] = 190472, + [SMALL_STATE(8445)] = 190484, + [SMALL_STATE(8446)] = 190498, + [SMALL_STATE(8447)] = 190510, + [SMALL_STATE(8448)] = 190524, + [SMALL_STATE(8449)] = 190538, + [SMALL_STATE(8450)] = 190552, + [SMALL_STATE(8451)] = 190566, + [SMALL_STATE(8452)] = 190580, + [SMALL_STATE(8453)] = 190594, + [SMALL_STATE(8454)] = 190608, + [SMALL_STATE(8455)] = 190622, + [SMALL_STATE(8456)] = 190636, + [SMALL_STATE(8457)] = 190650, + [SMALL_STATE(8458)] = 190664, + [SMALL_STATE(8459)] = 190678, + [SMALL_STATE(8460)] = 190692, + [SMALL_STATE(8461)] = 190706, + [SMALL_STATE(8462)] = 190720, + [SMALL_STATE(8463)] = 190734, + [SMALL_STATE(8464)] = 190746, + [SMALL_STATE(8465)] = 190758, + [SMALL_STATE(8466)] = 190772, + [SMALL_STATE(8467)] = 190786, + [SMALL_STATE(8468)] = 190800, + [SMALL_STATE(8469)] = 190814, + [SMALL_STATE(8470)] = 190828, + [SMALL_STATE(8471)] = 190842, + [SMALL_STATE(8472)] = 190856, + [SMALL_STATE(8473)] = 190870, + [SMALL_STATE(8474)] = 190884, + [SMALL_STATE(8475)] = 190898, + [SMALL_STATE(8476)] = 190910, + [SMALL_STATE(8477)] = 190924, + [SMALL_STATE(8478)] = 190938, + [SMALL_STATE(8479)] = 190952, + [SMALL_STATE(8480)] = 190966, + [SMALL_STATE(8481)] = 190980, + [SMALL_STATE(8482)] = 190994, + [SMALL_STATE(8483)] = 191008, + [SMALL_STATE(8484)] = 191022, + [SMALL_STATE(8485)] = 191036, + [SMALL_STATE(8486)] = 191050, + [SMALL_STATE(8487)] = 191062, + [SMALL_STATE(8488)] = 191076, + [SMALL_STATE(8489)] = 191090, + [SMALL_STATE(8490)] = 191104, + [SMALL_STATE(8491)] = 191116, + [SMALL_STATE(8492)] = 191128, + [SMALL_STATE(8493)] = 191142, + [SMALL_STATE(8494)] = 191156, + [SMALL_STATE(8495)] = 191170, + [SMALL_STATE(8496)] = 191184, + [SMALL_STATE(8497)] = 191198, + [SMALL_STATE(8498)] = 191210, + [SMALL_STATE(8499)] = 191224, + [SMALL_STATE(8500)] = 191236, + [SMALL_STATE(8501)] = 191250, + [SMALL_STATE(8502)] = 191264, + [SMALL_STATE(8503)] = 191276, + [SMALL_STATE(8504)] = 191290, + [SMALL_STATE(8505)] = 191304, + [SMALL_STATE(8506)] = 191316, + [SMALL_STATE(8507)] = 191330, + [SMALL_STATE(8508)] = 191344, + [SMALL_STATE(8509)] = 191358, + [SMALL_STATE(8510)] = 191372, + [SMALL_STATE(8511)] = 191386, + [SMALL_STATE(8512)] = 191400, + [SMALL_STATE(8513)] = 191414, + [SMALL_STATE(8514)] = 191426, + [SMALL_STATE(8515)] = 191440, + [SMALL_STATE(8516)] = 191454, + [SMALL_STATE(8517)] = 191468, + [SMALL_STATE(8518)] = 191482, + [SMALL_STATE(8519)] = 191496, + [SMALL_STATE(8520)] = 191510, + [SMALL_STATE(8521)] = 191524, + [SMALL_STATE(8522)] = 191536, + [SMALL_STATE(8523)] = 191550, + [SMALL_STATE(8524)] = 191564, + [SMALL_STATE(8525)] = 191578, + [SMALL_STATE(8526)] = 191592, + [SMALL_STATE(8527)] = 191606, + [SMALL_STATE(8528)] = 191620, + [SMALL_STATE(8529)] = 191632, + [SMALL_STATE(8530)] = 191642, + [SMALL_STATE(8531)] = 191656, + [SMALL_STATE(8532)] = 191670, + [SMALL_STATE(8533)] = 191684, + [SMALL_STATE(8534)] = 191698, + [SMALL_STATE(8535)] = 191712, + [SMALL_STATE(8536)] = 191726, + [SMALL_STATE(8537)] = 191740, + [SMALL_STATE(8538)] = 191754, + [SMALL_STATE(8539)] = 191768, + [SMALL_STATE(8540)] = 191782, + [SMALL_STATE(8541)] = 191796, + [SMALL_STATE(8542)] = 191808, + [SMALL_STATE(8543)] = 191820, + [SMALL_STATE(8544)] = 191834, + [SMALL_STATE(8545)] = 191848, + [SMALL_STATE(8546)] = 191862, + [SMALL_STATE(8547)] = 191876, + [SMALL_STATE(8548)] = 191890, + [SMALL_STATE(8549)] = 191900, + [SMALL_STATE(8550)] = 191914, + [SMALL_STATE(8551)] = 191928, + [SMALL_STATE(8552)] = 191942, + [SMALL_STATE(8553)] = 191956, + [SMALL_STATE(8554)] = 191970, + [SMALL_STATE(8555)] = 191984, + [SMALL_STATE(8556)] = 191998, + [SMALL_STATE(8557)] = 192012, + [SMALL_STATE(8558)] = 192024, + [SMALL_STATE(8559)] = 192038, + [SMALL_STATE(8560)] = 192052, + [SMALL_STATE(8561)] = 192066, + [SMALL_STATE(8562)] = 192080, + [SMALL_STATE(8563)] = 192094, + [SMALL_STATE(8564)] = 192108, + [SMALL_STATE(8565)] = 192122, + [SMALL_STATE(8566)] = 192136, + [SMALL_STATE(8567)] = 192148, + [SMALL_STATE(8568)] = 192162, + [SMALL_STATE(8569)] = 192176, + [SMALL_STATE(8570)] = 192190, + [SMALL_STATE(8571)] = 192204, + [SMALL_STATE(8572)] = 192218, + [SMALL_STATE(8573)] = 192230, + [SMALL_STATE(8574)] = 192244, + [SMALL_STATE(8575)] = 192258, + [SMALL_STATE(8576)] = 192272, + [SMALL_STATE(8577)] = 192286, + [SMALL_STATE(8578)] = 192300, + [SMALL_STATE(8579)] = 192314, + [SMALL_STATE(8580)] = 192328, + [SMALL_STATE(8581)] = 192342, + [SMALL_STATE(8582)] = 192356, + [SMALL_STATE(8583)] = 192370, + [SMALL_STATE(8584)] = 192384, + [SMALL_STATE(8585)] = 192398, + [SMALL_STATE(8586)] = 192412, + [SMALL_STATE(8587)] = 192426, + [SMALL_STATE(8588)] = 192440, + [SMALL_STATE(8589)] = 192454, + [SMALL_STATE(8590)] = 192468, + [SMALL_STATE(8591)] = 192482, + [SMALL_STATE(8592)] = 192492, + [SMALL_STATE(8593)] = 192506, + [SMALL_STATE(8594)] = 192520, + [SMALL_STATE(8595)] = 192531, + [SMALL_STATE(8596)] = 192542, + [SMALL_STATE(8597)] = 192553, + [SMALL_STATE(8598)] = 192564, + [SMALL_STATE(8599)] = 192575, + [SMALL_STATE(8600)] = 192586, + [SMALL_STATE(8601)] = 192597, + [SMALL_STATE(8602)] = 192608, + [SMALL_STATE(8603)] = 192619, + [SMALL_STATE(8604)] = 192630, + [SMALL_STATE(8605)] = 192641, + [SMALL_STATE(8606)] = 192652, + [SMALL_STATE(8607)] = 192663, + [SMALL_STATE(8608)] = 192674, + [SMALL_STATE(8609)] = 192685, + [SMALL_STATE(8610)] = 192696, + [SMALL_STATE(8611)] = 192707, + [SMALL_STATE(8612)] = 192718, + [SMALL_STATE(8613)] = 192729, + [SMALL_STATE(8614)] = 192740, + [SMALL_STATE(8615)] = 192751, + [SMALL_STATE(8616)] = 192762, + [SMALL_STATE(8617)] = 192773, + [SMALL_STATE(8618)] = 192784, + [SMALL_STATE(8619)] = 192795, + [SMALL_STATE(8620)] = 192806, + [SMALL_STATE(8621)] = 192817, + [SMALL_STATE(8622)] = 192828, + [SMALL_STATE(8623)] = 192839, + [SMALL_STATE(8624)] = 192850, + [SMALL_STATE(8625)] = 192861, + [SMALL_STATE(8626)] = 192872, + [SMALL_STATE(8627)] = 192883, + [SMALL_STATE(8628)] = 192894, + [SMALL_STATE(8629)] = 192905, + [SMALL_STATE(8630)] = 192916, + [SMALL_STATE(8631)] = 192927, + [SMALL_STATE(8632)] = 192938, + [SMALL_STATE(8633)] = 192949, + [SMALL_STATE(8634)] = 192960, + [SMALL_STATE(8635)] = 192971, + [SMALL_STATE(8636)] = 192982, + [SMALL_STATE(8637)] = 192993, + [SMALL_STATE(8638)] = 193004, + [SMALL_STATE(8639)] = 193015, + [SMALL_STATE(8640)] = 193026, + [SMALL_STATE(8641)] = 193037, + [SMALL_STATE(8642)] = 193048, + [SMALL_STATE(8643)] = 193059, + [SMALL_STATE(8644)] = 193070, + [SMALL_STATE(8645)] = 193081, + [SMALL_STATE(8646)] = 193090, + [SMALL_STATE(8647)] = 193101, + [SMALL_STATE(8648)] = 193112, + [SMALL_STATE(8649)] = 193123, + [SMALL_STATE(8650)] = 193132, + [SMALL_STATE(8651)] = 193143, + [SMALL_STATE(8652)] = 193154, + [SMALL_STATE(8653)] = 193165, + [SMALL_STATE(8654)] = 193176, + [SMALL_STATE(8655)] = 193187, + [SMALL_STATE(8656)] = 193198, + [SMALL_STATE(8657)] = 193209, + [SMALL_STATE(8658)] = 193220, + [SMALL_STATE(8659)] = 193229, + [SMALL_STATE(8660)] = 193240, + [SMALL_STATE(8661)] = 193251, + [SMALL_STATE(8662)] = 193262, + [SMALL_STATE(8663)] = 193273, + [SMALL_STATE(8664)] = 193284, + [SMALL_STATE(8665)] = 193295, + [SMALL_STATE(8666)] = 193304, + [SMALL_STATE(8667)] = 193315, + [SMALL_STATE(8668)] = 193326, + [SMALL_STATE(8669)] = 193337, + [SMALL_STATE(8670)] = 193348, + [SMALL_STATE(8671)] = 193359, + [SMALL_STATE(8672)] = 193370, + [SMALL_STATE(8673)] = 193381, + [SMALL_STATE(8674)] = 193390, + [SMALL_STATE(8675)] = 193401, + [SMALL_STATE(8676)] = 193412, + [SMALL_STATE(8677)] = 193421, + [SMALL_STATE(8678)] = 193432, + [SMALL_STATE(8679)] = 193443, + [SMALL_STATE(8680)] = 193454, + [SMALL_STATE(8681)] = 193465, + [SMALL_STATE(8682)] = 193474, + [SMALL_STATE(8683)] = 193485, + [SMALL_STATE(8684)] = 193496, + [SMALL_STATE(8685)] = 193507, + [SMALL_STATE(8686)] = 193516, + [SMALL_STATE(8687)] = 193527, + [SMALL_STATE(8688)] = 193538, + [SMALL_STATE(8689)] = 193549, + [SMALL_STATE(8690)] = 193560, + [SMALL_STATE(8691)] = 193571, + [SMALL_STATE(8692)] = 193582, + [SMALL_STATE(8693)] = 193593, + [SMALL_STATE(8694)] = 193604, + [SMALL_STATE(8695)] = 193615, + [SMALL_STATE(8696)] = 193626, + [SMALL_STATE(8697)] = 193637, + [SMALL_STATE(8698)] = 193646, + [SMALL_STATE(8699)] = 193657, + [SMALL_STATE(8700)] = 193668, + [SMALL_STATE(8701)] = 193679, + [SMALL_STATE(8702)] = 193688, + [SMALL_STATE(8703)] = 193699, + [SMALL_STATE(8704)] = 193710, + [SMALL_STATE(8705)] = 193721, + [SMALL_STATE(8706)] = 193730, + [SMALL_STATE(8707)] = 193741, + [SMALL_STATE(8708)] = 193752, + [SMALL_STATE(8709)] = 193763, + [SMALL_STATE(8710)] = 193774, + [SMALL_STATE(8711)] = 193785, + [SMALL_STATE(8712)] = 193796, + [SMALL_STATE(8713)] = 193807, + [SMALL_STATE(8714)] = 193816, + [SMALL_STATE(8715)] = 193825, + [SMALL_STATE(8716)] = 193836, + [SMALL_STATE(8717)] = 193847, + [SMALL_STATE(8718)] = 193858, + [SMALL_STATE(8719)] = 193869, + [SMALL_STATE(8720)] = 193880, + [SMALL_STATE(8721)] = 193891, + [SMALL_STATE(8722)] = 193902, + [SMALL_STATE(8723)] = 193911, + [SMALL_STATE(8724)] = 193922, + [SMALL_STATE(8725)] = 193933, + [SMALL_STATE(8726)] = 193944, + [SMALL_STATE(8727)] = 193953, + [SMALL_STATE(8728)] = 193964, + [SMALL_STATE(8729)] = 193973, + [SMALL_STATE(8730)] = 193982, + [SMALL_STATE(8731)] = 193993, + [SMALL_STATE(8732)] = 194004, + [SMALL_STATE(8733)] = 194013, + [SMALL_STATE(8734)] = 194024, + [SMALL_STATE(8735)] = 194033, + [SMALL_STATE(8736)] = 194044, + [SMALL_STATE(8737)] = 194055, + [SMALL_STATE(8738)] = 194064, + [SMALL_STATE(8739)] = 194075, + [SMALL_STATE(8740)] = 194086, + [SMALL_STATE(8741)] = 194095, + [SMALL_STATE(8742)] = 194104, + [SMALL_STATE(8743)] = 194115, + [SMALL_STATE(8744)] = 194126, + [SMALL_STATE(8745)] = 194135, + [SMALL_STATE(8746)] = 194146, + [SMALL_STATE(8747)] = 194157, + [SMALL_STATE(8748)] = 194168, + [SMALL_STATE(8749)] = 194179, + [SMALL_STATE(8750)] = 194190, + [SMALL_STATE(8751)] = 194201, + [SMALL_STATE(8752)] = 194212, + [SMALL_STATE(8753)] = 194223, + [SMALL_STATE(8754)] = 194234, + [SMALL_STATE(8755)] = 194243, + [SMALL_STATE(8756)] = 194254, + [SMALL_STATE(8757)] = 194265, + [SMALL_STATE(8758)] = 194276, + [SMALL_STATE(8759)] = 194287, + [SMALL_STATE(8760)] = 194298, + [SMALL_STATE(8761)] = 194309, + [SMALL_STATE(8762)] = 194320, + [SMALL_STATE(8763)] = 194331, + [SMALL_STATE(8764)] = 194340, + [SMALL_STATE(8765)] = 194351, + [SMALL_STATE(8766)] = 194362, + [SMALL_STATE(8767)] = 194373, + [SMALL_STATE(8768)] = 194382, + [SMALL_STATE(8769)] = 194391, + [SMALL_STATE(8770)] = 194402, + [SMALL_STATE(8771)] = 194411, + [SMALL_STATE(8772)] = 194422, + [SMALL_STATE(8773)] = 194433, + [SMALL_STATE(8774)] = 194444, + [SMALL_STATE(8775)] = 194455, + [SMALL_STATE(8776)] = 194466, + [SMALL_STATE(8777)] = 194477, + [SMALL_STATE(8778)] = 194488, + [SMALL_STATE(8779)] = 194499, + [SMALL_STATE(8780)] = 194510, + [SMALL_STATE(8781)] = 194521, + [SMALL_STATE(8782)] = 194530, + [SMALL_STATE(8783)] = 194539, + [SMALL_STATE(8784)] = 194548, + [SMALL_STATE(8785)] = 194559, + [SMALL_STATE(8786)] = 194570, + [SMALL_STATE(8787)] = 194581, + [SMALL_STATE(8788)] = 194592, + [SMALL_STATE(8789)] = 194601, + [SMALL_STATE(8790)] = 194612, + [SMALL_STATE(8791)] = 194621, + [SMALL_STATE(8792)] = 194630, + [SMALL_STATE(8793)] = 194641, + [SMALL_STATE(8794)] = 194652, + [SMALL_STATE(8795)] = 194663, + [SMALL_STATE(8796)] = 194674, + [SMALL_STATE(8797)] = 194685, + [SMALL_STATE(8798)] = 194696, + [SMALL_STATE(8799)] = 194707, + [SMALL_STATE(8800)] = 194718, + [SMALL_STATE(8801)] = 194727, + [SMALL_STATE(8802)] = 194736, + [SMALL_STATE(8803)] = 194745, + [SMALL_STATE(8804)] = 194756, + [SMALL_STATE(8805)] = 194767, + [SMALL_STATE(8806)] = 194778, + [SMALL_STATE(8807)] = 194789, + [SMALL_STATE(8808)] = 194800, + [SMALL_STATE(8809)] = 194811, + [SMALL_STATE(8810)] = 194822, + [SMALL_STATE(8811)] = 194831, + [SMALL_STATE(8812)] = 194840, + [SMALL_STATE(8813)] = 194851, + [SMALL_STATE(8814)] = 194860, + [SMALL_STATE(8815)] = 194869, + [SMALL_STATE(8816)] = 194880, + [SMALL_STATE(8817)] = 194889, + [SMALL_STATE(8818)] = 194900, + [SMALL_STATE(8819)] = 194911, + [SMALL_STATE(8820)] = 194922, + [SMALL_STATE(8821)] = 194933, + [SMALL_STATE(8822)] = 194944, + [SMALL_STATE(8823)] = 194953, + [SMALL_STATE(8824)] = 194964, + [SMALL_STATE(8825)] = 194973, + [SMALL_STATE(8826)] = 194982, + [SMALL_STATE(8827)] = 194993, + [SMALL_STATE(8828)] = 195004, + [SMALL_STATE(8829)] = 195015, + [SMALL_STATE(8830)] = 195024, + [SMALL_STATE(8831)] = 195035, + [SMALL_STATE(8832)] = 195046, + [SMALL_STATE(8833)] = 195057, + [SMALL_STATE(8834)] = 195068, + [SMALL_STATE(8835)] = 195077, + [SMALL_STATE(8836)] = 195088, + [SMALL_STATE(8837)] = 195099, + [SMALL_STATE(8838)] = 195110, + [SMALL_STATE(8839)] = 195121, + [SMALL_STATE(8840)] = 195132, + [SMALL_STATE(8841)] = 195143, + [SMALL_STATE(8842)] = 195154, + [SMALL_STATE(8843)] = 195165, + [SMALL_STATE(8844)] = 195174, + [SMALL_STATE(8845)] = 195185, + [SMALL_STATE(8846)] = 195194, + [SMALL_STATE(8847)] = 195205, + [SMALL_STATE(8848)] = 195216, + [SMALL_STATE(8849)] = 195227, + [SMALL_STATE(8850)] = 195238, + [SMALL_STATE(8851)] = 195249, + [SMALL_STATE(8852)] = 195258, + [SMALL_STATE(8853)] = 195267, + [SMALL_STATE(8854)] = 195278, + [SMALL_STATE(8855)] = 195289, + [SMALL_STATE(8856)] = 195300, + [SMALL_STATE(8857)] = 195311, + [SMALL_STATE(8858)] = 195322, + [SMALL_STATE(8859)] = 195331, + [SMALL_STATE(8860)] = 195342, + [SMALL_STATE(8861)] = 195353, + [SMALL_STATE(8862)] = 195362, + [SMALL_STATE(8863)] = 195373, + [SMALL_STATE(8864)] = 195382, + [SMALL_STATE(8865)] = 195393, + [SMALL_STATE(8866)] = 195402, + [SMALL_STATE(8867)] = 195413, + [SMALL_STATE(8868)] = 195424, + [SMALL_STATE(8869)] = 195433, + [SMALL_STATE(8870)] = 195442, + [SMALL_STATE(8871)] = 195453, + [SMALL_STATE(8872)] = 195462, + [SMALL_STATE(8873)] = 195473, + [SMALL_STATE(8874)] = 195484, + [SMALL_STATE(8875)] = 195493, + [SMALL_STATE(8876)] = 195504, + [SMALL_STATE(8877)] = 195515, + [SMALL_STATE(8878)] = 195526, + [SMALL_STATE(8879)] = 195537, + [SMALL_STATE(8880)] = 195548, + [SMALL_STATE(8881)] = 195559, + [SMALL_STATE(8882)] = 195568, + [SMALL_STATE(8883)] = 195577, + [SMALL_STATE(8884)] = 195588, + [SMALL_STATE(8885)] = 195599, + [SMALL_STATE(8886)] = 195610, + [SMALL_STATE(8887)] = 195621, + [SMALL_STATE(8888)] = 195632, + [SMALL_STATE(8889)] = 195641, + [SMALL_STATE(8890)] = 195652, + [SMALL_STATE(8891)] = 195661, + [SMALL_STATE(8892)] = 195672, + [SMALL_STATE(8893)] = 195683, + [SMALL_STATE(8894)] = 195692, + [SMALL_STATE(8895)] = 195703, + [SMALL_STATE(8896)] = 195714, + [SMALL_STATE(8897)] = 195725, + [SMALL_STATE(8898)] = 195736, + [SMALL_STATE(8899)] = 195745, + [SMALL_STATE(8900)] = 195756, + [SMALL_STATE(8901)] = 195765, + [SMALL_STATE(8902)] = 195774, + [SMALL_STATE(8903)] = 195785, + [SMALL_STATE(8904)] = 195796, + [SMALL_STATE(8905)] = 195805, + [SMALL_STATE(8906)] = 195814, + [SMALL_STATE(8907)] = 195825, + [SMALL_STATE(8908)] = 195834, + [SMALL_STATE(8909)] = 195843, + [SMALL_STATE(8910)] = 195854, + [SMALL_STATE(8911)] = 195865, + [SMALL_STATE(8912)] = 195874, + [SMALL_STATE(8913)] = 195885, + [SMALL_STATE(8914)] = 195896, + [SMALL_STATE(8915)] = 195905, + [SMALL_STATE(8916)] = 195916, + [SMALL_STATE(8917)] = 195927, + [SMALL_STATE(8918)] = 195938, + [SMALL_STATE(8919)] = 195949, + [SMALL_STATE(8920)] = 195958, + [SMALL_STATE(8921)] = 195969, + [SMALL_STATE(8922)] = 195980, + [SMALL_STATE(8923)] = 195991, + [SMALL_STATE(8924)] = 196002, + [SMALL_STATE(8925)] = 196013, + [SMALL_STATE(8926)] = 196024, + [SMALL_STATE(8927)] = 196033, + [SMALL_STATE(8928)] = 196042, + [SMALL_STATE(8929)] = 196051, + [SMALL_STATE(8930)] = 196062, + [SMALL_STATE(8931)] = 196071, + [SMALL_STATE(8932)] = 196082, + [SMALL_STATE(8933)] = 196093, + [SMALL_STATE(8934)] = 196104, + [SMALL_STATE(8935)] = 196115, + [SMALL_STATE(8936)] = 196124, + [SMALL_STATE(8937)] = 196133, + [SMALL_STATE(8938)] = 196144, + [SMALL_STATE(8939)] = 196155, + [SMALL_STATE(8940)] = 196166, + [SMALL_STATE(8941)] = 196175, + [SMALL_STATE(8942)] = 196186, + [SMALL_STATE(8943)] = 196195, + [SMALL_STATE(8944)] = 196204, + [SMALL_STATE(8945)] = 196213, + [SMALL_STATE(8946)] = 196224, + [SMALL_STATE(8947)] = 196235, + [SMALL_STATE(8948)] = 196244, + [SMALL_STATE(8949)] = 196252, + [SMALL_STATE(8950)] = 196260, + [SMALL_STATE(8951)] = 196268, + [SMALL_STATE(8952)] = 196276, + [SMALL_STATE(8953)] = 196284, + [SMALL_STATE(8954)] = 196292, + [SMALL_STATE(8955)] = 196300, + [SMALL_STATE(8956)] = 196308, + [SMALL_STATE(8957)] = 196316, + [SMALL_STATE(8958)] = 196324, + [SMALL_STATE(8959)] = 196332, + [SMALL_STATE(8960)] = 196340, + [SMALL_STATE(8961)] = 196348, + [SMALL_STATE(8962)] = 196356, + [SMALL_STATE(8963)] = 196364, + [SMALL_STATE(8964)] = 196372, + [SMALL_STATE(8965)] = 196380, + [SMALL_STATE(8966)] = 196388, + [SMALL_STATE(8967)] = 196396, + [SMALL_STATE(8968)] = 196404, + [SMALL_STATE(8969)] = 196412, + [SMALL_STATE(8970)] = 196420, + [SMALL_STATE(8971)] = 196428, + [SMALL_STATE(8972)] = 196436, + [SMALL_STATE(8973)] = 196444, + [SMALL_STATE(8974)] = 196452, + [SMALL_STATE(8975)] = 196460, + [SMALL_STATE(8976)] = 196468, + [SMALL_STATE(8977)] = 196476, + [SMALL_STATE(8978)] = 196484, + [SMALL_STATE(8979)] = 196492, + [SMALL_STATE(8980)] = 196500, + [SMALL_STATE(8981)] = 196508, + [SMALL_STATE(8982)] = 196516, + [SMALL_STATE(8983)] = 196524, + [SMALL_STATE(8984)] = 196532, + [SMALL_STATE(8985)] = 196540, + [SMALL_STATE(8986)] = 196548, + [SMALL_STATE(8987)] = 196556, + [SMALL_STATE(8988)] = 196564, + [SMALL_STATE(8989)] = 196572, + [SMALL_STATE(8990)] = 196580, + [SMALL_STATE(8991)] = 196588, + [SMALL_STATE(8992)] = 196596, + [SMALL_STATE(8993)] = 196604, + [SMALL_STATE(8994)] = 196612, + [SMALL_STATE(8995)] = 196620, + [SMALL_STATE(8996)] = 196628, + [SMALL_STATE(8997)] = 196636, + [SMALL_STATE(8998)] = 196644, + [SMALL_STATE(8999)] = 196652, + [SMALL_STATE(9000)] = 196660, + [SMALL_STATE(9001)] = 196668, + [SMALL_STATE(9002)] = 196676, + [SMALL_STATE(9003)] = 196684, + [SMALL_STATE(9004)] = 196692, + [SMALL_STATE(9005)] = 196700, + [SMALL_STATE(9006)] = 196708, + [SMALL_STATE(9007)] = 196716, + [SMALL_STATE(9008)] = 196724, + [SMALL_STATE(9009)] = 196732, + [SMALL_STATE(9010)] = 196740, + [SMALL_STATE(9011)] = 196748, + [SMALL_STATE(9012)] = 196756, + [SMALL_STATE(9013)] = 196764, + [SMALL_STATE(9014)] = 196772, + [SMALL_STATE(9015)] = 196780, + [SMALL_STATE(9016)] = 196788, + [SMALL_STATE(9017)] = 196796, + [SMALL_STATE(9018)] = 196804, + [SMALL_STATE(9019)] = 196812, + [SMALL_STATE(9020)] = 196820, + [SMALL_STATE(9021)] = 196828, + [SMALL_STATE(9022)] = 196836, + [SMALL_STATE(9023)] = 196844, + [SMALL_STATE(9024)] = 196852, + [SMALL_STATE(9025)] = 196860, + [SMALL_STATE(9026)] = 196868, + [SMALL_STATE(9027)] = 196876, + [SMALL_STATE(9028)] = 196884, + [SMALL_STATE(9029)] = 196892, + [SMALL_STATE(9030)] = 196900, + [SMALL_STATE(9031)] = 196908, + [SMALL_STATE(9032)] = 196916, + [SMALL_STATE(9033)] = 196924, + [SMALL_STATE(9034)] = 196932, + [SMALL_STATE(9035)] = 196940, + [SMALL_STATE(9036)] = 196948, + [SMALL_STATE(9037)] = 196956, + [SMALL_STATE(9038)] = 196964, + [SMALL_STATE(9039)] = 196972, + [SMALL_STATE(9040)] = 196980, + [SMALL_STATE(9041)] = 196988, + [SMALL_STATE(9042)] = 196996, + [SMALL_STATE(9043)] = 197004, + [SMALL_STATE(9044)] = 197012, + [SMALL_STATE(9045)] = 197020, + [SMALL_STATE(9046)] = 197028, + [SMALL_STATE(9047)] = 197036, + [SMALL_STATE(9048)] = 197044, + [SMALL_STATE(9049)] = 197052, + [SMALL_STATE(9050)] = 197060, + [SMALL_STATE(9051)] = 197068, + [SMALL_STATE(9052)] = 197076, + [SMALL_STATE(9053)] = 197084, + [SMALL_STATE(9054)] = 197092, + [SMALL_STATE(9055)] = 197100, + [SMALL_STATE(9056)] = 197108, + [SMALL_STATE(9057)] = 197116, + [SMALL_STATE(9058)] = 197124, + [SMALL_STATE(9059)] = 197132, + [SMALL_STATE(9060)] = 197140, + [SMALL_STATE(9061)] = 197148, + [SMALL_STATE(9062)] = 197156, + [SMALL_STATE(9063)] = 197164, + [SMALL_STATE(9064)] = 197172, + [SMALL_STATE(9065)] = 197180, + [SMALL_STATE(9066)] = 197188, + [SMALL_STATE(9067)] = 197196, + [SMALL_STATE(9068)] = 197204, + [SMALL_STATE(9069)] = 197212, + [SMALL_STATE(9070)] = 197220, + [SMALL_STATE(9071)] = 197228, + [SMALL_STATE(9072)] = 197236, + [SMALL_STATE(9073)] = 197244, + [SMALL_STATE(9074)] = 197252, + [SMALL_STATE(9075)] = 197260, + [SMALL_STATE(9076)] = 197268, + [SMALL_STATE(9077)] = 197276, + [SMALL_STATE(9078)] = 197284, + [SMALL_STATE(9079)] = 197292, + [SMALL_STATE(9080)] = 197300, + [SMALL_STATE(9081)] = 197308, + [SMALL_STATE(9082)] = 197316, + [SMALL_STATE(9083)] = 197324, + [SMALL_STATE(9084)] = 197332, + [SMALL_STATE(9085)] = 197340, + [SMALL_STATE(9086)] = 197348, + [SMALL_STATE(9087)] = 197356, + [SMALL_STATE(9088)] = 197364, + [SMALL_STATE(9089)] = 197372, + [SMALL_STATE(9090)] = 197380, + [SMALL_STATE(9091)] = 197388, + [SMALL_STATE(9092)] = 197396, + [SMALL_STATE(9093)] = 197404, + [SMALL_STATE(9094)] = 197412, + [SMALL_STATE(9095)] = 197420, + [SMALL_STATE(9096)] = 197428, + [SMALL_STATE(9097)] = 197436, + [SMALL_STATE(9098)] = 197444, + [SMALL_STATE(9099)] = 197452, + [SMALL_STATE(9100)] = 197460, + [SMALL_STATE(9101)] = 197468, + [SMALL_STATE(9102)] = 197476, + [SMALL_STATE(9103)] = 197484, + [SMALL_STATE(9104)] = 197492, + [SMALL_STATE(9105)] = 197500, + [SMALL_STATE(9106)] = 197508, + [SMALL_STATE(9107)] = 197516, + [SMALL_STATE(9108)] = 197524, + [SMALL_STATE(9109)] = 197532, + [SMALL_STATE(9110)] = 197540, + [SMALL_STATE(9111)] = 197548, + [SMALL_STATE(9112)] = 197556, + [SMALL_STATE(9113)] = 197564, + [SMALL_STATE(9114)] = 197572, + [SMALL_STATE(9115)] = 197580, + [SMALL_STATE(9116)] = 197588, + [SMALL_STATE(9117)] = 197596, + [SMALL_STATE(9118)] = 197604, + [SMALL_STATE(9119)] = 197612, + [SMALL_STATE(9120)] = 197620, + [SMALL_STATE(9121)] = 197628, + [SMALL_STATE(9122)] = 197636, + [SMALL_STATE(9123)] = 197644, + [SMALL_STATE(9124)] = 197652, + [SMALL_STATE(9125)] = 197660, + [SMALL_STATE(9126)] = 197668, + [SMALL_STATE(9127)] = 197676, + [SMALL_STATE(9128)] = 197684, + [SMALL_STATE(9129)] = 197692, + [SMALL_STATE(9130)] = 197700, + [SMALL_STATE(9131)] = 197708, + [SMALL_STATE(9132)] = 197716, + [SMALL_STATE(9133)] = 197724, + [SMALL_STATE(9134)] = 197732, + [SMALL_STATE(9135)] = 197740, + [SMALL_STATE(9136)] = 197748, + [SMALL_STATE(9137)] = 197756, + [SMALL_STATE(9138)] = 197764, + [SMALL_STATE(9139)] = 197772, + [SMALL_STATE(9140)] = 197780, + [SMALL_STATE(9141)] = 197788, + [SMALL_STATE(9142)] = 197796, + [SMALL_STATE(9143)] = 197804, + [SMALL_STATE(9144)] = 197812, + [SMALL_STATE(9145)] = 197820, + [SMALL_STATE(9146)] = 197828, + [SMALL_STATE(9147)] = 197836, + [SMALL_STATE(9148)] = 197844, + [SMALL_STATE(9149)] = 197852, + [SMALL_STATE(9150)] = 197860, + [SMALL_STATE(9151)] = 197868, + [SMALL_STATE(9152)] = 197876, + [SMALL_STATE(9153)] = 197884, + [SMALL_STATE(9154)] = 197892, + [SMALL_STATE(9155)] = 197900, + [SMALL_STATE(9156)] = 197908, + [SMALL_STATE(9157)] = 197916, + [SMALL_STATE(9158)] = 197924, + [SMALL_STATE(9159)] = 197932, + [SMALL_STATE(9160)] = 197940, + [SMALL_STATE(9161)] = 197948, + [SMALL_STATE(9162)] = 197956, + [SMALL_STATE(9163)] = 197964, + [SMALL_STATE(9164)] = 197972, + [SMALL_STATE(9165)] = 197980, + [SMALL_STATE(9166)] = 197988, + [SMALL_STATE(9167)] = 197996, + [SMALL_STATE(9168)] = 198004, + [SMALL_STATE(9169)] = 198012, + [SMALL_STATE(9170)] = 198020, + [SMALL_STATE(9171)] = 198028, + [SMALL_STATE(9172)] = 198036, + [SMALL_STATE(9173)] = 198044, + [SMALL_STATE(9174)] = 198052, + [SMALL_STATE(9175)] = 198060, + [SMALL_STATE(9176)] = 198068, + [SMALL_STATE(9177)] = 198076, + [SMALL_STATE(9178)] = 198084, + [SMALL_STATE(9179)] = 198092, + [SMALL_STATE(9180)] = 198100, + [SMALL_STATE(9181)] = 198108, + [SMALL_STATE(9182)] = 198116, + [SMALL_STATE(9183)] = 198124, + [SMALL_STATE(9184)] = 198132, + [SMALL_STATE(9185)] = 198140, + [SMALL_STATE(9186)] = 198148, + [SMALL_STATE(9187)] = 198156, + [SMALL_STATE(9188)] = 198164, + [SMALL_STATE(9189)] = 198172, + [SMALL_STATE(9190)] = 198180, + [SMALL_STATE(9191)] = 198188, + [SMALL_STATE(9192)] = 198196, + [SMALL_STATE(9193)] = 198204, + [SMALL_STATE(9194)] = 198212, + [SMALL_STATE(9195)] = 198220, + [SMALL_STATE(9196)] = 198228, + [SMALL_STATE(9197)] = 198236, + [SMALL_STATE(9198)] = 198244, + [SMALL_STATE(9199)] = 198252, + [SMALL_STATE(9200)] = 198260, + [SMALL_STATE(9201)] = 198268, + [SMALL_STATE(9202)] = 198276, + [SMALL_STATE(9203)] = 198284, + [SMALL_STATE(9204)] = 198292, + [SMALL_STATE(9205)] = 198300, + [SMALL_STATE(9206)] = 198308, + [SMALL_STATE(9207)] = 198316, + [SMALL_STATE(9208)] = 198324, + [SMALL_STATE(9209)] = 198332, + [SMALL_STATE(9210)] = 198340, + [SMALL_STATE(9211)] = 198348, + [SMALL_STATE(9212)] = 198356, + [SMALL_STATE(9213)] = 198364, + [SMALL_STATE(9214)] = 198372, + [SMALL_STATE(9215)] = 198380, + [SMALL_STATE(9216)] = 198388, + [SMALL_STATE(9217)] = 198396, + [SMALL_STATE(9218)] = 198404, + [SMALL_STATE(9219)] = 198412, + [SMALL_STATE(9220)] = 198420, + [SMALL_STATE(9221)] = 198428, + [SMALL_STATE(9222)] = 198436, + [SMALL_STATE(9223)] = 198444, + [SMALL_STATE(9224)] = 198452, + [SMALL_STATE(9225)] = 198460, + [SMALL_STATE(9226)] = 198468, + [SMALL_STATE(9227)] = 198476, + [SMALL_STATE(9228)] = 198484, + [SMALL_STATE(9229)] = 198492, + [SMALL_STATE(9230)] = 198500, + [SMALL_STATE(9231)] = 198508, + [SMALL_STATE(9232)] = 198516, + [SMALL_STATE(9233)] = 198524, + [SMALL_STATE(9234)] = 198532, + [SMALL_STATE(9235)] = 198540, + [SMALL_STATE(9236)] = 198548, + [SMALL_STATE(9237)] = 198556, + [SMALL_STATE(9238)] = 198564, + [SMALL_STATE(9239)] = 198572, + [SMALL_STATE(9240)] = 198580, + [SMALL_STATE(9241)] = 198588, + [SMALL_STATE(9242)] = 198596, + [SMALL_STATE(9243)] = 198604, + [SMALL_STATE(9244)] = 198612, + [SMALL_STATE(9245)] = 198620, + [SMALL_STATE(9246)] = 198628, + [SMALL_STATE(9247)] = 198636, + [SMALL_STATE(9248)] = 198644, + [SMALL_STATE(9249)] = 198652, + [SMALL_STATE(9250)] = 198660, + [SMALL_STATE(9251)] = 198668, + [SMALL_STATE(9252)] = 198676, + [SMALL_STATE(9253)] = 198684, + [SMALL_STATE(9254)] = 198692, + [SMALL_STATE(9255)] = 198700, + [SMALL_STATE(9256)] = 198708, + [SMALL_STATE(9257)] = 198716, + [SMALL_STATE(9258)] = 198724, + [SMALL_STATE(9259)] = 198732, + [SMALL_STATE(9260)] = 198740, + [SMALL_STATE(9261)] = 198748, + [SMALL_STATE(9262)] = 198756, + [SMALL_STATE(9263)] = 198764, + [SMALL_STATE(9264)] = 198772, + [SMALL_STATE(9265)] = 198780, + [SMALL_STATE(9266)] = 198788, + [SMALL_STATE(9267)] = 198796, + [SMALL_STATE(9268)] = 198804, + [SMALL_STATE(9269)] = 198812, + [SMALL_STATE(9270)] = 198820, + [SMALL_STATE(9271)] = 198828, + [SMALL_STATE(9272)] = 198836, + [SMALL_STATE(9273)] = 198844, + [SMALL_STATE(9274)] = 198852, + [SMALL_STATE(9275)] = 198860, + [SMALL_STATE(9276)] = 198868, + [SMALL_STATE(9277)] = 198876, + [SMALL_STATE(9278)] = 198884, + [SMALL_STATE(9279)] = 198892, + [SMALL_STATE(9280)] = 198900, + [SMALL_STATE(9281)] = 198908, + [SMALL_STATE(9282)] = 198916, + [SMALL_STATE(9283)] = 198924, + [SMALL_STATE(9284)] = 198932, + [SMALL_STATE(9285)] = 198940, + [SMALL_STATE(9286)] = 198948, + [SMALL_STATE(9287)] = 198956, + [SMALL_STATE(9288)] = 198964, + [SMALL_STATE(9289)] = 198972, + [SMALL_STATE(9290)] = 198980, + [SMALL_STATE(9291)] = 198988, + [SMALL_STATE(9292)] = 198996, + [SMALL_STATE(9293)] = 199004, + [SMALL_STATE(9294)] = 199012, + [SMALL_STATE(9295)] = 199020, + [SMALL_STATE(9296)] = 199028, + [SMALL_STATE(9297)] = 199036, + [SMALL_STATE(9298)] = 199044, + [SMALL_STATE(9299)] = 199052, + [SMALL_STATE(9300)] = 199060, + [SMALL_STATE(9301)] = 199068, + [SMALL_STATE(9302)] = 199076, + [SMALL_STATE(9303)] = 199084, + [SMALL_STATE(9304)] = 199092, + [SMALL_STATE(9305)] = 199100, + [SMALL_STATE(9306)] = 199108, + [SMALL_STATE(9307)] = 199116, + [SMALL_STATE(9308)] = 199124, + [SMALL_STATE(9309)] = 199132, + [SMALL_STATE(9310)] = 199140, + [SMALL_STATE(9311)] = 199148, + [SMALL_STATE(9312)] = 199156, + [SMALL_STATE(9313)] = 199164, + [SMALL_STATE(9314)] = 199172, + [SMALL_STATE(9315)] = 199180, + [SMALL_STATE(9316)] = 199188, + [SMALL_STATE(9317)] = 199196, + [SMALL_STATE(9318)] = 199204, + [SMALL_STATE(9319)] = 199212, + [SMALL_STATE(9320)] = 199220, + [SMALL_STATE(9321)] = 199228, + [SMALL_STATE(9322)] = 199236, + [SMALL_STATE(9323)] = 199244, + [SMALL_STATE(9324)] = 199252, + [SMALL_STATE(9325)] = 199260, + [SMALL_STATE(9326)] = 199268, + [SMALL_STATE(9327)] = 199276, + [SMALL_STATE(9328)] = 199284, + [SMALL_STATE(9329)] = 199292, + [SMALL_STATE(9330)] = 199300, + [SMALL_STATE(9331)] = 199308, + [SMALL_STATE(9332)] = 199316, + [SMALL_STATE(9333)] = 199324, + [SMALL_STATE(9334)] = 199332, + [SMALL_STATE(9335)] = 199340, + [SMALL_STATE(9336)] = 199348, + [SMALL_STATE(9337)] = 199356, + [SMALL_STATE(9338)] = 199364, + [SMALL_STATE(9339)] = 199372, + [SMALL_STATE(9340)] = 199380, + [SMALL_STATE(9341)] = 199388, + [SMALL_STATE(9342)] = 199396, + [SMALL_STATE(9343)] = 199404, + [SMALL_STATE(9344)] = 199412, + [SMALL_STATE(9345)] = 199420, + [SMALL_STATE(9346)] = 199428, + [SMALL_STATE(9347)] = 199436, + [SMALL_STATE(9348)] = 199444, + [SMALL_STATE(9349)] = 199452, + [SMALL_STATE(9350)] = 199460, + [SMALL_STATE(9351)] = 199468, + [SMALL_STATE(9352)] = 199476, + [SMALL_STATE(9353)] = 199484, + [SMALL_STATE(9354)] = 199492, + [SMALL_STATE(9355)] = 199500, + [SMALL_STATE(9356)] = 199508, + [SMALL_STATE(9357)] = 199516, + [SMALL_STATE(9358)] = 199524, + [SMALL_STATE(9359)] = 199532, + [SMALL_STATE(9360)] = 199540, + [SMALL_STATE(9361)] = 199548, + [SMALL_STATE(9362)] = 199556, + [SMALL_STATE(9363)] = 199564, + [SMALL_STATE(9364)] = 199572, + [SMALL_STATE(9365)] = 199580, + [SMALL_STATE(9366)] = 199588, + [SMALL_STATE(9367)] = 199596, + [SMALL_STATE(9368)] = 199604, + [SMALL_STATE(9369)] = 199612, + [SMALL_STATE(9370)] = 199620, + [SMALL_STATE(9371)] = 199628, + [SMALL_STATE(9372)] = 199636, + [SMALL_STATE(9373)] = 199644, + [SMALL_STATE(9374)] = 199652, + [SMALL_STATE(9375)] = 199660, + [SMALL_STATE(9376)] = 199668, + [SMALL_STATE(9377)] = 199676, + [SMALL_STATE(9378)] = 199684, + [SMALL_STATE(9379)] = 199692, + [SMALL_STATE(9380)] = 199700, + [SMALL_STATE(9381)] = 199708, + [SMALL_STATE(9382)] = 199716, + [SMALL_STATE(9383)] = 199724, + [SMALL_STATE(9384)] = 199732, + [SMALL_STATE(9385)] = 199740, + [SMALL_STATE(9386)] = 199748, + [SMALL_STATE(9387)] = 199756, + [SMALL_STATE(9388)] = 199764, + [SMALL_STATE(9389)] = 199772, + [SMALL_STATE(9390)] = 199780, + [SMALL_STATE(9391)] = 199788, + [SMALL_STATE(9392)] = 199796, + [SMALL_STATE(9393)] = 199804, + [SMALL_STATE(9394)] = 199812, + [SMALL_STATE(9395)] = 199820, + [SMALL_STATE(9396)] = 199828, + [SMALL_STATE(9397)] = 199836, + [SMALL_STATE(9398)] = 199844, + [SMALL_STATE(9399)] = 199852, + [SMALL_STATE(9400)] = 199860, + [SMALL_STATE(9401)] = 199868, + [SMALL_STATE(9402)] = 199876, + [SMALL_STATE(9403)] = 199884, + [SMALL_STATE(9404)] = 199892, + [SMALL_STATE(9405)] = 199900, + [SMALL_STATE(9406)] = 199908, + [SMALL_STATE(9407)] = 199916, + [SMALL_STATE(9408)] = 199924, + [SMALL_STATE(9409)] = 199932, + [SMALL_STATE(9410)] = 199940, + [SMALL_STATE(9411)] = 199948, + [SMALL_STATE(9412)] = 199956, + [SMALL_STATE(9413)] = 199964, + [SMALL_STATE(9414)] = 199972, + [SMALL_STATE(9415)] = 199980, + [SMALL_STATE(9416)] = 199988, + [SMALL_STATE(9417)] = 199996, + [SMALL_STATE(9418)] = 200004, + [SMALL_STATE(9419)] = 200012, + [SMALL_STATE(9420)] = 200020, + [SMALL_STATE(9421)] = 200028, + [SMALL_STATE(9422)] = 200036, + [SMALL_STATE(9423)] = 200044, + [SMALL_STATE(9424)] = 200052, + [SMALL_STATE(9425)] = 200060, + [SMALL_STATE(9426)] = 200068, + [SMALL_STATE(9427)] = 200076, + [SMALL_STATE(9428)] = 200084, + [SMALL_STATE(9429)] = 200092, + [SMALL_STATE(9430)] = 200100, + [SMALL_STATE(9431)] = 200108, + [SMALL_STATE(9432)] = 200116, + [SMALL_STATE(9433)] = 200124, + [SMALL_STATE(9434)] = 200132, + [SMALL_STATE(9435)] = 200140, + [SMALL_STATE(9436)] = 200148, + [SMALL_STATE(9437)] = 200156, + [SMALL_STATE(9438)] = 200164, + [SMALL_STATE(9439)] = 200172, + [SMALL_STATE(9440)] = 200180, + [SMALL_STATE(9441)] = 200188, + [SMALL_STATE(9442)] = 200196, + [SMALL_STATE(9443)] = 200204, + [SMALL_STATE(9444)] = 200212, + [SMALL_STATE(9445)] = 200220, + [SMALL_STATE(9446)] = 200228, + [SMALL_STATE(9447)] = 200236, + [SMALL_STATE(9448)] = 200244, + [SMALL_STATE(9449)] = 200252, + [SMALL_STATE(9450)] = 200260, + [SMALL_STATE(9451)] = 200268, + [SMALL_STATE(9452)] = 200276, + [SMALL_STATE(9453)] = 200284, + [SMALL_STATE(9454)] = 200292, + [SMALL_STATE(9455)] = 200300, + [SMALL_STATE(9456)] = 200308, + [SMALL_STATE(9457)] = 200316, + [SMALL_STATE(9458)] = 200324, + [SMALL_STATE(9459)] = 200332, + [SMALL_STATE(9460)] = 200340, + [SMALL_STATE(9461)] = 200348, + [SMALL_STATE(9462)] = 200356, + [SMALL_STATE(9463)] = 200364, + [SMALL_STATE(9464)] = 200372, + [SMALL_STATE(9465)] = 200380, + [SMALL_STATE(9466)] = 200388, + [SMALL_STATE(9467)] = 200396, + [SMALL_STATE(9468)] = 200404, + [SMALL_STATE(9469)] = 200412, + [SMALL_STATE(9470)] = 200420, + [SMALL_STATE(9471)] = 200428, + [SMALL_STATE(9472)] = 200436, + [SMALL_STATE(9473)] = 200444, + [SMALL_STATE(9474)] = 200452, + [SMALL_STATE(9475)] = 200460, + [SMALL_STATE(9476)] = 200468, + [SMALL_STATE(9477)] = 200476, + [SMALL_STATE(9478)] = 200484, + [SMALL_STATE(9479)] = 200492, + [SMALL_STATE(9480)] = 200500, + [SMALL_STATE(9481)] = 200508, + [SMALL_STATE(9482)] = 200516, + [SMALL_STATE(9483)] = 200524, + [SMALL_STATE(9484)] = 200532, + [SMALL_STATE(9485)] = 200540, + [SMALL_STATE(9486)] = 200548, + [SMALL_STATE(9487)] = 200556, + [SMALL_STATE(9488)] = 200564, + [SMALL_STATE(9489)] = 200572, + [SMALL_STATE(9490)] = 200580, + [SMALL_STATE(9491)] = 200588, + [SMALL_STATE(9492)] = 200596, + [SMALL_STATE(9493)] = 200604, + [SMALL_STATE(9494)] = 200612, + [SMALL_STATE(9495)] = 200620, + [SMALL_STATE(9496)] = 200628, + [SMALL_STATE(9497)] = 200636, + [SMALL_STATE(9498)] = 200644, + [SMALL_STATE(9499)] = 200652, + [SMALL_STATE(9500)] = 200660, + [SMALL_STATE(9501)] = 200668, + [SMALL_STATE(9502)] = 200676, + [SMALL_STATE(9503)] = 200684, + [SMALL_STATE(9504)] = 200692, + [SMALL_STATE(9505)] = 200700, + [SMALL_STATE(9506)] = 200708, + [SMALL_STATE(9507)] = 200716, + [SMALL_STATE(9508)] = 200724, + [SMALL_STATE(9509)] = 200732, + [SMALL_STATE(9510)] = 200740, + [SMALL_STATE(9511)] = 200748, + [SMALL_STATE(9512)] = 200756, + [SMALL_STATE(9513)] = 200764, + [SMALL_STATE(9514)] = 200772, + [SMALL_STATE(9515)] = 200780, + [SMALL_STATE(9516)] = 200788, + [SMALL_STATE(9517)] = 200796, + [SMALL_STATE(9518)] = 200804, + [SMALL_STATE(9519)] = 200812, + [SMALL_STATE(9520)] = 200820, + [SMALL_STATE(9521)] = 200828, + [SMALL_STATE(9522)] = 200836, + [SMALL_STATE(9523)] = 200844, + [SMALL_STATE(9524)] = 200852, + [SMALL_STATE(9525)] = 200860, + [SMALL_STATE(9526)] = 200868, + [SMALL_STATE(9527)] = 200876, + [SMALL_STATE(9528)] = 200884, + [SMALL_STATE(9529)] = 200892, + [SMALL_STATE(9530)] = 200900, + [SMALL_STATE(9531)] = 200908, + [SMALL_STATE(9532)] = 200916, + [SMALL_STATE(9533)] = 200924, + [SMALL_STATE(9534)] = 200932, + [SMALL_STATE(9535)] = 200940, + [SMALL_STATE(9536)] = 200948, + [SMALL_STATE(9537)] = 200956, + [SMALL_STATE(9538)] = 200964, + [SMALL_STATE(9539)] = 200972, + [SMALL_STATE(9540)] = 200980, + [SMALL_STATE(9541)] = 200988, + [SMALL_STATE(9542)] = 200996, + [SMALL_STATE(9543)] = 201004, + [SMALL_STATE(9544)] = 201012, + [SMALL_STATE(9545)] = 201020, + [SMALL_STATE(9546)] = 201028, + [SMALL_STATE(9547)] = 201036, + [SMALL_STATE(9548)] = 201044, + [SMALL_STATE(9549)] = 201052, + [SMALL_STATE(9550)] = 201060, + [SMALL_STATE(9551)] = 201068, + [SMALL_STATE(9552)] = 201076, + [SMALL_STATE(9553)] = 201084, + [SMALL_STATE(9554)] = 201092, + [SMALL_STATE(9555)] = 201100, + [SMALL_STATE(9556)] = 201108, + [SMALL_STATE(9557)] = 201116, + [SMALL_STATE(9558)] = 201124, + [SMALL_STATE(9559)] = 201132, + [SMALL_STATE(9560)] = 201140, + [SMALL_STATE(9561)] = 201148, + [SMALL_STATE(9562)] = 201156, + [SMALL_STATE(9563)] = 201164, + [SMALL_STATE(9564)] = 201172, + [SMALL_STATE(9565)] = 201180, + [SMALL_STATE(9566)] = 201188, + [SMALL_STATE(9567)] = 201196, + [SMALL_STATE(9568)] = 201204, + [SMALL_STATE(9569)] = 201212, + [SMALL_STATE(9570)] = 201220, + [SMALL_STATE(9571)] = 201228, + [SMALL_STATE(9572)] = 201236, + [SMALL_STATE(9573)] = 201244, + [SMALL_STATE(9574)] = 201252, + [SMALL_STATE(9575)] = 201260, + [SMALL_STATE(9576)] = 201268, + [SMALL_STATE(9577)] = 201276, + [SMALL_STATE(9578)] = 201284, + [SMALL_STATE(9579)] = 201292, + [SMALL_STATE(9580)] = 201300, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -622525,5877 +622733,5888 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9512), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9510), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8534), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8652), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9003), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9041), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8829), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9006), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8948), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8459), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9437), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9104), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9177), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9132), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8481), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9522), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9371), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9136), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9062), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8682), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7578), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9508), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9507), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8794), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5), + [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9327), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9232), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9516), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9017), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8530), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8708), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8984), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9181), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9134), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8772), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9101), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8976), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9176), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8366), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8886), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8979), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9198), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8480), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8745), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8981), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9105), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9192), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8754), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9558), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9554), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9370), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8995), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9363), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8980), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9004), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9525), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9552), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8975), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9353), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7857), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9375), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9157), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9139), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9172), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8994), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9168), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9368), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9363), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9370), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9123), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9085), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9465), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8994), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9557), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9110), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9561), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9081), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9310), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9356), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9244), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9248), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9368), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9145), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9320), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9184), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9308), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9375), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9559), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9116), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9548), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9361), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8962), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9013), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9356), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9081), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7822), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9362), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8970), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9029), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9527), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8960), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9362), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9340), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9371), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9082), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9324), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9133), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9070), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9269), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9462), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4566), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6390), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2128), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7639), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7641), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9514), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(64), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2324), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5728), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7265), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5765), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5087), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5090), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5067), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5066), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2321), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1369), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9512), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9511), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(223), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4470), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9510), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8534), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8652), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2061), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(314), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5060), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7579), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1926), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1926), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5560), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5588), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2720), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5579), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5574), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5459), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5598), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5578), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2715), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8530), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8529), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8525), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4470), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4802), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4802), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4938), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8143), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4566), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7941), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9151), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9122), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8429), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8989), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9481), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9136), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8989), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4558), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(6396), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1616), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7618), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7619), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9517), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(82), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1633), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5691), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7391), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5769), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5117), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5085), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5030), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5035), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1638), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1353), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9509), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9508), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(218), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4206), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(9507), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8433), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8794), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1671), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(320), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5042), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7534), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1712), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(1712), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5589), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5590), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2722), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5591), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5593), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5461), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5594), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5595), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(2725), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8438), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8440), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8444), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4206), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4766), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4766), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(5023), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(8105), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(4558), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2), SHIFT_REPEAT(7974), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8522), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9103), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9009), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9159), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9076), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8981), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9098), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8778), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6), [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8329), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8495), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8418), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8511), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(843), - [2031] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6390), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2107), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2889), + [2031] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6396), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1869), [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(68), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2074), - [2046] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8429), - [2050] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7321), - [2054] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(843), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1121), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1117), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2136), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2117), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(69), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1871), + [2046] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8483), + [2050] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7224), + [2054] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2889), + [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3288), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3319), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1957), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1947), [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1108), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8981), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3325), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9163), [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8435), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8754), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2129), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(270), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1114), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7534), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2117), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8577), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8433), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8437), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1108), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(920), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(920), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1110), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8069), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(843), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7970), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2858), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2275), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(67), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2277), - [2141] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8382), - [2145] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7343), - [2149] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2858), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3403), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3402), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2289), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2261), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3393), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8995), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8379), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8829), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2283), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8792), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1963), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(309), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3320), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7532), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1947), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8438), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8463), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8464), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3325), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2977), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2977), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3324), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8005), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2889), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7947), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2892), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1855), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(70), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1856), + [2141] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8356), + [2145] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7341), + [2149] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2892), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3318), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3375), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2159), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2149), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3447), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9110), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8449), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8772), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2153), [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(262), - [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3401), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7581), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2261), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8377), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8450), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8378), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3393), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2915), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2915), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3400), - [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8054), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2858), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7975), - [2222] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7360), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2281), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2340), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9074), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2348), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(266), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2340), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4566), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2128), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(64), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2324), - [2256] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8495), - [2260] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7226), - [2264] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4566), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5067), - [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5066), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1922), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1988), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4931), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9520), - [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8534), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8652), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1658), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(376), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5060), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7579), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1988), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8530), - [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8529), - [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8525), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4931), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4802), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4802), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4938), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8143), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4566), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7941), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4461), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2013), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(58), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2023), - [2349] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8329), - [2353] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7374), - [2357] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4461), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4676), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4598), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1635), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1630), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4606), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9177), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8459), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8735), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1632), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(310), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4600), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7556), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1630), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8484), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8486), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8489), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4606), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4496), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4496), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4605), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8080), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4461), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7968), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2837), - [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2353), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(60), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2363), - [2442] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8418), - [2446] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7396), - [2450] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2837), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3276), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3340), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2059), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2070), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3399), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8953), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8481), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8703), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2252), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(401), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3376), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7445), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2070), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8451), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8365), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3399), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2967), - [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2967), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3389), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8118), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2837), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7960), - [2520] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7266), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2321), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1926), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9150), - [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1673), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(399), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1926), - [2542] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7306), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1913), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1897), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9152), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1904), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(331), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1897), - [2564] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7232), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1699), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1711), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9076), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1701), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(268), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1711), - [2586] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7213), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2201), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2198), - [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9025), - [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2200), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(264), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2198), - [2608] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7218), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1696), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1703), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9105), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1697), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(260), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1703), - [2630] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7346), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2285), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1801), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9210), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1986), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(298), - [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1801), - [2652] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7296), - [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1899), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1893), - [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8948), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1898), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(295), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1893), - [2674] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7310), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1687), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1674), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9041), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1679), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(220), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1674), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3382), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2203), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(65), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2206), - [2708] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8330), - [2712] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7307), - [2716] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3382), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3755), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3757), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1735), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1786), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3819), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8975), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8499), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8682), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1773), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(263), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3764), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7471), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1786), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8583), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8586), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3819), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3499), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3499), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3792), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8153), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3382), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7952), - [2786] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7323), - [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2134), - [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2143), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9009), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2330), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(267), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2143), - [2808] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7327), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1981), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1665), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9510), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2061), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(314), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1665), - [2830] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7275), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1822), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1868), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9014), - [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1823), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(356), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1868), - [2852] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7362), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1639), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1644), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9058), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1640), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(303), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1644), - [2874] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7400), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1808), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1903), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9287), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1870), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(377), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1903), - [2896] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7313), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1824), - [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1807), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9062), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1816), - [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(261), - [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1807), - [2918] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7283), - [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2349), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2339), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8989), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2345), - [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(265), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2339), - [2940] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7341), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2296), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2362), - [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9143), - [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2334), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3472), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7512), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2149), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8475), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8566), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8439), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3447), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2961), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2961), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3449), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8167), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2892), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7978), + [2222] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7367), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1703), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1714), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9030), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1704), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(268), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1714), + [2244] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7201), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2198), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2190), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9055), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2063), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(313), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2190), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(832), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1883), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(59), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1884), + [2278] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8522), + [2282] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7196), + [2286] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(832), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1086), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1085), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2298), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2291), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1079), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9098), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8366), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8886), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2296), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(270), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1082), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7474), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2291), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8521), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8528), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8490), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1079), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(891), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(891), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1080), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8054), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(832), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7968), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3287), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1812), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(58), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1814), + [2371] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8389), + [2375] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7384), + [2379] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3287), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3771), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3866), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2269), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2255), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3757), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9159), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8480), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8745), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2258), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(267), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3736), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7505), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2255), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8394), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8390), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3757), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3477), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3477), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3752), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8087), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(3287), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7957), + [2449] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7398), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2048), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2042), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9117), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2047), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(368), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2042), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4459), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1707), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(73), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1708), + [2483] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8458), + [2487] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7418), + [2491] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4459), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4751), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4752), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1760), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1665), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4750), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9514), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8530), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8708), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1752), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(331), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4753), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7554), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1665), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8486), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8491), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8502), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4750), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4503), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4503), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4754), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8120), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4459), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7954), + [2564] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7220), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2333), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2301), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9103), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2321), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(265), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2301), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4558), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1616), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(82), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1633), + [2598] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(8511), + [2602] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7306), + [2606] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4558), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5030), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5035), + [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1914), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2013), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5021), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9511), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8433), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8794), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2335), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(364), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5042), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7534), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2013), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8440), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8444), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5021), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4766), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4766), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(5023), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8105), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(4558), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7974), + [2676] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7310), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1638), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1712), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9213), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2197), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(380), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1712), + [2698] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7204), + [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1778), + [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1796), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9167), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1792), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(260), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1796), + [2720] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7412), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2062), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2073), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9075), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2196), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(379), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2073), + [2742] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7281), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2084), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2071), + [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9081), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2072), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(264), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2071), + [2764] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7394), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1979), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1861), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9176), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1897), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(261), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1861), + [2786] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7296), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2239), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2243), + [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9021), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2240), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(377), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2243), + [2808] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7256), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2306), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1810), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9146), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1961), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(296), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1810), + [2830] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7221), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1660), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1656), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9065), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1659), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(295), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1656), + [2852] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7246), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2052), + [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1695), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9134), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1767), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(256), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1695), + [2874] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7312), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1980), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2203), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9507), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1671), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(320), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2203), + [2896] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7286), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2310), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2323), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9085), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2317), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(263), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2323), + [2918] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7242), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2325), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2318), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9017), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2320), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(310), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2318), + [2940] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7350), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2015), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2272), + [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9016), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2264), [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(269), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2362), - [2962] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7274), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2258), - [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2247), - [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9004), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2060), - [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(317), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2247), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9014), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3), SHIFT(4199), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), SHIFT(4199), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3), SHIFT(4199), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3), SHIFT(4199), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3), SHIFT(4199), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(2272), + [2962] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(7247), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1996), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1992), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(9171), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1995), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(266), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(1992), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3), SHIFT(4201), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3), SHIFT(4201), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3), SHIFT(4201), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), SHIFT(4201), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3), SHIFT(4201), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3), SHIFT(4199), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3), SHIFT(4201), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9021), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8766), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 4), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 4), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 2), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 2), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8616), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9150), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8953), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 4), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 4), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 2), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 2), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 6), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 6), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4461), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6390), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2013), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(58), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2023), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8329), - [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7306), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4676), - [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4598), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1913), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1897), - [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2157), - [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4606), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9152), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9272), - [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8459), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8735), - [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1904), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(331), - [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4600), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7556), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2157), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(5802), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(5802), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1897), - [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8484), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8486), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8489), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4606), - [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4496), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4496), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4605), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8080), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4461), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7968), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(2052), - [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), - [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(7345), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7345), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6609), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9574), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2), - [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9574), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1), - [4148] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9271), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 4), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 4), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7590), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 6), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 6), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), - [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(846), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7590), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), - [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1), - [4293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6397), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 2), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 2), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7259), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 4), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 4), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 6), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 6), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, .production_id = 2), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, .production_id = 2), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 6), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 6), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 2), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 2), - [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 2), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 2), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 4), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 4), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6937), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 4), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 4), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, .production_id = 2), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, .production_id = 2), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8661), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [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 = false}}, REDUCE(sym_function_value_parameters, 2), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 2), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 2), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6920), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, .production_id = 1), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, .production_id = 1), - [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 4), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 4), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 6), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 6), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 4), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 4), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3), - [4702] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9285), - [4706] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9250), - [4710] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9398), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4), - [4726] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6436), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3), - [4734] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6408), - [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2), - [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), - [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), - [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2), - [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [4798] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6409), - [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2), - [4806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 2), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 2), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), - [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, .production_id = 1), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, .production_id = 1), - [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), - [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7543), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3), - [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), - [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2), - [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, .production_id = 2), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, .production_id = 2), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), - [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 6), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 6), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 4), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 4), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 2), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 2), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 4), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 4), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9075), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9213), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 2), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 2), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8666), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 4), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 4), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8672), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 2), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 2), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 6), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 6), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 4), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 4), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6388), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1715), + [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), + [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(73), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1488), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(7413), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(8650), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7413), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__postfix_unary_expression, 1), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5658), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1), REDUCE(sym_simple_identifier, 1), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1), REDUCE(sym_simple_identifier, 1), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4459), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6396), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1707), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(73), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1708), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8458), + [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7418), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4751), + [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4752), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1760), + [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1665), + [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2273), + [3958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4750), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9514), + [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(9187), + [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8530), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8708), + [3973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1752), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(331), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4753), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7554), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(2273), + [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6173), + [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(6173), + [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(1665), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8486), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8491), + [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8502), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4750), + [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4503), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4503), + [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4754), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(8120), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(4459), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2), SHIFT_REPEAT(7954), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9577), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2), + [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9577), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7473), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7473), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 1), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), + [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(850), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7266), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), + [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1), + [4300] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6398), + [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1), + [4314] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9229), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 6), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 6), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 4), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 4), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 2), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 2), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, .production_id = 2), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, .production_id = 2), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 4), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 4), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 4), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 4), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 2), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 2), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 2), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 2), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 4), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 4), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 6), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 6), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 1), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 6), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 6), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), + [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6949), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8731), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, .production_id = 1), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, .production_id = 1), + [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, .production_id = 2), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, .production_id = 2), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 6), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 6), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 4), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 4), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6880), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 2), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 2), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 4), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 4), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [4726] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9206), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, .production_id = 1), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, .production_id = 1), + [4738] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6417), + [4742] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9237), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3), + [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), + [4794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2), + [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2), + [4806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7547), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), + [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3), + [4889] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6427), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5), + [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4), + [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, .production_id = 2), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, .production_id = 2), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, .production_id = 2), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, .production_id = 2), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2), + [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 6), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 6), + [5001] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9384), + [5005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6443), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 4), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 4), [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 4), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 4), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 2), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 2), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, .production_id = 4), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, .production_id = 4), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 4), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 4), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), - [5101] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6440), - [5105] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9425), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8920), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8680), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), - [5189] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6416), - [5193] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9567), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [5213] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9503), - [5217] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6415), - [5221] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9540), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [5227] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6425), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5281] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9551), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [5289] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6420), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(6390), - [5312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8329), - [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7296), - [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8330), - [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7307), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), - [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8495), - [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7327), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [5342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7346), - [5345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8382), - [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7232), - [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7266), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8429), - [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7321), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), - [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7400), - [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7283), - [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7218), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7313), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7226), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8702), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8418), - [5422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7396), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7306), - [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7362), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7374), - [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7310), - [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7323), - [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7274), - [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7343), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7213), - [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7341), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7275), - [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7360), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [5556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6881), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [5639] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6445), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8801), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [5733] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9436), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), SHIFT(6390), + [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 4), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 4), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 2), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 2), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 2), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 2), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 4), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 4), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, .production_id = 4), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, .production_id = 4), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4), + [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, .production_id = 4), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, .production_id = 4), + [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8716), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8598), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [5173] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6441), + [5177] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9402), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [5217] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6440), + [5221] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9539), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [5229] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6426), + [5233] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9569), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [5257] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(8973), + [5261] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6450), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [5297] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9554), + [5301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6432), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(6396), + [5322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8511), + [5325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7312), + [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8458), + [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7221), + [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8522), + [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7247), + [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8483), + [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7224), + [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8356), + [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7246), + [5352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7394), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7341), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(8389), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7384), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7398), + [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7242), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7310), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7204), + [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7281), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8762), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7296), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7220), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8692), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [5459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7306), + [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7412), + [5465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7350), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7286), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7196), + [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7256), + [5481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7201), + [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7367), + [5487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1), SHIFT(7418), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6919), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [5735] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6409), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [5741] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9414), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), SHIFT(6396), [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [5824] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6410), - [5828] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9463), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [5972] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6405), - [5976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9350), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8805), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9570), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [6224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9570), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9573), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2849), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [6279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6402), - [6283] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9261), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [6291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2860), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7519), - [6307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7247), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [6316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7233), - [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7553), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), - [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7553), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), - [6335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7519), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6969), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9562), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8745), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9562), - [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7591), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6970), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [6476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6865), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2), - [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), - [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), SHIFT_REPEAT(7455), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), - [6494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6859), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [6507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7522), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9245), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3277), - [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7461), - [6541] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6403), - [6545] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9257), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7269), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7536), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3407), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [6582] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9050), - [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7522), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [6605] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9414), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [6611] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6432), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [6617] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6438), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6935), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), - [6666] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6447), - [6670] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9446), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [6684] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9487), - [6688] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6399), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [6694] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9528), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [6746] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6422), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), - [6770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5), - [6788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6877), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [6803] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6424), - [6807] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9385), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7), - [6823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6959), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [6864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7467), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), - [6869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7575), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [6880] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9305), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3), - [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2), - [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [6902] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6430), - [6906] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6417), - [6910] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9333), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [6928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), - [6932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1495), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2), - [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2), - [7017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6876), - [7020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5), - [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [7062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6868), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3), - [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3), - [7079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4), - [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [7101] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9391), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9320), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [7129] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6434), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [7155] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9576), - [7159] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6414), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [7187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6896), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [7192] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9536), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7222] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6427), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), - [7310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(4533), - [7313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6384), - [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), - [7318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(5662), - [7321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(8816), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(4533), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2), REDUCE(sym_value_argument, 2), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6394), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(7639), - [7448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(7641), - [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9514), - [7454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8653), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), - [7459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5728), - [7462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5728), - [7465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8643), - [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9303), - [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(7707), - [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5800), - [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8547), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8492), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5570), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5562), - [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5585), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5590), - [7495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5318), - [7498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5592), - [7501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5593), - [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5581), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1), - [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9389), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8759), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9389), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [7876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7587), - [7879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4450), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7216), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7587), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8921), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9264), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [7955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6913), - [7958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6967), - [7961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7572), - [7964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7484), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [7971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7486), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [8000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7237), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [8005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7484), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [8028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4741), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4767), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [8096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6943), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [8101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6911), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7580), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9465), - [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6444), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6904), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6933), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6869), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3), - [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9228), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [8424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6383), - [8427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5560), - [8430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5588), - [8433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5579), - [8436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5574), - [8439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5305), - [8442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5598), - [8445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5578), - [8448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5595), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6394), - [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5570), - [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5562), - [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5585), - [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5590), - [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5310), - [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5592), - [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5593), - [8481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5581), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [8494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), - [8496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(6390), - [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), - [8501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(5317), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9188), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9305), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6413), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9171), - [8620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6886), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), - [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7557), - [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(8650), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [5849] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9321), + [5853] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6434), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [5969] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9463), + [5973] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6419), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8613), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9576), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8700), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9573), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [6258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9576), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [6285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7369), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [6298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2863), + [6301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9252), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [6311] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6414), + [6315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(2874), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7572), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [6333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7521), + [6336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7572), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7290), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [6354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7521), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9565), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6953), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6950), + [6457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7481), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2), SHIFT_REPEAT(7578), + [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9565), + [6482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6910), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [6505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6879), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [6518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3163), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [6523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7545), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), + [6536] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9219), + [6540] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6423), + [6544] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9394), + [6548] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6451), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9135), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7545), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7498), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [6603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7541), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [6612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7353), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(3410), + [6624] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6448), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [6632] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9014), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6644] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9431), + [6648] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6411), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6970), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [6743] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9422), + [6747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6412), + [6751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6968), + [6754] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6436), + [6758] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9519), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7), + [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [6784] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9329), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), + [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), + [6792] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6433), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [6818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6869), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5), + [6827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [6883] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9294), + [6887] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6445), + [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7571), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9235), + [6910] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9238), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2), + [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2), + [6918] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6422), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3), + [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3), + [6926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7568), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), + [6969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1), + [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), + [7011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1442), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [7056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2), + [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3), + [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [7074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4), + [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [7082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6903), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [7093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6878), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [7120] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9354), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [7156] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6403), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [7176] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6420), + [7180] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9578), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6859), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [7233] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(9532), + [7237] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1), REDUCE(sym_simple_identifier, 1), SHIFT(6446), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [7325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1), SHIFT(4522), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(6392), + [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), + [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(5682), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7523), + [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(8741), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [7347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1), SHIFT(4522), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7), + [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2), REDUCE(sym_value_argument, 2), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6384), + [7536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(7618), + [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(7619), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9517), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8821), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), + [7550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5691), + [7553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5691), + [7556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8799), + [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(9223), + [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(7868), + [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(6200), + [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8348), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(8346), + [7574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5570), + [7577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5599), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5563), + [7583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5583), + [7586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5329), + [7589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5565), + [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5567), + [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2), SHIFT_REPEAT(5598), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9392), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8608), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [7882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9392), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [7891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7529), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [7906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7529), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [7911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7269), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4470), + [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8687), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6862), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6946), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [7969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2), SHIFT_REPEAT(9179), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [7982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7490), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), + [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7437), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [8016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2), SHIFT(7448), + [8019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7448), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [8040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4704), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [8047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1), SHIFT(7209), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [8052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(4760), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6973), + [8116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6870), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(7587), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [8178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6402), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [8203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9439), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [8214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6868), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6960), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6916), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [8335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3), + [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [8403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6384), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5570), + [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5599), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5563), + [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5583), + [8422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5289), + [8425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5565), + [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5567), + [8431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5598), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), + [8500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(6396), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), + [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(5372), + [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(6385), + [8511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5589), + [8514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5590), + [8517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5591), + [8520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5593), + [8523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5374), + [8526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5594), + [8529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5595), + [8532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5568), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9061), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [8643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(6407), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [8650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(9445), + [8653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6864), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [8716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5526), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [8727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7481), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [8742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), - [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1), - [8746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), - [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), - [8760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7546), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [8767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5567), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [8774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [8786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), - [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), - [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), - [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6954), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [8821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6962), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7479), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8549), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7565), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9491), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [9027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(2052), - [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), - [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7345), - [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(6534), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), - [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [9066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), - [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6392), - [9077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6980), - [9080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6918), - [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), - [9085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), - [9087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6384), - [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), - [9092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6925), - [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6391), - [9100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(5578), - [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), - [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), - [9109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), - [9113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), SHIFT_REPEAT(6980), - [9116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1), - [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [9122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), - [9124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [9140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(4533), - [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), - [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(4533), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1430), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [9167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1), - [9169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [9175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1), - [9183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1), - [9185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1), - [9187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7511), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [9226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), - [9228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6391), - [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [9325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [9329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6384), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [9432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7565), - [9435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2), - [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2), - [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [9441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7565), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [9464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7238), - [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7281), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7264), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7276), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7385), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [9553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7287), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7502), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7361), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), - [9578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7355), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [9613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7293), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [9618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7236), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7414), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [9654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7371), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7263), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [9680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7314), - [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7332), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [9688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7386), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7410), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7407), - [9701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7392), - [9704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7316), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [9709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7383), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [9722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7388), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7318), - [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7356), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [8696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7461), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5524), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7585), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), + [8761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), + [8765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), + [8771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), + [8779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [8795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(5579), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7478), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6939), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [8838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6958), + [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7463), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(6388), + [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(1715), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), + [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(73), + [8859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(1488), + [8862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(7413), + [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(8650), + [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2), SHIFT_REPEAT(5657), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7566), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9477), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9475), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix_without_type_arguments, 1), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8451), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), + [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6383), + [9100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6996), + [9103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6883), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [9112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), + [9114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), + [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6392), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), + [9121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2), SHIFT_REPEAT(6926), + [9124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), + [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), + [9128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), + [9130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), + [9132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2), SHIFT_REPEAT(6996), + [9135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1), + [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(6387), + [9144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(5595), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), + [9151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix_without_type_arguments, 2), + [9153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), + [9155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [9161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1), SHIFT(1478), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [9184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(4522), + [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), + [9189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2), SHIFT_REPEAT(4522), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [9194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7589), + [9197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1), REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1), + [9205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1), + [9207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [9215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1), + [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [9321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), + [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6387), + [9326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6392), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [9463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7566), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1), + [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [9492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2), + [9494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2), + [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7566), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7228), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [9534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7411), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7277), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7216), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [9587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7409), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [9620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7319), + [9623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7241), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [9632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7231), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [9649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7288), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7309), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7316), + [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7326), + [9671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7329), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [9676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7330), + [9679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7295), + [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [9686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7273), + [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7343), + [9692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7349), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7382), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(7386), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [9719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7510), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7323), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7393), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7289), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [9799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7550), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9167), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8963), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [10156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2), - [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6389), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2), - [10263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6873), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1906), - [10271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7795), - [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [10276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7940), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [10325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6951), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [10424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [10426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(7683), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9455), - [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9464), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [10489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6936), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9173), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [10554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6917), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9386), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9457), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [10673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [10677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 5), - [10679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 5), - [10681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [10691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, .production_id = 4), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 6), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [10699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3), - [10701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(7455), - [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, .production_id = 3), - [10708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, .production_id = 3), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), - [10714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(259), - [10717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [10721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7440), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), - [10736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), SHIFT_REPEAT(5487), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4), - [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4), - [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 4), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5), - [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [10787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5735), - [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [10840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 6), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3), - [10858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), SHIFT_REPEAT(5463), - [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [10909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(8414), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [10918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5615), - [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [10929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), SHIFT_REPEAT(1591), - [10932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [10986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), SHIFT_REPEAT(932), - [10989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [10997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), SHIFT_REPEAT(7061), - [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [11062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), - [11064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), SHIFT_REPEAT(6382), - [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [11113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [11125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6386), - [11128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [11160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), - [11162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), SHIFT_REPEAT(1636), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [11241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [11253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), SHIFT_REPEAT(7582), - [11256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 1), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [11378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2), - [11380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [11396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [11402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1), - [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [11434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [11448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 2), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [11452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [11470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [11480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 4), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [11486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 6), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [11494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4), - [11496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [11506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 4), - [11508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6), - [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6), - [11512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [11534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, .production_id = 6), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [11590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), - [11746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [11796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [11826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8990), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, .production_id = 2), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [11948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [12304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [12380] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9246), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [12522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [9765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(7321), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7553), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9486), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [10187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2), + [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [10245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2), SHIFT_REPEAT(6388), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [10348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1739), + [10351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7616), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7988), + [10359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6906), + [10362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6945), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9461), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9424), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [10491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2), SHIFT_REPEAT(6882), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9319), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [10506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(6963), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [10523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9234), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9426), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [10689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [10691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(7644), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), + [10702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(7561), + [10705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 5), + [10711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 5), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [10717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, .production_id = 4), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [10725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [10731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 6), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [10747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(7578), + [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [10752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, .production_id = 3), + [10754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, .production_id = 3), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [10758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), + [10760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2), SHIFT_REPEAT(5488), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), + [10767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(259), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [10818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), SHIFT_REPEAT(7514), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [10833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6393), + [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 6), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [10878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), SHIFT_REPEAT(6390), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2), + [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [10927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), SHIFT_REPEAT(893), + [10930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5), + [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5), + [10940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 4), + [10942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), SHIFT_REPEAT(1609), + [10945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2), + [10947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5612), + [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [10956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), SHIFT_REPEAT(7151), + [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [11019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2), SHIFT_REPEAT(8450), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [11114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [11124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), SHIFT_REPEAT(5459), + [11127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [11149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), + [11151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2), SHIFT_REPEAT(2058), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [11194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5758), + [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [11209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4), + [11211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [11283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [11377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 2), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [11393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [11401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [11425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [11437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 1), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [11473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [11579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, .production_id = 4), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [11591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, .production_id = 6), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [11663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [11669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, .production_id = 4), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [11673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6), + [11675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [11681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [11691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, .production_id = 6), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, .production_id = 2), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [11883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [12263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [12371] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [12553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), }; #ifdef __cplusplus diff --git a/test/corpus/assignment.txt b/test/corpus/assignment.txt index e3f03a7..72d6b61 100644 --- a/test/corpus/assignment.txt +++ b/test/corpus/assignment.txt @@ -20,11 +20,11 @@ class Foo(){ (variable_declaration (simple_identifier))) (secondary_constructor - (function_value_parameters - (parameter - (simple_identifier) - (user_type - (type_identifier)))) + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier)))) (statements (assignment (directly_assignable_expression @@ -65,3 +65,28 @@ fun main(){ (indexing_suffix (integer_literal))) (string_literal)))))) + +================================================================================ +Call Assignment +================================================================================ + +foo() = 2 +foo().bar = 3 + +-------------------------------------------------------------------------------- + +(source_file + (assignment + (directly_assignable_expression + (simple_identifier) + (call_suffix_without_type_arguments + (value_arguments))) + (integer_literal)) + (assignment + (directly_assignable_expression + (simple_identifier) + (call_suffix_without_type_arguments + (value_arguments)) + (navigation_suffix + (simple_identifier))) + (integer_literal)))